aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/p5-Imager
diff options
context:
space:
mode:
authorlbr <lbr@FreeBSD.org>2006-07-25 23:11:29 +0800
committerlbr <lbr@FreeBSD.org>2006-07-25 23:11:29 +0800
commit6dc6b635408f663f48a80e920ee4a5c5b39ae495 (patch)
treefed4c942b4662e947a98079fff979724d1a8e466 /graphics/p5-Imager
parent0c446eb3605be6aceb470d72feac889e1af638b0 (diff)
downloadfreebsd-ports-gnome-6dc6b635408f663f48a80e920ee4a5c5b39ae495.tar.gz
freebsd-ports-gnome-6dc6b635408f663f48a80e920ee4a5c5b39ae495.tar.zst
freebsd-ports-gnome-6dc6b635408f663f48a80e920ee4a5c5b39ae495.zip
Get rid of patch that's no longer needed (the env-var that has the same function
has been around for ages).
Diffstat (limited to 'graphics/p5-Imager')
-rw-r--r--graphics/p5-Imager/Makefile6
-rw-r--r--graphics/p5-Imager/files/patch-Makefile.PL34
2 files changed, 3 insertions, 37 deletions
diff --git a/graphics/p5-Imager/Makefile b/graphics/p5-Imager/Makefile
index 67f76dda49f2..bc0ac51ab9ef 100644
--- a/graphics/p5-Imager/Makefile
+++ b/graphics/p5-Imager/Makefile
@@ -9,8 +9,7 @@
PORTNAME= Imager
PORTVERSION= 0.52
CATEGORIES= graphics perl5
-MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \
- http://www.eecs.umich.edu/~addi/perl/%SUBDIR%/
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= p5-
@@ -28,7 +27,8 @@ USE_FREETYPE= yes
PERL_CONFIGURE= yes
CONFIGURE_ENV= IM_LIBPATH="${LOCALBASE}/lib" \
IM_CFLAGS="${CFLAGS}" \
- IM_INCPATH="${LOCALBASE}/include/freetype1/freetype"
+ IM_INCPATH="${LOCALBASE}/include/freetype1/freetype" \
+ IM_SUPPRESS_PROMPT=1
.include "Makefile.man"
diff --git a/graphics/p5-Imager/files/patch-Makefile.PL b/graphics/p5-Imager/files/patch-Makefile.PL
deleted file mode 100644
index 7e9bed336b4d..000000000000
--- a/graphics/p5-Imager/files/patch-Makefile.PL
+++ /dev/null
@@ -1,34 +0,0 @@
---- Makefile.PL.old Tue Jul 25 11:25:29 2006
-+++ Makefile.PL Tue Jul 25 11:26:39 2006
-@@ -259,31 +259,6 @@
- }
-
- RETR:
-- if (($formats{'gif'} or $formats{'ungif'}) && !$ENV{IM_SUPPRESS_PROMPT}) {
-- my $msg = <<EOFF;
--
--You have libgif or libungif installed. They are both known to have
--bugs. Imager can crash or display other strange behaviour after
--reading or writing gif images. Some of the gif tests can fail since
--they stress some parts of the buggy code.
--
--libungif or libgif 4.1.4 and later is safe.
--
--Of course it's possible your operating system distributor has patched
--all of these problems and you have nothing to worry about.
--
--Do you want to remove gif support? [Y/n]
--EOFF
-- chomp $msg;
-- my $resp = prompt($msg);
-- chomp($resp);
-- if ($resp ne "n") {
-- delete $formats{'gif'};
-- delete $formats{'ungif'};
-- return;
-- }
-- }
--
- for my $frm (qw(gif ungif)) {
- checkformat($frm) if ($MANUAL and $formats{$frm});
- }