blob: 842f62cfb8e053c9ac955ae6223a7e2e848dec8f (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/STLport/STLport-4.6.2-r2.ebuild,v 1.3 2005/05/07 23:03:12 josejx Exp $
inherit eutils
DESCRIPTION="C++ STL library"
HOMEPAGE="http://www.stlport.org/"
SRC_URI="http://www.stlport.org/archive/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc sparc amd64"
IUSE=""
DEPEND="virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-optimize.patch
epatch ${FILESDIR}/${PV}-gcc-includes.patch
sed -i 's:-D_STLP_REAL_LOCALE_IMPLEMENTED::' src/gcc-linux.mak
if use ppc; then
epatch ${FILESDIR}/STLport-vector.patch
fi
}
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
chmod -R a+r ${D}/usr/include/stlport
dodir /usr/lib
cp -R ${S}/lib/* ${D}/usr/lib/
dosym libstlport_gcc_stldebug.so /usr/lib/libstlport_gcc_debug.so
rm -rf ${D}/usr/lib/obj
cd ${S}/etc/
dodoc ChangeLog* README TODO *.txt
cd ${S}
dohtml -r doc
}
pkg_postinst() {
einfo "Running \`chmod -R a+r ${ROOT}/usr/include/stlport\` to fix #56245"
chmod -R a+r ${ROOT}/usr/include/stlport
}
|