summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-04-20 08:32:08 +0000
committerMike Frysinger <vapier@gentoo.org>2008-04-20 08:32:08 +0000
commit8718f048c34bc347f48dc1e3ddaa70a0aafc5ddb (patch)
tree066477e0fe9ba59ec2139478d754b852929f49dc /app-text/recode
parentUse Debian patched tarball to fix #158438 and add fix by Ryan Hill for buildi... (diff)
downloadgentoo-2-8718f048c34bc347f48dc1e3ddaa70a0aafc5ddb.tar.gz
gentoo-2-8718f048c34bc347f48dc1e3ddaa70a0aafc5ddb.tar.bz2
gentoo-2-8718f048c34bc347f48dc1e3ddaa70a0aafc5ddb.zip
old
Diffstat (limited to 'app-text/recode')
-rw-r--r--app-text/recode/recode-3.6-r1.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/app-text/recode/recode-3.6-r1.ebuild b/app-text/recode/recode-3.6-r1.ebuild
deleted file mode 100644
index fafe503e23f1..000000000000
--- a/app-text/recode/recode-3.6-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/recode/recode-3.6-r1.ebuild,v 1.27 2008/01/19 15:00:07 grobian Exp $
-
-inherit flag-o-matic eutils toolchain-funcs libtool
-
-DESCRIPTION="Convert files between various character sets"
-HOMEPAGE="http://www.gnu.org/software/recode/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz
- mirror://gentoo/${P}-debian.diff.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-IUSE="nls"
-
-DEPEND="nls? ( sys-devel/gettext )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${WORKDIR}/${P}-debian.diff"
-}
-
-src_compile() {
- # gcc-3.2 crashes if we don't remove any -O?
- [[ ${ARCH} == "x86" && $(gcc-version) == "3.2" ]] && filter-flags -O?
-
- replace-cpu-flags pentium4 pentium3
-
- econf $(use_enable nls) || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS BACKLOG ChangeLog NEWS README THANKS TODO
-}