summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Veller <tove@gentoo.org>2010-08-23 13:35:23 +0000
committerTorsten Veller <tove@gentoo.org>2010-08-23 13:35:23 +0000
commitfa080be73b0b72472ff1c8e8e6ead8d59d821485 (patch)
tree5a05838856361ea753355639ef17d44d0fb24a31 /dev-perl/PDL
parentClean up old versions. (diff)
downloadgentoo-2-fa080be73b0b72472ff1c8e8e6ead8d59d821485.tar.gz
gentoo-2-fa080be73b0b72472ff1c8e8e6ead8d59d821485.tar.bz2
gentoo-2-fa080be73b0b72472ff1c8e8e6ead8d59d821485.zip
Not parallel build safe (#300272). Cleanup
(Portage version: 2.2_rc68_p1/cvs/Linux x86_64)
Diffstat (limited to 'dev-perl/PDL')
-rw-r--r--dev-perl/PDL/ChangeLog6
-rw-r--r--dev-perl/PDL/PDL-2.4.4.ebuild86
-rw-r--r--dev-perl/PDL/PDL-2.4.6.ebuild3
-rw-r--r--dev-perl/PDL/PDL-2.4.7.ebuild4
4 files changed, 10 insertions, 89 deletions
diff --git a/dev-perl/PDL/ChangeLog b/dev-perl/PDL/ChangeLog
index 947b853993fe..e4a29d756219 100644
--- a/dev-perl/PDL/ChangeLog
+++ b/dev-perl/PDL/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-perl/PDL
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.93 2010/08/20 21:15:48 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.94 2010/08/23 13:35:23 tove Exp $
+
+ 23 Aug 2010; Torsten Veller <tove@gentoo.org> -PDL-2.4.4.ebuild,
+ PDL-2.4.6.ebuild, PDL-2.4.7.ebuild:
+ Not parallel build safe (#300272). Cleanup
*PDL-2.4.7 (20 Aug 2010)
diff --git a/dev-perl/PDL/PDL-2.4.4.ebuild b/dev-perl/PDL/PDL-2.4.4.ebuild
deleted file mode 100644
index 8d7aec939796..000000000000
--- a/dev-perl/PDL/PDL-2.4.4.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.4.ebuild,v 1.9 2010/01/21 14:38:42 tove Exp $
-
-EAPI=2
-
-MODULE_AUTHOR=CHM
-inherit perl-module eutils multilib
-
-DESCRIPTION="PDL Perl Module"
-
-LICENSE="Artistic as-is"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~s390 ~sh ~sparc ~x86"
-IUSE="badval fftw gsl opengl"
-
-DEPEND=">=sys-libs/ncurses-5.2
- virtual/perl-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
- gsl? ( sci-libs/gsl )
- fftw? ( sci-libs/fftw:2.1 )"
-
-mydoc="DEPENDENCIES DEVELOPMENT MANIFEST* Release_Notes TODO"
-
-#SRC_TEST="do"
-
-src_prepare() {
- epatch "${FILESDIR}/PDL-2.4.2-makemakerfix.patch"
-
- # Unconditional -fPIC for the lib (#55238, #180807, #250335)
- epatch "${FILESDIR}/${P}-PIC.patch"
-
- # TODO: everything in this function below this
- # TODO: line really belongs in src_compile() :
-
- # This 'fix' breaks compiles for non-opengl users
- #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
-
- # Turn off GSL automagic:
- if use gsl ; then
- sed -i -e "s:WITH_GSL => undef:WITH_GSL => 1:" "${S}/perldl.conf"
- else
- sed -i -e "s:WITH_GSL => undef:WITH_GSL => 0:" "${S}/perldl.conf"
- fi
- # Turn off FFTW automagic too:
- if use fftw ; then
- sed -i -e "s:WITH_FFTW => undef:WITH_FFTW => 1:" "${S}/perldl.conf"
- else
- sed -i -e "s:WITH_FFTW => undef:WITH_FFTW => 0:" "${S}/perldl.conf"
- fi
-}
-
-src_install() {
- perl-module_src_install
-
- cp "${S}"/Doc/{scantree.pl,mkhtmldoc.pl} "${D}"/${VENDOR_ARCH}/PDL/Doc/ || die
-}
-
-pkg_postinst() {
- if [[ ${ROOT} = / ]] ; then
- perl ${VENDOR_ARCH}/PDL/Doc/scantree.pl
- elog "Building perldl.db done. You can recreate this at any time"
- elog "by running"
- else
- elog "You must create perldl.db by running"
- fi
- elog "perl ${VENDOR_ARCH}/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.6.ebuild b/dev-perl/PDL/PDL-2.4.6.ebuild
index 027c0a3357eb..f027df866801 100644
--- a/dev-perl/PDL/PDL-2.4.6.ebuild
+++ b/dev-perl/PDL/PDL-2.4.6.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.6.ebuild,v 1.1 2010/02/19 09:08:43 tove Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.6.ebuild,v 1.2 2010/08/23 13:35:23 tove Exp $
EAPI=2
@@ -30,6 +30,7 @@ DEPEND=">=sys-libs/ncurses-5.2
mydoc="DEPENDENCIES DEVELOPMENT MANIFEST* Release_Notes TODO"
SRC_TEST="do"
+MAKEOPTS+=" -j1" #300272
src_prepare() {
epatch "${FILESDIR}/PDL-2.4.2-makemakerfix.patch"
diff --git a/dev-perl/PDL/PDL-2.4.7.ebuild b/dev-perl/PDL/PDL-2.4.7.ebuild
index ba934db240fb..4f378f5f990a 100644
--- a/dev-perl/PDL/PDL-2.4.7.ebuild
+++ b/dev-perl/PDL/PDL-2.4.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.7.ebuild,v 1.1 2010/08/20 21:15:48 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.7.ebuild,v 1.2 2010/08/23 13:35:23 tove Exp $
EAPI=2
@@ -31,6 +31,8 @@ mydoc="DEPENDENCIES DEVELOPMENT MANIFEST* Release_Notes TODO"
SRC_TEST="do"
+MAKEOPTS+=" -j1" #300272
+
src_prepare() {
epatch "${FILESDIR}/PDL-2.4.2-makemakerfix.patch"