diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-02-02 05:54:01 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-02-02 05:54:01 +0000 |
commit | a0504be774230edc627fd59f69c3cf89491d4776 (patch) | |
tree | 2062dd7b815d66b3d7fb3f18945ed3702ef1abb7 /x11-libs/liboglappth | |
parent | Restrict py 2.5 #455088 (diff) | |
download | gentoo-2-a0504be774230edc627fd59f69c3cf89491d4776.tar.gz gentoo-2-a0504be774230edc627fd59f69c3cf89491d4776.tar.bz2 gentoo-2-a0504be774230edc627fd59f69c3cf89491d4776.zip |
Bump
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'x11-libs/liboglappth')
-rw-r--r-- | x11-libs/liboglappth/ChangeLog | 10 | ||||
-rw-r--r-- | x11-libs/liboglappth/liboglappth-1.0.0.ebuild | 27 |
2 files changed, 34 insertions, 3 deletions
diff --git a/x11-libs/liboglappth/ChangeLog b/x11-libs/liboglappth/ChangeLog index 3dfe5ed48964..f5486f66a815 100644 --- a/x11-libs/liboglappth/ChangeLog +++ b/x11-libs/liboglappth/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/liboglappth -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/liboglappth/ChangeLog,v 1.10 2012/05/05 03:52:30 jdhore Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/liboglappth/ChangeLog,v 1.11 2013/02/02 05:54:01 patrick Exp $ + +*liboglappth-1.0.0 (02 Feb 2013) + + 02 Feb 2013; Patrick Lauer <patrick@gentoo.org> +liboglappth-1.0.0.ebuild: + Bump 05 May 2012; Jeff Horelick <jdhore@gentoo.org> liboglappth-0.96.ebuild, liboglappth-0.98.ebuild: @@ -43,4 +48,3 @@ +metadata.xml, +liboglappth-0.96.ebuild: New package: A library for creating portable OpenGL applications with easy-to-code scene setup and selection operations. - diff --git a/x11-libs/liboglappth/liboglappth-1.0.0.ebuild b/x11-libs/liboglappth/liboglappth-1.0.0.ebuild new file mode 100644 index 000000000000..5d021da8535e --- /dev/null +++ b/x11-libs/liboglappth/liboglappth-1.0.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/liboglappth/liboglappth-1.0.0.ebuild,v 1.1 2013/02/02 05:54:01 patrick Exp $ + +inherit eutils + +DESCRIPTION="A library for creating portable OpenGL applications with easy-to-code scene setup and selection." +HOMEPAGE="http://www.bioinformatics.org/ghemical/" +SRC_URI="http://www.bioinformatics.org/ghemical/download/current/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" +RDEPEND="virtual/opengl + media-libs/freeglut" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/gcc-4.3.patch +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} |