diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-10-18 06:04:47 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-10-18 06:04:47 +0000 |
commit | 3ca05d291bcceda0d548762f3fec5d0773110778 (patch) | |
tree | ae86b18417e5a606b94cbcb616c6dca374786d59 /app-text/recode | |
parent | Version bump. (diff) | |
download | historical-3ca05d291bcceda0d548762f3fec5d0773110778.tar.gz historical-3ca05d291bcceda0d548762f3fec5d0773110778.tar.bz2 historical-3ca05d291bcceda0d548762f3fec5d0773110778.zip |
old
Diffstat (limited to 'app-text/recode')
-rw-r--r-- | app-text/recode/recode-3.6_p15.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/app-text/recode/recode-3.6_p15.ebuild b/app-text/recode/recode-3.6_p15.ebuild deleted file mode 100644 index 74a8eb608d62..000000000000 --- a/app-text/recode/recode-3.6_p15.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/recode/recode-3.6_p15.ebuild,v 1.10 2009/03/19 16:10:21 josejx 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="nls? ( sys-devel/gettext )" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${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) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "make install failed" - dodoc AUTHORS BACKLOG ChangeLog NEWS README THANKS TODO - rm -f "${D}"/usr/lib/charset.alias -} |