diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-12-20 05:30:38 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-12-20 05:30:38 +0000 |
commit | b22f2da1fe9d3b11712bc2f304a7d937f1c97ac2 (patch) | |
tree | aca8cf0e41b490521d7e6d0fc7d52a82fc28f94d /games-roguelike | |
parent | version bump (diff) | |
download | gentoo-2-b22f2da1fe9d3b11712bc2f304a7d937f1c97ac2.tar.gz gentoo-2-b22f2da1fe9d3b11712bc2f304a7d937f1c97ac2.tar.bz2 gentoo-2-b22f2da1fe9d3b11712bc2f304a7d937f1c97ac2.zip |
version bump
(Portage version: 2.1.4.5)
Diffstat (limited to 'games-roguelike')
-rw-r--r-- | games-roguelike/scourge/ChangeLog | 7 | ||||
-rw-r--r-- | games-roguelike/scourge/scourge-0.21.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/games-roguelike/scourge/ChangeLog b/games-roguelike/scourge/ChangeLog index 9aae0017db7b..400bb3645873 100644 --- a/games-roguelike/scourge/ChangeLog +++ b/games-roguelike/scourge/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-roguelike/scourge # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/scourge/ChangeLog,v 1.30 2008/08/29 06:25:33 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/scourge/ChangeLog,v 1.31 2008/12/20 05:30:38 mr_bones_ Exp $ + +*scourge-0.21 (20 Dec 2008) + + 20 Dec 2008; Michael Sterrett <mr_bones_@gentoo.org> +scourge-0.21.ebuild: + version bump *scourge-0.20 (29 Aug 2008) diff --git a/games-roguelike/scourge/scourge-0.21.ebuild b/games-roguelike/scourge/scourge-0.21.ebuild new file mode 100644 index 000000000000..1985c8f41086 --- /dev/null +++ b/games-roguelike/scourge/scourge-0.21.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/scourge/scourge-0.21.ebuild,v 1.1 2008/12/20 05:30:38 mr_bones_ Exp $ + +inherit eutils wxwidgets games + +DESCRIPTION="A graphical rogue-like adventure game" +HOMEPAGE="http://scourgeweb.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.src.tar.gz + mirror://sourceforge/${PN}/${P}.data.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="virtual/glu + virtual/opengl + >=media-libs/freetype-2 + media-libs/libsdl + media-libs/sdl-net + media-libs/sdl-mixer + media-libs/sdl-ttf + virtual/libintl + " +DEPEND="${RDEPEND} + sys-devel/gettext" + +S=${WORKDIR}/${PN} + +src_compile() { + egamesconf \ + --disable-dependency-tracking \ + --with-data-dir="${GAMES_DATADIR}"/${PN} \ + --localedir=/usr/share/locale \ + || die + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + insinto "${GAMES_DATADIR}"/${PN} + doins -r ../scourge_data/* || die "doins failed" + doicon assets/scourge.png + make_desktop_entry scourge S.C.O.U.R.G.E. + dodoc AUTHORS README + prepgamesdirs +} |