diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2011-03-27 21:56:22 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2011-03-27 21:56:22 +0000 |
commit | 776fa3f473ed8ac2fbb5ab0437b39f4b498c0bca (patch) | |
tree | 8cd3e7e3c5040b2f5f8c7cdc2bb7a67213a05e4f /app-text | |
parent | Revision bump: fix udev rules for keys with slashes in serial numbers (bug #3... (diff) | |
download | gentoo-2-776fa3f473ed8ac2fbb5ab0437b39f4b498c0bca.tar.gz gentoo-2-776fa3f473ed8ac2fbb5ab0437b39f4b498c0bca.tar.bz2 gentoo-2-776fa3f473ed8ac2fbb5ab0437b39f4b498c0bca.zip |
remove old ebuilds
(Portage version: 2.1.9.44/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/recode/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/recode/recode-3.6_p16.ebuild | 61 |
2 files changed, 4 insertions, 62 deletions
diff --git a/app-text/recode/ChangeLog b/app-text/recode/ChangeLog index 9853e7d78391..9379dc1316f0 100644 --- a/app-text/recode/ChangeLog +++ b/app-text/recode/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/recode # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/recode/ChangeLog,v 1.93 2011/03/21 10:58:51 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/recode/ChangeLog,v 1.94 2011/03/27 21:56:22 darkside Exp $ + + 27 Mar 2011; Jeremy Olexa <darkside@gentoo.org> -recode-3.6_p16.ebuild: + remove old ebuilds 21 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> recode-3.6_p17-r2.ebuild: ppc64 stable wrt #350960 diff --git a/app-text/recode/recode-3.6_p16.ebuild b/app-text/recode/recode-3.6_p16.ebuild deleted file mode 100644 index efff033673ce..000000000000 --- a/app-text/recode/recode-3.6_p16.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/recode/recode-3.6_p16.ebuild,v 1.9 2011/01/07 13:35:30 jlec Exp $ - -inherit autotools eutils libtool toolchain-funcs - -MY_P=${P%_*} -MY_PV=${PV%_*} -DEB_PATCH=${PV#*p} - -DESCRIPTION="Convert files between various character sets" -HOMEPAGE="http://recode.progiciels-bpi.ca/" -SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz - mirror://debian/pool/main/r/${PN}/${PN}_${MY_PV}-${DEB_PATCH}.diff.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" -IUSE="nls" - -DEPEND=" - sys-devel/flex - nls? ( sys-devel/gettext )" -RDEPEND="" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch \ - "${FILESDIR}/${MY_P}-gettextfix.diff" \ - "${FILESDIR}"/${MY_P}-as-if.patch \ - "${WORKDIR}"/${PN}_${MY_PV}-${DEB_PATCH}.diff - sed -i '1i#include <stdlib.h>' src/argmatch.c || die - - # Needed under FreeBSD, too - epatch "${FILESDIR}"/${MY_P}-ppc-macos.diff - cp lib/error.c lib/xstrdup.c src/ || die "file copy failed" - - # Remove old libtool macros - rm "${S}"/acinclude.m4 - - eautoreconf - elibtoolize -} - -src_compile() { - tc-export CC LD - # --without-included-gettext means we always use system headers - # and library - econf --without-included-gettext $(use_enable nls) - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS BACKLOG ChangeLog NEWS README THANKS TODO || die - rm -f "${D}"/usr/lib/charset.alias -} |