blob: 5e23bc9df447900720e120d21e3c1ca252a44b65 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/pwlib/pwlib-1.8.7.ebuild,v 1.1 2005/09/12 20:03:09 stkn Exp $
inherit eutils flag-o-matic multilib
IUSE="alsa esd ieee1394 oss sdl ssl v4l2"
DESCRIPTION="Portable Multiplatform Class Libraries for OpenH323"
HOMEPAGE="http://www.openh323.org/"
SRC_URI="http://www.gnomemeeting.org/admin/downloads/latest/sources/sources/${P}.tar.gz"
LICENSE="MPL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
RDEPEND="
dev-libs/expat
net-nds/openldap
esd? ( media-sound/esound )
sdl? ( media-libs/libsdl )
ssl? ( dev-libs/openssl )
alsa? ( media-libs/alsa-lib )
ieee1394? ( media-libs/libdv
sys-libs/libavc1394
sys-libs/libraw1394
<media-libs/libdc1394-1.9.9
!>=media-libs/libdc1394-2.0.0_pre0 )"
DEPEND="${REDEPEND}
>=sys-devel/bison-1.28
>=sys-devel/flex-2.5.4a
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
# filter out -O3 and -mcpu embedded compiler flags
sed -i \
-e "s:-mcpu=\$(CPUTYPE)::" \
-e "s:-O3 -DNDEBUG:-DNDEBUG:" \
make/unix.mak
# newer esound package doesn't install libesd.a anymore,
# use dynamic library instead (fixes #100432)
epatch ${FILESDIR}/pwlib-1.6.3-dyn-esd.patch
# don't break make install if there are no plugins to install
epatch ${FILESDIR}/pwlib-1.8.7-instplugins.diff
}
src_compile() {
local myconf
# may cause ICE (bug #70638)
filter-flags -fstack-protector
if use ssl; then
export OPENSSLFLAG=1
export OPENSSLDIR="/usr"
export OPENSSLLIBS="-lssl -lcrypt"
fi
## gnomemeeting-1.00 requires pwlib to be built w/ IPV6 support
## (even if itself is built without...)
#use ipv6 \
# && myconf="${myconf} --enable-ipv6" \
# || myconf="${myconf} --disable-ipv6"
# enable default plugins and force ipv6
myconf="--enable-ipv6 --enable-v4l"
use ieee1394 \
&& myconf="${myconf} --enable-avc --enable-dc" \
|| myconf="${myconf} --disable-avc --disable-dc"
use alsa \
&& myconf="${myconf} --enable-alsa"
if use esd; then
# fixes bug #45059
export ESDDIR=/usr
# ESD includes are in /usr/include?
# remove include path, bad things may happen if we leave it in there
sed -i -e "s:-I\$(ESDDIR)/include::" \
${S}/make/unix.mak
fi
econf \
--enable-plugins \
$(use_enable v4l2) \
$(use_enable sdl) \
$(use_enable oss) \
${myconf} || die "configure failed"
# Horrible hack to strip out -L/usr/lib to allow upgrades
# problem is it adds -L/usr/lib before -L${S} when SSL is
# enabled. Same thing for -I/usr/include.
sed -i -e "s:^\(LDFLAGS.*\)-L/usr/lib:\1:" \
-e "s:^\(STDCCFLAGS.*\)-I/usr/include:\1:" \
${S}/make/ptbuildopts.mak
sed -i -e "s:^\(LDFLAGS[\s]*=.*\) -L/usr/lib:\1:" \
-e "s:^\(LDFLAGS[\s]*=.*\) -I/usr/include:\1:" \
-e "s:^\(CCFLAGS[\s]*=.*\) -I/usr/include:\1:" \
${S}/make/ptlib-config
emake -j1 opt || die "make failed"
}
src_install() {
local libdir libname
libdir=$(get_libdir)
# makefile doesn't create ${D}/usr/bin
dodir /usr/bin
make PREFIX=/usr DESTDIR=${D} install || die "install failed"
# fix symlink
rm ${D}/usr/${libdir}/libpt.so
libname=$(basename `ls ${D}/usr/${libdir}/libpt_*_*_r.so.${PV}`)
dosym /usr/${libdir}/${libname} /usr/${libdir}/libpt.so
# strip ${S} stuff
sed -i -e "s:^PWLIBDIR.*:PWLIBDIR=/usr/share/pwlib:" \
${D}/usr/bin/ptlib-config \
${D}/usr/share/pwlib/make/ptlib-config \
${D}/usr/share/pwlib/make/ptbuildopts.mak
# fix makefiles to use headers from /usr/include and libs from /usr/lib
# instead of /usr/share/pwlib
sed -i -e "s:-I\$(PWLIBDIR)\(/include[a-zA-Z0-9_/-]\+\):-I/usr/include\1:g" \
-e "s:-I\$(PWLIBDIR)/include::g" \
-e "s:^\(PW_LIBDIR[ \t]\+=\).*:\1 /usr/${libdir}:" \
${D}/usr/share/pwlib/make/*.mak
# dodgy configure/makefiles forget to expand this
sed -i -e "s:\${exec_prefix}:/usr:" \
${D}/usr/bin/ptlib-config \
${D}/usr/share/pwlib/make/ptlib-config
# copy version.h
insinto /usr/share/pwlib
doins version.h
dodoc ReadMe.txt ReadMe_QOS.txt History.txt mpl-1.0.htm
}
|