diff options
author | Bruce A. Locke <blocke@gentoo.org> | 2001-09-26 06:46:49 +0000 |
---|---|---|
committer | Bruce A. Locke <blocke@gentoo.org> | 2001-09-26 06:46:49 +0000 |
commit | de3c7387075c27a60fe0cc141e985ecd1e8f6c24 (patch) | |
tree | d82db46a7c9c71352758c8a8339132acd1f4c64f /dev-perl | |
parent | Fixed mutt ebuild: (1) use ncurses properly if slang isn't desired, (diff) | |
download | historical-de3c7387075c27a60fe0cc141e985ecd1e8f6c24.tar.gz historical-de3c7387075c27a60fe0cc141e985ecd1e8f6c24.tar.bz2 historical-de3c7387075c27a60fe0cc141e985ecd1e8f6c24.zip |
made sure opengl was really disabled and fixed manpage destination
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/PDL/PDL-2.2.1.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dev-perl/PDL/PDL-2.2.1.ebuild b/dev-perl/PDL/PDL-2.2.1.ebuild index e0a45fc9bded..12ad243c85d9 100644 --- a/dev-perl/PDL/PDL-2.2.1.ebuild +++ b/dev-perl/PDL/PDL-2.2.1.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.1.ebuild,v 1.1 2001/06/04 06:41:14 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.2.1.ebuild,v 1.2 2001/09/26 06:46:49 blocke Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -11,18 +11,18 @@ HOMEPAGE="http://cpan.valueclick.com/modules/by-module/PDL/${P}.readme" DEPEND=">=sys-devel/perl-5 >=sys-libs/ncurses-5.2 - >=dev-perl/ExtUtils-F77-1.13 - opengl? ( virtual/opengl virtual/glu )" + >=dev-perl/ExtUtils-F77-1.13" +# opengl? ( virtual/opengl virtual/glu ) src_unpack() { unpack ${A} - cp ${FILESDIR}/perldl.conf ${S} + #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 => 1:" ${FILESDIR}/perldl.conf > ${S}/perldl.conf + 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 @@ -39,7 +39,7 @@ src_compile() { src_install () { - try make PREFIX=${D}/usr INSTALLMAN3DIR=/usr/share/man/man3 \ + try make PREFIX=${D}/usr INSTALLMAN3DIR=${D}/usr/share/man/man3 \ INSTALLMAN1DIR=${D}/usr/share/man/man1 install dodoc COPYING Changes DEPENDENCIES DEVELOPMENT README MANIFEST* |