mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-02-01 13:03:00 +01:00
24 lines
582 B
Bash
24 lines
582 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="Actively probes the Internet in order to analyze topology and performance"
|
|
HOMEPAGE="http://www.caida.org/tools/measurement/scamper/"
|
|
SRC_URI="http://www.caida.org/tools/measurement/scamper/code/scamper-cvs-${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="privsep debug"
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/scamper-cvs-${PV}"
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable privsep privsep) \
|
|
$(use_enable debug debug-file)
|
|
}
|