blob: ccae59c3f3811e110e25acfd968d4b98b5d3583c (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/owncloud-client/owncloud-client-1.5.0.ebuild,v 1.2 2014/02/07 14:06:20 voyageur Exp $
EAPI=5
inherit cmake-utils
MY_P="mirall-${PV/_/}"
DESCRIPTION="Synchronize files from ownCloud Server with your computer"
HOMEPAGE="http://owncloud.org/"
SRC_URI="http://download.owncloud.com/desktop/stable/${MY_P}.tar.bz2"
LICENSE="CC-BY-3.0 GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="dev-libs/qtkeychain
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
dev-qt/qtsql:4
dev-qt/qttest:4
dev-qt/qtwebkit:4
>=net-misc/ocsync-0.91.4
sys-fs/inotify-tools"
DEPEND="${RDEPEND}
doc? (
dev-python/sphinx
dev-texlive/texlive-latexextra
virtual/latex-base
)"
S=${WORKDIR}/${MY_P}
src_configure() {
export CSYNC_DIR="${EPREFIX}/usr/include/ocsync/"
local mycmakeargs=(
-DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
$(cmake-utils_use_with doc)
)
cmake-utils_src_configure
}
src_compile() {
use doc && cmake-utils_src_compile -j1 doc
cmake-utils_src_compile
}
pkg_postinst() {
if ! has_version net-misc/ocsync[samba]; then
elog "For samba support, build net-misc/ocsync with USE=samba"
fi
if ! has_version net-misc/ocsync[sftp]; then
elog "For sftp support, build net-misc/ocsync with USE=sftp"
fi
}
|