From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DA8CD138247 for ; Thu, 26 Dec 2013 15:23:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E75CE094F; Thu, 26 Dec 2013 15:23:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7817E094F for ; Thu, 26 Dec 2013 15:23:07 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50FA633F652 for ; Thu, 26 Dec 2013 15:23:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A8CDDE5604 for ; Thu, 26 Dec 2013 15:23:03 +0000 (UTC) From: "Dennis Schridde" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dennis Schridde" Message-ID: <1388071367.f39bf07e7de620940522a79067f3ee5de1940b1a.devurandom@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-misc/owncloud-client/ X-VCS-Repository: proj/kde X-VCS-Files: net-misc/owncloud-client/metadata.xml net-misc/owncloud-client/owncloud-client-1.5.0.ebuild X-VCS-Directories: net-misc/owncloud-client/ X-VCS-Committer: devurandom X-VCS-Committer-Name: Dennis Schridde X-VCS-Revision: f39bf07e7de620940522a79067f3ee5de1940b1a X-VCS-Branch: master Date: Thu, 26 Dec 2013 15:23:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5c563a0a-be15-4abc-b300-ac9f1e3e50c6 X-Archives-Hash: 191663112d44ab69042b216b0e92dd88 commit: f39bf07e7de620940522a79067f3ee5de1940b1a Author: Dennis Schridde gmx net> AuthorDate: Thu Dec 26 15:22:47 2013 +0000 Commit: Dennis Schridde gmx net> CommitDate: Thu Dec 26 15:22:47 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f39bf07e [net-misc/owncloud-client-1.5.0] version bump of net-misc/mirall under a new name The new name matches upstream's binary package name. Package-Manager: portage-2.2.7 --- net-misc/owncloud-client/metadata.xml | 5 ++ .../owncloud-client/owncloud-client-1.5.0.ebuild | 64 ++++++++++++++++++++++ 2 files changed, 69 insertions(+) diff --git a/net-misc/owncloud-client/metadata.xml b/net-misc/owncloud-client/metadata.xml new file mode 100644 index 0000000..a23f444 --- /dev/null +++ b/net-misc/owncloud-client/metadata.xml @@ -0,0 +1,5 @@ + + + + kde + diff --git a/net-misc/owncloud-client/owncloud-client-1.5.0.ebuild b/net-misc/owncloud-client/owncloud-client-1.5.0.ebuild new file mode 100644 index 0000000..cb3a4dc --- /dev/null +++ b/net-misc/owncloud-client/owncloud-client-1.5.0.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit cmake-utils + +MY_PN=mirall +MY_P="${MY_PN}-${PV/_/}" + +DESCRIPTION="Synchronization of your folders with another computers" +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=" + !net-misc/mirall + dev-qt/qtcore:4 + dev-qt/qtdbus:4 + dev-qt/qtgui:4 + dev-qt/qttest:4 + dev-qt/qtwebkit:4 + >=net-misc/ocsync-0.91.4 + sys-fs/inotify-tools + dev-libs/qtkeychain +" +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 +}