mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://bugs.gentoo.org/737446 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
29 lines
562 B
Bash
29 lines
562 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=NICOLAW
|
|
DIST_VERSION=1.44
|
|
DIST_EXAMPLES=( "examples/*" )
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Simple interface to create and store data in RRD files"
|
|
SRC_URI+=" https://dev.gentoo.org/~kentnl/distfiles/${PN}-${DIST_VERSION}-patches-1.tar.xz"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
net-analyzer/rrdtool[graph,perl]
|
|
"
|
|
BDEPEND="
|
|
${RDEPEND}
|
|
dev-perl/Module-Build
|
|
test? (
|
|
>=dev-perl/Test-Deep-0.93.0
|
|
)
|
|
"
|
|
|
|
PATCHES=( "${WORKDIR}/patches" )
|