summaryrefslogtreecommitdiff
path: root/graphics/p5-GD
diff options
context:
space:
mode:
authorexplorer <explorer>2003-10-02 04:32:41 +0000
committerexplorer <explorer>2003-10-02 04:32:41 +0000
commit5d8cf6df4c017b1a6b190cf1325ce1046517ac29 (patch)
tree4a396fba27316852b658831ed625726fbf67a68f /graphics/p5-GD
parent917eab677f175c70141924c1fdf61b22d37718fb (diff)
downloadpkgsrc-5d8cf6df4c017b1a6b190cf1325ce1046517ac29.tar.gz
Since libgd requires FreeType2 and JPEG and XPM, we might as well enable them here too. This makes this package act like it did before it was 'upgraded' several months ago.
Diffstat (limited to 'graphics/p5-GD')
-rw-r--r--graphics/p5-GD/Makefile3
-rw-r--r--graphics/p5-GD/distinfo4
-rw-r--r--graphics/p5-GD/patches/patch-aa10
3 files changed, 11 insertions, 6 deletions
diff --git a/graphics/p5-GD/Makefile b/graphics/p5-GD/Makefile
index 43642101f01..dcd187bb89f 100644
--- a/graphics/p5-GD/Makefile
+++ b/graphics/p5-GD/Makefile
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.15 2003/06/23 12:10:12 adam Exp $
+# $NetBSD: Makefile,v 1.16 2003/10/02 04:32:41 explorer Exp $
#
DISTNAME= GD-2.07
PKGNAME= p5-${DISTNAME}
+PKGREVISION= 1
SVR4_PKGNAME= p5bd
CATEGORIES= graphics perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=GD/}
diff --git a/graphics/p5-GD/distinfo b/graphics/p5-GD/distinfo
index 7ef8d5fee8c..adfbf761eb6 100644
--- a/graphics/p5-GD/distinfo
+++ b/graphics/p5-GD/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2003/06/23 12:10:13 adam Exp $
+$NetBSD: distinfo,v 1.5 2003/10/02 04:32:41 explorer Exp $
SHA1 (GD-2.07.tar.gz) = 417161314db6e5c6c3059c4fe38c10f8e531b7fc
Size (GD-2.07.tar.gz) = 153759 bytes
-SHA1 (patch-aa) = 1758791194c853a2eec8052f5f5cb29ca13c5768
+SHA1 (patch-aa) = b637fc462051273c3258c094028409278c0bf8d4
diff --git a/graphics/p5-GD/patches/patch-aa b/graphics/p5-GD/patches/patch-aa
index 5f5e16d3e41..023b92c8260 100644
--- a/graphics/p5-GD/patches/patch-aa
+++ b/graphics/p5-GD/patches/patch-aa
@@ -1,22 +1,26 @@
-$NetBSD: patch-aa,v 1.4 2003/06/23 12:10:15 adam Exp $
+$NetBSD: patch-aa,v 1.5 2003/10/02 04:32:41 explorer Exp $
--- Makefile.PL.orig 2003-04-24 07:05:26.000000000 +0200
+++ Makefile.PL 2003-06-23 13:59:32.000000000 +0200
-@@ -98,7 +99,6 @@
+@@ -98,7 +99,7 @@
if( ! defined($lib_gd_path) )
{
warn "\n";
- $PREFIX = lc prompt('Where is libgd installed?','/usr/lib');
++ $PREFIX = '/usr/pkg/lib';
}
unless ($PREFIX eq '/usr/lib') {
-@@ -122,9 +122,6 @@
+@@ -122,9 +122,9 @@
else
{
warn "\nPlease choose the features that match how libgd was built:\n";
- $JPEG = lc prompt('Build JPEG support?','y') eq 'y';
- $FT = lc prompt('Build FreeType support?','y') eq 'y';
- $XPM = $^O !~ /^freebsd|MSWin32$/ && lc prompt('Build XPM support?','y') eq 'y';
++ $JPEG = 'y';
++ $FT = 'y';
++ $XPM = 'y';
}
##################################################################################################################