diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-12-30 15:25:56 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-12-30 15:25:56 +0000 |
commit | f434f65e1dc11301b7208912edc5769f90c78794 (patch) | |
tree | 6d02bf4d02dc90c46c8f41700752225f2973f8a9 /games-roguelike/scourge | |
parent | Marking phpmyadmin-2.11.9.4 ppc64 for bug 250752 (diff) | |
download | gentoo-2-f434f65e1dc11301b7208912edc5769f90c78794.tar.gz gentoo-2-f434f65e1dc11301b7208912edc5769f90c78794.tar.bz2 gentoo-2-f434f65e1dc11301b7208912edc5769f90c78794.zip |
version bump
(Portage version: 2.1.4.5)
Diffstat (limited to 'games-roguelike/scourge')
-rw-r--r-- | games-roguelike/scourge/ChangeLog | 8 | ||||
-rw-r--r-- | games-roguelike/scourge/scourge-0.21.1.ebuild | 47 |
2 files changed, 54 insertions, 1 deletions
diff --git a/games-roguelike/scourge/ChangeLog b/games-roguelike/scourge/ChangeLog index 400bb3645873..8f028096dd7f 100644 --- a/games-roguelike/scourge/ChangeLog +++ b/games-roguelike/scourge/ChangeLog @@ -1,6 +1,12 @@ # 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.31 2008/12/20 05:30:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/scourge/ChangeLog,v 1.32 2008/12/30 15:25:56 mr_bones_ Exp $ + +*scourge-0.21.1 (30 Dec 2008) + + 30 Dec 2008; Michael Sterrett <mr_bones_@gentoo.org> + +scourge-0.21.1.ebuild: + version bump *scourge-0.21 (20 Dec 2008) diff --git a/games-roguelike/scourge/scourge-0.21.1.ebuild b/games-roguelike/scourge/scourge-0.21.1.ebuild new file mode 100644 index 000000000000..79420466f8f5 --- /dev/null +++ b/games-roguelike/scourge/scourge-0.21.1.ebuild @@ -0,0 +1,47 @@ +# 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.1.ebuild,v 1.1 2008/12/30 15:25:56 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 +} |