summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Cafarelli <voyageur@gentoo.org>2018-08-11 00:31:23 +0200
committerBernard Cafarelli <voyageur@gentoo.org>2018-08-11 00:35:34 +0200
commit5d87ced021c778b3529e243009388e825d4fa562 (patch)
tree8960830733daf71b9203a0e75aefd7f2f0e106fa
parentapp-xemacs/pcomplete: version bump (diff)
downloadgentoo-5d87ced021c778b3529e243009388e825d4fa562.tar.gz
gentoo-5d87ced021c778b3529e243009388e825d4fa562.tar.bz2
gentoo-5d87ced021c778b3529e243009388e825d4fa562.zip
net-misc/owncloud-client: drop obsolete deps and USE flags
Also fix doc building disabling Closes: https://bugs.gentoo.org/650446 Package-Manager: Portage-2.3.45, Repoman-2.3.10
-rw-r--r--net-misc/owncloud-client/metadata.xml1
-rw-r--r--net-misc/owncloud-client/owncloud-client-2.4.1.ebuild8
2 files changed, 2 insertions, 7 deletions
diff --git a/net-misc/owncloud-client/metadata.xml b/net-misc/owncloud-client/metadata.xml
index ba2b9becc10a..c4baadc214ca 100644
--- a/net-misc/owncloud-client/metadata.xml
+++ b/net-misc/owncloud-client/metadata.xml
@@ -9,6 +9,5 @@
<flag name="dolphin">Install the <pkg>kde-apps/dolphin</pkg> extension</flag>
<flag name="nautilus">Install the <pkg>gnome-base/nautilus</pkg> extension</flag>
<flag name="shibboleth">Build support for Shibboleth single sign-on</flag>
- <flag name="sftp">Enable sftp transfer support via <pkg>net-libs/libssh</pkg></flag>
</use>
</pkgmetadata>
diff --git a/net-misc/owncloud-client/owncloud-client-2.4.1.ebuild b/net-misc/owncloud-client/owncloud-client-2.4.1.ebuild
index d35a8f1964b6..3966ff822847 100644
--- a/net-misc/owncloud-client/owncloud-client-2.4.1.ebuild
+++ b/net-misc/owncloud-client/owncloud-client-2.4.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://download.owncloud.com/desktop/stable/${P/-}.tar.xz"
LICENSE="CC-BY-3.0 GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="doc dolphin nautilus samba +sftp shibboleth test"
+IUSE="doc dolphin nautilus shibboleth test"
COMMON_DEPEND=">=dev-db/sqlite-3.4:3
dev-libs/qtkeychain[qt5(+)]
@@ -30,8 +30,6 @@ COMMON_DEPEND=">=dev-db/sqlite-3.4:3
kde-frameworks/kio:5
)
nautilus? ( dev-python/nautilus-python )
- samba? ( >=net-fs/samba-3.5 )
- sftp? ( >=net-libs/libssh-0.5 )
shibboleth? ( dev-qt/qtwebkit:5 )
"
RDEPEND="${COMMON_DEPEND}
@@ -71,10 +69,8 @@ src_configure() {
local mycmakeargs=(
-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc
-DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
- -DWITH_DOC=$(usex doc)
+ -DCMAKE_DISABLE_FIND_PACKAGE_Sphinx=$(usex !doc)
-DCMAKE_DISABLE_FIND_PACKAGE_KF5=$(usex !dolphin)
- -DCMAKE_DISABLE_FIND_PACKAGE_Libsmbclient=$(usex !samba)
- -DCMAKE_DISABLE_FIND_PACKAGE_LibSSH=$(usex !sftp)
-DNO_SHIBBOLETH=$(usex !shibboleth)
-DUNIT_TESTING=$(usex test)
)