56 lines
1.1 KiB
Bash
56 lines
1.1 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="IP Cisco Accounting Daemon"
|
|
HOMEPAGE="https://sourceforge.net/projects/ipcad/ http://lionet.info/ipcad/"
|
|
SRC_URI="mirror://sourceforge/ipcad/${P}.tar.gz"
|
|
|
|
LICENSE="BSD-2 GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
|
|
RDEPEND="
|
|
net-libs/libpcap
|
|
net-firewall/iptables
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-3.7-linux-2.6.27.patch
|
|
"${FILESDIR}"/${PN}-3.7-linux-2.6.35.patch
|
|
"${FILESDIR}"/${P}-signal_h.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i \
|
|
-e "s|^chroot = /adm/tmp;|chroot = /var/ipcad;|" \
|
|
-e "s|^interface|#&|" \
|
|
-e "s|^aggregate|#&|" \
|
|
-e "s|^pidfile = ipcad.pid;|pidfile = /run/ipcad.pid;|" \
|
|
ipcad.conf.default || die
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
dodoc AUTHORS ChangeLog README BUGS FAQ ipcad.conf.simple ipcad.conf.default
|
|
|
|
dosbin ipcad
|
|
|
|
insinto /etc
|
|
insopts -m0600
|
|
newins ipcad.conf.default ipcad.conf
|
|
|
|
keepdir /var/ipcad/run
|
|
|
|
doman ipcad.8 ipcad.conf.5
|
|
|
|
newinitd "${FILESDIR}"/ipcad.init ipcad
|
|
newconfd "${FILESDIR}"/ipcad.conf.d ipcad
|
|
}
|