Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/files/, app-emulation/fuse/
Date: Thu, 13 May 2021 19:50:11
Message-Id: 1620935382.1c479c9eb50d03e9d11aecb3ef9f8847eb0f25b5.marecki@gentoo
1 commit: 1c479c9eb50d03e9d11aecb3ef9f8847eb0f25b5
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 13 19:19:20 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Thu May 13 19:49:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c479c9e
7
8 app-emulation/fuse: drop 1.5.7
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 app-emulation/fuse/Manifest | 1 -
13 app-emulation/fuse/files/multiple-definition.patch | 13 ----
14 app-emulation/fuse/fuse-1.5.7.ebuild | 81 ----------------------
15 3 files changed, 95 deletions(-)
16
17 diff --git a/app-emulation/fuse/Manifest b/app-emulation/fuse/Manifest
18 index 62b174565f7..127daceb5a3 100644
19 --- a/app-emulation/fuse/Manifest
20 +++ b/app-emulation/fuse/Manifest
21 @@ -1,2 +1 @@
22 -DIST fuse-1.5.7.tar.gz 1634568 BLAKE2B 9d2f3c310132dc57336995c31adeb37d727506719d1089b2009a2f44cbfa59fc9c4e9252aeff64cdd22b7326328518b5da33af51be687f321b891b9d1dd2b646 SHA512 ac11e03fc203f98433253fb72d7700cf6285ad8662147f318bb4ceda3888bc865b80d85473a3b2bda9e0971989b1579fc928f41ddabbf01d58358362066be13d
23 DIST fuse-1.6.0.tar.gz 1686171 BLAKE2B d1e6b166f2f649f408349b16a5eb40dd414750ed7a805eb6505b6c81be6ed7bcaa4e6f0b14057645172add1b1a77881f90b64767390fe1a64a486168f452d29d SHA512 5096b24b5b3d812942a7ad401b886b6a99f5493686912cb4aff18ede65404ae97a9bcafa6337aaed4378382f2a170918797d7d4570bb809476be5aa9fc625b8b
24
25 diff --git a/app-emulation/fuse/files/multiple-definition.patch b/app-emulation/fuse/files/multiple-definition.patch
26 deleted file mode 100644
27 index 8a8e9d7d175..00000000000
28 --- a/app-emulation/fuse/files/multiple-definition.patch
29 +++ /dev/null
30 @@ -1,13 +0,0 @@
31 -diff -Naur fuse-1.5.7/ui/widget/widget.c fuse-1.5.7-patched/ui/widget/widget.c
32 ---- fuse-1.5.7/ui/widget/widget.c 2018-08-06 15:36:04.000000000 +0200
33 -+++ fuse-1.5.7-patched/ui/widget/widget.c 2020-09-20 15:27:42.045382588 +0200
34 -@@ -90,9 +90,6 @@
35 -
36 - static widget_recurse_t widget_return[10]; /* The stack to recurse on */
37 -
38 --/* The settings used whilst playing with an options dialog box */
39 --settings_info widget_options_settings;
40 --
41 - static int widget_read_font( const char *filename )
42 - {
43 - utils_file file;
44
45 diff --git a/app-emulation/fuse/fuse-1.5.7.ebuild b/app-emulation/fuse/fuse-1.5.7.ebuild
46 deleted file mode 100644
47 index 063ecf27471..00000000000
48 --- a/app-emulation/fuse/fuse-1.5.7.ebuild
49 +++ /dev/null
50 @@ -1,81 +0,0 @@
51 -# Copyright 1999-2020 Gentoo Authors
52 -# Distributed under the terms of the GNU General Public License v2
53 -
54 -EAPI=6
55 -
56 -inherit autotools
57 -
58 -DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall"
59 -HOMEPAGE="http://fuse-emulator.sourceforge.net"
60 -SRC_URI="mirror://sourceforge/fuse-emulator/${P}.tar.gz"
61 -
62 -LICENSE="GPL-2+"
63 -SLOT="0"
64 -KEYWORDS="~amd64 ~ppc ~x86"
65 -IUSE="alsa ao backend-fbcon backend-sdl backend-svga backend-X gpm joystick memlimit png xml"
66 -
67 -# Only one UI back-end can be enabled at a time
68 -REQUIRED_USE="?? ( backend-fbcon backend-sdl backend-svga backend-X )"
69 -
70 -RDEPEND="
71 - >=app-emulation/libspectrum-1.4.4
72 - dev-libs/glib:2
73 - alsa? ( media-libs/alsa-lib )
74 - ao? ( media-libs/libao )
75 - backend-sdl? ( media-libs/libsdl )
76 - backend-svga? ( media-libs/svgalib )
77 - backend-X? ( x11-libs/libX11 x11-libs/libXext )
78 - !backend-fbcon? ( !backend-sdl? ( !backend-svga? ( !backend-X? ( x11-libs/gtk+:3 ) ) ) )
79 - gpm? ( sys-libs/gpm )
80 - joystick? ( !backend-sdl? ( media-libs/libjsw ) )
81 - png? ( media-libs/libpng:0= sys-libs/zlib )
82 - xml? ( dev-libs/libxml2:2 )"
83 -DEPEND="${RDEPEND}
84 - backend-fbcon? ( virtual/linux-sources )
85 - dev-lang/perl
86 - virtual/pkgconfig"
87 -
88 -DOCS=( AUTHORS ChangeLog README THANKS )
89 -
90 -PATCHES=(
91 - "${FILESDIR}"/multiple-definition.patch
92 - "${FILESDIR}"/remove-local-prefix.patch
93 -)
94 -
95 -src_prepare() {
96 - default
97 - eautoreconf
98 -}
99 -
100 -src_configure() {
101 - local myconf=(
102 - --without-win32
103 - $(use_with alsa)
104 - $(use_with ao libao)
105 - $(use_with gpm)
106 - $(use_with joystick)
107 - $(use_enable memlimit smallmem)
108 - $(use_with png)
109 - $(use_with xml libxml2)
110 - )
111 -
112 - if use backend-sdl; then
113 - myconf+=("--with-sdl")
114 - elif use backend-X; then
115 - myconf+=("--without-gtk")
116 - elif use backend-svga; then
117 - myconf+=("--with-svgalib")
118 - elif use backend-fbcon; then
119 - myconf+=("--with-fb")
120 - else
121 - myconf+=("--with-gtk")
122 - fi
123 -
124 - use joystick && myconf+=( $(use_enable backend-sdl ui-joystick) )
125 -
126 - econf "${myconf[@]}"
127 -}
128 -
129 -src_test() {
130 - emake test
131 -}