Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/casync/
Date: Fri, 30 Mar 2018 14:02:35
Message-Id: 1522418502.ee2ab60281a0d3fef627fc2f341f4aa385f4c35b.mrueg@gentoo
1 commit: ee2ab60281a0d3fef627fc2f341f4aa385f4c35b
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 30 14:01:04 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 30 14:01:42 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee2ab602
7
8 net-misc/casync: Add missing dependencies
9
10 Package-Manager: Portage-2.3.27, Repoman-2.3.9
11
12 net-misc/casync/casync-2_p20180321-r1.ebuild | 46 ++++++++++++++++++++++++++++
13 1 file changed, 46 insertions(+)
14
15 diff --git a/net-misc/casync/casync-2_p20180321-r1.ebuild b/net-misc/casync/casync-2_p20180321-r1.ebuild
16 new file mode 100644
17 index 00000000000..2e1338a68f7
18 --- /dev/null
19 +++ b/net-misc/casync/casync-2_p20180321-r1.ebuild
20 @@ -0,0 +1,46 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +inherit vcs-snapshot meson
26 +
27 +COMMIT="a755da21d3ba5d9cbb002dfc86a3ab0d46b82176"
28 +DESCRIPTION=" Content-Addressable Data Synchronization Tool"
29 +HOMEPAGE="https://github.com/systemd/casync"
30 +SRC_URI="https://github.com/systemd/casync/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
31 +
32 +LICENSE="LGPL-2.1"
33 +SLOT="0"
34 +KEYWORDS="~amd64"
35 +IUSE="+fuse +udev man selinux test"
36 +
37 +RDEPEND="
38 + app-arch/xz-utils
39 + app-arch/zstd
40 + dev-libs/openssl:0
41 + net-misc/curl
42 + virtual/acl
43 + fuse? ( sys-fs/fuse:0 )
44 + selinux? ( sys-libs/libselinux )
45 + udev? ( virtual/libudev )
46 +"
47 +DEPEND="${RDEPEND}
48 + virtual/pkgconfig
49 + man? ( dev-python/sphinx )
50 +"
51 +
52 +src_configure() {
53 + local emesonargs=(
54 + -Dfuse="$(usex fuse true false)"
55 + -Dman="$(usex man true false)"
56 + -Dselinux="$(usex selinux true false)"
57 + -Dtests="$(usex test true false)"
58 + -Dudev="$(usex udev true false)"
59 + )
60 + meson_src_configure
61 +}
62 +
63 +src_install() {
64 + meson_src_install
65 + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
66 +}