diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-05-10 09:34:24 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2001-05-10 09:34:24 +0000 |
commit | bb0ddae5301f1e47433ba3e54e3fcb093b6df555 (patch) | |
tree | 7cd1f6c10a63276db0bd40bd6799a06805c8e3d2 /graphics/p5-GD2 | |
parent | e3ee5d116d124e7b0983d154192247f15761be20 (diff) | |
download | ports-bb0ddae5301f1e47433ba3e54e3fcb093b6df555.tar.gz ports-bb0ddae5301f1e47433ba3e54e3fcb093b6df555.zip |
Notes
Diffstat (limited to 'graphics/p5-GD2')
-rw-r--r-- | graphics/p5-GD2/Makefile | 3 | ||||
-rw-r--r-- | graphics/p5-GD2/distinfo | 2 | ||||
-rw-r--r-- | graphics/p5-GD2/files/patch-aa | 10 |
3 files changed, 7 insertions, 8 deletions
diff --git a/graphics/p5-GD2/Makefile b/graphics/p5-GD2/Makefile index 838e75add638..0fc5849ca2a1 100644 --- a/graphics/p5-GD2/Makefile +++ b/graphics/p5-GD2/Makefile @@ -6,8 +6,7 @@ # PORTNAME= GD -PORTVERSION= 1.32 -PORTREVISION= 2 +PORTVERSION= 1.33 CATEGORIES= graphics perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= GD diff --git a/graphics/p5-GD2/distinfo b/graphics/p5-GD2/distinfo index 3e4cd918d1b1..9c31fafdc662 100644 --- a/graphics/p5-GD2/distinfo +++ b/graphics/p5-GD2/distinfo @@ -1 +1 @@ -MD5 (GD-1.32.tar.gz) = 1fa982def11e42809ef3b802e38a5eb8 +MD5 (GD-1.33.tar.gz) = 48d9f13b2652a56a08a02ea5ed1aadf6 diff --git a/graphics/p5-GD2/files/patch-aa b/graphics/p5-GD2/files/patch-aa index 6d9f7676f3ab..5a406c8e41d6 100644 --- a/graphics/p5-GD2/files/patch-aa +++ b/graphics/p5-GD2/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.PL.orig Fri Jun 23 11:31:50 2000 -+++ Makefile.PL Thu Nov 9 13:38:26 2000 +--- Makefile.PL.orig Sat Aug 5 04:59:22 2000 ++++ Makefile.PL Thu May 10 06:36:36 2001 @@ -3,38 +3,17 @@ warn "NOTICE: This module requires libgd 1.8.3 or higher (shared library version 4.X).\n"; @@ -15,8 +15,8 @@ -my $TTF = lc prompt('Build FreeType support?','y') eq 'y'; -my $XPM = $^O !~ /^freebsd|MSWin32$/ && lc prompt('Build XPM support?','y') eq 'y'; +my @INC = qw(-I/usr/local/include -I/usr/local/include/gd -I/usr/local/include/freetype -I/usr/X11R6/include -I/usr/X11R6/include/X11); -+my @LIBPATH = qw(-L/usr/X11R6/lib -L/usr/local/lib ); -+my @LIBS = qw(-lttf -ljpeg -lgd -lpng -lz); ++my @LIBPATH = qw(-L/usr/local/lib -L/usr/X11R6/lib); ++my @LIBS = qw(-lfreetype -ljpeg -lgd -lpng -lz); my $FCGI = 0; # set to 1 to build compatability with fastCGI @@ -40,7 +40,7 @@ -$DEFINES .= ' -DHAVE_JPEG' if $JPEG; -$DEFINES .= ' -DHAVE_TTF' if $TTF; -$DEFINES .= ' -DHAVE_XPM' if $XPM; -+my $DEFINES = '-DHAVE_JPEG -DHAVE_TTF'; ++my $DEFINES = '-DHAVE_JPEG -DHAVE_FREETYPE'; +$DEFINES .= ' -DHAVE_XPM' unless $^O eq 'MSWin32'; $DEFINES .= ' -DFCGI' if $FCGI; |