Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/owncloud-client/
Date: Wed, 26 Oct 2016 21:14:38
Message-Id: 1477516458.9850032266213b0c88818e70f29bd4f3ec76f26f.monsieurp@gentoo
1 commit: 9850032266213b0c88818e70f29bd4f3ec76f26f
2 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
3 AuthorDate: Sat Oct 22 20:03:44 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 26 21:14:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98500322
7
8 net-misc/owncloud-client: drop old.
9
10 Package-Manager: portage-2.3.0
11 Closes: https://github.com/gentoo/gentoo/pull/2638
12
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 .../owncloud-client/owncloud-client-2.2.4.ebuild | 101 ---------------------
16 1 file changed, 101 deletions(-)
17
18 diff --git a/net-misc/owncloud-client/owncloud-client-2.2.4.ebuild b/net-misc/owncloud-client/owncloud-client-2.2.4.ebuild
19 deleted file mode 100644
20 index 244f59b..00000000
21 --- a/net-misc/owncloud-client/owncloud-client-2.2.4.ebuild
22 +++ /dev/null
23 @@ -1,101 +0,0 @@
24 -# Copyright 1999-2016 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -# $Id$
27 -
28 -EAPI=6
29 -
30 -inherit cmake-utils
31 -
32 -DESCRIPTION="Synchronize files from ownCloud Server with your computer"
33 -HOMEPAGE="http://owncloud.org/"
34 -SRC_URI="http://download.owncloud.com/desktop/stable/${P/-}.tar.xz"
35 -
36 -LICENSE="CC-BY-3.0 GPL-2"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~x86"
39 -IUSE="doc dolphin nautilus samba +sftp test qt4 +qt5"
40 -
41 -REQUIRED_USE="^^ ( qt4 qt5 )
42 - dolphin? ( qt5 )"
43 -
44 -RDEPEND=">=dev-db/sqlite-3.4:3
45 - sys-fs/inotify-tools
46 - virtual/libiconv
47 - dolphin? (
48 - >=kde-frameworks/kcoreaddons-5.16:5
49 - >=kde-frameworks/kio-5.16:5 )
50 - nautilus? ( dev-python/nautilus-python )
51 - qt4? (
52 - dev-libs/qtkeychain[qt4]
53 - dev-qt/qtcore:4
54 - dev-qt/qtdbus:4
55 - dev-qt/qtgui:4
56 - dev-qt/qtsql:4
57 - dev-qt/qtwebkit:4
58 - net-libs/neon[ssl]
59 - )
60 - qt5? (
61 - dev-libs/qtkeychain[qt5]
62 - dev-qt/qtconcurrent:5
63 - dev-qt/qtcore:5
64 - dev-qt/qtdbus:5
65 - >=dev-qt/qtnetwork-5.4:5
66 - dev-qt/qtgui:5
67 - dev-qt/qtquickcontrols:5
68 - dev-qt/qtsql:5
69 - dev-qt/qtwebkit:5[printsupport]
70 - )
71 - samba? ( >=net-fs/samba-3.5 )
72 - sftp? ( >=net-libs/libssh-0.5 )
73 - !net-misc/ocsync
74 - !net-misc/nextcloud-client"
75 -DEPEND="${RDEPEND}
76 - doc? (
77 - dev-python/sphinx
78 - dev-texlive/texlive-latexextra
79 - virtual/latex-base
80 - )
81 - dolphin? ( >=kde-frameworks/extra-cmake-modules-5.22.0 )
82 - qt5? ( dev-qt/linguist-tools:5 )
83 - test? (
84 - dev-util/cmocka
85 - qt4? ( dev-qt/qttest:4 )
86 - qt5? ( dev-qt/qttest:5 )
87 - )"
88 -
89 -S=${WORKDIR}/${P/-}
90 -
91 -src_prepare() {
92 - # Keep tests in ${T}
93 - sed -i -e "s#\"/tmp#\"${T}#g" test/test*.cpp || die "sed failed"
94 -
95 - if ! use nautilus; then
96 - pushd shell_integration > /dev/null || die
97 - cmake_comment_add_subdirectory nautilus
98 - popd > /dev/null || die
99 - fi
100 - default
101 -}
102 -
103 -src_configure() {
104 - local mycmakeargs=(
105 - -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
106 - -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
107 - -DWITH_ICONV=ON
108 - -DWITH_DOC=$(usex doc)
109 - -DCMAKE_DISABLE_FIND_PACKAGE_KF5=$(usex !dolphin)
110 - -DBUILD_WITH_QT4=$(usex qt4)
111 - -DCMAKE_DISABLE_FIND_PACKAGE_Libsmbclient=$(usex !samba)
112 - -DCMAKE_DISABLE_FIND_PACKAGE_LibSSH=$(usex !sftp)
113 - -DUNIT_TESTING=$(usex test)
114 - )
115 -
116 - cmake-utils_src_configure
117 -}
118 -
119 -pkg_postinst() {
120 - if ! use doc ; then
121 - elog "Documentation and man pages not installed"
122 - elog "Enable doc USE-flag to generate them"
123 - fi
124 -}