summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-05-06 04:02:25 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-05-06 04:02:25 +0000
commit2b5c59d4c962c6d3cb8491ebda99b6514c1df808 (patch)
tree089e822f741bc6e4bb0acfc024f8061082e6e0d7 /graphics
parentAs announced on 27 March 2003 in <20030328052350.GA18971@rot13.obsecurity.org>, (diff)
This port depended on PDL-2.3.4 which was removed for being broken for an
extended period, so remove it as well.
Notes
Notes: svn path=/head/; revision=80203
Diffstat (limited to 'graphics')
-rw-r--r--graphics/p5-Gimp/Makefile51
-rw-r--r--graphics/p5-Gimp/distinfo1
-rw-r--r--graphics/p5-Gimp/files/patch-Gimp.pm57
-rw-r--r--graphics/p5-Gimp/files/patch-Gimp::Lib.xs13
-rw-r--r--graphics/p5-Gimp/files/patch-Gimp::Makefile.PL11
-rw-r--r--graphics/p5-Gimp/files/patch-Makefile.PL11
-rw-r--r--graphics/p5-Gimp/files/patch-Net_Makefile.PL11
-rw-r--r--graphics/p5-Gimp/files/patch-config.pl.in10
-rw-r--r--graphics/p5-Gimp/pkg-descr3
-rw-r--r--graphics/p5-Gimp/pkg-plist82
10 files changed, 0 insertions, 250 deletions
diff --git a/graphics/p5-Gimp/Makefile b/graphics/p5-Gimp/Makefile
deleted file mode 100644
index d32162f8a5f0..000000000000
--- a/graphics/p5-Gimp/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# New ports collection makefile for: p5-Gimp
-# Date created: Dec 22 2000
-# Whom: vanilla@FreeBSD.org
-#
-# $FreeBSD$
-#
-
-PORTNAME= Gimp
-PORTVERSION= 1.211
-PORTREVISION= 2
-CATEGORIES= graphics perl5
-MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
-MASTER_SITE_SUBDIR= Gimp
-PKGNAMEPREFIX= p5-
-
-MAINTAINER= vanilla@FreeBSD.org
-COMMENT= A perl5 module for writing Gimp extension
-
-BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Gtk.pm:${PORTSDIR}/x11-toolkits/p5-Gtk \
- ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/PDL.pm:${PORTSDIR}/math/PDL \
- ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Parse/RecDescent.pm:${PORTSDIR}/devel/p5-Parse-RecDescent
-LIB_DEPENDS= gimp.2:${PORTSDIR}/graphics/gimp1
-RUN_DEPENDS= ${BUILD_DEPENDS}
-
-USE_GNOME= gtk12
-USE_PERL5= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -lintl"
-
-MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
-MAN1= embedxpm.1 \
- scm2perl.1 \
- scm2scm.1 \
- xcftopnm.1
-MAN3= Gimp.3 \
- Gimp::Compat.3 \
- Gimp::Data.3 \
- Gimp::Feature.3 \
- Gimp::Fu.3 \
- Gimp::Lib.3 \
- Gimp::Module.3 \
- Gimp::Net.3 \
- Gimp::OO.3 \
- Gimp::PDL.3 \
- Gimp::Pixel.3 \
- Gimp::Pod.3 \
- Gimp::UI.3 \
- Gimp::Util.3 \
- Gimp::basewidget.3
-
-.include <bsd.port.mk>
diff --git a/graphics/p5-Gimp/distinfo b/graphics/p5-Gimp/distinfo
deleted file mode 100644
index 39980d16792d..000000000000
--- a/graphics/p5-Gimp/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (Gimp-1.211.tar.gz) = e3bb65da0bc92a4e42b2257cf2adcaba
diff --git a/graphics/p5-Gimp/files/patch-Gimp.pm b/graphics/p5-Gimp/files/patch-Gimp.pm
deleted file mode 100644
index 6b801ff63f09..000000000000
--- a/graphics/p5-Gimp/files/patch-Gimp.pm
+++ /dev/null
@@ -1,57 +0,0 @@
---- Gimp.pm.orig Sat Dec 1 07:35:04 2001
-+++ Gimp.pm Wed Apr 17 10:00:58 2002
-@@ -200,6 +200,7 @@
- if ($gtk_init) {
- require Gtk;
-+ Gtk->set_locale;
- Gtk->init;
- Gtk::Rc->parse (Gimp->gtkrc);
- Gtk::Gdk->set_use_xshm (Gimp->use_xshm);
- Gtk::Preview->set_gamma (Gimp->gamma);
-@@ -392,6 +393,7 @@
- sub callback {
- my $type = shift;
- my @cb;
-+ my @res;
- if ($type eq "-run") {
- local $function = shift;
- local $in_run = 1;
-@@ -405,9 +407,7 @@
- );
- }
- die_msg __"required callback 'run' not found\n" unless @cb;
-- my @res;
- for (@cb) { @res = &$_ }
-- return wantarray ? @res : $res[0];
- } elsif ($type eq "-net") {
- local $in_net = 1;
- _initialized_callback;
-@@ -420,7 +420,7 @@
- );
- }
- die_msg __"required callback 'net' not found\n" unless @cb;
-- for (@cb) { &$_ }
-+ for (@cb) { @res = &$_ }
- } elsif ($type eq "-query") {
- local $in_query = 1;
- _initialized_callback;
-@@ -431,7 +431,7 @@
- );
- }
- die_msg __"required callback 'query' not found\n" unless @cb;
-- for (@cb) { &$_ }
-+ for (@cb) { @res = &$_ }
- } elsif ($type eq "-quit") {
- local $in_quit = 1;
- {
-@@ -440,8 +440,9 @@
- @{$callback{quiet}},
- );
- }
-- for (@cb) { &$_ }
-+ for (@cb) { @res = &$_ }
- }
-+ return (wantarray) ? @res : $res[0];
- }
-
- sub register_callback($$) {
diff --git a/graphics/p5-Gimp/files/patch-Gimp::Lib.xs b/graphics/p5-Gimp/files/patch-Gimp::Lib.xs
deleted file mode 100644
index c7298a39d8d2..000000000000
--- a/graphics/p5-Gimp/files/patch-Gimp::Lib.xs
+++ /dev/null
@@ -1,13 +0,0 @@
---- Gimp/Lib.xs.orig Thu Apr 11 17:46:42 2002
-+++ Gimp/Lib.xs Thu Apr 11 17:47:51 2002
-@@ -968,6 +968,10 @@
- {
- arg->data.d_image = unbless(sv, PKG_IMAGE , croak_str); break;
- }
-+ else if (sv_derived_from (sv, PKG_IMAGE) || SvROK(sv))
-+ {
-+ arg->data.d_image = unbless(SvRV(sv), PKG_IMAGE , croak_str); break;
-+ }
- else
- strcpy (croak_str, __("argument incompatible with type IMAGE"));
-
diff --git a/graphics/p5-Gimp/files/patch-Gimp::Makefile.PL b/graphics/p5-Gimp/files/patch-Gimp::Makefile.PL
deleted file mode 100644
index dc862be8e4c1..000000000000
--- a/graphics/p5-Gimp/files/patch-Gimp::Makefile.PL
+++ /dev/null
@@ -1,11 +0,0 @@
---- Gimp/Makefile.PL.orig Thu Apr 11 17:54:39 2002
-+++ Gimp/Makefile.PL Thu Apr 11 17:54:56 2002
-@@ -33,7 +33,7 @@
- WriteMakefile(
- 'NAME' => 'Gimp::Lib',
- 'VERSION_FROM' => '../Gimp.pm',
-- 'INC' => "$INC1 $GIMP_INC_NOUI $CPPFLAGS $pdl_inc $CFLAGS",
-+ 'INC' => "$INC1 $GIMP_INC_NOUI $CPPFLAGS $pdl_inc $CFLAGS -I/usr/local/include",
- 'DEFINE' => "$DEFINE1 $DEFS",
- 'macro' => { libdir => $libdir, exec_prefix => $exec_prefix, prefix => $prefix },
- 'TYPEMAPS' => ["$topdir/typemap",@pdl_typemaps],
diff --git a/graphics/p5-Gimp/files/patch-Makefile.PL b/graphics/p5-Gimp/files/patch-Makefile.PL
deleted file mode 100644
index 1016031a8554..000000000000
--- a/graphics/p5-Gimp/files/patch-Makefile.PL
+++ /dev/null
@@ -1,11 +0,0 @@
---- Makefile.PL.orig Sat Dec 1 07:02:29 2001
-+++ Makefile.PL Thu Apr 11 17:52:04 2002
-@@ -333,7 +333,7 @@
- 'Gimp/Config.pm' => '$(INST_LIBDIR)/Gimp/Config.pm',
- },
- 'LDFROM' => expand("\$(OBJECT) $LIBS $INTLLIBS"),
-- 'INC' => "$INC1 $GIMP_INC_NOUI $CPPFLAGS $CFLAGS",
-+ 'INC' => "$INC1 $GIMP_INC_NOUI $CPPFLAGS $CFLAGS -I/usr/local/include",
- 'DEFINE' => "$DEFINE1 $DEFS",
- 'EXE_FILES' => \@EXE_FILES,
- 'macro' => \%cfg,
diff --git a/graphics/p5-Gimp/files/patch-Net_Makefile.PL b/graphics/p5-Gimp/files/patch-Net_Makefile.PL
deleted file mode 100644
index 2216585c5889..000000000000
--- a/graphics/p5-Gimp/files/patch-Net_Makefile.PL
+++ /dev/null
@@ -1,11 +0,0 @@
---- Net/Makefile.PL.orig Fri Dec 22 07:12:42 2000
-+++ Net/Makefile.PL Fri Dec 22 07:20:48 2000
-@@ -15,7 +15,7 @@
- 'NAME' => 'Gimp::Net',
- 'VERSION_FROM' => '../Gimp.pm',
- #'INC' => "$INC1 $CPPFLAGS $pdl_inc $cfg{GLIB_CFLAGS} $CFLAGS",
-- 'INC' => "$INC1 $CPPFLAGS $pdl_inc $CFLAGS",
-+ 'INC' => "$INC1 $CPPFLAGS $pdl_inc $CFLAGS -I/usr/local/include",
- 'DEFINE' => "$DEFINE1 $DEFS",
- 'TYPEMAPS' => ["$topdir/typemap",@pdl_typemaps],
- #dynamic_lib => { OTHERLDFLAGS => "$LDFLAGS $LIBS $cfg{GLIB_LIBS}" },
diff --git a/graphics/p5-Gimp/files/patch-config.pl.in b/graphics/p5-Gimp/files/patch-config.pl.in
deleted file mode 100644
index 23673a175704..000000000000
--- a/graphics/p5-Gimp/files/patch-config.pl.in
+++ /dev/null
@@ -1,10 +0,0 @@
---- config.pl.in.orig Fri Dec 22 07:18:01 2000
-+++ config.pl.in Fri Dec 22 07:18:29 2000
-@@ -92,7 +92,7 @@
- $GIMP_LIBS_NOUI =~ s%\$topdir%$topdir%g;
-
- # $...1 variables should be put in front of the corresponding MakeMaker values.
--$INC1 = "-I$topdir";
-+$INC1 = "-I$topdir -I\$(PERL_INC)";
- $DEFINE1 = $IN_GIMP ? "-DIN_GIMP" : "";
- $DEFINE1 = " -Ddatadir=\"\\\"".expand($datadir)."\\\"\"";
diff --git a/graphics/p5-Gimp/pkg-descr b/graphics/p5-Gimp/pkg-descr
deleted file mode 100644
index 84bd5b8269bc..000000000000
--- a/graphics/p5-Gimp/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-Gimp - Perl extension for writing Gimp Extension/Plug-ins/Load & Save-Handlers.
-
-WWW: http://www.goof.com/pcg/marc/gimp.html
diff --git a/graphics/p5-Gimp/pkg-plist b/graphics/p5-Gimp/pkg-plist
deleted file mode 100644
index 1c085df05e10..000000000000
--- a/graphics/p5-Gimp/pkg-plist
+++ /dev/null
@@ -1,82 +0,0 @@
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Compat.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Config.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Data.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Feature.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Fu.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Lib.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Module.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Net.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/OO.pod
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/PDL.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Pixel.pod
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Pod.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/UI.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/Util.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp/basewidget.pm
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/.packlist
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/Gimp.bs
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/Gimp.so
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/Lib/Lib.bs
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/Lib/Lib.so
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/Net/Net.bs
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/Net/Net.so
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/UI/UI.bs
-lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/UI/UI.so
-@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/UI
-@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/Net
-@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp/Lib
-@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Gimp
-@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/Gimp
-@cwd %%X11BASE%%
-libexec/gimp/1.2/plug-ins/PDB
-libexec/gimp/1.2/plug-ins/Perl-Server
-libexec/gimp/1.2/plug-ins/animate_cells
-libexec/gimp/1.2/plug-ins/avi
-libexec/gimp/1.2/plug-ins/blended2
-libexec/gimp/1.2/plug-ins/blowinout
-libexec/gimp/1.2/plug-ins/bricks
-libexec/gimp/1.2/plug-ins/burst
-libexec/gimp/1.2/plug-ins/centerguide
-libexec/gimp/1.2/plug-ins/colorhtml
-libexec/gimp/1.2/plug-ins/dataurl
-libexec/gimp/1.2/plug-ins/ditherize
-libexec/gimp/1.2/plug-ins/dust
-libexec/gimp/1.2/plug-ins/fade-alpha
-libexec/gimp/1.2/plug-ins/fit-text
-libexec/gimp/1.2/plug-ins/font_table
-libexec/gimp/1.2/plug-ins/frame_filter
-libexec/gimp/1.2/plug-ins/frame_reshuffle
-libexec/gimp/1.2/plug-ins/glowing_steel
-libexec/gimp/1.2/plug-ins/goldenmean
-libexec/gimp/1.2/plug-ins/guide_remove
-libexec/gimp/1.2/plug-ins/guidegrid
-libexec/gimp/1.2/plug-ins/guides_to_selection
-libexec/gimp/1.2/plug-ins/image_tile
-libexec/gimp/1.2/plug-ins/innerbevel
-libexec/gimp/1.2/plug-ins/layerfuncs
-libexec/gimp/1.2/plug-ins/logulator
-libexec/gimp/1.2/plug-ins/miff
-libexec/gimp/1.2/plug-ins/mirrorsplit
-libexec/gimp/1.2/plug-ins/parasite-editor
-libexec/gimp/1.2/plug-ins/perlcc
-libexec/gimp/1.2/plug-ins/perlotine
-libexec/gimp/1.2/plug-ins/prep4gif
-libexec/gimp/1.2/plug-ins/randomart1
-libexec/gimp/1.2/plug-ins/randomblends
-libexec/gimp/1.2/plug-ins/repdup
-libexec/gimp/1.2/plug-ins/roundsel
-libexec/gimp/1.2/plug-ins/scratches
-libexec/gimp/1.2/plug-ins/sethspin
-libexec/gimp/1.2/plug-ins/stampify
-libexec/gimp/1.2/plug-ins/stamps
-libexec/gimp/1.2/plug-ins/terral_text
-libexec/gimp/1.2/plug-ins/tex-to-float
-libexec/gimp/1.2/plug-ins/translogo
-libexec/gimp/1.2/plug-ins/warp-sharp
-libexec/gimp/1.2/plug-ins/webify
-libexec/gimp/1.2/plug-ins/windify
-libexec/gimp/1.2/plug-ins/xachlego
-libexec/gimp/1.2/plug-ins/xachshadow
-libexec/gimp/1.2/plug-ins/xachvision
-libexec/gimp/1.2/plug-ins/yinyang