blob: 2eb675cfb8512afd21ca8ba0b48481606a80fec2 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="The eXtensible Open Router Platform"
HOMEPAGE="http://www.xorp.org/"
SRC_URI="http://www.xorp.org/releases/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE="static debug ipv6 snmp"
DEPEND=">=dev-lang/python-2.0
dev-libs/openssl
sys-libs/ncurses
snmp? ( net-analyzer/net-snmp )"
RDEPEND="${DEPEND}
net-analyzer/traceroute"
pkg_setup() {
enewgroup xorp
}
src_compile() {
econf \
$(use_enable static) \
$(use_enable debug) \
$(use_enable ipv6) \
$(use_with snmp) \
--prefix="/usr/xorp" \
|| die "econf failed"
# -Werror prevents building snmp agent...
find "${S}" -name Makefile -exec sed -i -e '/^C.*FLAGS/s/-Werror//g' '{}' \;
emake -j1 || die "emake failed"
}
src_test() {
emake check || die "emake check failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
insinto /etc/xorp
newins rtrmgr/config.boot.sample config.boot.dist
newconfd "${FILESDIR}/xorp-confd" xorp
newinitd "${FILESDIR}/xorp-initd" xorp
dodoc BUGS ERRATA README RELEASE_NOTES TODO VERSION
}
pkg_postinst() {
elog "Only users who belong to the xorp group"
elog "can run xorpsh in configurational mode."
elog "You must create /etc/xorp/config.boot,"
elog "you can use the sample /etc/xorp/config.boot.dist"
}
|