diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-05 09:55:22 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-10-05 09:55:22 +0000 |
commit | 47b683225e73628c733da315d929fa9c7ff9530b (patch) | |
tree | e02f4cd14786e137e07d9dbd5d3f25fb72396cf4 /media-libs/gle/gle-3.0.1-r2.ebuild | |
parent | ppc stable profile update (diff) | |
download | historical-47b683225e73628c733da315d929fa9c7ff9530b.tar.gz historical-47b683225e73628c733da315d929fa9c7ff9530b.tar.bz2 historical-47b683225e73628c733da315d929fa9c7ff9530b.zip |
Using DESTDIR to fix multilib systems.
Diffstat (limited to 'media-libs/gle/gle-3.0.1-r2.ebuild')
-rw-r--r-- | media-libs/gle/gle-3.0.1-r2.ebuild | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/media-libs/gle/gle-3.0.1-r2.ebuild b/media-libs/gle/gle-3.0.1-r2.ebuild index 062e46f14df6..441234732142 100644 --- a/media-libs/gle/gle-3.0.1-r2.ebuild +++ b/media-libs/gle/gle-3.0.1-r2.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.0.1-r2.ebuild,v 1.22 2004/07/14 19:40:39 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/gle/gle-3.0.1-r2.ebuild,v 1.23 2004/10/05 09:55:22 eradicator Exp $ + +IUSE="" inherit gnuconfig @@ -8,27 +10,28 @@ DESCRIPTION="GL extrusion library" SRC_URI="http://www.linas.org/gle/pub/gle-3.0.1.tar.gz" HOMEPAGE="http://www.linas.org/gle" +SLOT="0" +LICENSE="Artistic GPL-2" +KEYWORDS="x86 ppc sparc alpha amd64 ia64 hppa" + DEPEND="virtual/opengl virtual/glu virtual/glut" -SLOT="0" -LICENSE="Artistic GPL-2" -KEYWORDS="x86 ppc sparc alpha amd64 ia64 hppa" -IUSE="" +src_unpack() { + unpack ${A} -src_compile() { + cd ${S} gnuconfig_update +} + +src_compile() { econf --with-x || die emake || die } src_install() { - - make prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - install || die - + make DESTDIR="${D}" install || die dodoc AUTHORS COPYING ChangeLog NEWS README dohtml -r public_html } |