summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2009-05-02 12:12:45 +0000
committerTorsten Veller <tove@gentoo.org>2009-05-02 12:12:45 +0000
commitdc9ab68f8ff008308fe6a68c24d862be82490fc8 (patch)
tree913ccb14902367f6562100860db1715f8f461089 /dev-perl/PDL
parentsparc/x86 stable wrt #266555 (diff)
downloadhistorical-dc9ab68f8ff008308fe6a68c24d862be82490fc8.tar.gz
historical-dc9ab68f8ff008308fe6a68c24d862be82490fc8.tar.bz2
historical-dc9ab68f8ff008308fe6a68c24d862be82490fc8.zip
Cleanup
Package-Manager: portage-2.2_rc31/cvs/Linux i686
Diffstat (limited to 'dev-perl/PDL')
-rw-r--r--dev-perl/PDL/ChangeLog6
-rw-r--r--dev-perl/PDL/PDL-2.4.2-r1.ebuild85
-rw-r--r--dev-perl/PDL/PDL-2.4.3.ebuild88
3 files changed, 5 insertions, 174 deletions
diff --git a/dev-perl/PDL/ChangeLog b/dev-perl/PDL/ChangeLog
index 76c6293cf610..47fe9015a98f 100644
--- a/dev-perl/PDL/ChangeLog
+++ b/dev-perl/PDL/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-perl/PDL
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.81 2009/04/21 18:08:03 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.82 2009/05/02 10:58:30 tove Exp $
+
+ 02 May 2009; Torsten Veller <tove@gentoo.org> -PDL-2.4.2-r1.ebuild,
+ -PDL-2.4.3.ebuild:
+ Cleanup
21 Apr 2009; Torsten Veller <tove@gentoo.org> PDL-2.4.4.ebuild:
Fix automagic dependency on fftw. Thanks to SĂ©bastien Fabbro (#266845)
diff --git a/dev-perl/PDL/PDL-2.4.2-r1.ebuild b/dev-perl/PDL/PDL-2.4.2-r1.ebuild
deleted file mode 100644
index 16165b71396f..000000000000
--- a/dev-perl/PDL/PDL-2.4.2-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.2-r1.ebuild,v 1.17 2007/07/10 23:33:28 mr_bones_ Exp $
-
-inherit perl-module eutils multilib
-
-DESCRIPTION="PDL Perl Module"
-HOMEPAGE="http://search.cpan.org/~csoe/"
-SRC_URI="mirror://cpan/authors/id/C/CS/CSOE/${P}.tar.gz"
-
-LICENSE="Artistic as-is"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc sh sparc x86"
-IUSE="opengl badval"
-
-DEPEND=">=sys-libs/ncurses-5.2
- perl-core/Filter
- virtual/perl-File-Spec
- dev-perl/Inline
- >=dev-perl/ExtUtils-F77-1.13
- virtual/perl-Text-Balanced
- opengl? ( virtual/opengl virtual/glu )
- dev-perl/Term-ReadLine-Perl
- >=sys-apps/sed-4"
-
-mydoc="DEPENDENCIES DEVELOPMENT MANIFEST* Release_Notes TODO"
-
-pkg_setup() {
- echo ""
- elog "If you want GSL library support in PDL,"
- elog "you need to emerge sci-libs/gsl first."
- echo ""
- epause 2
-}
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}; epatch ${FILESDIR}/PDL-2.4.2-makemakerfix.patch
- #open gl does not work at the moment
- if ! use opengl ; then
- sed -e "s:WITH_3D => undef:WITH_3D => 0:" \
- ${FILESDIR}/perldl.conf > ${S}/perldl.conf
- fi
-
- if use badval ; then
- sed -i -e "s:WITH_BADVAL => 0:WITH_BADVAL => 1:" \
- ${S}/perldl.conf
- fi
-
- # Unconditional -fPIC for the lib (#55238)
- sed -i -e "s/mycompiler -c -o/mycompiler -fPIC -c -o/" ${S}/Lib/Slatec/Makefile.PL
-}
-
-src_install() {
- perl-module_src_install
- dodir /usr/share/doc/${PF}/html
- eval `perl '-V:version'`
- PERLVERSION=${version}
- eval `perl '-V:archname'`
- ARCHVERSION=${archname}
- mv ${D}/usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/HtmlDocs/PDL \
- ${D}/usr/share/doc/${PF}/html
-
- mydir=${D}/usr/share/doc/${PF}/html/PDL
-
- for i in ${mydir}/* ${mydir}/IO/* ${mydir}/Fit/* ${mydir}/Pod/* ${mydir}/Graphics/*
- do
- dosed ${i/${D}}
- done
- cp ${S}/Doc/scantree.pl ${D}/usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/Doc/
- cp ${S}/Doc/mkhtmldoc.pl ${D}/usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/Doc/
-}
-
-pkg_postinst() {
- perl /usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/Doc/scantree.pl
- elog "Building perldl.db done. You can recreate this at any time"
- elog "by running"
- elog "perl /usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/Doc/scantree.pl"
- epause 3
- elog "PDL requires that glx and dri support be enabled in"
- elog "your X configuration for certain parts of the graphics"
- elog "engine to work. See your X's documentation for futher"
- elog "information."
-}
diff --git a/dev-perl/PDL/PDL-2.4.3.ebuild b/dev-perl/PDL/PDL-2.4.3.ebuild
deleted file mode 100644
index a045df43b6c2..000000000000
--- a/dev-perl/PDL/PDL-2.4.3.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.3.ebuild,v 1.9 2007/07/10 23:33:28 mr_bones_ Exp $
-
-inherit perl-module eutils multilib
-
-DESCRIPTION="PDL Perl Module"
-HOMEPAGE="http://search.cpan.org/~csoe/"
-SRC_URI="mirror://cpan/authors/id/C/CS/CSOE/${P}.tar.gz"
-
-LICENSE="Artistic as-is"
-SLOT="0"
-KEYWORDS="~amd64 arm ~hppa ~ia64 mips ~s390 sh sparc ~x86"
-IUSE="opengl badval"
-
-DEPEND=">=sys-libs/ncurses-5.2
- perl-core/Filter
- virtual/perl-File-Spec
- dev-perl/Inline
- dev-perl/Astro-FITS-Header
- >=dev-perl/ExtUtils-F77-1.13
- virtual/perl-Text-Balanced
- opengl? ( virtual/opengl virtual/glu )
- dev-perl/Term-ReadLine-Perl
- >=sys-apps/sed-4"
-
-mydoc="DEPENDENCIES DEVELOPMENT MANIFEST* Release_Notes TODO"
-
-#SRC_TEST="do"
-
-pkg_setup() {
- echo ""
- elog "If you want GSL library support in PDL,"
- elog "you need to emerge sci-libs/gsl first."
- echo ""
- epause 2
-}
-
-src_unpack() {
- unpack ${A}
-
- cd ${S}; epatch ${FILESDIR}/PDL-2.4.2-makemakerfix.patch
- #open gl does not work at the moment
- if ! use opengl ; then
- sed -e "s:WITH_3D => undef:WITH_3D => 0:" \
- ${FILESDIR}/perldl.conf > ${S}/perldl.conf
- fi
-
- if use badval ; then
- sed -i -e "s:WITH_BADVAL => 0:WITH_BADVAL => 1:" \
- ${S}/perldl.conf
- fi
-
- # Unconditional -fPIC for the lib (#55238)
- sed -i -e "s/mycompiler -c -o/mycompiler -fPIC -c -o/" ${S}/Lib/Slatec/Makefile.PL
-}
-
-src_install() {
- perl-module_src_install
- dodir /usr/share/doc/${PF}/html
- eval `perl '-V:version'`
- PERLVERSION=${version}
- eval `perl '-V:archname'`
- ARCHVERSION=${archname}
- mv ${D}/usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/HtmlDocs/PDL \
- ${D}/usr/share/doc/${PF}/html
-
- mydir=${D}/usr/share/doc/${PF}/html/PDL
-
- for i in ${mydir}/* ${mydir}/IO/* ${mydir}/Fit/* ${mydir}/Pod/* ${mydir}/Graphics/*
- do
- dosed ${i/${D}}
- done
- cp ${S}/Doc/scantree.pl ${D}/usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/Doc/
- cp ${S}/Doc/mkhtmldoc.pl ${D}/usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/Doc/
-}
-
-pkg_postinst() {
- perl /usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/Doc/scantree.pl
- elog "Building perldl.db done. You can recreate this at any time"
- elog "by running"
- elog "perl /usr/$(get_libdir)/perl5/vendor_perl/${PERLVERSION}/${ARCHVERSION}/PDL/Doc/scantree.pl"
- epause 3
- elog "PDL requires that glx and dri support be enabled in"
- elog "your X configuration for certain parts of the graphics"
- elog "engine to work. See your X's documentation for futher"
- elog "information."
-}