gentoo-ebuilds/net-vpn/fp-multiuser/fp-multiuser-0.0.2.ebuild
Filip Kobierski 924130e295
net-vpn/fp: fix drop empty IUSE
Signed-off-by: Filip Kobierski <fkobi@pm.me>
From: https://github.com/gentoo/gentoo/pull/37849
Signed-off-by: Zac Medico <zmedico@gentoo.org>
2024-07-31 14:49:36 -07:00

34 lines
850 B
Bash

# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit go-module systemd
DESCRIPTION="A frp server plugin to support multiple users for frp"
HOMEPAGE="https://github.com/gofrp/fp-multiuser"
SRC_URI="https://github.com/gofrp/fp-multiuser/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
acct-user/fp-multiuser
acct-group/fp-multiuser"
DEPEND="${RDEPEND}"
src_compile() {
emake all
}
src_install() {
dobin bin/${PN}
keepdir /etc/${PN}
systemd_dounit "${FILESDIR}/fp-multiuser.service"
newinitd "${FILESDIR}/initd" "${PN}"
newconfd "${FILESDIR}/confd" "${PN}"
insinto /etc/logrotate.d
newins "${FILESDIR}/logrotated" "${PN}"
dodoc README*.md
}