summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cummings <mcummings@gentoo.org>2003-06-16 12:23:18 +0000
committerMichael Cummings <mcummings@gentoo.org>2003-06-16 12:23:18 +0000
commitc218946a4477a7c973d6e7f5630fdef92d54a229 (patch)
tree20a932f91745c5655ee805de2fb166d019253685 /dev-perl/PDL
parentVersion bump (diff)
downloadhistorical-c218946a4477a7c973d6e7f5630fdef92d54a229.tar.gz
historical-c218946a4477a7c973d6e7f5630fdef92d54a229.tar.bz2
historical-c218946a4477a7c973d6e7f5630fdef92d54a229.zip
Corrected hard coded references to 5.6.0; fixed html page errors
Diffstat (limited to 'dev-perl/PDL')
-rw-r--r--dev-perl/PDL/ChangeLog5
-rw-r--r--dev-perl/PDL/Manifest4
-rw-r--r--dev-perl/PDL/PDL-2.4.0.ebuild11
3 files changed, 13 insertions, 7 deletions
diff --git a/dev-perl/PDL/ChangeLog b/dev-perl/PDL/ChangeLog
index bef14c733db3..3b79e3893b97 100644
--- a/dev-perl/PDL/ChangeLog
+++ b/dev-perl/PDL/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-perl/PDL
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.10 2003/06/16 00:33:54 mcummings Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.11 2003/06/16 12:23:15 mcummings Exp $
+
+ 16 Jun 2003; Michael Cummings <mcummings@gentoo.org> PDL-2.4.0.ebuild:
+ Corrected hard coded references to 5.6.0; fixed html page errors
*PDL-2.4.0 (15 Jun 2003)
diff --git a/dev-perl/PDL/Manifest b/dev-perl/PDL/Manifest
index 1092dd1b52f3..c9bf781e73cf 100644
--- a/dev-perl/PDL/Manifest
+++ b/dev-perl/PDL/Manifest
@@ -1,8 +1,8 @@
-MD5 cb3b02ea3315a203d68838f025405979 ChangeLog 1410
+MD5 abc9136127d492a3d1753e36612f73d4 ChangeLog 1551
MD5 005c1c2b14eba50d5029692b7e83e9d0 PDL-2.3.2-r1.ebuild 1429
MD5 b0e751c7b8fad7c5b2f9db47031b1230 PDL-2.3.2-r2.ebuild 1428
MD5 3c432b02aa1e6bb7cc5baefcd6c7c52d PDL-2.3.4.ebuild 1509
-MD5 ec96d2008a302fdf81b5d18652a6ecad PDL-2.4.0.ebuild 1510
+MD5 c934328b3b4a853fa8be484f63706a36 PDL-2.4.0.ebuild 1615
MD5 6227c564933ab56193b3e40c1b9849a9 files/digest-PDL-2.3.2-r1 62
MD5 6227c564933ab56193b3e40c1b9849a9 files/digest-PDL-2.3.2-r2 62
MD5 62cbe79e2c7c354d5c165b63c571cc13 files/perldl.conf 2716
diff --git a/dev-perl/PDL/PDL-2.4.0.ebuild b/dev-perl/PDL/PDL-2.4.0.ebuild
index f633d8f6441d..78ce60868a80 100644
--- a/dev-perl/PDL/PDL-2.4.0.ebuild
+++ b/dev-perl/PDL/PDL-2.4.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.0.ebuild,v 1.1 2003/06/16 00:33:54 mcummings Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.0.ebuild,v 1.2 2003/06/16 12:23:15 mcummings Exp $
IUSE="opengl"
@@ -26,6 +26,7 @@ DEPEND="${DEPEND}
mydoc="DEPNDENCIES DEVELOPMENT MANIFEST* COPYING Release_Notes TODO"
+
src_unpack() {
unpack ${A}
@@ -45,8 +46,10 @@ src_unpack() {
src_install () {
perl-module_src_install
-
- mv ${D}/usr/lib/perl5/site_perl/5.6.0/${CHOST%%-*}-linux/PDL/HtmlDocs \
+ mkdir -p ${D}/usr/doc/${P}/html
+ eval `perl '-V:version'`
+ PERLVERSION=${version}
+ mv ${D}/usr/lib/perl5/site_perl/${PERLVERSION}/${CHOST%%-*}-linux/PDL/HtmlDocs/PDL \
${D}/usr/doc/${P}/html
mydir=${D}/usr/doc/${P}/html/PDL
@@ -56,5 +59,5 @@ src_install () {
dosed ${i/${D}}
done
- dosed /usr/lib/perl5/site_perl/5.6.0/${CHOST%%-*}-linux/PDL/pdldoc.db
+ dosed /usr/lib/perl5/site_perl/${PERLVERSION}/${CHOST%%-*}-linux/PDL/pdldoc.db
}