diff options
author | Jan Ziak <0xe2.0x9a.0x9b@gmail.com> | 2017-08-04 14:55:59 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-08-06 13:15:45 +0200 |
commit | 4e64d490b46b8461d6e16618de627b8984074484 (patch) | |
tree | ac41b6b195bca6a1ace0db85c9ee0eaa3aa7075f /app-emulation | |
parent | app-emulation/fuse-utils: enforce dependencies (diff) | |
download | gentoo-4e64d490b46b8461d6e16618de627b8984074484.tar.gz gentoo-4e64d490b46b8461d6e16618de627b8984074484.tar.bz2 gentoo-4e64d490b46b8461d6e16618de627b8984074484.zip |
app-emulation/fuse: sort RDEPEND and econf alphabetically
Closes: https://github.com/gentoo/gentoo/pull/5276
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/fuse/fuse-1.3.8.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app-emulation/fuse/fuse-1.3.8.ebuild b/app-emulation/fuse/fuse-1.3.8.ebuild index 9c2d6dfb79ab..eca1e2d6ddbb 100644 --- a/app-emulation/fuse/fuse-1.3.8.ebuild +++ b/app-emulation/fuse/fuse-1.3.8.ebuild @@ -17,16 +17,16 @@ REQUIRED_USE="^^ ( X fbcon gtk sdl svga )" RDEPEND=">=app-emulation/libspectrum-1.3.5 dev-libs/glib:2 - X? ( x11-libs/libX11 - x11-libs/libXext ) alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) gpm? ( sys-libs/gpm ) gtk? ( x11-libs/gtk+:3 ) joystick? ( media-libs/libjsw ) + png? ( media-libs/libpng:0= sys-libs/zlib ) sdl? ( media-libs/libsdl ) svga? ( media-libs/svgalib ) - png? ( media-libs/libpng:0= sys-libs/zlib ) + X? ( x11-libs/libX11 + x11-libs/libXext ) xml? ( dev-libs/libxml2:2 )" DEPEND="${RDEPEND} fbcon? ( virtual/linux-sources ) @@ -53,12 +53,12 @@ src_configure() { econf \ --without-win32 \ ${guiflag} \ - $(use_with gpm) \ $(use_with alsa) \ $(use_with ao libao) \ + $(use_with gpm) \ $(use_with joystick) \ $(use_enable joystick ui-joystick) \ - $(use_with xml libxml2) \ - $(use_with png ) \ - $(use_enable memlimit smallmem) + $(use_enable memlimit smallmem) \ + $(use_with png) \ + $(use_with xml libxml2) } |