blob: e89fd3885f6f7136cbb32161d009336f4d037398 (
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-voip/yate/yate-2.0.0.ebuild,v 1.1 2009/07/30 14:38:04 volkmar Exp $
EAPI="2"
inherit autotools eutils multilib
DESCRIPTION="Yet Another Telephony Engine"
HOMEPAGE="http://yate.null.ro/"
SRC_URI="http://yate.null.ro/tarballs/yate2/${P}-1.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="alsa amrnb debug doc gsm h323 ilbc mysql oss postgres qt4 sctp spandsp
speex ssl zaptel"
RDEPEND="
sys-libs/glibc
alsa? ( media-libs/alsa-lib )
amrnb? ( media-libs/amrnb )
gsm? ( media-sound/gsm )
h323? ( dev-libs/pwlib
net-libs/openh323 )
ilbc? ( dev-libs/ilbc-rfc3951 )
mysql? ( virtual/mysql )
oss? ( sys-kernel/linux-headers )
postgres? ( virtual/postgresql-base )
qt4? ( x11-libs/qt-core:4
x11-libs/qt-gui:4 )
spandsp? ( >=media-libs/spandsp-0.0.3 )
speex? ( media-libs/speex )
ssl? ( dev-libs/openssl )
zaptel? ( net-misc/zaptel )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${PN}
# NOTES:
# doc is already built
# TODO:
# coredumper can't be used because not in the tree, bug 118716
# wanpipe can't be used because not in the tree (but voip overlay), bug 188939
# spandsp >= 0.0.6 fails in configure and >=0.0.5 fails in build
# fix bug 199222 for this version
src_prepare() {
# add Icon in yate-qt4 desktop file
sed -i -e '/^Exec=yate-qt4$/a Icon=null_team-32.png' \
clients/yate-qt4.desktop || die "sed failed"
epatch "${FILESDIR}"/${P}-ilbc-alsa-oss.patch
epatch "${FILESDIR}"/${P}-cxxflags.patch
epatch "${FILESDIR}"/${P}-spandsp.patch
epatch "${FILESDIR}"/${P}-as-needed.patch
eautoreconf
}
src_configure() {
# fdsize, inline, rtti: keep default values
# internalregex: use system
# coredumper: not in the tree, bug 118716
# wanpipe, wphwec: not in the tree, bug 188939
# doxygen, kdoc: no need to rebuild already built doc
econf \
--disable-internalregex \
--without-coredumper \
--disable-wanpipe \
--without-wphwec \
--without-doxygen \
--without-kdoc \
--with-archlib=$(get_libdir) \
$(use_with amrnb amrnb /usr) \
$(use_enable alsa) \
$(use_with gsm libgsm) \
$(use_with h323 openh323 /usr) \
$(use_with h323 pwlib /usr) \
$(use_enable ilbc) \
$(use_with mysql mysql /usr) \
$(use_enable oss) \
$(use_with postgres libpq /usr) \
$(use_with qt4 libqt4) \
$(use_enable sctp) \
$(use_with spandsp) \
$(use_with speex libspeex) \
$(use_with ssl openssl) \
$(use_enable zaptel)
}
src_compile() {
if use debug; then
emake ddebug || die "emake ddebug failed"
else
default_src_compile
fi
}
src_test() {
# there is no real test suite
# 'make test' tries to execute non-existing ./test
# do not add RESTRICT="test" because it's not a failing test suite
:
}
src_install() {
emake DESTDIR="${D}" install-noapi || die "emake install-noapi failed"
dodoc ChangeLog README || die "dodoc failed"
insinto /etc/logrotate.d
newins packing/${PN}.logrotate ${PN} || die "newins failed"
newinitd "${FILESDIR}"/${PN}.initd ${PN} || die "newinitd failed"
newconfd "${FILESDIR}"/${PN}.confd ${PN} || die "newconfd failed"
if use doc; then
emake DESTDIR="${D}" install-api || die "emake install-api failed"
fi
}
|