diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-04-24 01:27:06 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-04-24 01:27:06 +0000 |
commit | cc1c51f5e5b50d885593bfb0325ea75c49d66e83 (patch) | |
tree | 31173716935cecdca513a6f4f4926230b40c4303 /dev-perl | |
parent | older iptables versions removed (diff) | |
download | gentoo-2-cc1c51f5e5b50d885593bfb0325ea75c49d66e83.tar.gz gentoo-2-cc1c51f5e5b50d885593bfb0325ea75c49d66e83.tar.bz2 gentoo-2-cc1c51f5e5b50d885593bfb0325ea75c49d66e83.zip |
*** empty log message ***
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/ExtUtils-F77/ExtUtils-F77-1.13.ebuild | 7 | ||||
-rw-r--r-- | dev-perl/PDL/PDL-2.2.ebuild | 8 |
2 files changed, 8 insertions, 7 deletions
diff --git a/dev-perl/ExtUtils-F77/ExtUtils-F77-1.13.ebuild b/dev-perl/ExtUtils-F77/ExtUtils-F77-1.13.ebuild index 00899ac3d1de..d3c709754314 100644 --- a/dev-perl/ExtUtils-F77/ExtUtils-F77-1.13.ebuild +++ b/dev-perl/ExtUtils-F77/ExtUtils-F77-1.13.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-F77/ExtUtils-F77-1.13.ebuild,v 1.4 2000/11/04 12:54:30 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-F77/ExtUtils-F77-1.13.ebuild,v 1.5 2001/04/24 01:27:06 achim Exp $ P=ExtUtils-F77-1.13 A=${P}.tar.gz @@ -14,7 +14,6 @@ DEPEND=">=sys-devel/perl-5" src_compile() { - cd ${S} perl Makefile.PL try make try make test @@ -23,9 +22,7 @@ src_compile() { src_install () { - cd ${S} - try make PREFIX=${D}/usr install - prepman + try make PREFIX=${D}/usr INSTALLMAN3DIR=${D}/usr/share/man/man3 install dodoc CHANGES README MANIFEST } diff --git a/dev-perl/PDL/PDL-2.2.ebuild b/dev-perl/PDL/PDL-2.2.ebuild index 52ad0398b84f..b1c5375b6593 100644 --- a/dev-perl/PDL/PDL-2.2.ebuild +++ b/dev-perl/PDL/PDL-2.2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.2.ebuild,v 1.4 2001/04/24 00:07:03 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.2.ebuild,v 1.5 2001/04/24 01:22:41 achim Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -18,8 +18,12 @@ src_unpack() { unpack ${A} cp ${FILESDIR}/perldl.conf ${S} - if [ -z "`use opengl`" ] + #open gl does not work at the moment + if [ "`use opengl`" ] then + echo "Disabled at the moment" + 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 |