summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-02-10 08:31:26 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-02-10 08:31:26 +0000
commitdceb1817dff24185b1885e1448c1ccda0661ba73 (patch)
treefa2a4c4e7d27b6fefc0e2a6d5004e971e5195e23 /media-libs/allegrogl
parentppc stable, bug #209081 (diff)
downloadgentoo-2-dceb1817dff24185b1885e1448c1ccda0661ba73.tar.gz
gentoo-2-dceb1817dff24185b1885e1448c1ccda0661ba73.tar.bz2
gentoo-2-dceb1817dff24185b1885e1448c1ccda0661ba73.zip
old
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-libs/allegrogl')
-rw-r--r--media-libs/allegrogl/allegrogl-0.4.2.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/media-libs/allegrogl/allegrogl-0.4.2.ebuild b/media-libs/allegrogl/allegrogl-0.4.2.ebuild
deleted file mode 100644
index 3c0188e7a6c1..000000000000
--- a/media-libs/allegrogl/allegrogl-0.4.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegrogl/allegrogl-0.4.2.ebuild,v 1.1 2007/08/03 19:44:18 nyhm Exp $
-
-MY_PN="alleggl"
-DESCRIPTION="A library to mix OpenGL graphics with Allegro routines"
-HOMEPAGE="http://allegrogl.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}.tar.bz2"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-DEPEND=">=media-libs/allegro-4.2
- virtual/opengl
- virtual/glu"
-
-S=${WORKDIR}/${MY_PN}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i 's:-Wl:${LDFLAGS} -Wl:' configure || die "sed failed"
-}
-
-src_compile() {
- econf || die
- emake CFLAGS="${CFLAGS}" lib || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc changelog {bugs,extensions,faq,howto,quickstart,readme,todo}.txt
- dohtml -r docs/html/*
- if use examples ; then
- insinto /usr/share/doc/${PF}/examples
- doins examp/*.{bmp,c,dat,h,pcx,tga} || die "doins failed"
- fi
-}