Files
guru/net-misc/purritobin/purritobin-0.6.7.ebuild
Aisha Tammy 875da84687 net-misc/purritobin: version bump to 0.6.7
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
2021-05-17 07:30:40 -04:00

58 lines
1.2 KiB
Bash

# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="minimalistic commandline pastebin"
HOMEPAGE="https://bsd.ac"
inherit systemd meson
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/PurritoBin/PurritoBin.git"
else
SRC_URI="https://github.com/PurritoBin/PurritoBin/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/PurritoBin-${PV}"
fi
LICENSE="ISC"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-db/lmdb-0.9.29
net-libs/usockets[ssl]
acct-user/purritobin
acct-group/purritobin
"
DEPEND="${RDEPEND}
www-apps/uwebsockets
>=dev-db/lmdb++-1.0.0
"
BDEPEND="test? (
net-misc/curl[ssl]
sys-apps/coreutils
)"
src_configure() {
local emesonargs=(
$(meson_use test enable_testing)
-Dtest_dd_flags="iflag=fullblock"
)
meson_src_configure
}
src_install() {
meson_src_install
insinto /var/www/purritobin
doins frontend/paste.html
keepdir /var/db/purritobin
fowners purritobin:purritobin /var/www/purritobin /var/db/purritobin
newinitd services/openrc purritobin
systemd_newunit services/systemd purritobin.service
einstalldocs
}