mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
48eab8c261
PR: 28061 Submitted by: KATO Tsuguru <tkato@prontomail.com> No response: maintainer
66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
--- fig2dev/Imakefile.orig Fri Apr 20 02:19:38 2001
|
|
+++ fig2dev/Imakefile Tue Jun 5 23:18:08 2001
|
|
@@ -28,7 +28,7 @@
|
|
XCOMM You should point XFIGLIBDIR to the same directory you did when you compiled
|
|
XCOMM and installed xfig. This will be made automatic in the future.
|
|
|
|
-XFIGLIBDIR = /usr/local/lib/X11/xfig
|
|
+XFIGLIBDIR = $(LIBDIR)/xfig
|
|
|
|
XCOMM ******
|
|
XCOMM If your system has the strerror() function (doesn't have sys_errlist) then
|
|
@@ -47,7 +47,7 @@
|
|
XCOMM inline functions. With the "INLINE" keyword, you should notice that
|
|
XCOMM the display will be a bit faster in complex figures
|
|
|
|
-XCOMM USEINLINE = -DUSE_INLINE
|
|
+USEINLINE = -DUSE_INLINE
|
|
|
|
XCOMM ****************
|
|
XCOMM Change RGB if necessary, to point to your rgb.txt color database
|
|
@@ -65,8 +65,8 @@
|
|
#define USEPNG
|
|
|
|
#ifdef USEPNG
|
|
-PNGLIBDIR = $(USRLIBDIR)
|
|
-PNGINC = -I/usr/include/X11
|
|
+PNGLIBDIR = ${LOCALBASE}/lib
|
|
+PNGINC = -I${LOCALBASE}/include
|
|
#endif
|
|
|
|
XCOMM ****************
|
|
@@ -78,11 +78,11 @@
|
|
XCOMM Change XPMINC if necessary to point to the include file for xpm (xpm.h)
|
|
XCOMM
|
|
|
|
-XCOMM #define USEXPM
|
|
+#define USEXPM
|
|
|
|
#ifdef USEXPM
|
|
XPMLIBDIR = $(USRLIBDIR)
|
|
-XPMINC = -I/usr/include/X11
|
|
+XPMINC = -I$(INCDIR)/X11
|
|
#endif
|
|
|
|
XCOMM ****************
|
|
@@ -104,8 +104,8 @@
|
|
|
|
#ifdef USEJPEG
|
|
#ifdef USEINSTALLEDJPEG
|
|
-JPEGLIBDIR = /usr/local/lib
|
|
-JPEGINCDIR = /usr/include/X11
|
|
+JPEGLIBDIR = ${LOCALBASE}/lib
|
|
+JPEGINCDIR = ${LOCALBASE}/include
|
|
#else
|
|
JPEGLIBDIR = ../jpeg
|
|
JPEGINCDIR = $(JPEGLIBDIR)
|
|
@@ -158,7 +158,7 @@
|
|
|
|
#ifdef I18N
|
|
I18N_DEFS = -DI18N
|
|
-FIG2DEV_LIBDIR = /usr/local/lib/fig2dev
|
|
+FIG2DEV_LIBDIR = $(LIBDIR)/fig2dev
|
|
I18N_DEV_DEFS = $(I18N_DEFS) -DFIG2DEV_LIBDIR=\\\"$(FIG2DEV_LIBDIR)\\\"
|
|
|
|
install::
|