blob: 3d2a539e28b8447a5cb191f03e6d72c0756525ab (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/kannel/kannel-1.4.0-r2.ebuild,v 1.3 2006/11/23 17:13:40 vivo Exp $
inherit eutils
DESCRIPTION="Powerful SMS and WAP gateway"
HOMEPAGE="http://www.kannel.org/"
SRC_URI="http://www.kannel.org/download/${PV}/gateway-${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="ssl mysql sqlite postgres pcre doc debug pam"
RDEPEND="virtual/libc
>=dev-libs/libxml2-2.6.17
>=dev-lang/perl-5.8.5
>=sys-libs/zlib-1.2.2
ssl? ( >=dev-libs/openssl-0.9.7d )
mysql? ( >=virtual/mysql-4.0 )
sqlite? ( dev-db/sqlite )
postgres? ( dev-db/postgresql )
pcre? ( dev-libs/libpcre )
doc? ( media-gfx/transfig
app-text/jadetex
app-text/docbook-dsssl-stylesheets )
pam? ( >=sys-libs/pam-0.77 )"
DEPEND="${RDEPEND}
>=sys-devel/bison-1.875d"
S="${WORKDIR}/gateway-${PV}"
pkg_setup() {
enewgroup kannel
enewuser kannel -1 -1 /var/log/kannel kannel
}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}/${P}-mysql-list.patch"
epatch "${FILESDIR}/${P}-custom-wap-ports.patch"
cd "${S}"
#by default, use current directory for logging
sed -i -e 's:/tmp/::' doc/examples/kannel.conf
#correct doc path
sed -i -e "s:share/doc/kannel:share/doc/${P}:" configure configure.in
}
src_compile() {
econf \
--enable-localtime \
--disable-start-stop-daemon \
$(use_enable pam) \
$(use_enable debug debug) \
$(use_enable pcre) \
$(use_enable doc docs) \
$(use_enable ssl) \
$(use_with mysql) \
$(use_with sqlite) \
$(use_with postgres pgsql) \
|| die "./configure failed"
emake || die "emake failed"
}
src_test() {
make check || die "make check failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
use doc && make DESTDIR="${D}" install-docs
dodoc README LICENSE
diropts -g kannel -m0750
dodir /etc/kannel
insinto /etc/kannel
newins doc/examples/kannel.conf kannel.conf.sample
newins doc/examples/modems.conf modems.conf.sample
use mysql && newins doc/examples/dlr-mysql.conf dlr-mysql.conf.sample
diropts -g kannel -m0770
keepdir /var/log/kannel
exeinto /etc/init.d
newexe "${FILESDIR}/kannel-initd" kannel
insinto /etc/conf.d
newins "${FILESDIR}/kannel-confd" kannel
}
pkg_preinst() {
pkg_setup
}
|