blob: 4114888a1a53c4a3ddba4a084abdb05efa59497c (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/csync/csync-0.60.1.ebuild,v 1.1 2012/11/16 19:39:11 johu Exp $
EAPI=4
inherit base cmake-utils
DESCRIPTION="A file synchronizer especially designed for you, the normal user"
HOMEPAGE="http://csync.org/"
SRC_URI="http://download.owncloud.com/download/o${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc log samba +sftp test +webdav"
RDEPEND="
dev-db/sqlite:3
>=dev-libs/iniparser-3.1
dev-libs/openssl:0
log? ( dev-libs/log4c )
samba? ( net-fs/samba )
sftp? ( net-libs/libssh )
webdav? ( net-libs/neon )
"
DEPEND="${DEPEND}
app-text/asciidoc
doc? ( app-doc/doxygen )
test? ( dev-libs/check )
"
PATCHES=(
"${FILESDIR}/${PN}-automagicness.patch"
)
S="${WORKDIR}/o${P}"
src_prepare() {
base_src_prepare
if ! use doc; then
sed -i \
-e 's:add_subdirectory(doc)::' \
CMakeLists.txt || die
fi
# punt owncloud test as it uses weird cmocka framework
sed -i \
-e 's:add_subdirectory(ownCloud)::' \
tests/CMakeLists.txt || die
# proper docdir
sed -i \
-e "s:/doc/ocsync:/doc/${PF}:" \
doc/CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
"-DLOG_TO_CALLBACK=ON"
$(cmake-utils_use test UNIT_TESTING)
$(cmake-utils_use_with doc APIDOC)
$(cmake-utils_use_with log Log4C)
$(cmake-utils_use_with samba Libsmbclient)
$(cmake-utils_use_with sftp LibSSH)
$(cmake-utils_use_with webdav Neon)
)
cmake-utils_src_configure
}
|