Update to 3.2.4

This commit is contained in:
Tilman Keskinoz 2003-01-13 14:46:50 +00:00
parent fb5c0d61d5
commit 402d75f13d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=73047
8 changed files with 2002 additions and 704 deletions

View file

@ -6,11 +6,11 @@
#
PORTNAME= xfig
PORTVERSION= 3.2.3d
PORTVERSION= 3.2.4
CATEGORIES= graphics
MASTER_SITES= http://www.xfig.org/xfigdist/ \
ftp://www-epb.lbl.gov/xfig/
MASTER_SITE_SUBDIR= applications/drawing_tools/xfig
ftp://www-epb.lbl.gov/xfig/%SUBDIR%/
MASTER_SITE_SUBDIR= . previous_versions
DISTNAME= ${PORTNAME}.${PORTVERSION}.full
MAINTAINER= ports@FreeBSD.org

View file

@ -1 +1 @@
MD5 (xfig.3.2.3d.full.tar.gz) = c6321efc1e2796e111b250c58de2f2e0
MD5 (xfig.3.2.4.full.tar.gz) = 1911fc0f733cb2f40336a8d0e82513de

View file

@ -1,17 +1,28 @@
--- Imakefile.orig Wed May 30 03:32:11 2001
+++ Imakefile Tue Jun 26 00:25:33 2001
@@ -47,8 +47,8 @@
--- Imakefile.orig Fri Dec 20 02:57:11 2002
+++ Imakefile Wed Jan 8 09:07:47 2003
@@ -48,8 +48,8 @@
XCOMM Redefine the following if your PNG library and/or include file
XCOMM are in different places
-PNGLIBDIR = $(USRLIBDIR)
-PNGINC = -I/usr/local/include
+PNGLIBDIR = ${LOCALBASE}/lib
+PNGINC = -I${LOCALBASE}/include/libpng
XCOMM If don't want JPEG support, comment out the #define USEJPEG line
XCOMM Uncomment the #define for USEJPEG if you want to be able to import
@@ -68,8 +68,8 @@
#ifdef USEJPEG
#ifdef USEINSTALLEDJPEG
-JPEGLIBDIR = /usr/local/lib
-JPEGINCDIR = /usr/include/X11
-JPEGINC = -I/usr/include/X11
+JPEGLIBDIR = ${LOCALBASE}/lib
+JPEGINCDIR = ${LOCALBASE}/include
+JPEGINC = -I${LOCALBASE}/include
#else
JPEGLIBDIR = ../jpeg
JPEGINCDIR = $(JPEGLIBDIR)
@@ -72,18 +72,18 @@
JPEGINC = -I$(JPEGLIBDIR)
@@ -87,28 +87,28 @@
XCOMM Change XPMLIBDIR if necessary to point to the xpm library (libXpm)
XCOMM Change XPMINC if necessary to point to the include file for xpm (xpm.h)
@ -34,8 +45,11 @@
XCOMM Uncomment the following definition for XAW3D if you want to use
XCOMM the 3d Athena Widget Set (highly recommended!)
@@ -93,7 +93,7 @@
#define XAW3D
XCOMM Then be sure to change the XAW3DINC to point to the directory where your
XCOMM 3D Athena widget headers are located
-XCOMM #define XAW3D
+#define XAW3D
#ifdef XAW3D
-XAW3DINC = -I/usr/include/X11/Xaw3d
@ -43,16 +57,7 @@
DUSEXAW3D = -DXAW3D
XAWLIB = -lXaw3d
#endif
@@ -120,7 +120,7 @@
XCOMM If your setlocale() dosen't support the locale, you should
XCOMM add -DSETLOCALE to I18N_DEFS.
-XCOMM #define I18N
+#define I18N
XCOMM If using an input tablet uncomment the following
@@ -131,7 +131,7 @@
@@ -154,7 +154,7 @@
XCOMM inline functions. With the "INLINE" keyword, you should notice that
XCOMM the display will be a bit faster in complex figures
@ -61,7 +66,16 @@
XCOMM use (and change) the following if you want the multi-key data base file
XCOMM somewhere other than the standard X11 library directory
@@ -220,7 +220,7 @@
@@ -166,7 +166,7 @@
XCOMM XFIGDOCDIR tells where the html and pdf documentation should go
XCOMM XFIGDOCDIR = $(DOCDIR)/xfig
-XFIGDOCDIR = /usr/share/doc/xfig
+XFIGDOCDIR = $(LIBDIR)/xfig
XCOMM MANDIR tells where the standard man pages should go (no need to change it
XCOMM if you want the man pages installed in the standard place on your system
@@ -234,7 +234,7 @@
#endif /* USEJPEG */
#ifdef I18N
@ -70,7 +84,7 @@
I18N_SRC = w_i18n.c
I18N_OBJ = w_i18n.o
#endif
@@ -237,11 +237,13 @@
@@ -251,11 +251,13 @@
$(HAVE_NO_STRCASECMP) \
$(NEED_STRERROR)
@ -79,7 +93,7 @@
#undef InstallManPage
#endif
#define InstallManPage(file,dest) @@\
InstallManPageLong(Doc/file,dest,file)
InstallManPageLong(file,dest,file)
+*/
#ifdef USESMALLICONS

File diff suppressed because it is too large Load diff

View file

@ -6,11 +6,11 @@
#
PORTNAME= xfig
PORTVERSION= 3.2.3d
PORTVERSION= 3.2.4
CATEGORIES= graphics
MASTER_SITES= http://www.xfig.org/xfigdist/ \
ftp://www-epb.lbl.gov/xfig/
MASTER_SITE_SUBDIR= applications/drawing_tools/xfig
ftp://www-epb.lbl.gov/xfig/%SUBDIR%/
MASTER_SITE_SUBDIR= . previous_versions
DISTNAME= ${PORTNAME}.${PORTVERSION}.full
MAINTAINER= ports@FreeBSD.org

View file

@ -1 +1 @@
MD5 (xfig.3.2.3d.full.tar.gz) = c6321efc1e2796e111b250c58de2f2e0
MD5 (xfig.3.2.4.full.tar.gz) = 1911fc0f733cb2f40336a8d0e82513de

View file

@ -1,17 +1,28 @@
--- Imakefile.orig Wed May 30 03:32:11 2001
+++ Imakefile Tue Jun 26 00:25:33 2001
@@ -47,8 +47,8 @@
--- Imakefile.orig Fri Dec 20 02:57:11 2002
+++ Imakefile Wed Jan 8 09:07:47 2003
@@ -48,8 +48,8 @@
XCOMM Redefine the following if your PNG library and/or include file
XCOMM are in different places
-PNGLIBDIR = $(USRLIBDIR)
-PNGINC = -I/usr/local/include
+PNGLIBDIR = ${LOCALBASE}/lib
+PNGINC = -I${LOCALBASE}/include/libpng
XCOMM If don't want JPEG support, comment out the #define USEJPEG line
XCOMM Uncomment the #define for USEJPEG if you want to be able to import
@@ -68,8 +68,8 @@
#ifdef USEJPEG
#ifdef USEINSTALLEDJPEG
-JPEGLIBDIR = /usr/local/lib
-JPEGINCDIR = /usr/include/X11
-JPEGINC = -I/usr/include/X11
+JPEGLIBDIR = ${LOCALBASE}/lib
+JPEGINCDIR = ${LOCALBASE}/include
+JPEGINC = -I${LOCALBASE}/include
#else
JPEGLIBDIR = ../jpeg
JPEGINCDIR = $(JPEGLIBDIR)
@@ -72,18 +72,18 @@
JPEGINC = -I$(JPEGLIBDIR)
@@ -87,28 +87,28 @@
XCOMM Change XPMLIBDIR if necessary to point to the xpm library (libXpm)
XCOMM Change XPMINC if necessary to point to the include file for xpm (xpm.h)
@ -34,8 +45,11 @@
XCOMM Uncomment the following definition for XAW3D if you want to use
XCOMM the 3d Athena Widget Set (highly recommended!)
@@ -93,7 +93,7 @@
#define XAW3D
XCOMM Then be sure to change the XAW3DINC to point to the directory where your
XCOMM 3D Athena widget headers are located
-XCOMM #define XAW3D
+#define XAW3D
#ifdef XAW3D
-XAW3DINC = -I/usr/include/X11/Xaw3d
@ -43,16 +57,7 @@
DUSEXAW3D = -DXAW3D
XAWLIB = -lXaw3d
#endif
@@ -120,7 +120,7 @@
XCOMM If your setlocale() dosen't support the locale, you should
XCOMM add -DSETLOCALE to I18N_DEFS.
-XCOMM #define I18N
+#define I18N
XCOMM If using an input tablet uncomment the following
@@ -131,7 +131,7 @@
@@ -154,7 +154,7 @@
XCOMM inline functions. With the "INLINE" keyword, you should notice that
XCOMM the display will be a bit faster in complex figures
@ -61,7 +66,16 @@
XCOMM use (and change) the following if you want the multi-key data base file
XCOMM somewhere other than the standard X11 library directory
@@ -220,7 +220,7 @@
@@ -166,7 +166,7 @@
XCOMM XFIGDOCDIR tells where the html and pdf documentation should go
XCOMM XFIGDOCDIR = $(DOCDIR)/xfig
-XFIGDOCDIR = /usr/share/doc/xfig
+XFIGDOCDIR = $(LIBDIR)/xfig
XCOMM MANDIR tells where the standard man pages should go (no need to change it
XCOMM if you want the man pages installed in the standard place on your system
@@ -234,7 +234,7 @@
#endif /* USEJPEG */
#ifdef I18N
@ -70,7 +84,7 @@
I18N_SRC = w_i18n.c
I18N_OBJ = w_i18n.o
#endif
@@ -237,11 +237,13 @@
@@ -251,11 +251,13 @@
$(HAVE_NO_STRCASECMP) \
$(NEED_STRERROR)
@ -79,7 +93,7 @@
#undef InstallManPage
#endif
#define InstallManPage(file,dest) @@\
InstallManPageLong(Doc/file,dest,file)
InstallManPageLong(file,dest,file)
+*/
#ifdef USESMALLICONS

File diff suppressed because it is too large Load diff