diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2014-06-13 07:43:35 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2014-06-13 07:43:35 +0000 |
commit | eaf1700acb52f307b001a52acb35e9bab304d9af (patch) | |
tree | 1b652ba55df5f2a836f898705f11c180ec8aa2a6 /games-util/grfcodec | |
parent | Version bump. (diff) | |
download | gentoo-2-eaf1700acb52f307b001a52acb35e9bab304d9af.tar.gz gentoo-2-eaf1700acb52f307b001a52acb35e9bab304d9af.tar.bz2 gentoo-2-eaf1700acb52f307b001a52acb35e9bab304d9af.zip |
version bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-util/grfcodec')
-rw-r--r-- | games-util/grfcodec/ChangeLog | 9 | ||||
-rw-r--r-- | games-util/grfcodec/grfcodec-6.0.4.ebuild | 50 |
2 files changed, 57 insertions, 2 deletions
diff --git a/games-util/grfcodec/ChangeLog b/games-util/grfcodec/ChangeLog index 7d3bdfd5ca23..9835819a1df7 100644 --- a/games-util/grfcodec/ChangeLog +++ b/games-util/grfcodec/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-util/grfcodec -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/ChangeLog,v 1.17 2013/01/29 21:05:12 mr_bones_ Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/ChangeLog,v 1.18 2014/06/13 07:43:35 mr_bones_ Exp $ + +*grfcodec-6.0.4 (13 Jun 2014) + + 13 Jun 2014; Michael Sterrett <mr_bones_@gentoo.org> +grfcodec-6.0.4.ebuild: + version bump *grfcodec-6.0.2 (29 Jan 2013) diff --git a/games-util/grfcodec/grfcodec-6.0.4.ebuild b/games-util/grfcodec/grfcodec-6.0.4.ebuild new file mode 100644 index 000000000000..b42bd98fc454 --- /dev/null +++ b/games-util/grfcodec/grfcodec-6.0.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/grfcodec-6.0.4.ebuild,v 1.1 2014/06/13 07:43:35 mr_bones_ Exp $ + +EAPI=5 + +if [ "${PV%9999}" != "${PV}" ] ; then + SCM=mercurial + EHG_REPO_URI="http://hg.openttdcoop.org/${PN}" +fi + +inherit toolchain-funcs ${SCM} + +DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files" +HOMEPAGE="http://dev.openttdcoop.org/projects/grfcodec" +[[ -z ${SCM} ]] && SRC_URI="http://binaries.openttd.org/extra/${PN}/${PV}/${P}-source.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="" + +[[ -n ${SCM} ]] && S=${WORKDIR}/${PN} + +DEPEND="!games-util/nforenum + dev-lang/perl + dev-libs/boost + media-libs/libpng:0" +RDEPEND="" + +src_prepare() { +# Set up Makefile.local so that we respect CXXFLAGS/LDFLAGS +cat > Makefile.local <<-__EOF__ + CXX=$(tc-getCXX) + BOOST_INCLUDE=/usr/include + CXXFLAGS=${CXXFLAGS} + LDOPT=${LDFLAGS} + UPX= + V=1 + FLAGS= + EXE= + __EOF__ + sed -i -e 's/-O2//g' Makefile || die +} + +src_install() { + dobin grfcodec grfid grfstrip nforenum + doman docs/*.1 + dodoc changelog.txt docs/*.txt +} |