Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 386581
Collapse All | Expand All

(-)idnkit-1.0-r1.ebuild.old (-5 / +12 lines)
Lines 2-10 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/idnkit-1.0-r1.ebuild,v 1.7 2010/11/06 22:23:26 halcy0n Exp $
3
# $Header: /var/cvsroot/gentoo-x86/net-dns/idnkit/idnkit-1.0-r1.ebuild,v 1.7 2010/11/06 22:23:26 halcy0n Exp $
4
4
5
EAPI="2"
5
EAPI="4"
6
6
7
inherit autotools eutils fixheadtails
7
inherit autotools autotools-utils eutils fixheadtails 
8
8
9
DESCRIPTION="Toolkit for Internationalized Domain Names (IDN)"
9
DESCRIPTION="Toolkit for Internationalized Domain Names (IDN)"
10
HOMEPAGE="http://www.nic.ad.jp/ja/idn/idnkit/download/"
10
HOMEPAGE="http://www.nic.ad.jp/ja/idn/idnkit/download/"
Lines 13-25 Link Here
13
LICENSE="JNIC"
13
LICENSE="JNIC"
14
SLOT="0"
14
SLOT="0"
15
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
15
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
16
IUSE=""
16
IUSE="static-libs"
17
17
18
DEPEND="sys-libs/glibc"
18
DEPEND="sys-libs/glibc"
19
# non gnu systems need libiconv
19
# non gnu systems need libiconv
20
20
21
S=${WORKDIR}/${P}-src
21
S=${WORKDIR}/${P}-src
22
22
23
DOCS=( ChangeLog DISTFILES NEWS README README.ja )
24
23
src_prepare() {
25
src_prepare() {
24
	ht_fix_all
26
	ht_fix_all
25
	# Bug 263135, old broken libtool bundled
27
	# Bug 263135, old broken libtool bundled
Lines 28-34 Link Here
28
	eautoreconf
30
	eautoreconf
29
}
31
}
30
32
33
src_configure() {
34
	econf \
35
		$(use_enable static-libs static)
36
}
37
31
src_install() {
38
src_install() {
32
	emake DESTDIR="${D}" install || die
39
	default
33
	dodoc ChangeLog DISTFILES NEWS README README.ja
40
	remove_libtool_files
34
}
41
}

Return to bug 386581