blob: 3381a30a25bbbdb5219764c5120f7ea6932347ff (
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
50
51
52
53
54
55
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/STLport/STLport-4.5.3-r2.ebuild,v 1.6 2003/02/13 10:32:35 vapier Exp $
IUSE=""
inherit eutils
S="${WORKDIR}/${P}"
DESCRIPTION="C++ STL library"
SRC_URI="http://www.stlport.org/archive/${P}.tar.gz"
HOMEPAGE="http://www.stlport.org"
DEPEND="virtual/glibc"
SLOT="0"
KEYWORDS="x86 sparc "
LICENSE="as-is"
src_unpack() {
unpack ${A}
cd ${S}
# Do we use the new multi scheme gcc ?
if ! /usr/sbin/gcc-config --get-current-profile &> /dev/null
then
epatch ${FILESDIR}/${P}-gcc3.patch2
fi
epatch ${FILESDIR}/${P}-optimize.patch
}
src_compile() {
cd src
emake -f gcc-linux.mak || die "Compile failed"
}
src_install () {
dodir /usr/include
cp -R ${S}/stlport ${D}/usr/include
rm -rf ${D}/usr/include/stlport/BC50
dodir /usr/lib
cp -R ${S}/lib/* ${D}/usr/lib/
rm -rf ${D}/usr/lib/obj
cd ${S}/etc/
dodoc ChangeLog* README TODO *.txt
cd ${S}
dohtml -r doc
}
|