diff options
author | 2013-01-22 18:08:31 +0000 | |
---|---|---|
committer | 2013-01-22 18:08:31 +0000 | |
commit | d7759a34a6b128bcc59d976d6cd0c0c38bffa3de (patch) | |
tree | e0cfbc7e0cdfb91884f36bc8b8f86d23eb6e30db /games-util | |
parent | old (diff) | |
download | gentoo-2-d7759a34a6b128bcc59d976d6cd0c0c38bffa3de.tar.gz gentoo-2-d7759a34a6b128bcc59d976d6cd0c0c38bffa3de.tar.bz2 gentoo-2-d7759a34a6b128bcc59d976d6cd0c0c38bffa3de.zip |
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/catcodec/ChangeLog | 9 | ||||
-rw-r--r-- | games-util/catcodec/catcodec-1.0.0.ebuild | 26 | ||||
-rw-r--r-- | games-util/catcodec/files/catcodec-1.0.0-build.patch | 26 |
3 files changed, 6 insertions, 55 deletions
diff --git a/games-util/catcodec/ChangeLog b/games-util/catcodec/ChangeLog index 9e916994ac51..deec94c3e32d 100644 --- a/games-util/catcodec/ChangeLog +++ b/games-util/catcodec/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-util/catcodec -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/catcodec/ChangeLog,v 1.10 2012/05/19 20:27:17 mr_bones_ Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/catcodec/ChangeLog,v 1.11 2013/01/22 18:08:31 mr_bones_ Exp $ + + 22 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -catcodec-1.0.0.ebuild, + -files/catcodec-1.0.0-build.patch: + old 19 May 2012; Michael Sterrett <mr_bones_@gentoo.org> catcodec-1.0.3.ebuild, +files/catcodec-1.0.3-gcc47.patch: @@ -40,4 +44,3 @@ +catcodec-1.0.0.ebuild, +files/catcodec-1.0.0-build.patch: initial commit - ebuild submitted by Locke 'Wizzleby' Shinseiko via bug #308355 - diff --git a/games-util/catcodec/catcodec-1.0.0.ebuild b/games-util/catcodec/catcodec-1.0.0.ebuild deleted file mode 100644 index 34e495452884..000000000000 --- a/games-util/catcodec/catcodec-1.0.0.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/catcodec/catcodec-1.0.0.ebuild,v 1.7 2010/10/15 13:45:59 maekke Exp $ - -EAPI=2 -inherit eutils toolchain-funcs - -DESCRIPTION="Decodes and encodes sample catalogues for OpenTTD" -HOMEPAGE="http://www.openttd.org/en/download-catcodec" -SRC_URI="http://binaries.openttd.org/extra/catcodec/${PV}/${P}-source.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ppc64 x86" -IUSE="" - -src_prepare() { - epatch "${FILESDIR}"/${P}-build.patch - tc-export CXX -} - -src_install() { - dobin catcodec || die - dodoc README || die - doman catcodec.1 || die -} diff --git a/games-util/catcodec/files/catcodec-1.0.0-build.patch b/games-util/catcodec/files/catcodec-1.0.0-build.patch deleted file mode 100644 index ebc5f7cda440..000000000000 --- a/games-util/catcodec/files/catcodec-1.0.0-build.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -ru catcodec-1.0.0.orig/Makefile catcodec-1.0.0/Makefile ---- catcodec-1.0.0.orig/Makefile 2009-11-05 17:33:48.000000000 -0500 -+++ catcodec-1.0.0/Makefile 2010-04-07 12:52:09.839777068 -0400 -@@ -19,18 +19,18 @@ - OBJS = catcodec.o io.o sample.o rev.o - OS = unknown - --CFLAGS += -Wall -Wcast-qual -Wwrite-strings -Wno-multichar -+CXXFLAGS += -Wall -Wcast-qual -Wwrite-strings -Wno-multichar - ifdef DEBUG -- CFLAGS += -g -ggdb -+ CXXFLAGS += -g -ggdb - endif - - all: $(CATCODEC) - - %.o: %.cpp -- $(CXX) $(CFLAGS) -c -o $@ $^ -+ $(CXX) $(CXXFLAGS) -c -o $@ $^ - - $(CATCODEC): $(OBJS) -- $(CXX) $(CFLAGS) -o $@ $^ -+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ - - VERSION := $(shell ./findversion.sh | cut -f 1 -d' ') - RES := $(shell if [ "`cat version.cache 2>/dev/null`" != "$(VERSION)" ]; then echo "$(VERSION)" > version.cache; fi ) |