diff options
Diffstat (limited to 'dev-perl/PDL/PDL-2.3.2-r1.ebuild')
-rw-r--r-- | dev-perl/PDL/PDL-2.3.2-r1.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/dev-perl/PDL/PDL-2.3.2-r1.ebuild b/dev-perl/PDL/PDL-2.3.2-r1.ebuild deleted file mode 100644 index ac559fe19c23..000000000000 --- a/dev-perl/PDL/PDL-2.3.2-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.3.2-r1.ebuild,v 1.21 2005/01/04 13:26:55 mcummings Exp $ - -IUSE="opengl" - -inherit perl-module - -DESCRIPTION="PDL Perl Module" -SRC_URI="mirror://cpan/authors/id/C/CS/CSOE/${P}.tar.gz" -HOMEPAGE="http://search.cpan.org/~csoe/${P}/" - -SLOT="0" -LICENSE="Artistic as-is" -KEYWORDS="x86 ppc sparc alpha" - -DEPEND="${DEPEND} - >=sys-libs/ncurses-5.2 - >=dev-perl/ExtUtils-F77-1.13 - opengl? ( virtual/opengl virtual/glu )" - -mydoc="DEPNDENCIES DEVELOPMENT MANIFEST* COPYING Release_Notes TODO" - -src_unpack() { - - unpack ${A} - - #open gl does not work at the moment - if use opengl - then - echo "OpenGL support is current disabled due to build issues" - sed -e "s:WITH_3D => undef:WITH_3D => 0:" \ - ${FILESDIR}/perldl.conf > ${S}/perldl.conf - else - sed -e "s:WITH_3D => undef:WITH_3D => 0:" \ - ${FILESDIR}/perldl.conf > ${S}/perldl.conf - fi -} - -src_install () { - - perl-module_src_install - - mv ${D}/usr/lib/perl5/site_perl/5.6.0/${CHOST%%-*}-linux/PDL/HtmlDocs \ - ${D}/usr/doc/${P}/html - - mydir=${D}/usr/doc/${P}/html/PDL - - for i in ${mydir}/* ${mydir}/IO/* ${mydir}/Fit/* ${mydir}/Pod/* ${mydir}/Graphics/* - do - dosed ${i/${D}} - done - - dosed /usr/lib/perl5/site_perl/5.6.0/${CHOST%%-*}-linux/PDL/pdldoc.db -} |