blob: 3a8328fa343933071cd3badb8cfd0a344b4c34ec (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/siproxd/siproxd-0.5.11.ebuild,v 1.2 2005/09/22 23:24:06 stkn Exp $
inherit eutils
IUSE="static doc"
DESCRIPTION="masquerading SIP proxy"
HOMEPAGE="http://siproxd.sourceforge.net/"
SRC_URI="mirror://sourceforge/siproxd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND=">=net-libs/libosip-2.0.0
doc? ( app-text/docbook-sgml-utils )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-configure-docs.diff
# re-create configure (stolen from dhcpd :)
einfo "Re-creating configure..."
autoreconf -fi || die "autoreconf failed"
# Make the daemon run as user 'siproxd' by default
sed -i -e "s:nobody:siproxd:" doc/siproxd.conf.example
}
src_compile() {
local myconf
use static && \
myconf="--enable-static"
econf ${myconf} \
`use_enable doc docs` || die "configure failed"
emake || die "make failed"
}
src_install() {
einstall || die "install failed"
exeinto /etc/init.d
newexe ${FILESDIR}/siproxd.rc6 siproxd
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO RELNOTES
# Set up siproxd directories
keepdir /var/lib/siproxd
keepdir /var/run/siproxd
}
pkg_postinst() {
enewgroup siproxd
enewuser siproxd -1 -1 /dev/null siproxd
fowners siproxd:siproxd /var/lib/siproxd
fowners siproxd:siproxd /var/run/siproxd
}
|