diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2011-05-04 17:23:31 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2011-05-04 17:23:31 +0000 |
commit | 8893eabe719703676d60752cb1104b4b73452c59 (patch) | |
tree | ff124a5d835616c93cf52beab24df92d812d9ae0 /games-misc/opengfx | |
parent | version bump (diff) | |
download | gentoo-2-8893eabe719703676d60752cb1104b4b73452c59.tar.gz gentoo-2-8893eabe719703676d60752cb1104b4b73452c59.tar.bz2 gentoo-2-8893eabe719703676d60752cb1104b4b73452c59.zip |
version bump (bug #365961) submitted by Locke Shinseiko
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'games-misc/opengfx')
-rw-r--r-- | games-misc/opengfx/ChangeLog | 10 | ||||
-rw-r--r-- | games-misc/opengfx/opengfx-0.3.3.ebuild | 31 |
2 files changed, 39 insertions, 2 deletions
diff --git a/games-misc/opengfx/ChangeLog b/games-misc/opengfx/ChangeLog index 3d7b825c5f5c..e741a9b41326 100644 --- a/games-misc/opengfx/ChangeLog +++ b/games-misc/opengfx/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-misc/opengfx -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/opengfx/ChangeLog,v 1.7 2010/10/15 13:51:54 maekke Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/opengfx/ChangeLog,v 1.8 2011/05/04 17:23:31 mr_bones_ Exp $ + +*opengfx-0.3.3 (04 May 2011) + + 04 May 2011; Michael Sterrett <mr_bones_@gentoo.org> + +opengfx-0.3.3.ebuild: + version bump (bug #365961) submitted by Locke Shinseiko 15 Oct 2010; Markus Meier <maekke@gentoo.org> opengfx-0.2.4.ebuild: add ~arm, bug #316003 diff --git a/games-misc/opengfx/opengfx-0.3.3.ebuild b/games-misc/opengfx/opengfx-0.3.3.ebuild new file mode 100644 index 000000000000..6330d78e4072 --- /dev/null +++ b/games-misc/opengfx/opengfx-0.3.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/opengfx/opengfx-0.3.3.ebuild,v 1.1 2011/05/04 17:23:31 mr_bones_ Exp $ + +EAPI=2 +inherit games + +DESCRIPTION="OpenGFX data files for OpenTTD" +HOMEPAGE="http://bundles.openttdcoop.org/opengfx/" +SRC_URI="http://bundles.openttdcoop.org/opengfx/releases/${PV}/${P}-source.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="" + +S=${WORKDIR}/${P}-source + +DEPEND=">=games-util/grfcodec-5.1.1" +RDEPEND="" + +src_compile() { + emake bundle || die +} + +src_install() { + insinto "${GAMES_DATADIR}/openttd/data/" + doins *.grf opengfx.obg || die + dodoc docs/{changelog.txt,readme.txt} || die + prepgamesdirs +} |