You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/recode/recode-3.6_p17-r2.ebuild

62 lines
1.7 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/recode/recode-3.6_p17-r2.ebuild,v 1.12 2012/05/15 13:00:12 aballier Exp $
EAPI="3"
inherit autotools eutils flag-o-matic 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 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="nls static-libs"
DEPEND="
sys-devel/flex
nls? ( sys-devel/gettext )"
RDEPEND=""
S=${WORKDIR}/${MY_P}
src_prepare() {
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
# Remove old libtool macros
rm "${S}"/acinclude.m4
eautoreconf
elibtoolize
}
src_configure() {
tc-export CC LD
# on solaris -lintl is needed to compile
[[ ${CHOST} == *-solaris* ]] && append-libs "-lintl"
# --without-included-gettext means we always use system headers
# and library
econf \
--without-included-gettext \
$(use_enable nls) \
$(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" install || die
find "${ED}" -name '*.la' -exec rm -f {} +
dodoc AUTHORS BACKLOG ChangeLog NEWS README THANKS TODO || die
rm -f "${ED}"/usr/lib/charset.alias
}