You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/asterisk-res_bondia/asterisk-res_bondia-0.9.ebuild

48 lines
1.0 KiB

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-res_bondia/asterisk-res_bondia-0.9.ebuild,v 1.3 2010/10/28 10:45:51 ssuominen Exp $
inherit eutils
MY_PN="res_bondia"
DESCRIPTION="Asterisk resource plugin for Apple Bonjour (aka zeroconf) support"
HOMEPAGE="http://www.mezzo.net/asterisk/"
SRC_URI="http://www.mezzo.net/asterisk/${MY_PN}-${PV}.tgz"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND="net-misc/mDNSResponder
>=net-misc/asterisk-1.0.7-r1
!>=net-misc/asterisk-1.2.0"
S=${WORKDIR}/${MY_PN}
src_unpack() {
unpack ${A}
cd "${S}"
# use asterisk-config...
epatch "${FILESDIR}"/${MY_PN}-0.9-astcfg.diff
}
src_compile() {
emake -j1 || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die
dodoc README bonjour.conf.sample
# fix permissions
if [[ -n "$(egetent group asterisk)" ]]; then
chown -R root:asterisk "${D}"etc/asterisk
chmod -R u=rwX,g=rX,o= "${D}"etc/asterisk
fi
}