From: Jeroen Roovers Date: Sun, 16 Aug 2015 07:39:25 +0000 (+0200) Subject: sys-boot/unetbootin: Set and use path to Qt4 executables (maybe bug #557142). X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d1e2b8347c277c05486e0a530f70fb1cbedc137e;p=gentoo.git sys-boot/unetbootin: Set and use path to Qt4 executables (maybe bug #557142). Package-Manager: portage-2.2.20.1 --- diff --git a/sys-boot/unetbootin/unetbootin-619.ebuild b/sys-boot/unetbootin/unetbootin-619.ebuild index 9fb9454c24ca..8a9b60473907 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 }