diff options
Diffstat (limited to 'games-strategy/boson/boson-0.10.ebuild')
-rw-r--r-- | games-strategy/boson/boson-0.10.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/games-strategy/boson/boson-0.10.ebuild b/games-strategy/boson/boson-0.10.ebuild new file mode 100644 index 000000000000..417d3bbad836 --- /dev/null +++ b/games-strategy/boson/boson-0.10.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. and Thomas Capricelli <orzel@kde.org> +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/boson/boson-0.10.ebuild,v 1.1 2004/05/10 21:00:51 mr_bones_ Exp $ + +inherit kde +need-kde 3 + +DESCRIPTION="real-time strategy game, with the feeling of Command&Conquer(tm) (needs at least 2 ppl to play)" +HOMEPAGE="http://boson.sourceforge.net/" +SRC_URI="mirror://sourceforge/boson/boson-all-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc -sparc" +IUSE="opengl" + +DEPEND="media-libs/lib3ds + >=media-libs/openal-20040303 + opengl? ( virtual/opengl )" + +S="${WORKDIR}/${PN}-all-${PV}" + +src_compile() { + ./configure \ + --disable-debug \ + --with-xinerama \ + `use_with opengl gl` \ + --host=${CHOST} \ + --prefix=${KDEDIR} \ + || die "./configure failed" + emake -j1 || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README TODO +} |