diff options
Diffstat (limited to 'dev-games/guichan/guichan-0.5.0.ebuild')
-rw-r--r-- | dev-games/guichan/guichan-0.5.0.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-games/guichan/guichan-0.5.0.ebuild b/dev-games/guichan/guichan-0.5.0.ebuild deleted file mode 100644 index 19ed75c242bc..000000000000 --- a/dev-games/guichan/guichan-0.5.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.5.0.ebuild,v 1.3 2007/01/05 01:08:19 nyhm Exp $ - -DESCRIPTION="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL" -HOMEPAGE="http://guichan.sourceforge.net/" -SRC_URI="mirror://sourceforge/guichan/${P}-src.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="allegro glut opengl sdl" - -DEPEND="allegro? ( media-libs/allegro ) - glut? ( virtual/glut ) - opengl? ( virtual/opengl ) - sdl? ( - media-libs/libsdl - media-libs/sdl-image - )" - -S=${WORKDIR}/${P}-src - -src_compile() { - econf \ - --disable-dependency-tracking \ - $(use_enable allegro) \ - $(use_enable glut) \ - $(use_enable opengl) \ - $(use_enable sdl) \ - $(use_enable sdl sdlimage) \ - || die - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README TODO -} |