Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/owncloud-client: ChangeLog owncloud-client-1.6.1.ebuild
Date: Fri, 27 Jun 2014 15:05:45
Message-Id: 20140627145548.D476E2004E@flycatcher.gentoo.org
1 voyageur 14/06/27 14:55:48
2
3 Modified: ChangeLog
4 Added: owncloud-client-1.6.1.ebuild
5 Log:
6 Version bump, handle qt4/qt5 thanks to everyone in bug #512726
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C74525F2)
9
10 Revision Changes Path
11 1.11 net-misc/owncloud-client/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/owncloud-client/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/owncloud-client/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/owncloud-client/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/owncloud-client/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 7 Jun 2014 20:06:23 -0000 1.10
24 +++ ChangeLog 27 Jun 2014 14:55:48 -0000 1.11
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/owncloud-client
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/owncloud-client/ChangeLog,v 1.10 2014/06/07 20:06:23 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/owncloud-client/ChangeLog,v 1.11 2014/06/27 14:55:48 voyageur Exp $
30 +
31 +*owncloud-client-1.6.1 (27 Jun 2014)
32 +
33 + 27 Jun 2014; Bernard Cafarelli <voyageur@g.o>
34 + +owncloud-client-1.6.1.ebuild:
35 + Version bump, handle qt4/qt5 thanks to everyone in bug #512726
36
37 *owncloud-client-1.6.0 (07 Jun 2014)
38
39
40
41
42 1.1 net-misc/owncloud-client/owncloud-client-1.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/owncloud-client/owncloud-client-1.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/owncloud-client/owncloud-client-1.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: owncloud-client-1.6.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/owncloud-client/owncloud-client-1.6.1.ebuild,v 1.1 2014/06/27 14:55:48 voyageur Exp $
52
53 EAPI=5
54
55 inherit cmake-utils
56
57 MY_P="mirall-${PV/_/}"
58
59 DESCRIPTION="Synchronize files from ownCloud Server with your computer"
60 HOMEPAGE="http://owncloud.org/"
61 SRC_URI="http://download.owncloud.com/desktop/stable/${MY_P}.tar.bz2"
62
63 LICENSE="CC-BY-3.0 GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="doc samba +sftp test +qt4 qt5"
67
68 REQUIRED_USE="|| ( qt4 qt5 )"
69
70 RDEPEND=">=dev-db/sqlite-3.4:3
71 qt4? (
72 dev-libs/qtkeychain[qt4]
73 dev-qt/qtcore:4
74 dev-qt/qtdbus:4
75 dev-qt/qtgui:4
76 dev-qt/qtsql:4
77 dev-qt/qttest:4
78 dev-qt/qtwebkit:4
79 )
80 qt5? (
81 dev-libs/qtkeychain[qt5]
82 dev-qt/linguist-tools
83 dev-qt/qtcore:5
84 dev-qt/qtdbus:5
85 dev-qt/qtgui:5
86 dev-qt/qtsql:5
87 dev-qt/qttest:5
88 dev-qt/qtwebkit:5[printsupport,widgets]
89 )
90 net-libs/neon[ssl]
91 sys-fs/inotify-tools
92 virtual/libiconv
93 samba? ( >=net-fs/samba-3.5 )
94 sftp? ( >=net-libs/libssh-0.5 )
95 !net-misc/ocsync"
96 DEPEND="${RDEPEND}
97 doc? (
98 dev-python/sphinx
99 dev-texlive/texlive-latexextra
100 virtual/latex-base
101 )
102 test? ( dev-util/cmocka )"
103
104 S=${WORKDIR}/${MY_P}
105
106 PATCHES=( "${FILESDIR}"/${PN}-1.5.3-man-page-location-fix.patch )
107
108 src_configure() {
109 local mycmakeargs=(
110 -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
111 -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
112 -DWITH_ICONV=ON
113 $(cmake-utils_use_with doc DOC)
114 $(cmake-utils_use test UNIT_TESTING)
115 $(cmake-utils_use_find_package samba Libsmbclient)
116 $(cmake-utils_use_find_package sftp LibSSH)
117 $(cmake-utils_use_build qt4 WITH_QT4)
118 )
119
120 cmake-utils_src_configure
121 }
122
123 src_test() {
124 # 1 test needs an existing ${HOME}/.config directory
125 mkdir "${T}"/.config
126 export HOME="${T}"
127 cmake-utils_src_test
128 }
129
130 pkg_postinst() {
131 if ! use doc ; then
132 elog "Documentation and man pages not installed"
133 elog "Enable doc USE-flag to generate them"
134 fi
135 }