blob: 3c319c3634ef9f2536ca7760cd9424169b13a7fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit git-r3 cmake-utils eutils user
DESCRIPTION="An high performance peer-to-peer hub for the ADC network"
HOMEPAGE="http://uhub.org/"
SRC_URI=""
EGIT_REPO_URI="git://github.com/janvidar/uhub"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug +ssl systemd"
RDEPEND="ssl? ( >=dev-libs/openssl-0.9.8 )"
DEPEND="${RDEPEND}
>=dev-util/cmake-2.8.3"
UHUB_USER="${UHUB_USER:-uhub}"
UHUB_GROUP="${UHUB_GROUP:-uhub}"
src_configure() {
mycmakeargs=(
$(_use_me_now_inverted "" debug RELEASE)
$(cmake-utils_use_use ssl)
$(cmake-utils_use_use systemd)
)
cmake-utils_src_configure
}
src_install() {
dodir /etc/uhub
cmake-utils_src_install
doman doc/*1
dodoc doc/*txt
insinto /etc/uhub
doins doc/uhub.conf
doins doc/users.conf
fperms 0700 "/etc/uhub"
fowners ${UHUB_USER}:${UHUB_GROUP} "/etc/uhub"
insinto /etc/logrotate.d
newins "${FILESDIR}/${PN}.logrotate" "${PN}"
newconfd "${FILESDIR}/${PN}.confd" "${PN}"
newinitd "${FILESDIR}/${PN}.initd" "${PN}"
}
pkg_setup() {
enewgroup "${UHUB_GROUP}"
enewuser "${UHUB_USER}" -1 -1 "/var/lib/run/${PN}" "${UHUB_GROUP}"
}
|