diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2013-07-12 17:05:17 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2013-07-12 17:05:17 +0000 |
commit | 61cb555f81b45b1dad992ba2d845a82983c8cc02 (patch) | |
tree | 384f67f1c78448141f3656aa84a1e328eeaa714d /dev-perl | |
parent | Version bump. (diff) | |
download | gentoo-2-61cb555f81b45b1dad992ba2d845a82983c8cc02.tar.gz gentoo-2-61cb555f81b45b1dad992ba2d845a82983c8cc02.tar.bz2 gentoo-2-61cb555f81b45b1dad992ba2d845a82983c8cc02.zip |
Version bump
(Portage version: 2.2.01.22124-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/OpenGL/ChangeLog | 7 | ||||
-rw-r--r-- | dev-perl/OpenGL/OpenGL-0.670.0.ebuild | 35 |
2 files changed, 41 insertions, 1 deletions
diff --git a/dev-perl/OpenGL/ChangeLog b/dev-perl/OpenGL/ChangeLog index ffab3996d48c..70218b054cc0 100644 --- a/dev-perl/OpenGL/ChangeLog +++ b/dev-perl/OpenGL/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-perl/OpenGL # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/OpenGL/ChangeLog,v 1.7 2013/04/16 17:58:20 vincent Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/OpenGL/ChangeLog,v 1.8 2013/07/12 17:05:17 bicatali Exp $ + +*OpenGL-0.670.0 (12 Jul 2013) + + 12 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org> +OpenGL-0.670.0.ebuild: + Version bump 16 Apr 2013; Vicente Olivert Riera <vincent@gentoo.org> OpenGL-0.660.0.ebuild: Adding ~ppc keyword for dev-perl/PDL and his dependences, wrt bug #449762 diff --git a/dev-perl/OpenGL/OpenGL-0.670.0.ebuild b/dev-perl/OpenGL/OpenGL-0.670.0.ebuild new file mode 100644 index 000000000000..e41de3cab274 --- /dev/null +++ b/dev-perl/OpenGL/OpenGL-0.670.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/OpenGL/OpenGL-0.670.0.ebuild,v 1.1 2013/07/12 17:05:17 bicatali Exp $ + +EAPI=4 + +MODULE_AUTHOR="CHM" +MODULE_VERSION=0.66 + +inherit perl-module eutils + +DESCRIPTION="Perl interface providing graphics display using OpenGL" + +LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="media-libs/freeglut + x11-libs/libICE + x11-libs/libXext + x11-libs/libXi + x11-libs/libXmu" +DEPEND="${RDEPEND}" + +mydoc="Release_Notes" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.66-no-display.patch +} + +src_compile() { + sed -i -e 's/PERL_DL_NONLAZY=1//' Makefile || die + perl-module_src_compile +} |