blob: b9a0cb1a578878f22869053d5e8968487dcddf58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpon/arpon-2.7-r1.ebuild,v 1.1 2012/03/22 21:03:44 hwoarang Exp $
EAPI="2"
inherit cmake-utils
DESCRIPTION="ArpON (Arp handler inspectiON) is a portable Arp handler."
MY_PN="ArpON"
MY_P="${MY_PN}-${PV}"
HOMEPAGE="http://arpon.sourceforge.net/"
SRC_URI="mirror://sourceforge/arpon/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/libdnet
net-libs/libnet:1.1
net-libs/libpcap"
RDEPEND=${DEPEND}
S="${WORKDIR}"/${MY_P}
src_prepare() {
sed -i -e "/set(CMAKE_C_FLAGS/d" CMakeLists.txt || die
}
src_install() {
cmake-utils_src_install
newinitd "${FILESDIR}"/${PN}.initd ${PM}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
}
pkg_postinst() {
elog
elog "${PN} now installs an init script. Please edit"
elog "the /etc/conf.d/arpon file to match your needs"
elog
}
|