blob: 82ec5bf28ea546f5cc2fd346bbd5c5c6f3b0af1e (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/siproxd/siproxd-0.8.0-r1.ebuild,v 1.4 2011/01/20 16:39:28 chithanh Exp $
EAPI="2"
inherit eutils
DESCRIPTION="A proxy/masquerading daemon for the SIP protocol"
HOMEPAGE="http://siproxd.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="examples doc static"
# TODO: debug can be used but dmalloc is breaking the build
# upstream has been contacted, see bug 2649238 in their bugtracker
RDEPEND=">=net-libs/libosip-3.0.0"
# debug? ( dev-libs/dmalloc[threads] )"
DEPEND="${RDEPEND}
<sys-devel/libtool-2.4:2
doc? ( app-text/docbook-sgml-utils
app-text/docbook-sgml-dtd:4.2 )"
# docbook-sgml-utils is for building doc
# docbook-sgml-dtd is for the doc dtd even if docbook-sgml-utils depends on it
pkg_setup() {
enewgroup siproxd
enewuser siproxd -1 -1 /dev/null siproxd
}
src_prepare() {
# make the daemon run as user 'siproxd' by default
sed -i -e "s:nobody:siproxd:" doc/siproxd.conf.example \
|| die "patching doc/siproxd.conf.example failed"
# do not fail when building with external libltdl
sed -i 's/libltdl //' Makefile.in Makefile.am || die "patching Makefile failed"
epatch "${FILESDIR}/${PN}-libtool-2.2.patch"
# do not crash when building with external libltdl, bug 308495
sed -i 's|"../libltdl/ltdl.h"|<ltdl.h>|' src/plugins.h || die "patching plugins.h failed"
}
src_configure() {
# static-libosip2 make it link statically against libosip2
# static build static version of plugins, forced to true
econf \
$(use_enable doc) \
$(use_enable static static-libosip2) \
--enable-static
#$(use debug && use_enable debug dmalloc) \
# statically linked plugins to libosip2 causes a shared lib linking with
# static lib (gcc seems not to like it : portable issue it says).
# there was also DT_TEXREL issue and stripping of static plugins failed
# so shared lib has to be used for plugins
# upstream has been contacted, see bug 2649351 in their bugtracker
if use static; then
sed -i -r -e \
"s:LIBS =(.*)( \/[^ ]*libosip[^ ]*\.a)( \/[^ ]*libosip[^ ]*\.a)(.*):LIBS_STATIC =\1\2\3\4\nLIBS = \1\4 -losip2 -losipparser2:" \
src/Makefile || die "patching src/Makefile failed"
sed -i -e \
"s:\$(siproxd_LDADD) \$(LIBS):\$(siproxd_LDADD) \$(LIBS_STATIC):" \
src/Makefile || die "patching src/Makefile failed"
fi
}
src_install() {
einstall || die "einstall failed"
newinitd "${FILESDIR}"/${PN}.rc6 ${PN} || die "newinitd failed"
dodoc AUTHORS ChangeLog NEWS README RELNOTES TODO \
doc/FAQ doc/FLI4L_HOWTO.txt doc/KNOWN_BUGS \
|| die "dodoc failed"
if use doc; then
dodoc doc/RFC3261_compliance.txt || die "dodoc failed"
# auto-generated doc is not auto-installed
# upstream has been contacted, see bug 2649333 in their bugtracker
dohtml -r doc/html/ || die "dohtml failed"
# pdf is not build all the time
if built_with_use app-text/docbook-sgml-utils jadetex; then
dodoc doc/pdf/*.pdf || die "dodoc failed"
fi
fi
if use examples; then
docinto examples
dodoc doc/sample_*.txt || die "dodoc failed"
fi
# set up siproxd directories
keepdir /var/{lib,run}/${PN} || die "keepdir failed"
fowners siproxd:siproxd /var/{lib,run}/${PN} || die "fowners failed"
}
pkg_postinst() {
if use static; then
elog "static USE flag does not build a _fully_ statically linked binary"
elog "only libosip2 and libosipparser2 are statically linked"
elog "In addition, plugins are dynamically linked with those libs"
fi
}
|