37 lines
903 B
Bash
37 lines
903 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
inherit go-module
|
|
|
|
DESCRIPTION="Prometheus Exporter for OpenVPN"
|
|
HOMEPAGE="https://github.com/kumina/openvpn_exporter"
|
|
SRC_URI="https://github.com/kumina/openvpn_exporter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
|
|
|
|
LICENSE="Apache-2.0 BSD MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
COMMON_DEPEND="
|
|
acct-user/openvpn_exporter
|
|
acct-group/openvpn_exporter
|
|
"
|
|
DEPEND="${COMMON_DEPEND}"
|
|
RDEPEND="${COMMON_DEPEND}"
|
|
|
|
src_compile() {
|
|
ego build -o ${PN}
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
dodoc {CHANGELOG,README}.md
|
|
keepdir "/var/log/${PN}"
|
|
fowners ${PN}:${PN} "/var/log/${PN}"
|
|
newinitd "${FILESDIR}"/${PN}.initd ${PN}
|
|
newconfd "${FILESDIR}"/${PN}.confd ${PN}
|
|
insinto /etc/logrotate.d
|
|
newins "${FILESDIR}/${PN}.logrotated" "${PN}"
|
|
}
|