blob: c6381dc8f7b211ae41bc5e7b69c480e57117aeb1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/openh323/openh323-1.15.2.ebuild,v 1.1 2004/12/28 03:40:17 stkn Exp $
IUSE="ssl novideo noaudio debug"
inherit eutils flag-o-matic
MY_P="${PN}-v${PV//./_}"
S=${WORKDIR}/${PN}
DESCRIPTION="Open Source implementation of the ITU H.323 teleconferencing protocol"
HOMEPAGE="http://www.openh323.org/"
SRC_URI="http://dev.gentoo.org/~stkn/openh323/${MY_P}-src.tar.gz"
SLOT="0"
LICENSE="MPL-1.1"
KEYWORDS="-*"
DEPEND=">=sys-apps/sed-4
>=dev-libs/pwlib-1.8.0
>=media-video/ffmpeg-0.4.7
ssl? ( dev-libs/openssl )"
src_unpack() {
unpack ${A}
cd ${S}
# Makefile is currently broken with NOTRACE=1, fix that
epatch ${FILESDIR}/${PN}-1.15.2-notrace.diff
}
src_compile() {
local makeopts
local myconf
export PWLIBDIR=/usr/share/pwlib
export PTLIB_CONFIG=/usr/bin/ptlib-config
export OPENH323DIR=${S}
makeopts="${makeopts} ASNPARSER=/usr/bin/asnparser"
# NOTRACE avoid compilation problems, we disable PTRACING using NOTRACE=1
# compile with PTRACING if the user wants to debug stuff
if ! use debug; then
makeopts="${makeopts} NOTRACE=1"
fi
if use ssl; then
export OPENSSLFLAG=1
export OPENSSLDIR=/usr
export OPENSSLLIBS="-lssl -lcrypt"
fi
use novideo \
&& myconf="${myconf} --disable-video"
use noaudio \
&& myconf="${myconf} --disable-audio"
econf ${myconf} || die "configure failed"
emake -j1 ${makeopts} opt apps || die "make failed"
}
src_install() {
local OPENH323_ARCH ALT_ARCH OPENH323_SUFFIX
local makeopts
# make NOTRACE=1 opt ==> linux_$ARCH_n
# make opt ==> linux_$ARCH_r
if ! use debug; then
OPENH323_SUFFIX="n"
makeopts="NOTRACE=1"
else
OPENH323_SUFFIX="r"
fi
# amd64 needs special treatment
if use amd64; then
OPENH323_ARCH="linux_x86_64_${OPENH323_SUFFIX}"
else
OPENH323_ARCH="linux_${ARCH}_${OPENH323_SUFFIX}"
fi
# set ALT_ARCH
if use debug; then
ALT_ARCH=${OPENH323_ARCH/_r/_n}
else
ALT_ARCH=${OPENH323_ARCH/_n/_r}
fi
###
# Install stuff
#
make PREFIX=${D}/usr ${makeopts} install || die "install failed"
dobin ${S}/samples/simple/obj_${OPENH323_ARCH}/simph323
###
# Compatibility "hacks" (openh323-config anyone?)
#
# mod to keep gnugk happy
insinto /usr/share/openh323/src
newins ${FILESDIR}/openh323-1.11.7-emptyMakefile Makefile
# install version.h into $OPENH323DIR
insinto /usr/share/openh323
doins version.h
rm ${D}/usr/lib/libopenh323.so
dosym /usr/lib/libh323_${OPENH323_ARCH}.so.${PV} /usr/lib/libopenh323.so
# for backwards compatibility with _r versioned libraries
for pv in ${PV} ${PV%.[0-9]} ${PV%.[0-9]*.[0-9]}; do
einfo "creating /usr/lib/libh323_${ALT_ARCH}.so.${pv} symlink"
dosym /usr/lib/libh323_${OPENH323_ARCH}.so.${PV} /usr/lib/libh323_${ALT_ARCH}.so.${pv}
done
dosym /usr/lib/libh323_${OPENH323_ARCH}.so.${PV} /usr/lib/libh323_${ALT_ARCH}.so
# these should point to the right directories,
# openh323.org apps and others need this
dosed "s:^OH323_LIBDIR = \$(OPENH323DIR).*:OH323_LIBDIR = /usr/lib:" \
/usr/share/openh323/openh323u.mak
dosed "s:^OH323_INCDIR = \$(OPENH323DIR).*:OH323_INCDIR = /usr/include/openh323:" \
/usr/share/openh323/openh323u.mak
# this is hardcoded now?
dosed "s:^\(OPENH323DIR[ \t]\+=\) ${S}:\1 /usr/share/openh323:" \
/usr/share/openh323/openh323u.mak
}
|