summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbouyer <bouyer>1998-01-23 11:24:57 +0000
committerbouyer <bouyer>1998-01-23 11:24:57 +0000
commit29d3c64a425b415a237a157b277da753238af5e7 (patch)
treed303b1c786b35ef7d875e08e353899466b3b3baf
parent163195d64de081867e0932f9efdcee5d8538a1da (diff)
downloadpkgsrc-29d3c64a425b415a237a157b277da753238af5e7.tar.gz
Import from the FreeBSD port collection.
-rw-r--r--graphics/pixmap/Makefile22
-rw-r--r--graphics/pixmap/files/md51
-rw-r--r--graphics/pixmap/patches/patch-aa19
-rw-r--r--graphics/pixmap/patches/patch-ab19
-rw-r--r--graphics/pixmap/patches/patch-ac24
-rw-r--r--graphics/pixmap/pkg/COMMENT1
-rw-r--r--graphics/pixmap/pkg/DESCR3
-rw-r--r--graphics/pixmap/pkg/PLIST16
-rw-r--r--graphics/xbmbrowser/Makefile23
-rw-r--r--graphics/xbmbrowser/files/md51
-rw-r--r--graphics/xbmbrowser/patches/patch-a21
-rw-r--r--graphics/xbmbrowser/pkg/COMMENT1
-rw-r--r--graphics/xbmbrowser/pkg/DESCR19
-rw-r--r--graphics/xbmbrowser/pkg/PLIST6
14 files changed, 176 insertions, 0 deletions
diff --git a/graphics/pixmap/Makefile b/graphics/pixmap/Makefile
new file mode 100644
index 00000000000..db8efe565e3
--- /dev/null
+++ b/graphics/pixmap/Makefile
@@ -0,0 +1,22 @@
+# New ports collection makefile for: pixmap
+# Version required: 2.6
+# Date created: 19 February 1995
+# Whom: jmz
+#
+# $Id: Makefile,v 1.1.1.1 1998/01/23 11:24:57 bouyer Exp $
+#
+
+DISTNAME= pixmap2.6
+PKGNAME= pixmap-2.6
+CATEGORIES= graphics
+MASTER_SITES= ${MASTER_SITE_XCONTRIB}
+MASTER_SITE_SUBDIR= applications/pixmap
+
+MAINTAINER= jmz@FreeBSD.org
+
+LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm
+
+WRKSRC= ${WRKDIR}/pixmap
+USE_IMAKE= yes
+
+.include <bsd.port.mk>
diff --git a/graphics/pixmap/files/md5 b/graphics/pixmap/files/md5
new file mode 100644
index 00000000000..f33fea56afe
--- /dev/null
+++ b/graphics/pixmap/files/md5
@@ -0,0 +1 @@
+MD5 (pixmap2.6.tar.gz) = 96ab473c9e83476b39fba7fa19f7e621
diff --git a/graphics/pixmap/patches/patch-aa b/graphics/pixmap/patches/patch-aa
new file mode 100644
index 00000000000..765204c2841
--- /dev/null
+++ b/graphics/pixmap/patches/patch-aa
@@ -0,0 +1,19 @@
+*** Pixmap.h~ Fri May 13 04:03:29 1994
+--- Pixmap.h Sun Feb 19 03:35:48 1995
+***************
+*** 69,75 ****
+ #include <X11/Xmu/Converters.h>
+ #include <X11/Xos.h>
+ #include <X11/Xfuncproto.h>
+! #include "xpm.h"
+
+ /* Resources:
+
+--- 69,75 ----
+ #include <X11/Xmu/Converters.h>
+ #include <X11/Xos.h>
+ #include <X11/Xfuncproto.h>
+! #include <X11/xpm.h>
+
+ /* Resources:
+
diff --git a/graphics/pixmap/patches/patch-ab b/graphics/pixmap/patches/patch-ab
new file mode 100644
index 00000000000..81f93dbc54f
--- /dev/null
+++ b/graphics/pixmap/patches/patch-ab
@@ -0,0 +1,19 @@
+*** SelFile/SelFile.c~ Mon May 30 04:02:59 1994
+--- SelFile/SelFile.c Sun Feb 19 03:40:43 1995
+***************
+*** 46,52 ****
+ /* BSD 4.3 errno.h does not declare errno */
+ extern int errno;
+ extern int sys_nerr;
+! extern char *sys_errlist[];
+
+ #include <sys/param.h>
+ #include <X11/cursorfont.h>
+--- 46,52 ----
+ /* BSD 4.3 errno.h does not declare errno */
+ extern int errno;
+ extern int sys_nerr;
+! /* extern char *sys_errlist[];*/
+
+ #include <sys/param.h>
+ #include <X11/cursorfont.h>
diff --git a/graphics/pixmap/patches/patch-ac b/graphics/pixmap/patches/patch-ac
new file mode 100644
index 00000000000..668e0e15305
--- /dev/null
+++ b/graphics/pixmap/patches/patch-ac
@@ -0,0 +1,24 @@
+--- ./Imakefile.org Fri May 13 04:04:38 1994
++++ ./Imakefile Mon Feb 27 16:31:46 1995
+@@ -27,10 +27,9 @@
+ PIXMAPDIR = $(LIBDIR)/Pixmap
+
+ XCOMM Specify here your Xpm installation directories
+- XPM_INCLUDEDIR = /usr/local/include
+ XPM_LIBDIR = $(LIBDIR)/xpm
+- XPM_INCLUDEDIR = /net/koala/include
+- XPM_LIBDIR = /net/koala/lib/sun4
++ XPM_INCLUDEDIR = $(INCDIR)
++ XPM_LIBDIR = $(USRLIBDIR)
+ EXTRA_INCLUDES = $(R5EXT) -I. -I.. -I$(XPM_INCLUDEDIR) -I/usr/include/$(MOTIFVER)
+
+ #ifdef USE_MOTIF
+@@ -89,7 +88,7 @@
+
+ Pixmap.ad: APixmap.ad
+ @echo Pixmap compiled with Athena.
+- @sed -e "s#@PIXMAPDIR@#$(PIXMAPDIR)/#g" <APixmap.ad >Pixmap.ad
++ @sed -e "s#@PIXMAPDIR@#$(PIXMAPDIR)/#g" -e "s/^Pixmap//" <APixmap.ad >Pixmap.ad
+ #endif
+
+ dotpixmap: $(RGBTXT)
diff --git a/graphics/pixmap/pkg/COMMENT b/graphics/pixmap/pkg/COMMENT
new file mode 100644
index 00000000000..3749a28ec3a
--- /dev/null
+++ b/graphics/pixmap/pkg/COMMENT
@@ -0,0 +1 @@
+A pixmap editor based on XPM library.
diff --git a/graphics/pixmap/pkg/DESCR b/graphics/pixmap/pkg/DESCR
new file mode 100644
index 00000000000..4b986fc2caa
--- /dev/null
+++ b/graphics/pixmap/pkg/DESCR
@@ -0,0 +1,3 @@
+The pixmap program is a tool for creating or editing rectangular images
+made up of colored pixels, i.e., pixmaps. Pixmaps are intensively used in
+X to define window backgrounds, icon images, etc.
diff --git a/graphics/pixmap/pkg/PLIST b/graphics/pixmap/pkg/PLIST
new file mode 100644
index 00000000000..52cb79b99f5
--- /dev/null
+++ b/graphics/pixmap/pkg/PLIST
@@ -0,0 +1,16 @@
+bin/pixmap
+lib/X11/app-defaults/Pixmap
+lib/X11/Pixmap/Down
+lib/X11/Pixmap/FlipHoriz
+lib/X11/Pixmap/FlipVert
+lib/X11/Pixmap/Fold
+lib/X11/Pixmap/Left
+lib/X11/Pixmap/Right
+lib/X11/Pixmap/RotateLeft
+lib/X11/Pixmap/RotateRight
+lib/X11/Pixmap/Stipple
+lib/X11/Pixmap/Up
+lib/X11/Pixmap/Term
+lib/X11/Pixmap/Excl
+man/man1/pixmap.1.gz
+lib/libXgnu.a
diff --git a/graphics/xbmbrowser/Makefile b/graphics/xbmbrowser/Makefile
new file mode 100644
index 00000000000..a2cefe1f78f
--- /dev/null
+++ b/graphics/xbmbrowser/Makefile
@@ -0,0 +1,23 @@
+# New ports collection makefile for: xbmbrowser
+# Version required: xbmbrowser5.1
+# Date created: 06 September 1995
+# Whom: Thomas Gellekum <tg@FreeBSD.org>
+#
+# $Id: Makefile,v 1.1.1.1 1998/01/23 11:24:58 bouyer Exp $
+#
+
+DISTNAME= xbmbrowser5.1
+PKGNAME= xbmbrowser-5.1
+CATEGORIES= graphics
+MASTER_SITES= ${MASTER_SITE_XCONTRIB}
+MASTER_SITE_SUBDIR= utilities
+
+MAINTAINER= tg@FreeBSD.org
+
+LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm
+
+USE_IMAKE= yes
+USE_GMAKE= yes
+
+.include <bsd.port.mk>
+
diff --git a/graphics/xbmbrowser/files/md5 b/graphics/xbmbrowser/files/md5
new file mode 100644
index 00000000000..b0f94daf70a
--- /dev/null
+++ b/graphics/xbmbrowser/files/md5
@@ -0,0 +1 @@
+MD5 (xbmbrowser5.1.tar.gz) = 3bc437bf87a57c5c682d5510de1bf1ee
diff --git a/graphics/xbmbrowser/patches/patch-a b/graphics/xbmbrowser/patches/patch-a
new file mode 100644
index 00000000000..88219e1e3f0
--- /dev/null
+++ b/graphics/xbmbrowser/patches/patch-a
@@ -0,0 +1,21 @@
+*** Imakefile.orig Fri Aug 4 05:19:36 1995
+--- Imakefile Wed Sep 6 13:53:32 1995
+***************
+*** 17,24 ****
+ # -DNO_TRANS_COLOR Turn off setting the `none' color in xpixmaps
+
+ DO_XPMS = -DDO_XPMS
+! XPM_INC = -I/usr/include/X11
+! XPM_LIB = -L$(LIBDIR)/xpm -lXpm
+
+
+ # If you need this uncomment (particularly on decstations)
+--- 17,24 ----
+ # -DNO_TRANS_COLOR Turn off setting the `none' color in xpixmaps
+
+ DO_XPMS = -DDO_XPMS
+! XPM_INC = -I/usr/X11R6/include/X11
+! XPM_LIB = -lXpm
+
+
+ # If you need this uncomment (particularly on decstations)
diff --git a/graphics/xbmbrowser/pkg/COMMENT b/graphics/xbmbrowser/pkg/COMMENT
new file mode 100644
index 00000000000..04aaee530d1
--- /dev/null
+++ b/graphics/xbmbrowser/pkg/COMMENT
@@ -0,0 +1 @@
+View complete directories of X bitmaps and X pixmaps.
diff --git a/graphics/xbmbrowser/pkg/DESCR b/graphics/xbmbrowser/pkg/DESCR
new file mode 100644
index 00000000000..c9c69877337
--- /dev/null
+++ b/graphics/xbmbrowser/pkg/DESCR
@@ -0,0 +1,19 @@
+ A program to allow the user to view a complete directory of X bitmaps
+and X pixmaps all in one go, and to perform user defined actions on
+these images. If you don't think this is usful, you have never dealt with
+a directory of small icon images.
+
+ Copyright Ashley Roll and Anthony Thyssen
+
+Original Program: Ashley Roll ash@cit.gu.edu.au upto version 3.2
+Current Programmer: Anthony Thyssen anthony@cit.gu.edu.au version 4.0 on
+
+This program while available in the X windows Contrib Area, still belongs
+to the programmers. Permission is however given for you to freely copy,
+distribute and modify it on the condition that this and all other
+copyright notices remain unchanged in all distributions. Modifications
+should be forwarded to the Current Programmer (anthony) for inclusion into
+the next release.
+
+This software comes with NO warranty whatsoever and no responsibility for
+any damages, losses or problems that the program may cause will be taken.
diff --git a/graphics/xbmbrowser/pkg/PLIST b/graphics/xbmbrowser/pkg/PLIST
new file mode 100644
index 00000000000..90e0378f1d1
--- /dev/null
+++ b/graphics/xbmbrowser/pkg/PLIST
@@ -0,0 +1,6 @@
+bin/xbmbrowser
+lib/X11/app-defaults/XbmBrowser
+lib/X11/app-defaults/XbmBrowser-color
+lib/X11/xbmbrowser/xbmbrowser.menu
+lib/X11/xbmbrowser/xbmbrowser.menu.tut
+man/man1/xbmbrowser.1.gz