diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-08-16 09:39:25 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-08-16 09:39:25 +0200 |
commit | d1e2b8347c277c05486e0a530f70fb1cbedc137e (patch) | |
tree | 274f09834b49560a6a76cc4f25bc5353cfecc017 /sys-boot | |
parent | app-text/teseq: Initial commit. (diff) | |
download | gentoo-d1e2b8347c277c05486e0a530f70fb1cbedc137e.tar.gz gentoo-d1e2b8347c277c05486e0a530f70fb1cbedc137e.tar.bz2 gentoo-d1e2b8347c277c05486e0a530f70fb1cbedc137e.zip |
sys-boot/unetbootin: Set and use path to Qt4 executables (maybe bug #557142).
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/unetbootin/unetbootin-619.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
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 } |