blob: b8ff719e3c987e38f12daadd72d10c19ef9b4c28 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-voip/gnugk/gnugk-2.2.5.ebuild,v 1.3 2008/05/21 19:00:47 dev-zero Exp $
IUSE="mysql postgres radius"
DESCRIPTION="GNU H.323 gatekeeper"
HOMEPAGE="http://www.gnugk.org/"
SRC_URI="mirror://sourceforge/openh323gk/${P}.tar.gz"
SLOT="0"
KEYWORDS="~x86 ~ppc"
LICENSE="GPL-2"
DEPEND="
>=dev-libs/pwlib-1.8.4
>=net-libs/openh323-1.15.3
mysql? ( dev-db/mysql++ )
postgres? ( virtual/postgresql-server )"
src_compile() {
econf \
--with-large-fdset=4096 \
`use_enable mysql` \
`use_enable postgres sql` \
`use_enable radius` || die
emake optdepend opt addpasswd || die
}
src_install() {
dosbin obj_*_*_*/gnugk
dosbin obj_*_*_*/addpasswd
insinto /etc/gnugk
doins etc/*
dodoc changes.txt readme.txt copying docs/*.txt
mv ${D}/etc/gnugk/*.pl ${D}/usr/share/doc/${PF}
docinto old
dodoc docs/old/*
dodir /usr/share/doc/${PF}/contrib
cp -r contrib/sqlbill ${D}/usr/share/doc/${PF}/contrib
newinitd ${FILESDIR}/gnugk.rc6 gnugk
newconfd ${FILESDIR}/gnugk.confd gnugk
}
|