82 lines
2 KiB
Bash
82 lines
2 KiB
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/partysip/partysip-2.2.3.ebuild,v 1.6 2008/04/29 20:02:10 drac Exp $
|
|
|
|
inherit eutils autotools
|
|
|
|
DESCRIPTION="Modular and extensible SIP proxy"
|
|
HOMEPAGE="http://savannah.nongnu.org/projects/partysip/"
|
|
SRC_URI="http://savannah.gnu.org/download/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2" # not 100% about -2, but core is LGPL
|
|
SLOT="0"
|
|
KEYWORDS="~ppc ~sparc ~x86"
|
|
IUSE="berkdb debug syslog"
|
|
|
|
DEPEND="=net-libs/libosip-2*
|
|
berkdb? ( >=sys-libs/db-3.2 )"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epatch "${FILESDIR}"/${P}-configure.diff
|
|
|
|
# fix libresolv check in configure.in (#107885)
|
|
# instead of res_query, we search for the real (internal)
|
|
# function name __res_query, because res_query isn't in the symbol
|
|
# list of libresolv on amd64
|
|
epatch "${FILESDIR}"/${P}-libresolv-check.diff
|
|
|
|
# remove unused check in auth plugin (#107886)
|
|
# breaks authentication otherwise
|
|
epatch "${FILESDIR}"/${P}-fix_auth.diff
|
|
|
|
# put partysip binary into /usr/sbin
|
|
sed -i -e "s:^bin_PROGRAMS:sbin_PROGRAMS:" \
|
|
src/Makefile.am tools/Makefile.am
|
|
|
|
AT_M4DIR="scripts" eautoreconf
|
|
}
|
|
|
|
src_compile() {
|
|
local myconf
|
|
|
|
# berkdb3 (preferred) / gdbm (no-worky) / no db...
|
|
if use berkdb; then
|
|
myconf="--with-db=susedb3"
|
|
# elif use gdbm; then
|
|
# myconf="--with-db=gdbm"
|
|
# else
|
|
# myconf="--with-db=no"
|
|
fi
|
|
|
|
econf \
|
|
--sbindir=/usr/sbin \
|
|
--enable-semaphore \
|
|
--enable-sysv \
|
|
`use_enable debug trace` \
|
|
`use_enable debug debug` \
|
|
`use_enable syslog` \
|
|
${myconf} || die
|
|
|
|
emake || die
|
|
}
|
|
|
|
src_install () {
|
|
make DESTDIR="${D}" install || die
|
|
|
|
insinto /etc/partysip
|
|
doins conf/partysip.conf
|
|
|
|
chmod 750 "${D}"etc/partysip
|
|
chmod 640 "${D}"etc/partysip/partysip.conf
|
|
|
|
newinitd "${FILESDIR}"/partysip.rc6 partysip
|
|
newconfd "${FILESDIR}"/partysip.confd partysip
|
|
|
|
dodoc README ChangeLog TODO AUTHORS NEWS
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "Remember to edit /etc/partysip/partysip.conf!"
|
|
}
|