Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/
Date: Sat, 10 Oct 2020 07:23:04
Message-Id: 1602314553.c78bbc1a0bc0aa3ff070b3080712361d2fbc8f56.juippis@gentoo
1 commit: c78bbc1a0bc0aa3ff070b3080712361d2fbc8f56
2 Author: Jan Ziak <0xe2.0x9a.0x9b <AT> gmail <DOT> com>
3 AuthorDate: Sun Sep 20 13:47:20 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 07:22:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c78bbc1a
7
8 app-emulation/fuse: drop old
9
10 Signed-off-by: Jan Ziak <0xe2.0x9a.0x9b <AT> gmail.com>
11 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
12
13 app-emulation/fuse/Manifest | 1 -
14 app-emulation/fuse/fuse-1.5.6.ebuild | 79 ------------------------------------
15 2 files changed, 80 deletions(-)
16
17 diff --git a/app-emulation/fuse/Manifest b/app-emulation/fuse/Manifest
18 index c9848fd8b81..a4edc94f79d 100644
19 --- a/app-emulation/fuse/Manifest
20 +++ b/app-emulation/fuse/Manifest
21 @@ -1,2 +1 @@
22 -DIST fuse-1.5.6.tar.gz 1634711 BLAKE2B a581c106c668f0342b4a3b4ebbc0e92e750806e59d067798e23da02284cbb9a17cf580c5b6369144863fbf64b12326ea2982e4d83e87354d62ff51926e3293de SHA512 84312e4f83883b36d06f2b96ded1bfc71675cba71a0848f4cbb5a233a1d1c06466013d2655d759397f32d6d67d6ba26b2b6a5041796cb9143cd0b354a88fd589
23 DIST fuse-1.5.7.tar.gz 1634568 BLAKE2B 9d2f3c310132dc57336995c31adeb37d727506719d1089b2009a2f44cbfa59fc9c4e9252aeff64cdd22b7326328518b5da33af51be687f321b891b9d1dd2b646 SHA512 ac11e03fc203f98433253fb72d7700cf6285ad8662147f318bb4ceda3888bc865b80d85473a3b2bda9e0971989b1579fc928f41ddabbf01d58358362066be13d
24
25 diff --git a/app-emulation/fuse/fuse-1.5.6.ebuild b/app-emulation/fuse/fuse-1.5.6.ebuild
26 deleted file mode 100644
27 index ffc3cfaeb97..00000000000
28 --- a/app-emulation/fuse/fuse-1.5.6.ebuild
29 +++ /dev/null
30 @@ -1,79 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall"
39 -HOMEPAGE="http://fuse-emulator.sourceforge.net"
40 -SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2+"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~ppc ~x86"
45 -IUSE="alsa ao backend-fbcon backend-sdl backend-svga backend-X gpm joystick memlimit png xml"
46 -
47 -# Only one UI back-end can be enabled at a time
48 -REQUIRED_USE="?? ( backend-fbcon backend-sdl backend-svga backend-X )"
49 -
50 -RDEPEND="
51 - >=app-emulation/libspectrum-1.4.4
52 - dev-libs/glib:2
53 - alsa? ( media-libs/alsa-lib )
54 - ao? ( media-libs/libao )
55 - backend-sdl? ( media-libs/libsdl )
56 - backend-svga? ( media-libs/svgalib )
57 - backend-X? ( x11-libs/libX11 x11-libs/libXext )
58 - !backend-fbcon? ( !backend-sdl? ( !backend-svga? ( !backend-X? ( x11-libs/gtk+:3 ) ) ) )
59 - gpm? ( sys-libs/gpm )
60 - joystick? ( media-libs/libjsw )
61 - png? ( media-libs/libpng:0= sys-libs/zlib )
62 - xml? ( dev-libs/libxml2:2 )"
63 -DEPEND="${RDEPEND}
64 - backend-fbcon? ( virtual/linux-sources )
65 - dev-lang/perl
66 - virtual/pkgconfig"
67 -
68 -DOCS=( AUTHORS ChangeLog README THANKS )
69 -
70 -PATCHES=(
71 - "${FILESDIR}"/remove-local-prefix.patch
72 -)
73 -
74 -src_prepare() {
75 - default
76 - eautoreconf
77 -}
78 -
79 -src_configure() {
80 - local myconf=(
81 - --without-win32
82 - $(use_with alsa)
83 - $(use_with ao libao)
84 - $(use_with gpm)
85 - $(use_with joystick)
86 - $(use_enable joystick ui-joystick)
87 - $(use_enable memlimit smallmem)
88 - $(use_with png)
89 - $(use_with xml libxml2)
90 - )
91 -
92 - if use backend-sdl; then
93 - myconf+=("--with-sdl")
94 - elif use backend-X; then
95 - myconf+=("--without-gtk")
96 - elif use backend-svga; then
97 - myconf+=("--with-svgalib")
98 - elif use backend-fbcon; then
99 - myconf+=("--with-fb")
100 - else
101 - myconf+=("--with-gtk")
102 - fi
103 -
104 - econf "${myconf[@]}"
105 -}
106 -
107 -src_test() {
108 - emake test
109 -}