blob: fe6eb1e604cb03784e0c81c5552c2b15368a10a4 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-2.8.ebuild,v 1.9 2004/07/14 14:30:08 agriffis Exp $
S=${WORKDIR}/${PN}/source
DESCRIPTION="IBM Internationalization Components for Unicode"
SRC_URI="ftp://www-126.ibm.com/pub/icu/${PV}/${P}.tgz"
HOMEPAGE="http://oss.software.ibm.com/icu/"
SLOT="0"
LICENSE="as-is"
KEYWORDS="~x86 ~amd64 alpha ~ppc s390"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
econf --enable-layout || die
make || die "emake failed"
}
src_install () {
make DESTDIR=${D} install || die "make install failed"
dohtml ../readme.html ../license.html
}
|