From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-854888-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6A6891384B4 for <garchives@archives.gentoo.org>; Sat, 2 Jan 2016 22:49:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC29721C087; Sat, 2 Jan 2016 22:49:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 619DC21C087 for <gentoo-commits@lists.gentoo.org>; Sat, 2 Jan 2016 22:49:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 14AAA33BF0B for <gentoo-commits@lists.gentoo.org>; Sat, 2 Jan 2016 22:49:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F03C5C89 for <gentoo-commits@lists.gentoo.org>; Sat, 2 Jan 2016 22:49:21 +0000 (UTC) From: "Michael Weber" <xmw@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Weber" <xmw@gentoo.org> Message-ID: <1451774959.b4f3034f4e4353733954ffcaa2504e227144726d.xmw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/backintime/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/backintime/backintime-1.1.8-r1.ebuild X-VCS-Directories: app-backup/backintime/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: b4f3034f4e4353733954ffcaa2504e227144726d X-VCS-Branch: master Date: Sat, 2 Jan 2016 22:49:21 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5eb6bafb-05c4-4c9d-a81e-3a9ed7ba541f X-Archives-Hash: 37981038b60f626c2d79dd7e0e1fe4d8 commit: b4f3034f4e4353733954ffcaa2504e227144726d Author: Michael Weber <xmw <AT> gentoo <DOT> org> AuthorDate: Sat Jan 2 22:48:07 2016 +0000 Commit: Michael Weber <xmw <AT> gentoo <DOT> org> CommitDate: Sat Jan 2 22:49:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4f3034f app-backup/backintime: add RDEPEND PyQt4 (thanks Luis Lucas, bug 569982). Package-Manager: portage-2.2.26 app-backup/backintime/backintime-1.1.8-r1.ebuild | 78 ++++++++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/app-backup/backintime/backintime-1.1.8-r1.ebuild b/app-backup/backintime/backintime-1.1.8-r1.ebuild new file mode 100644 index 0000000..dae091c --- /dev/null +++ b/app-backup/backintime/backintime-1.1.8-r1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python3_3 python3_4 ) + +inherit eutils python-single-r1 + +DESCRIPTION="Backup system inspired by TimeVault and FlyBack, with a GUI for GNOME and KDE4" +HOMEPAGE="http://backintime.le-web.org/" +SRC_URI="http://${PN}.le-web.org/download/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="qt4" + +DEPEND="${PYTHON_DEPS} + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/keyring[${PYTHON_USEDEP}] + net-misc/openssh + net-misc/rsync[xattr,acl]" +RDEPEND="${DEPEND} + qt4? ( dev-python/PyQt4 )" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +src_prepare() { + #fix doc install location + sed -e "s:/doc/${PN}-common:/doc/${PF}:g" \ + -i common/configure || die + sed -e "s:/doc/${PN}-qt4:/doc/${PF}:g" \ + -i qt4/configure || die + sed -e "/addInstallFile \"..\/VERSION/d" \ + -e "/addInstallFile \"..\/LICENSE/d" \ + -e "/addInstallFile \"..\/debian\/copyright/d" \ + -i {qt4,common}/configure || die + + if [ -n ${LINGUAS+x} ] ; then + cd common/po || die + for po in *.po ; do + if ! has ${po/.po} ${LINGUAS} ; then + rm ${po} || die + fi + done + fi +} + +src_configure() { + cd "${S}"/common || die + ./configure --python3 --no-fuse-group || die + if use qt4 ; then + cd "${S}"/qt4 || die + ./configure --python3 || die + fi +} + +src_compile() { + cd "${S}"/common || die + emake + if use qt4 ; then + cd "${S}"/qt4 || die + emake + fi +} + +src_install() { + cd "${S}"/common || die + emake DESTDIR="${D}" install + if use qt4 ; then + cd "${S}"/qt4 || die + emake DESTDIR="${D}" install + fi + + python_optimize "${D}" +}