diff options
-rw-r--r-- | games-strategy/warzone2100/ChangeLog | 8 | ||||
-rw-r--r-- | games-strategy/warzone2100/warzone2100-2.1_beta5.ebuild | 56 |
2 files changed, 63 insertions, 1 deletions
diff --git a/games-strategy/warzone2100/ChangeLog b/games-strategy/warzone2100/ChangeLog index 1f6f9cf21b94..c1bef035a28c 100644 --- a/games-strategy/warzone2100/ChangeLog +++ b/games-strategy/warzone2100/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-strategy/warzone2100 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v 1.21 2008/08/09 03:45:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v 1.22 2008/10/05 17:36:56 nyhm Exp $ + +*warzone2100-2.1_beta5 (05 Oct 2008) + + 05 Oct 2008; Tristan Heaven <nyhm@gentoo.org> + +warzone2100-2.1_beta5.ebuild: + Version bump *warzone2100-2.1_beta4 (09 Aug 2008) diff --git a/games-strategy/warzone2100/warzone2100-2.1_beta5.ebuild b/games-strategy/warzone2100/warzone2100-2.1_beta5.ebuild new file mode 100644 index 000000000000..2d3a9199f6e4 --- /dev/null +++ b/games-strategy/warzone2100/warzone2100-2.1_beta5.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/warzone2100-2.1_beta5.ebuild,v 1.1 2008/10/05 17:36:56 nyhm Exp $ + +inherit eutils versionator games + +MY_PV=$(get_version_component_range -2) +DESCRIPTION="3D real-time strategy game" +HOMEPAGE="http://wz2100.net/" +SRC_URI="http://download.gna.org/warzone/releases/${MY_PV}/${P}.tar.bz2" + +LICENSE="GPL-2 CCPL-Attribution-ShareAlike-3.0 public-domain" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +# upstream requested debug support +IUSE="debug nls" + +RDEPEND="dev-games/physfs + dev-libs/popt + media-libs/jpeg + media-libs/libogg + media-libs/libpng + media-libs/libsdl + media-libs/libvorbis + media-libs/openal + media-libs/sdl-net + media-libs/quesoglc + virtual/glu + virtual/opengl + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + app-arch/zip + dev-util/pkgconfig + nls? ( sys-devel/gettext )" +RDEPEND="${RDEPEND} + media-fonts/dejavu" + +src_compile() { + egamesconf \ + --disable-dependency-tracking \ + --docdir=/usr/share/doc/${PF} \ + --localedir=/usr/share/locale \ + --with-distributor="Gentoo ${PF}" \ + --with-icondir=/usr/share/pixmaps \ + --with-applicationdir=/usr/share/applications \ + $(use_enable debug) \ + $(use_enable nls) \ + || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + rm -f "${D}"/usr/share/doc/${PF}/COPYING* + prepgamesdirs +} |