net-misc/voipong :: ebuild update

updated ebuild to emerge cleanly with no errors from git
This commit is contained in:
Richard Redditch:. 'The Artist 2023-03-16 21:05:27 +00:00 committed by GitHub
parent 80372356a2
commit 314e515034
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,14 @@
# Copyright 1999-2010 Gentoo Foundation
# Copyright 1999-20123 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /root/portage/net-misc/voipong/voipong-2.0.ebuild,v 1.1.1.1 2006/03/20 22:56:49 grimmlin Exp $
EAPI=7
DESCRIPTION="tool for detecting all VoIP calls on a pipeline and dumps actual conversation to seperate wav files"
HOMEPAGE="http://www.enderunix.org/voipong/"
SRC_URI="http://www.enderunix.org/${PN}/${P}.tar.gz"
inherit git-r3
EGIT_REPO_URI="https://github.com/EnderUNIX/VoIPong"
LICENSE="GPL-2"
SLOT="0"
@ -12,20 +16,20 @@ KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-sound/sox
net-libs/libpcap"
net-libs/libpcap"
src_compile() {
sed -i -e 's:/usr/local::g' *.c
sed -i -e 's:/usr/local::g' etc/voipong.conf
make -f Makefile.linux
sed -i -e 's:/usr/local::g' *.c
sed -i -e 's:/usr/local::g' etc/voipong.conf
make -f Makefile.linux
}
src_install () {
dobin voipong voipctl
insinto /etc/voipong/
doins etc/voipong*
insinto /etc/voipong/modules/
insopts -m0755
doins modvocoder*.so
dodoc ALGORITHMS AUTHORS ChangeLog KNOWN_BUGS NEWS README TODO
dobin voipong voipctl
insinto /etc/voipong/
doins etc/voipong*
insinto /etc/voipong/modules/
insopts -m0755
doins modvocoder*.so
dodoc ALGORITHMS AUTHORS ChangeLog KNOWN_BUGS NEWS README TODO
}