blob: 4a1933c729b624e9a51710b643aa0909b905c2a2 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Charles Kerr <punt@kerrskorner.org>
# Maintainer: Chris Houser <chouser@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-2.0.ebuild,v 1.2 2002/04/27 23:08:36 bangert Exp $
S=${WORKDIR}/${PN}/source
DESCRIPTION="IBM Internationalization Components for Unicode"
SRC_URI="http://oss.software.ibm.com/icu/download/${PV}/${P}.tgz"
HOMEPAGE="http://oss.software.ibm.com/icu/index.html"
DEPEND=""
RDEPEND=""
src_compile() {
./configure \
--build=${CHOST} \
--enable-layout \
--prefix=/usr \
--mandir=/usr/share/man || die "./configure failed"
emake || die "emake failed"
}
src_install () {
make DESTDIR=${D} install || die "make install failed"
dohtml ../readme.html ../license.html
}
|