commit: 92d06c59a791b34e02c037c31493efa11c49ce73 Author: Michael Weber <michael <AT> xmw <DOT> de> AuthorDate: Mon Dec 1 15:41:37 2014 +0000 Commit: Michael Weber <xmw <AT> gentoo <DOT> 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}" +}
