diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-11-14 21:08:59 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-11-15 01:34:42 +0100 |
commit | 74da6ad0fd38f7c9e62db4820af0d2640b14670a (patch) | |
tree | a6c0b3002765b5d24464c6983e4d1b0f695b9acf /media-sound/audacious | |
parent | sci-mathematics/petsc: more configuration fixes (diff) | |
download | gentoo-74da6ad0fd38f7c9e62db4820af0d2640b14670a.tar.gz gentoo-74da6ad0fd38f7c9e62db4820af0d2640b14670a.tar.bz2 gentoo-74da6ad0fd38f7c9e62db4820af0d2640b14670a.zip |
media-sound/audacious: Default switched to Qt5
Upstream commit 72e6f21e3a77a18ecfa57120a607a48c4e66b493
Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/audacious')
-rw-r--r-- | media-sound/audacious/audacious-9999.ebuild | 20 | ||||
-rw-r--r-- | media-sound/audacious/metadata.xml | 3 |
2 files changed, 13 insertions, 10 deletions
diff --git a/media-sound/audacious/audacious-9999.ebuild b/media-sound/audacious/audacious-9999.ebuild index 12769bfaa102..edf35f502de2 100644 --- a/media-sound/audacious/audacious-9999.ebuild +++ b/media-sound/audacious/audacious-9999.ebuild @@ -20,7 +20,7 @@ SRC_URI+=" mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2" LICENSE="BSD-2" SLOT="0" -IUSE="nls qt5" +IUSE="gtk nls" BDEPEND=" virtual/pkgconfig @@ -32,8 +32,8 @@ DEPEND=" >=x11-libs/cairo-1.2.6 >=x11-libs/pango-1.8.0 virtual/freedesktop-icon-theme - !qt5? ( x11-libs/gtk+:2 ) - qt5? ( + gtk? ( x11-libs/gtk+:2 ) + !gtk? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 @@ -63,12 +63,14 @@ src_configure() { # Building without D-Bus is *unsupported* and a USE-flag # will not be added due to the bug reports that will result. # Bugs #197894, #199069, #207330, #208606 - econf \ - --disable-valgrind \ - --enable-dbus \ - $(use_enable nls) \ - $(use_enable !qt5 gtk) \ - $(use_enable qt5 qt) + local myeconfargs=( + --disable-valgrind + --enable-dbus + $(use_enable gtk gtk) + $(use_enable !gtk qt) + $(use_enable nls) + ) + econf "${myeconfargs[@]}" } src_install() { diff --git a/media-sound/audacious/metadata.xml b/media-sound/audacious/metadata.xml index 56e2b754081b..c563fb869343 100644 --- a/media-sound/audacious/metadata.xml +++ b/media-sound/audacious/metadata.xml @@ -10,6 +10,7 @@ <name>Gentoo Sound project</name> </maintainer> <use> - <flag name="qt5">Build with Qt5 interface instead Gtk+</flag> + <flag name="gtk">Build with GTK interface instead of Qt5</flag> + <flag name="qt5">Build with Qt5 interface instead of GTK</flag> </use> </pkgmetadata> |