Upgrade to 1.38.

PR:		37365
Submitted by:	Kimura Fuyuki <fuyuki@mj.0038.net>

Drop maintainership.
This commit is contained in:
Dmitry Sivachenko 2002-04-30 19:44:34 +00:00
parent d51df2d2c5
commit 9a4229b4e8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=58376
12 changed files with 30 additions and 57 deletions

View file

@ -6,13 +6,13 @@
#
PORTNAME= GD
PORTVERSION= 1.33
PORTVERSION= 1.38
CATEGORIES= graphics perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= GD
PKGNAMEPREFIX= p5-
MAINTAINER= demon@FreeBSD.org
MAINTAINER= ports@FreeBSD.org
LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd

View file

@ -1 +1 @@
MD5 (GD-1.33.tar.gz) = 48d9f13b2652a56a08a02ea5ed1aadf6
MD5 (GD-1.38.tar.gz) = 89e238d9c9a3113a1b89e005921cd5c3

View file

@ -1,7 +1,7 @@
--- 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";
@@ -3,40 +3,17 @@
warn "NOTICE: This module requires libgd 1.8.4 or higher (shared library version 4.X).\n";
# =====> PATHS: CHECK AND ADJUST <=====
-my @INC = qw(-I/usr/local/include -I/usr/local/include/gd);
@ -14,6 +14,7 @@
-my $JPEG = lc prompt('Build JPEG support?','y') eq 'y';
-my $TTF = lc prompt('Build FreeType support?','y') eq 'y';
-my $XPM = $^O !~ /^freebsd|MSWin32$/ && lc prompt('Build XPM support?','y') eq 'y';
-my $GIF = lc prompt('Build GIF support (for patched versions of gd)?','n') 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/local/lib -L/usr/X11R6/lib);
+my @LIBS = qw(-lfreetype -ljpeg -lgd -lpng -lz);
@ -25,7 +26,7 @@
-
-#### no user-serviceable parts below #####
-
-push @LIBS,'-lttf' if $TTF;
-push @LIBS,'-lfreetype' if $TTF;
-push @LIBS,'-ljpeg' if $JPEG;
-push @LIBS,'-lm' unless $^O eq 'MSWin32';
-
@ -40,7 +41,8 @@
-$DEFINES .= ' -DHAVE_JPEG' if $JPEG;
-$DEFINES .= ' -DHAVE_TTF' if $TTF;
-$DEFINES .= ' -DHAVE_XPM' if $XPM;
+my $DEFINES = '-DHAVE_JPEG -DHAVE_FREETYPE';
-$DEFINES .= ' -DHAVE_GIF' if $GIF;
+my $DEFINES = '-DHAVE_JPEG -DHAVE_TTF';
+$DEFINES .= ' -DHAVE_XPM' unless $^O eq 'MSWin32';
$DEFINES .= ' -DFCGI' if $FCGI;

View file

@ -1,11 +0,0 @@
--- GD.xs.orig Thu Aug 24 18:41:47 2000
+++ GD.xs Mon Mar 19 12:45:05 2001
@@ -1278,7 +1278,7 @@
img = NULL;
}
- err = gdImageStringTTF(img,brect,fgcolor,fontname,ptsize,angle,x,y,string);
+ err = gdImageStringFT(img,brect,fgcolor,fontname,ptsize,angle,x,y,string);
if (err) {
errormsg = perl_get_sv("@",0);
if (errormsg != NULL)

View file

@ -6,13 +6,13 @@
#
PORTNAME= GD
PORTVERSION= 1.33
PORTVERSION= 1.38
CATEGORIES= graphics perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= GD
PKGNAMEPREFIX= p5-
MAINTAINER= demon@FreeBSD.org
MAINTAINER= ports@FreeBSD.org
LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd

View file

@ -1 +1 @@
MD5 (GD-1.33.tar.gz) = 48d9f13b2652a56a08a02ea5ed1aadf6
MD5 (GD-1.38.tar.gz) = 89e238d9c9a3113a1b89e005921cd5c3

View file

@ -1,7 +1,7 @@
--- 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";
@@ -3,40 +3,17 @@
warn "NOTICE: This module requires libgd 1.8.4 or higher (shared library version 4.X).\n";
# =====> PATHS: CHECK AND ADJUST <=====
-my @INC = qw(-I/usr/local/include -I/usr/local/include/gd);
@ -14,6 +14,7 @@
-my $JPEG = lc prompt('Build JPEG support?','y') eq 'y';
-my $TTF = lc prompt('Build FreeType support?','y') eq 'y';
-my $XPM = $^O !~ /^freebsd|MSWin32$/ && lc prompt('Build XPM support?','y') eq 'y';
-my $GIF = lc prompt('Build GIF support (for patched versions of gd)?','n') 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/local/lib -L/usr/X11R6/lib);
+my @LIBS = qw(-lfreetype -ljpeg -lgd -lpng -lz);
@ -25,7 +26,7 @@
-
-#### no user-serviceable parts below #####
-
-push @LIBS,'-lttf' if $TTF;
-push @LIBS,'-lfreetype' if $TTF;
-push @LIBS,'-ljpeg' if $JPEG;
-push @LIBS,'-lm' unless $^O eq 'MSWin32';
-
@ -40,7 +41,8 @@
-$DEFINES .= ' -DHAVE_JPEG' if $JPEG;
-$DEFINES .= ' -DHAVE_TTF' if $TTF;
-$DEFINES .= ' -DHAVE_XPM' if $XPM;
+my $DEFINES = '-DHAVE_JPEG -DHAVE_FREETYPE';
-$DEFINES .= ' -DHAVE_GIF' if $GIF;
+my $DEFINES = '-DHAVE_JPEG -DHAVE_TTF';
+$DEFINES .= ' -DHAVE_XPM' unless $^O eq 'MSWin32';
$DEFINES .= ' -DFCGI' if $FCGI;

View file

@ -1,11 +0,0 @@
--- GD.xs.orig Thu Aug 24 18:41:47 2000
+++ GD.xs Mon Mar 19 12:45:05 2001
@@ -1278,7 +1278,7 @@
img = NULL;
}
- err = gdImageStringTTF(img,brect,fgcolor,fontname,ptsize,angle,x,y,string);
+ err = gdImageStringFT(img,brect,fgcolor,fontname,ptsize,angle,x,y,string);
if (err) {
errormsg = perl_get_sv("@",0);
if (errormsg != NULL)

View file

@ -6,13 +6,13 @@
#
PORTNAME= GD
PORTVERSION= 1.33
PORTVERSION= 1.38
CATEGORIES= graphics perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= GD
PKGNAMEPREFIX= p5-
MAINTAINER= demon@FreeBSD.org
MAINTAINER= ports@FreeBSD.org
LIB_DEPENDS= gd.2:${PORTSDIR}/graphics/gd

View file

@ -1 +1 @@
MD5 (GD-1.33.tar.gz) = 48d9f13b2652a56a08a02ea5ed1aadf6
MD5 (GD-1.38.tar.gz) = 89e238d9c9a3113a1b89e005921cd5c3

View file

@ -1,7 +1,7 @@
--- 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";
@@ -3,40 +3,17 @@
warn "NOTICE: This module requires libgd 1.8.4 or higher (shared library version 4.X).\n";
# =====> PATHS: CHECK AND ADJUST <=====
-my @INC = qw(-I/usr/local/include -I/usr/local/include/gd);
@ -14,6 +14,7 @@
-my $JPEG = lc prompt('Build JPEG support?','y') eq 'y';
-my $TTF = lc prompt('Build FreeType support?','y') eq 'y';
-my $XPM = $^O !~ /^freebsd|MSWin32$/ && lc prompt('Build XPM support?','y') eq 'y';
-my $GIF = lc prompt('Build GIF support (for patched versions of gd)?','n') 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/local/lib -L/usr/X11R6/lib);
+my @LIBS = qw(-lfreetype -ljpeg -lgd -lpng -lz);
@ -25,7 +26,7 @@
-
-#### no user-serviceable parts below #####
-
-push @LIBS,'-lttf' if $TTF;
-push @LIBS,'-lfreetype' if $TTF;
-push @LIBS,'-ljpeg' if $JPEG;
-push @LIBS,'-lm' unless $^O eq 'MSWin32';
-
@ -40,7 +41,8 @@
-$DEFINES .= ' -DHAVE_JPEG' if $JPEG;
-$DEFINES .= ' -DHAVE_TTF' if $TTF;
-$DEFINES .= ' -DHAVE_XPM' if $XPM;
+my $DEFINES = '-DHAVE_JPEG -DHAVE_FREETYPE';
-$DEFINES .= ' -DHAVE_GIF' if $GIF;
+my $DEFINES = '-DHAVE_JPEG -DHAVE_TTF';
+$DEFINES .= ' -DHAVE_XPM' unless $^O eq 'MSWin32';
$DEFINES .= ' -DFCGI' if $FCGI;

View file

@ -1,11 +0,0 @@
--- GD.xs.orig Thu Aug 24 18:41:47 2000
+++ GD.xs Mon Mar 19 12:45:05 2001
@@ -1278,7 +1278,7 @@
img = NULL;
}
- err = gdImageStringTTF(img,brect,fgcolor,fontname,ptsize,angle,x,y,string);
+ err = gdImageStringFT(img,brect,fgcolor,fontname,ptsize,angle,x,y,string);
if (err) {
errormsg = perl_get_sv("@",0);
if (errormsg != NULL)