diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2011-02-20 01:18:05 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2011-02-20 01:18:05 +0000 |
commit | 48260cb966131dc669a94ee96f16cdb759cfc17a (patch) | |
tree | 094fd3b4516a6a7088c2f4e1f8251bea06fb3d60 /games-rpg | |
parent | Remove old. (diff) | |
download | gentoo-2-48260cb966131dc669a94ee96f16cdb759cfc17a.tar.gz gentoo-2-48260cb966131dc669a94ee96f16cdb759cfc17a.tar.bz2 gentoo-2-48260cb966131dc669a94ee96f16cdb759cfc17a.zip |
Version bump, not fetch restricted anymore. Added amd64. A few minor fixes.
(Portage version: 2.1.9.38/cvs/Linux x86_64)
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/eschalon-book-1-demo/ChangeLog | 10 | ||||
-rw-r--r-- | games-rpg/eschalon-book-1-demo/eschalon-book-1-demo-106.ebuild | 40 |
2 files changed, 48 insertions, 2 deletions
diff --git a/games-rpg/eschalon-book-1-demo/ChangeLog b/games-rpg/eschalon-book-1-demo/ChangeLog index 81d98aacd550..0f04934325d3 100644 --- a/games-rpg/eschalon-book-1-demo/ChangeLog +++ b/games-rpg/eschalon-book-1-demo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-rpg/eschalon-book-1-demo -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/eschalon-book-1-demo/ChangeLog,v 1.2 2010/02/08 14:54:42 fauli Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/eschalon-book-1-demo/ChangeLog,v 1.3 2011/02/20 01:18:05 calchan Exp $ + +*eschalon-book-1-demo-106 (20 Feb 2011) + + 20 Feb 2011; Denis Dupeyron <calchan@gentoo.org> + +eschalon-book-1-demo-106.ebuild: + Version bump, not fetch restricted anymore. Added amd64. A few minor fixes. 08 Feb 2010; Christian Faulhammer <fauli@gentoo.org> eschalon-book-1-demo-105.ebuild: diff --git a/games-rpg/eschalon-book-1-demo/eschalon-book-1-demo-106.ebuild b/games-rpg/eschalon-book-1-demo/eschalon-book-1-demo-106.ebuild new file mode 100644 index 000000000000..566386a0906f --- /dev/null +++ b/games-rpg/eschalon-book-1-demo/eschalon-book-1-demo-106.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-rpg/eschalon-book-1-demo/eschalon-book-1-demo-106.ebuild,v 1.1 2011/02/20 01:18:05 calchan Exp $ + +EAPI=2 +inherit eutils games + +DESCRIPTION="A classic role-playing game" +HOMEPAGE="http://basiliskgames.com/eschalon-book-i" +SRC_URI="http://dev.gentoo.org/~calchan/distfiles/${P}.tar.gz" + +LICENSE="eschalon-book-1-demo" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="strip" +QA_EXECSTACK="${GAMES_PREFIX_OPT:1}/${PN}/Eschalon Book I Demo" + +RDEPEND="x86? ( media-libs/freetype + virtual/opengl + virtual/glu + x11-libs/libX11 + x11-libs/libXxf86vm ) + amd64? ( app-emulation/emul-linux-x86-opengl + app-emulation/emul-linux-x86-xlibs )" + +S="${WORKDIR}/Eschalon Book I Demo" + +src_install () { + insinto "${GAMES_PREFIX_OPT}/${PN}" + doins -r data music sound *pdf *pak help.txt \ + || die "doins failed" + + exeinto "${GAMES_PREFIX_OPT}/${PN}" + doexe "Eschalon Book I Demo" || die "doexe failed" + + make_desktop_entry ${PN} "Eschalon: Book I (Demo)" + games_make_wrapper ${PN} "\"./Eschalon Book I Demo\"" "${GAMES_PREFIX_OPT}/${PN}" + prepgamesdirs +} |