diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2011-07-31 04:41:06 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2011-07-31 04:41:06 +0000 |
commit | 4bdb2c69a0029649b1c29c0124975b4741a12674 (patch) | |
tree | e0d03d4818265bd44702bb182ef8c7e7fbd5bcb5 /games-puzzle/xye | |
parent | Version bump. Compatibility with jack 0.120.2. Also some jack2 readiness. (diff) | |
download | gentoo-2-4bdb2c69a0029649b1c29c0124975b4741a12674.tar.gz gentoo-2-4bdb2c69a0029649b1c29c0124975b4741a12674.tar.bz2 gentoo-2-4bdb2c69a0029649b1c29c0124975b4741a12674.zip |
version bump
(Portage version: 2.1.10.3/cvs/Linux i686)
Diffstat (limited to 'games-puzzle/xye')
-rw-r--r-- | games-puzzle/xye/ChangeLog | 7 | ||||
-rw-r--r-- | games-puzzle/xye/xye-0.10.0.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/games-puzzle/xye/ChangeLog b/games-puzzle/xye/ChangeLog index 44e5090745d4..5d3af537cb93 100644 --- a/games-puzzle/xye/ChangeLog +++ b/games-puzzle/xye/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-puzzle/xye # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xye/ChangeLog,v 1.20 2011/02/20 17:55:34 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xye/ChangeLog,v 1.21 2011/07/31 04:41:06 mr_bones_ Exp $ + +*xye-0.10.0 (31 Jul 2011) + + 31 Jul 2011; Michael Sterrett <mr_bones_@gentoo.org> +xye-0.10.0.ebuild: + version bump 20 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> xye-0.9.3.ebuild: x86 stable wrt bug #355103 diff --git a/games-puzzle/xye/xye-0.10.0.ebuild b/games-puzzle/xye/xye-0.10.0.ebuild new file mode 100644 index 000000000000..9f70066b3056 --- /dev/null +++ b/games-puzzle/xye/xye-0.10.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xye/xye-0.10.0.ebuild,v 1.1 2011/07/31 04:41:06 mr_bones_ Exp $ + +EAPI=2 +inherit autotools eutils games + +DESCRIPTION="Free version of the classic game Kye" +HOMEPAGE="http://xye.sourceforge.net/" +SRC_URI="mirror://sourceforge/xye/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/libsdl[video] + media-libs/sdl-ttf + media-libs/sdl-image[png] + media-fonts/dejavu" + +src_prepare() { + sed -i -e '/^xye_LDFLAGS/d' Makefile.am || die + eautoreconf +} + +src_install() { + dogamesbin "${PN}" || die + insinto "${GAMES_DATADIR}/${PN}" + doins -r levels res || die + rm -f "${D}${GAMES_DATADIR}/${PN}"/res/DejaVuSans* + dosym /usr/share/fonts/dejavu/DejaVuSans.ttf "${GAMES_DATADIR}/${PN}"/res/ + dosym /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf "${GAMES_DATADIR}/${PN}"/res/ + dodoc readme.txt GAMEINTRO.txt AUTHORS ChangeLog README NEWS + doicon xye.svg + make_desktop_entry ${PN} Xye + prepgamesdirs +} |