From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-828653-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 138391385B0
	for <garchives@archives.gentoo.org>; Sun, 16 Aug 2015 07:40:01 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 74397142E0;
	Sun, 16 Aug 2015 07:40:00 +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 1158B142E0
	for <gentoo-commits@lists.gentoo.org>; Sun, 16 Aug 2015 07:39:59 +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 BBA2B340945
	for <gentoo-commits@lists.gentoo.org>; Sun, 16 Aug 2015 07:39:58 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 82B64116
	for <gentoo-commits@lists.gentoo.org>; Sun, 16 Aug 2015 07:39:56 +0000 (UTC)
From: "Jeroen Roovers" <jer@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, "Jeroen Roovers" <jer@gentoo.org>
Message-ID: <1439710765.d1e2b8347c277c05486e0a530f70fb1cbedc137e.jer@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/unetbootin/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-boot/unetbootin/unetbootin-619.ebuild
X-VCS-Directories: sys-boot/unetbootin/
X-VCS-Committer: jer
X-VCS-Committer-Name: Jeroen Roovers
X-VCS-Revision: d1e2b8347c277c05486e0a530f70fb1cbedc137e
X-VCS-Branch: master
Date: Sun, 16 Aug 2015 07:39:56 +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: e4e44d8c-b899-46a6-a060-b58004699f9b
X-Archives-Hash: 97409ef20c9430bf954cd44bc9f231d3

commit:     d1e2b8347c277c05486e0a530f70fb1cbedc137e
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 16 07:39:25 2015 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sun Aug 16 07:39:25 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1e2b834

sys-boot/unetbootin: Set and use path to Qt4 executables (maybe bug #557142).

Package-Manager: portage-2.2.20.1

 sys-boot/unetbootin/unetbootin-619.ebuild | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/sys-boot/unetbootin/unetbootin-619.ebuild b/sys-boot/unetbootin/unetbootin-619.ebuild
index 9fb9454..8a9b604 100644
--- a/sys-boot/unetbootin/unetbootin-619.ebuild
+++ b/sys-boot/unetbootin/unetbootin-619.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit eutils qt4-r2
+inherit eutils qmake-utils qt4-r2
 
 DESCRIPTION="UNetbootin installs Linux/BSD distributions to a partition or USB drive"
 HOMEPAGE="https://github.com/unetbootin/unetbootin"
@@ -62,8 +62,11 @@ src_prepare() {
 
 src_configure() {
 	sed -i -e '/^RESOURCES/d' unetbootin.pro || die
-	lupdate ${PN}.pro || die
-	lrelease ${PN}.pro || die
+
+	UNBN_QTPATH="$(qt4_get_bindir)/"
+	${UNBN_QTPATH}lupdate ${PN}.pro || die
+	${UNBN_QTPATH}lrelease ${PN}.pro || die
+
 	eqmake4 ${PN}.pro || die
 }