diff options
Diffstat (limited to 'dev-games/cel/cel-1.0.1.ebuild')
-rw-r--r-- | dev-games/cel/cel-1.0.1.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-games/cel/cel-1.0.1.ebuild b/dev-games/cel/cel-1.0.1.ebuild new file mode 100644 index 000000000000..70ab65072c6f --- /dev/null +++ b/dev-games/cel/cel-1.0.1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/cel/cel-1.0.1.ebuild,v 1.1 2007/03/02 19:46:56 tupone Exp $ + +inherit eutils + +MY_P=${PN}-src-${PV} +DESCRIPTION="A game entity layer based on Crystal Space" +HOMEPAGE="http://cel.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="python" + +RDEPEND=">=dev-games/crystalspace-1.0 + dev-games/hawknl" +DEPEND="${RDEPEND} + dev-util/jam" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}"-amd64.patch +} + +src_compile() { + econf \ + --disable-separate-debug-info \ + --disable-cstest \ + $(use_with python) \ + || die + jam -q || die "jam failed" +} + +src_install() { + jam -q -s DESTDIR="${D}" install || die "jam install failed" + + # Fill cache directory for the examples + cp "${D}"/usr/share/${PN}/data/{basic_,}world + cslight -video=null "${D}"/usr/share/${PN}/data + cp "${D}"/usr/share/${PN}/data/{walktut_,}world + cslight -video=null "${D}"/usr/share/${PN}/data + rm "${D}"/usr/share/${PN}/data/world + + dodoc docs/history*.txt docs/todo.txt +} |