blob: d160864bfb071dc379666e99d42f96b8fb12070a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/silc-server/silc-server-1.0.2-r1.ebuild,v 1.2 2007/03/06 14:30:56 armin76 Exp $
inherit eutils autotools flag-o-matic
DESCRIPTION="Server for Secure Internet Live Conferencing"
SRC_URI="http://www.silcnet.org/download/server/sources/${P}.tar.bz2"
HOMEPAGE="http://silcnet.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~ppc ~sparc x86"
IUSE="ipv6 debug"
RDEPEND="!<=net-im/silc-toolkit-0.9.12-r1
!<=net-im/silc-client-1.0.1"
DEPEND="${RDEPEND}
=sys-devel/automake-1.9*"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/1.0-fPIC.patch
# DoS vuln, bug 169599
epatch "${FILESDIR}"/${P}-join-hmac.patch
eautoreconf
}
src_compile() {
### Append -fsigned-char for platforms without this as default
### Fixes runtime conf parsing bug on ppc
append-flags -fsigned-char
econf \
--sysconfdir=/etc/silc \
--with-docdir=/usr/share/doc/${PF} \
--with-helpdir=/usr/share/${PN}/help \
--with-logsdir=/var/log/${PN} \
--with-mandir=/usr/share/man \
--with-silcd-pid-file=/var/run/silcd.pid \
--with-simdir=/usr/$(get_libdir)/${PN} \
--without-silc-libs \
$(use_enable ipv6) \
$(use_enable debug) \
|| die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
insinto /usr/share/doc/${PF}/examples
doins doc/examples/*.conf
fperms 600 /etc/silc
keepdir /var/log/${PN}
rm -rf \
"${D}"/usr/libsilc* \
"${D}"/usr/include \
"${D}"/etc/silc/silcd.{pub,prv}
newinitd "${FILESDIR}/silcd.initd" silcd
sed -i \
-e 's:10.2.1.6:0.0.0.0:' \
-e 's:User = "nobody";:User = "silcd";:' \
"${D}"/etc/silc/silcd.conf
}
pkg_postinst() {
enewuser silcd
if [ ! -f "${ROOT}"/etc/silc/silcd.prv ] ; then
einfo "Creating key pair in /etc/silc"
silcd -C "${ROOT}"/etc/silc
fi
}
|