diff options
Diffstat (limited to 'dev-games/guichan/guichan-0.4.0-r1.ebuild')
-rw-r--r-- | dev-games/guichan/guichan-0.4.0-r1.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-games/guichan/guichan-0.4.0-r1.ebuild b/dev-games/guichan/guichan-0.4.0-r1.ebuild deleted file mode 100644 index 60bdf56893b5..000000000000 --- a/dev-games/guichan/guichan-0.4.0-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.4.0-r1.ebuild,v 1.3 2006/08/19 19:29:06 dertobi123 Exp $ - -inherit eutils autotools - -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="sdl opengl allegro" - -DEPEND="opengl? ( virtual/opengl ) - sdl? ( media-libs/libsdl media-libs/sdl-image ) - allegro? ( media-libs/allegro )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}"-gentoo.patch - eautoreconf -} - -src_compile() { - econf \ - $(use_enable allegro) \ - $(use_enable sdl) \ - $(use_enable sdl sdlimage) \ - $(use_enable opengl) \ - || die "Configuration failed" - emake || die "Build failed" -} - -src_install() { - make install DESTDIR="${D}" || die "Installation failed" - dodoc AUTHORS ChangeLog NEWS README TODO -} |