blob: d749dab20f3ee2f6c2d33e3c472f71a0e3684db2 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake
DESCRIPTION="lightweight file synchronizer utility"
HOMEPAGE="https://www.csync.org/"
SRC_URI="https://open.cryptomilk.org/attachments/download/27/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc iconv samba +sftp test"
RESTRICT="!test? ( test )"
RDEPEND=">=dev-db/sqlite-3.4:3
net-libs/neon[ssl]
iconv? ( virtual/libiconv )
samba? ( >=net-fs/samba-3.5 )
sftp? ( >=net-libs/libssh-0.5[sftp] )
!net-misc/ocsync"
DEPEND="${RDEPEND}
app-text/asciidoc
doc? ( app-doc/doxygen )
test? ( dev-util/cmocka )"
PATCHES=( "${FILESDIR}"/${P}-gcc_5_and_8.patch
"${FILESDIR}"/${P}-libssh-version.patch )
src_prepare() {
cmake_src_prepare
# proper docdir
sed -e "s:/doc/${PN}:/doc/${PF}:" \
-i doc/CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
-DWITH_ICONV="$(usex iconv)"
-DUNIT_TESTING="$(usex test)"
$(cmake_use_find_package doc Doxygen)
$(cmake_use_find_package samba SMBClient)
$(cmake_use_find_package sftp LibSSH)
)
cmake_src_configure
}
|