diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2010-04-06 17:50:49 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2010-04-06 17:50:49 +0000 |
commit | 03eb58a3446bcdde0be8045da6e43075ce851995 (patch) | |
tree | 3bb2a62f7b6e1803b6a017160ce325fa9089456c /games-action | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-03eb58a3446bcdde0be8045da6e43075ce851995.tar.gz gentoo-2-03eb58a3446bcdde0be8045da6e43075ce851995.tar.bz2 gentoo-2-03eb58a3446bcdde0be8045da6e43075ce851995.zip |
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/garden/ChangeLog | 9 | ||||
-rw-r--r-- | games-action/garden/garden-1.0.8.ebuild | 32 |
2 files changed, 39 insertions, 2 deletions
diff --git a/games-action/garden/ChangeLog b/games-action/garden/ChangeLog index d48bd25a622d..e315760b8f3f 100644 --- a/games-action/garden/ChangeLog +++ b/games-action/garden/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-action/garden -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/garden/ChangeLog,v 1.3 2009/11/21 18:10:57 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/garden/ChangeLog,v 1.4 2010/04/06 17:50:49 nyhm Exp $ + +*garden-1.0.8 (06 Apr 2010) + + 06 Apr 2010; Tristan Heaven <nyhm@gentoo.org> +garden-1.0.8.ebuild: + Version bump 21 Nov 2009; Markus Meier <maekke@gentoo.org> garden-1.0.6.ebuild: x86 stable, bug #288922 diff --git a/games-action/garden/garden-1.0.8.ebuild b/games-action/garden/garden-1.0.8.ebuild new file mode 100644 index 000000000000..2d5ae56ac585 --- /dev/null +++ b/games-action/garden/garden-1.0.8.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/garden/garden-1.0.8.ebuild,v 1.1 2010/04/06 17:50:49 nyhm Exp $ + +EAPI=2 +inherit eutils games + +DESCRIPTION="Multiplatform vertical shoot-em-up with non-traditional elements" +HOMEPAGE="http://garden.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/allegro" + +src_prepare() { + sed -i \ + -e '/SUBDIRS/s:resources::' \ + Makefile.in \ + || die "sed failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + newicon resources/garden.svg ${PN}.svg + make_desktop_entry garden "Garden of coloured lights" + dodoc AUTHORS ChangeLog NEWS README + prepgamesdirs +} |