summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2010-12-29 01:59:18 +0000
committerJeremy Olexa <darkside@gentoo.org>2010-12-29 01:59:18 +0000
commit9633feb796295b98d91bdfaf33f57df115abf82a (patch)
treedc269ac01a36312d3dbf979dfe3067b41d1c218e /app-misc/countrycodes
parentstable ppc64, bug 342137 (diff)
downloadgentoo-2-9633feb796295b98d91bdfaf33f57df115abf82a.tar.gz
gentoo-2-9633feb796295b98d91bdfaf33f57df115abf82a.tar.bz2
gentoo-2-9633feb796295b98d91bdfaf33f57df115abf82a.zip
remove old
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/countrycodes')
-rw-r--r--app-misc/countrycodes/ChangeLog6
-rw-r--r--app-misc/countrycodes/countrycodes-1.0.5.ebuild43
2 files changed, 5 insertions, 44 deletions
diff --git a/app-misc/countrycodes/ChangeLog b/app-misc/countrycodes/ChangeLog
index 777ee701d548..b926917e651b 100644
--- a/app-misc/countrycodes/ChangeLog
+++ b/app-misc/countrycodes/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/countrycodes
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/countrycodes/ChangeLog,v 1.27 2010/12/29 01:34:08 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/countrycodes/ChangeLog,v 1.28 2010/12/29 01:59:18 darkside Exp $
+
+ 29 Dec 2010; Jeremy Olexa <darkside@gentoo.org>
+ -countrycodes-1.0.5.ebuild:
+ remove old
29 Dec 2010; Brent Baude <ranger@gentoo.org> countrycodes-1.0.5-r1.ebuild:
stable ppc64, bug 342137
diff --git a/app-misc/countrycodes/countrycodes-1.0.5.ebuild b/app-misc/countrycodes/countrycodes-1.0.5.ebuild
deleted file mode 100644
index 1c38255d1b37..000000000000
--- a/app-misc/countrycodes/countrycodes-1.0.5.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/countrycodes/countrycodes-1.0.5.ebuild,v 1.21 2010/10/19 06:01:05 leio Exp $
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="An ISO 3166 country code finder"
-HOMEPAGE="http://www.grigna.com/diego/linux/countrycodes/"
-SRC_URI="http://www.grigna.com/diego/linux/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- sys-apps/sed"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}"/${P}-Makefile.patch
-
- sed -i -e "s:gcc:$(tc-getCC):" src/Makefile || die "sed failed"
-}
-
-src_compile() {
- emake -C src CCOPTS="${CFLAGS}" || die "emake failed"
-}
-
-src_install() {
- dodir /usr/bin /usr/share/man/man1
- make \
- -C src \
- prefix="${D}/usr" \
- mandir="${D}/usr/share/man/man1" install || die "make install failed"
- dosym iso3166 /usr/bin/countrycodes
- dosym iso3166.1 /usr/share/man/man1/countrycodes
- dodoc doc/{Changelog,README}
- prepman
-}