diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1995-02-28 08:44:12 +0800 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1995-02-28 08:44:12 +0800 |
commit | 169b5ef3135298828a606cddfa9b03421cf090db (patch) | |
tree | d0eedc18b4acb32df5d41b01709627389f8c7c78 /graphics | |
parent | 26ad8fd6038a54f2d5e5af22e32811884ce804a8 (diff) | |
download | freebsd-ports-gnome-169b5ef3135298828a606cddfa9b03421cf090db.tar.gz freebsd-ports-gnome-169b5ef3135298828a606cddfa9b03421cf090db.tar.zst freebsd-ports-gnome-169b5ef3135298828a606cddfa9b03421cf090db.zip |
Patch to Imakefile.
(1) Add sed command to take out "Pixmap" from beginning of lines in
app-defaults file.
(2) Change /net/koala/... to $(INCDIR), etc. This was causing a very
strange effect on my machine because (a) my amd is sitting on /net with
a "hosts" map, and (b) there is a machine called "koala" on the net! ;)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/pixmap/files/patch-ac | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/graphics/pixmap/files/patch-ac b/graphics/pixmap/files/patch-ac new file mode 100644 index 000000000000..668e0e153051 --- /dev/null +++ b/graphics/pixmap/files/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) |