Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/
Date: Sun, 06 Aug 2017 11:15:58
Message-Id: 1502018145.4e64d490b46b8461d6e16618de627b8984074484.mgorny@gentoo
1 commit: 4e64d490b46b8461d6e16618de627b8984074484
2 Author: Jan Ziak <0xe2.0x9a.0x9b <AT> gmail <DOT> com>
3 AuthorDate: Fri Aug 4 12:55:59 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 6 11:15:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e64d490
7
8 app-emulation/fuse: sort RDEPEND and econf alphabetically
9
10 Closes: https://github.com/gentoo/gentoo/pull/5276
11
12 app-emulation/fuse/fuse-1.3.8.ebuild | 14 +++++++-------
13 1 file changed, 7 insertions(+), 7 deletions(-)
14
15 diff --git a/app-emulation/fuse/fuse-1.3.8.ebuild b/app-emulation/fuse/fuse-1.3.8.ebuild
16 index 9c2d6dfb79a..eca1e2d6ddb 100644
17 --- a/app-emulation/fuse/fuse-1.3.8.ebuild
18 +++ b/app-emulation/fuse/fuse-1.3.8.ebuild
19 @@ -17,16 +17,16 @@ REQUIRED_USE="^^ ( X fbcon gtk sdl svga )"
20
21 RDEPEND=">=app-emulation/libspectrum-1.3.5
22 dev-libs/glib:2
23 - X? ( x11-libs/libX11
24 - x11-libs/libXext )
25 alsa? ( media-libs/alsa-lib )
26 ao? ( media-libs/libao )
27 gpm? ( sys-libs/gpm )
28 gtk? ( x11-libs/gtk+:3 )
29 joystick? ( media-libs/libjsw )
30 + png? ( media-libs/libpng:0= sys-libs/zlib )
31 sdl? ( media-libs/libsdl )
32 svga? ( media-libs/svgalib )
33 - png? ( media-libs/libpng:0= sys-libs/zlib )
34 + X? ( x11-libs/libX11
35 + x11-libs/libXext )
36 xml? ( dev-libs/libxml2:2 )"
37 DEPEND="${RDEPEND}
38 fbcon? ( virtual/linux-sources )
39 @@ -53,12 +53,12 @@ src_configure() {
40 econf \
41 --without-win32 \
42 ${guiflag} \
43 - $(use_with gpm) \
44 $(use_with alsa) \
45 $(use_with ao libao) \
46 + $(use_with gpm) \
47 $(use_with joystick) \
48 $(use_enable joystick ui-joystick) \
49 - $(use_with xml libxml2) \
50 - $(use_with png ) \
51 - $(use_enable memlimit smallmem)
52 + $(use_enable memlimit smallmem) \
53 + $(use_with png) \
54 + $(use_with xml libxml2)
55 }