blob: fafe503e23f1b831aa5d1ace4392290db6014bef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# 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
}
|