diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2012-10-31 13:41:34 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2012-10-31 13:41:34 +0000 |
commit | fb4c9950174d23e386bcb29df9743693b6840c2e (patch) | |
tree | 14a1a346697c7c0ffc055ed6138cd3f454f14c8a /games-util | |
parent | vanilla-3.6.4 + genpatches-3.6-5 + grsecurity-2.9.1-3.6.4-201210291446 (diff) | |
download | gentoo-2-fb4c9950174d23e386bcb29df9743693b6840c2e.tar.gz gentoo-2-fb4c9950174d23e386bcb29df9743693b6840c2e.tar.bz2 gentoo-2-fb4c9950174d23e386bcb29df9743693b6840c2e.zip |
Removed old version affected by Bug #320797
(Portage version: 2.1.11.31/cvs/Linux i686, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/grfcodec/ChangeLog | 5 | ||||
-rw-r--r-- | games-util/grfcodec/grfcodec-5.1.1.ebuild | 57 |
2 files changed, 4 insertions, 58 deletions
diff --git a/games-util/grfcodec/ChangeLog b/games-util/grfcodec/ChangeLog index 6df278516622..c4b65aad9961 100644 --- a/games-util/grfcodec/ChangeLog +++ b/games-util/grfcodec/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-util/grfcodec # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/ChangeLog,v 1.15 2012/06/07 21:08:33 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/ChangeLog,v 1.16 2012/10/31 13:41:33 tupone Exp $ + + 31 Oct 2012; Tupone Alfredo <tupone@gentoo.org> -grfcodec-5.1.1.ebuild: + Removed old version affected by Bug #320797 from Diego 07 Jun 2012; Brent Baude <ranger@gentoo.org> grfcodec-6.0.0.ebuild: Marking grfcodec-6.0.0 ppc for bug 418401 diff --git a/games-util/grfcodec/grfcodec-5.1.1.ebuild b/games-util/grfcodec/grfcodec-5.1.1.ebuild deleted file mode 100644 index 207c2095aff1..000000000000 --- a/games-util/grfcodec/grfcodec-5.1.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/grfcodec/grfcodec-5.1.1.ebuild,v 1.6 2011/07/23 16:42:43 xarthisius Exp $ - -EAPI=3 - -if [ "${PV%9999}" != "${PV}" ] ; then - SCM=mercurial - EHG_REPO_URI="http://hg.openttdcoop.org/${PN}" -fi - -inherit toolchain-funcs ${SCM} - -MY_PV=${PV/_rc/-RC} -DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files" -HOMEPAGE="http://dev.openttdcoop.org/projects/grfcodec" - -if [ "${PV%9999}" != "${PV}" ] ; then - SRC_URI="" -else - SRC_URI="http://binaries.openttd.org/extra/${PN}/${MY_PV}/${PN}-${MY_PV}-source.tar.gz" -fi - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ppc64 x86" -IUSE="" - -if [ "${PV%9999}" != "${PV}" ] ; then - S=${WORKDIR}/${PN} -else - S=${WORKDIR}/${PN}-${MY_PV}-source -fi - -DEPEND="!games-util/nforenum - dev-lang/perl - dev-libs/boost - media-libs/libpng" -RDEPEND="" - -src_prepare() { -# Set up Makefile.local so that we respect CXXFLAGS/LDFLAGS -cat > Makefile.local <<-__EOF__ - CXX = $(tc-getCXX) - CXXFLAGS = ${CXXFLAGS} - LDOPT = ${LDFLAGS} - UPX = - V = 1 - FLAGS= - __EOF__ -} - -src_install() { - dobin ${PN} grf{diff,id,merge} nforenum || die - doman docs/*.1 || die - dodoc changelog.txt docs/*.txt || die -} |