blob: 5dc04cbd3945a51f883967cdef0c346c32825398 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit vcs-snapshot meson
COMMIT="6d185a540c54195a919d4b44f9bf28c341da3bf1"
DESCRIPTION=" Content-Addressable Data Synchronization Tool"
HOMEPAGE="https://github.com/systemd/casync"
SRC_URI="https://github.com/systemd/casync/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+fuse +udev man selinux test"
RDEPEND="
app-arch/xz-utils
app-arch/zstd
dev-libs/openssl:0
net-misc/curl
virtual/acl
fuse? ( sys-fs/fuse:0 )
selinux? ( sys-libs/libselinux )
udev? ( virtual/libudev )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
man? ( dev-python/sphinx )
"
src_configure() {
local emesonargs=(
-Dfuse="$(usex fuse true false)"
-Dman="$(usex man true false)"
-Dselinux="$(usex selinux true false)"
-Dtests="$(usex test true false)"
-Dudev="$(usex udev true false)"
)
meson_src_configure
}
src_install() {
meson_src_install
find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
}
|