diff options
author | Stefan Knoblich <stkn@gentoo.org> | 2005-05-31 13:39:16 +0000 |
---|---|---|
committer | Stefan Knoblich <stkn@gentoo.org> | 2005-05-31 13:39:16 +0000 |
commit | 0e6cc97aaa24154af1794b89dc960464add786a9 (patch) | |
tree | d834e180cff3c1211a3cb88214b1fab29afbedf0 /net-misc/asterisk-app_nv_faxdetect/asterisk-app_nv_faxdetect-1.0.6.ebuild | |
parent | Added freebsd mirrors for Gentoo/FreeBSD packages. (diff) | |
download | gentoo-2-0e6cc97aaa24154af1794b89dc960464add786a9.tar.gz gentoo-2-0e6cc97aaa24154af1794b89dc960464add786a9.tar.bz2 gentoo-2-0e6cc97aaa24154af1794b89dc960464add786a9.zip |
Initial import
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc/asterisk-app_nv_faxdetect/asterisk-app_nv_faxdetect-1.0.6.ebuild')
-rw-r--r-- | net-misc/asterisk-app_nv_faxdetect/asterisk-app_nv_faxdetect-1.0.6.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/net-misc/asterisk-app_nv_faxdetect/asterisk-app_nv_faxdetect-1.0.6.ebuild b/net-misc/asterisk-app_nv_faxdetect/asterisk-app_nv_faxdetect-1.0.6.ebuild new file mode 100644 index 000000000000..b01911247f76 --- /dev/null +++ b/net-misc/asterisk-app_nv_faxdetect/asterisk-app_nv_faxdetect-1.0.6.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk-app_nv_faxdetect/asterisk-app_nv_faxdetect-1.0.6.ebuild,v 1.1 2005/05/31 13:39:16 stkn Exp $ + +inherit eutils + +MY_PN="app_nv_faxdetect" + +DESCRIPTION="Asterisk application plugins to detect incoming faxes, dtfm and voice" +HOMEPAGE="http://www.newmantelecom.com/asterisk/faxdetect/" +SRC_URI="mirror://gentoo/${MY_PN}-${PV}.tar.bz2" + +IUSE="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" + +DEPEND="sys-libs/glibc + >=net-misc/asterisk-1.0.5-r1" + +S=${WORKDIR}/${MY_PN}-${PV} + +src_unpack() { + unpack ${A} + + cd ${S} + # use asterisk-config... + epatch ${FILESDIR}/app_nv_faxdetect-${PV}-astcfg.diff + # change callerid to asterisk stable + epatch ${FILESDIR}/app_nv_faxdetect-${PV}-aststable.diff +} + +src_compile() { + emake -j1 || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die +} + +pkg_postinst() { + einfo "See" + einfo "" + einfo " http://www.voip-info.org/wiki-NVFaxDetect" + einfo " http://www.voip-info.org/wiki-NVBackgroundDetect" + einfo "" + einfo "for more information" +} |