diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-03 17:40:13 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-03 17:40:13 +0800 |
commit | 55cfde60d699b35fe2b602ce7551054a331c1f95 (patch) | |
tree | 8f841cbee5f5b9039b07e6a951f80bc24f409bcb /graphics | |
parent | a1e9007037a023ab82260ac22469a38d0e3e2aff (diff) | |
download | freebsd-ports-gnome-55cfde60d699b35fe2b602ce7551054a331c1f95.tar.gz freebsd-ports-gnome-55cfde60d699b35fe2b602ce7551054a331c1f95.tar.zst freebsd-ports-gnome-55cfde60d699b35fe2b602ce7551054a331c1f95.zip |
Fix $ENV{} in the patchfile
Submitted by: Matthew Seaman <m.seaman@infracaninophile.co.uk>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/p5-GD2/files/patch-aa | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/graphics/p5-GD2/files/patch-aa b/graphics/p5-GD2/files/patch-aa index 171d206d9af1..ae19b62cd722 100644 --- a/graphics/p5-GD2/files/patch-aa +++ b/graphics/p5-GD2/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.PL.orig Wed Nov 27 16:29:57 2002 -+++ Makefile.PL Tue Mar 11 01:17:10 2003 +--- Makefile.PL.orig Wed Nov 27 08:29:57 2002 ++++ Makefile.PL Thu Apr 3 01:35:53 2003 @@ -6,46 +6,23 @@ @@ -28,8 +28,8 @@ - @LIBPATH = qw(-Lpubbin); - @LIBS = qw(-llibgd.olb -llibpng.olb -llibz.olb); -} -+my @INC = qw(-I$ENV{LOCALBASE}/include -I$ENV{LOCALBASE}/include/freetype2 -I$ENV{X11BASE}/include -I$ENV{X11BASE}/include/X11); -+my @LIBPATH = qw(-L$ENV{LOCALBASE}/lib -L$ENV{X11BASE}/lib); ++my @INC = qw(-I${LOCALBASE}/include -I${LOCALBASE}/include/freetype2 -I${X11BASE}/include -I${X11BASE}/include/X11); ++my @LIBPATH = qw(-L${LOCALBASE}/lib -L${X11BASE}/lib); +my @LIBS = qw(-lfreetype -ljpeg -lgd -lpng -lz); # path to libgd @@ -75,5 +75,3 @@ $DEFINES .= ' -DFCGI' if $FCGI; WriteMakefile( - - |