diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-03-31 17:27:08 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-03-31 17:27:08 +0000 |
commit | 4a51a9a6708eb3efb8344d2f19f05f2287db821e (patch) | |
tree | 50bfbec99c1e6517899137e3fcf1adabb4325466 /net-analyzer/ipcad/ipcad-3.7.3.ebuild | |
parent | ppc64 stable wrt #357847 (diff) | |
download | gentoo-2-4a51a9a6708eb3efb8344d2f19f05f2287db821e.tar.gz gentoo-2-4a51a9a6708eb3efb8344d2f19f05f2287db821e.tar.bz2 gentoo-2-4a51a9a6708eb3efb8344d2f19f05f2287db821e.zip |
Version bump. Fix building with recent linux-headers wrt #360875 by including signal.h where it's used.
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/ipcad/ipcad-3.7.3.ebuild')
-rw-r--r-- | net-analyzer/ipcad/ipcad-3.7.3.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/net-analyzer/ipcad/ipcad-3.7.3.ebuild b/net-analyzer/ipcad/ipcad-3.7.3.ebuild new file mode 100644 index 000000000000..d082ecce30d1 --- /dev/null +++ b/net-analyzer/ipcad/ipcad-3.7.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipcad/ipcad-3.7.3.ebuild,v 1.1 2011/03/31 17:27:08 ssuominen Exp $ + +EAPI=2 +inherit autotools eutils + +DESCRIPTION="IP Cisco Accounting Daemon" +HOMEPAGE="http://ipcad.sourceforge.net/" +SRC_URI="mirror://sourceforge/ipcad/${P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="net-libs/libpcap + net-firewall/iptables" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch \ + "${FILESDIR}"/${PN}-3.7-linux-2.6.27.patch \ + "${FILESDIR}"/${PN}-3.7-linux-2.6.35.patch \ + "${FILESDIR}"/${P}-signal_h.patch + + eautoreconf +} + +src_install() { + sed -i -e "s/^chroot = \/adm\/tmp;/chroot = \/var\/ipcad;/" ipcad.conf.default + sed -i -e "s/^interface/#interface/" ipcad.conf.default + sed -i -e "s/^aggregate/#aggregate/" ipcad.conf.default + sed -i -e "s/^pidfile = ipcad.pid;/pidfile = \/run\/ipcad.pid;/" ipcad.conf.default + + dodoc AUTHORS ChangeLog README BUGS FAQ ipcad.conf.simple ipcad.conf.default + + dosbin ipcad || die + + 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 +} |