diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 14:02:16 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 14:02:16 +0000 |
commit | ba06c2d6a37dc081a3a8c5a01426a0a009428ca9 (patch) | |
tree | 7b1cdea9a21ff4ed307e29514e9d8286d9d83dfa /print/transfig/files/patch-fig2dev_Imakefile | |
parent | Stage, and pull the patches into a sed command. (diff) |
Rename p*/ patch-xy patches to reflect the files they modify.
Notes
Notes:
svn path=/head/; revision=363322
Diffstat (limited to 'print/transfig/files/patch-fig2dev_Imakefile')
-rw-r--r-- | print/transfig/files/patch-fig2dev_Imakefile | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/print/transfig/files/patch-fig2dev_Imakefile b/print/transfig/files/patch-fig2dev_Imakefile new file mode 100644 index 000000000000..b9f1a4acbdc7 --- /dev/null +++ b/print/transfig/files/patch-fig2dev_Imakefile @@ -0,0 +1,71 @@ +--- fig2dev/Imakefile.orig Thu Oct 27 09:56:02 2005 ++++ fig2dev/Imakefile +@@ -34,7 +34,7 @@ + XCOMM You should point XFIGLIBDIR to the same directory you did when you compiled + XCOMM and installed xfig. + +-XFIGLIBDIR = /usr/local/lib/X11/xfig ++XFIGLIBDIR = $(LIBDIR)/xfig + + XCOMM ****** + XCOMM If your system doesn't have the strerror() function (has sys_errlist) then +@@ -53,7 +53,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 +@@ -74,9 +74,9 @@ + XCOMM file are in different places + + #ifdef USEPNG +-PNGLIBDIR = $(USRLIBDIR) ++PNGLIBDIR = ${LOCALBASE}/lib + ZLIBDIR = $(USRLIBDIR) +-PNGINC = -I/usr/include/X11 ++PNGINC = -I${LOCALBASE}/include/libpng + #endif + + XCOMM **************** +@@ -92,7 +92,7 @@ + + #ifdef USEXPM + XPMLIBDIR = $(USRLIBDIR) +-XPMINC = -I/usr/include/X11 ++XPMINC = -I$(INCDIR)/X11 + #endif + + XCOMM **************** +@@ -141,7 +141,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) -DFIG2DEV_LIBDIR_STR=\\\"$(FIG2DEV_LIBDIR)\\\" + + #endif /* I18N */ +@@ -188,11 +188,7 @@ + INCLUDES = -I.. + + LOCAL_LIBRARIES = $(LIBTRANSFIG) +-#if defined(NetBSDArchitecture) || defined(FreeBSDArchitecture) +-SYS_LIBRARIES = $(PNGLIBS) $(XPMLIBS) -lm -lcompat +-#else + SYS_LIBRARIES = $(PNGLIBS) $(XPMLIBS) -lm +-#endif + DEPLIBS = $(LIBTRANSFIG) + + #if !(defined(SunOSPlatform) && (OSMajorVersion>=5)) +@@ -229,7 +225,7 @@ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(XFIGLIBDIR)/bitmaps ); fi ; \ + echo Copying bitmap files for tk to $(DESTDIR)$(XFIGLIBDIR)/bitmaps ; \ + for f in * ; do \ +- $(INSTALL) -c $$f $(DESTDIR)$(XFIGLIBDIR)/bitmaps ; \ ++ $(INSTALL) $(INSTALLFLAGS) $(INSTDATFLAGS) $$f $(DESTDIR)$(XFIGLIBDIR)/bitmaps ; \ + done) ; + + install.all:: |