blob: 511a430da84444d6f2d2a238054fa804c4fa8dbf (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.11.7.ebuild,v 1.3 2003/05/16 23:31:38 liquidx Exp $
IUSE="ssl"
S="${WORKDIR}/${PN}"
SRC_URI="http://www.openh323.org/bin/${PN}_${PV}.tar.gz"
HOMEPAGE="http://www.openh323.org"
DESCRIPTION="Open Source implementation of the ITU H.323 teleconferencing protocol"
DEPEND=">=dev-libs/pwlib-1.4.11
ssl? ( dev-libs/openssl )"
SLOT="0"
LICENSE="MPL-1.1"
KEYWORDS="x86 ~ppc -sparc "
pkg_setup() {
# to prevent merge problems with broken makefiles from old
# pwlib versions, we double-check here.
if [ "` fgrep '\$(OPENSSLDIR)/include' /usr/share/pwlib/make/unix.mak`" ]; then
# patch unix.mak so it doesn't require annoying
# unmerge/merge cycle to upgrade
einfo "Fixing broken pwlib makefile."
cd /usr/share/pwlib/make
cp unix.mak unix.mak.orig
sed \
-e "s:-DP_SSL -I\$(OPENSSLDIR)/include -I\$(OPENSSLDIR)/crypto:-DP_SSL:" \
-e "s:^LDFLAGS.*\+= -L\$(OPENSSLDIR)/lib -L\$(OPENSSLDIR):LDFLAGS +=:" \
unix.mak.orig > unix.mak
[ -f unix.mak.orig ] && rm -f unix.mak.orig
fi
}
src_compile() {
export PWLIBDIR=/usr/share/pwlib
export OPENH323DIR=${S}
if [ "`use ssl`" ]; then
export OPENSSLFLAG=1
export OPENSSLDIR=/usr
export OPENSSLLIBS="-lssl -lcrypt"
fi
make optshared || die
}
src_install() {
dodir /usr/lib /usr/share/openh323
cd ${S}/lib
mv lib* ${D}/usr/lib
cd ${S}
cp -a * ${D}/usr/share/openh323
rm -rf ${D}/usr/share/openh323/make/CVS
rm -rf ${D}/usr/share/openh323/tools/CVS
rm -rf ${D}/usr/share/openh323/tools/asnparser/CVS
rm -rf ${D}/usr/share/openh323/src
rm -rf ${D}/usr/share/openh323/include/CVS
rm -rf ${D}/usr/share/openh323/include/ptlib/unix/CVS
rm -rf ${D}/usr/share/openh323/include/ptlib/CVS
# mod to keep gnugk happy
insinto /usr/share/openh323/src
newins ${FILESDIR}/openh323-1.11.2-emptyMakefile Makefile
cd ${D}/usr/lib
if [ ${ARCH} = "ppc" ] ; then
ln -sf libh323_linux_ppc_r.so.${PV} libopenh323.so
else
ln -sf libh323_linux_x86_r.so.${PV} libopenh323.so
fi
}
|