mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Update to 3.2.4
This commit is contained in:
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
|
@ -6,11 +6,11 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= xfig
|
PORTNAME= xfig
|
||||||
PORTVERSION= 3.2.3d
|
PORTVERSION= 3.2.4
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= http://www.xfig.org/xfigdist/ \
|
MASTER_SITES= http://www.xfig.org/xfigdist/ \
|
||||||
ftp://www-epb.lbl.gov/xfig/
|
ftp://www-epb.lbl.gov/xfig/%SUBDIR%/
|
||||||
MASTER_SITE_SUBDIR= applications/drawing_tools/xfig
|
MASTER_SITE_SUBDIR= . previous_versions
|
||||||
DISTNAME= ${PORTNAME}.${PORTVERSION}.full
|
DISTNAME= ${PORTNAME}.${PORTVERSION}.full
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (xfig.3.2.3d.full.tar.gz) = c6321efc1e2796e111b250c58de2f2e0
|
MD5 (xfig.3.2.4.full.tar.gz) = 1911fc0f733cb2f40336a8d0e82513de
|
||||||
|
|
|
@ -1,17 +1,28 @@
|
||||||
--- Imakefile.orig Wed May 30 03:32:11 2001
|
--- Imakefile.orig Fri Dec 20 02:57:11 2002
|
||||||
+++ Imakefile Tue Jun 26 00:25:33 2001
|
+++ Imakefile Wed Jan 8 09:07:47 2003
|
||||||
@@ -47,8 +47,8 @@
|
@@ -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 USEJPEG
|
||||||
#ifdef USEINSTALLEDJPEG
|
#ifdef USEINSTALLEDJPEG
|
||||||
-JPEGLIBDIR = /usr/local/lib
|
-JPEGLIBDIR = /usr/local/lib
|
||||||
-JPEGINCDIR = /usr/include/X11
|
-JPEGINC = -I/usr/include/X11
|
||||||
+JPEGLIBDIR = ${LOCALBASE}/lib
|
+JPEGLIBDIR = ${LOCALBASE}/lib
|
||||||
+JPEGINCDIR = ${LOCALBASE}/include
|
+JPEGINC = -I${LOCALBASE}/include
|
||||||
#else
|
#else
|
||||||
JPEGLIBDIR = ../jpeg
|
JPEGLIBDIR = ../jpeg
|
||||||
JPEGINCDIR = $(JPEGLIBDIR)
|
JPEGINC = -I$(JPEGLIBDIR)
|
||||||
@@ -72,18 +72,18 @@
|
@@ -87,28 +87,28 @@
|
||||||
XCOMM Change XPMLIBDIR if necessary to point to the xpm library (libXpm)
|
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)
|
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 Uncomment the following definition for XAW3D if you want to use
|
||||||
XCOMM the 3d Athena Widget Set (highly recommended!)
|
XCOMM the 3d Athena Widget Set (highly recommended!)
|
||||||
@@ -93,7 +93,7 @@
|
XCOMM Then be sure to change the XAW3DINC to point to the directory where your
|
||||||
#define XAW3D
|
XCOMM 3D Athena widget headers are located
|
||||||
|
|
||||||
|
-XCOMM #define XAW3D
|
||||||
|
+#define XAW3D
|
||||||
|
|
||||||
#ifdef XAW3D
|
#ifdef XAW3D
|
||||||
-XAW3DINC = -I/usr/include/X11/Xaw3d
|
-XAW3DINC = -I/usr/include/X11/Xaw3d
|
||||||
|
@ -43,16 +57,7 @@
|
||||||
DUSEXAW3D = -DXAW3D
|
DUSEXAW3D = -DXAW3D
|
||||||
XAWLIB = -lXaw3d
|
XAWLIB = -lXaw3d
|
||||||
#endif
|
#endif
|
||||||
@@ -120,7 +120,7 @@
|
@@ -154,7 +154,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 @@
|
|
||||||
XCOMM inline functions. With the "INLINE" keyword, you should notice that
|
XCOMM inline functions. With the "INLINE" keyword, you should notice that
|
||||||
XCOMM the display will be a bit faster in complex figures
|
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 use (and change) the following if you want the multi-key data base file
|
||||||
XCOMM somewhere other than the standard X11 library directory
|
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 */
|
#endif /* USEJPEG */
|
||||||
|
|
||||||
#ifdef I18N
|
#ifdef I18N
|
||||||
|
@ -70,7 +84,7 @@
|
||||||
I18N_SRC = w_i18n.c
|
I18N_SRC = w_i18n.c
|
||||||
I18N_OBJ = w_i18n.o
|
I18N_OBJ = w_i18n.o
|
||||||
#endif
|
#endif
|
||||||
@@ -237,11 +237,13 @@
|
@@ -251,11 +251,13 @@
|
||||||
$(HAVE_NO_STRCASECMP) \
|
$(HAVE_NO_STRCASECMP) \
|
||||||
$(NEED_STRERROR)
|
$(NEED_STRERROR)
|
||||||
|
|
||||||
|
@ -79,7 +93,7 @@
|
||||||
#undef InstallManPage
|
#undef InstallManPage
|
||||||
#endif
|
#endif
|
||||||
#define InstallManPage(file,dest) @@\
|
#define InstallManPage(file,dest) @@\
|
||||||
InstallManPageLong(Doc/file,dest,file)
|
InstallManPageLong(file,dest,file)
|
||||||
+*/
|
+*/
|
||||||
|
|
||||||
#ifdef USESMALLICONS
|
#ifdef USESMALLICONS
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -6,11 +6,11 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= xfig
|
PORTNAME= xfig
|
||||||
PORTVERSION= 3.2.3d
|
PORTVERSION= 3.2.4
|
||||||
CATEGORIES= graphics
|
CATEGORIES= graphics
|
||||||
MASTER_SITES= http://www.xfig.org/xfigdist/ \
|
MASTER_SITES= http://www.xfig.org/xfigdist/ \
|
||||||
ftp://www-epb.lbl.gov/xfig/
|
ftp://www-epb.lbl.gov/xfig/%SUBDIR%/
|
||||||
MASTER_SITE_SUBDIR= applications/drawing_tools/xfig
|
MASTER_SITE_SUBDIR= . previous_versions
|
||||||
DISTNAME= ${PORTNAME}.${PORTVERSION}.full
|
DISTNAME= ${PORTNAME}.${PORTVERSION}.full
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (xfig.3.2.3d.full.tar.gz) = c6321efc1e2796e111b250c58de2f2e0
|
MD5 (xfig.3.2.4.full.tar.gz) = 1911fc0f733cb2f40336a8d0e82513de
|
||||||
|
|
|
@ -1,17 +1,28 @@
|
||||||
--- Imakefile.orig Wed May 30 03:32:11 2001
|
--- Imakefile.orig Fri Dec 20 02:57:11 2002
|
||||||
+++ Imakefile Tue Jun 26 00:25:33 2001
|
+++ Imakefile Wed Jan 8 09:07:47 2003
|
||||||
@@ -47,8 +47,8 @@
|
@@ -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 USEJPEG
|
||||||
#ifdef USEINSTALLEDJPEG
|
#ifdef USEINSTALLEDJPEG
|
||||||
-JPEGLIBDIR = /usr/local/lib
|
-JPEGLIBDIR = /usr/local/lib
|
||||||
-JPEGINCDIR = /usr/include/X11
|
-JPEGINC = -I/usr/include/X11
|
||||||
+JPEGLIBDIR = ${LOCALBASE}/lib
|
+JPEGLIBDIR = ${LOCALBASE}/lib
|
||||||
+JPEGINCDIR = ${LOCALBASE}/include
|
+JPEGINC = -I${LOCALBASE}/include
|
||||||
#else
|
#else
|
||||||
JPEGLIBDIR = ../jpeg
|
JPEGLIBDIR = ../jpeg
|
||||||
JPEGINCDIR = $(JPEGLIBDIR)
|
JPEGINC = -I$(JPEGLIBDIR)
|
||||||
@@ -72,18 +72,18 @@
|
@@ -87,28 +87,28 @@
|
||||||
XCOMM Change XPMLIBDIR if necessary to point to the xpm library (libXpm)
|
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)
|
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 Uncomment the following definition for XAW3D if you want to use
|
||||||
XCOMM the 3d Athena Widget Set (highly recommended!)
|
XCOMM the 3d Athena Widget Set (highly recommended!)
|
||||||
@@ -93,7 +93,7 @@
|
XCOMM Then be sure to change the XAW3DINC to point to the directory where your
|
||||||
#define XAW3D
|
XCOMM 3D Athena widget headers are located
|
||||||
|
|
||||||
|
-XCOMM #define XAW3D
|
||||||
|
+#define XAW3D
|
||||||
|
|
||||||
#ifdef XAW3D
|
#ifdef XAW3D
|
||||||
-XAW3DINC = -I/usr/include/X11/Xaw3d
|
-XAW3DINC = -I/usr/include/X11/Xaw3d
|
||||||
|
@ -43,16 +57,7 @@
|
||||||
DUSEXAW3D = -DXAW3D
|
DUSEXAW3D = -DXAW3D
|
||||||
XAWLIB = -lXaw3d
|
XAWLIB = -lXaw3d
|
||||||
#endif
|
#endif
|
||||||
@@ -120,7 +120,7 @@
|
@@ -154,7 +154,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 @@
|
|
||||||
XCOMM inline functions. With the "INLINE" keyword, you should notice that
|
XCOMM inline functions. With the "INLINE" keyword, you should notice that
|
||||||
XCOMM the display will be a bit faster in complex figures
|
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 use (and change) the following if you want the multi-key data base file
|
||||||
XCOMM somewhere other than the standard X11 library directory
|
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 */
|
#endif /* USEJPEG */
|
||||||
|
|
||||||
#ifdef I18N
|
#ifdef I18N
|
||||||
|
@ -70,7 +84,7 @@
|
||||||
I18N_SRC = w_i18n.c
|
I18N_SRC = w_i18n.c
|
||||||
I18N_OBJ = w_i18n.o
|
I18N_OBJ = w_i18n.o
|
||||||
#endif
|
#endif
|
||||||
@@ -237,11 +237,13 @@
|
@@ -251,11 +251,13 @@
|
||||||
$(HAVE_NO_STRCASECMP) \
|
$(HAVE_NO_STRCASECMP) \
|
||||||
$(NEED_STRERROR)
|
$(NEED_STRERROR)
|
||||||
|
|
||||||
|
@ -79,7 +93,7 @@
|
||||||
#undef InstallManPage
|
#undef InstallManPage
|
||||||
#endif
|
#endif
|
||||||
#define InstallManPage(file,dest) @@\
|
#define InstallManPage(file,dest) @@\
|
||||||
InstallManPageLong(Doc/file,dest,file)
|
InstallManPageLong(file,dest,file)
|
||||||
+*/
|
+*/
|
||||||
|
|
||||||
#ifdef USESMALLICONS
|
#ifdef USESMALLICONS
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue