# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-chan_sccp/asterisk-chan_sccp-0.0.20060204.ebuild,v 1.2 2007/01/06 16:46:23 drizzt Exp $ inherit eutils IUSE="debug" MY_P="chan_sccp_${PV/0.0./}" DESCRIPTION="SCCP channel plugin for the Asterisk soft PBX" HOMEPAGE="http://chan-sccp-b.sourceforge.net" SRC_URI="http://garr.dl.sourceforge.net/sourceforge/chan-sccp-b/${MY_P}.tar.gz" S="${WORKDIR}/chan_sccp-20080526/" SLOT="0" KEYWORDS="~ppc ~x86 ~amd64" LICENSE="GPL-2" DEPEND=">=net-misc/asterisk-1.0.5-r2" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/chan_sccp-20080526-gentoo.diff if ! use debug; then sed -i -e "s:^\(DEBUG=.*\):#\1:" Makefile fi } src_compile() { emake -j1 || die } src_install() { emake INSTALL_PREFIX=${D} install || die dodoc conf/* contrib/* # fix permissions if [[ -n "$(egetent group asterisk)" ]]; then einfo "Fixing permissions..." chown -R asterisk:asterisk ${D}etc/asterisk chmod -R u=rwX,g=rX,o= ${D}etc/asterisk fi } pkg_postinst() { ewarn "You have to disable asterisk's chan_skinny to use this module!" elog "Add \"noload => chan_skinny.so\" to ${ROOT}etc/asterisk/modules.conf" }