blob: 3395bd42b4926171a2fadb9908e3581b48199d8f (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-3.4.1.ebuild,v 1.1 2006/08/15 07:25:29 sebastian Exp $
DESCRIPTION="IBM Internationalization Components for Unicode"
SRC_URI="ftp://ftp.software.ibm.com/software/globalization/icu/${PV}/${P}.tgz"
HOMEPAGE="http://ibm.com/software/globalization/icu/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="~ppc-macos ~sparc ~x86"
IUSE=""
DEPEND="virtual/libc"
S="${WORKDIR}/${PN}/source"
src_compile() {
econf || die "econf failed"
emake -j1 || die "emake failed" # bug 102426
}
src_install () {
make DESTDIR="${D}" install || die "make install failed"
dohtml ../readme.html ../license.html
}
|