From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 18D95139694 for ; Sun, 6 Aug 2017 11:15:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7088E0DA2; Sun, 6 Aug 2017 11:15:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6AEDE0DA2 for ; Sun, 6 Aug 2017 11:15:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE50C3417F4 for ; Sun, 6 Aug 2017 11:15:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D732875F7 for ; Sun, 6 Aug 2017 11:15:50 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1502018145.4e64d490b46b8461d6e16618de627b8984074484.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/fuse/fuse-1.3.8.ebuild X-VCS-Directories: app-emulation/fuse/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4e64d490b46b8461d6e16618de627b8984074484 X-VCS-Branch: master Date: Sun, 6 Aug 2017 11:15:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 15526261-8508-4737-85bc-1a2e8805bf74 X-Archives-Hash: f83047e47bb8e28278946322b3cc0775 commit: 4e64d490b46b8461d6e16618de627b8984074484 Author: Jan Ziak <0xe2.0x9a.0x9b gmail com> AuthorDate: Fri Aug 4 12:55:59 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 6 11:15:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e64d490 app-emulation/fuse: sort RDEPEND and econf alphabetically Closes: https://github.com/gentoo/gentoo/pull/5276 app-emulation/fuse/fuse-1.3.8.ebuild | 14 +++++++------- 1 file 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 9c2d6dfb79a..eca1e2d6ddb 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) }