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 DC1AA1389E2 for ; Tue, 2 Dec 2014 08:45:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9488AE08BE; Tue, 2 Dec 2014 08:45:06 +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 4A5A5E08BE for ; Tue, 2 Dec 2014 08:45:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 51F2B340543 for ; Tue, 2 Dec 2014 08:45:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EED22B577 for ; Tue, 2 Dec 2014 08:45:03 +0000 (UTC) From: "Michael Weber" 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" Message-ID: <1417448497.92d06c59a791b34e02c037c31493efa11c49ce73.xmw@gentoo> Subject: [gentoo-commits] dev/xmw:master commit in: media-gfx/phototonic/ X-VCS-Repository: dev/xmw X-VCS-Files: media-gfx/phototonic/phototonic-9999.ebuild X-VCS-Directories: media-gfx/phototonic/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: 92d06c59a791b34e02c037c31493efa11c49ce73 X-VCS-Branch: master Date: Tue, 2 Dec 2014 08:45: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: 07eee307-3ebd-416b-b7ec-fb06632df46d X-Archives-Hash: dfec8901a0b990020d455e19507f67e3 commit: 92d06c59a791b34e02c037c31493efa11c49ce73 Author: Michael Weber xmw de> AuthorDate: Mon Dec 1 15:41:37 2014 +0000 Commit: Michael Weber gentoo org> CommitDate: Mon Dec 1 15:41:37 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=92d06c59 update ebuild to qt5 --- media-gfx/phototonic/phototonic-9999.ebuild | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/media-gfx/phototonic/phototonic-9999.ebuild b/media-gfx/phototonic/phototonic-9999.ebuild index 8bc7f60..c0fd55f 100644 --- a/media-gfx/phototonic/phototonic-9999.ebuild +++ b/media-gfx/phototonic/phototonic-9999.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit qt4-r2 git-2 +inherit qmake-utils git-2 DESCRIPTION="Image Viewer and Organizer" HOMEPAGE="https://gitorious.org/phototonic" @@ -15,5 +15,17 @@ SLOT="0" KEYWORDS="" IUSE="" -RDEPEND="dev-qt/qtgui:4" +RDEPEND="dev-qt/qtwidgets:5 + dev-qt/qtgui:5 + dev-qt/qtcore:5 + media-gfx/exiv2" DEPEND="${RDEPEND}" + +src_configure() { + local project_file=$(qmake-utils_find_pro_file) + eqmake5 "${project_file}" +} + +src_install() { + emake install INSTALL_ROOT="${D}" +}