blob: 9f2affa456bea0031d5dd57f4fbed1a12c2d2003 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/nspr/nspr-4.1.2.ebuild,v 1.9 2003/09/06 22:29:25 msterret Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Netscape Portable Runtime"
SRC_URI="ftp://ftp.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz"
HOMEPAGE="http://www.mozilla.org/projects/nspr/"
SLOT="0"
LICENSE="MPL-1.1"
KEYWORDS="x86 sparc "
DEPEND="virtual/glibc"
src_unpack() {
unpack ${P}.tar.gz
mkdir ${S}/build
mkdir ${S}/inst
}
src_compile() {
cd ${S}/build
../mozilla/nsprpub/configure \
--host=${CHOST} \
--prefix=${S}/inst \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
make || die
}
src_install () {
# Their build system is royally fucked, as usual
dolib ${S}/inst/bin/lib*.so
dolib ${S}/inst/lib/lib*.a
insinto /usr/include/nspr
doins ${S}/inst/include/*.h
insinto /usr/include/nspr/md
doins ${S}/inst/include/md/*.cfg
insinto /usr/include/nspr/private
doins ${S}/inst/include/private/*.h
insinto /usr/include/nspr/obsolete
doins ${S}/inst/include/obsolete/*.h
cd ${S}/mozilla/nsprpub
}
|