diff options
author | 2012-05-04 17:57:16 +0000 | |
---|---|---|
committer | 2012-05-04 17:57:16 +0000 | |
commit | 1cd404c40afd6b4dc23f9d696b34272476a6eff4 (patch) | |
tree | 57ae91bb6ba08da7ab1627a86b963f34403c845d /app-emulation/aqemu/aqemu-0.8.2-r2.ebuild | |
parent | Stable on amd64 x86 and ppc wrt bug#414309. (force due weird deps on qt). (diff) | |
download | gentoo-2-1cd404c40afd6b4dc23f9d696b34272476a6eff4.tar.gz gentoo-2-1cd404c40afd6b4dc23f9d696b34272476a6eff4.tar.bz2 gentoo-2-1cd404c40afd6b4dc23f9d696b34272476a6eff4.zip |
Stable on x86 wrt bug#414353. Remove older.
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/aqemu/aqemu-0.8.2-r2.ebuild')
-rw-r--r-- | app-emulation/aqemu/aqemu-0.8.2-r2.ebuild | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/app-emulation/aqemu/aqemu-0.8.2-r2.ebuild b/app-emulation/aqemu/aqemu-0.8.2-r2.ebuild index 6af35c50ce9b..c3f2b0bdb29c 100644 --- a/app-emulation/aqemu/aqemu-0.8.2-r2.ebuild +++ b/app-emulation/aqemu/aqemu-0.8.2-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/aqemu/aqemu-0.8.2-r2.ebuild,v 1.2 2012/05/02 17:19:24 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/aqemu/aqemu-0.8.2-r2.ebuild,v 1.3 2012/05/04 17:57:16 scarabeus Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="kvm vnc" DEPEND="${RDEPEND}" @@ -24,17 +24,17 @@ RDEPEND="kvm? ( app-emulation/qemu-kvm ) x11-libs/qt-xmlpatterns:4" DOCS="AUTHORS CHANGELOG README TODO" -PATCHES=( "${FILESDIR}"/aqemu-0.8.2_sigsev_propertis.patch -"${FILESDIR}"/aqemu-0.8.2_qt48_build.patch -"${FILESDIR}"/aqemu-0.8.2_desktop_file.patch ) +PATCHES=( + "${FILESDIR}"/aqemu-0.8.2_sigsev_propertis.patch + "${FILESDIR}"/aqemu-0.8.2_qt48_build.patch + "${FILESDIR}"/aqemu-0.8.2_desktop_file.patch +) src_configure() { - local mycmakeargs=" -DMAN_PAGE_COMPRESSOR="" " - if use vnc; then - mycmakeargs+=" -DWITHOUT_EMBEDDED_DISPLAY=OFF " - else - mycmakeargs+=" -DWITHOUT_EMBEDDED_DISPLAY=ON " - fi + local mycmakeargs=( + "-DMAN_PAGE_COMPRESSOR=" + "-DWITHOUT_EMBEDDED_DISPLAY=$(use vnc && echo "OFF" || echo "ON")" + ) cmake-utils_src_configure } |