Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/wmsound-data/
Date: Thu, 17 Oct 2019 22:38:31
Message-Id: 1571351877.25493ad2dd5460b80513b80d81b251d76d69bcc5.soap@gentoo
1 commit: 25493ad2dd5460b80513b80d81b251d76d69bcc5
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 17 22:37:57 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 17 22:37:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25493ad2
7
8 media-sound/wmsound-data: Port to EAPI 7
9
10 Closes: https://bugs.gentoo.org/697272
11 Package-Manager: Portage-2.3.77, Repoman-2.3.17
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 media-sound/wmsound-data/wmsound-data-1.0.0.ebuild | 24 +++++++++-------------
15 1 file changed, 10 insertions(+), 14 deletions(-)
16
17 diff --git a/media-sound/wmsound-data/wmsound-data-1.0.0.ebuild b/media-sound/wmsound-data/wmsound-data-1.0.0.ebuild
18 index a3caefa71ad..0cec6efcb2b 100644
19 --- a/media-sound/wmsound-data/wmsound-data-1.0.0.ebuild
20 +++ b/media-sound/wmsound-data/wmsound-data-1.0.0.ebuild
21 @@ -1,23 +1,21 @@
22 # Copyright 1999-2019 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=0
26 -
27 -IUSE=""
28 +EAPI=7
29
30 DESCRIPTION="A bunch of sounds for WindowMaker Sound Server"
31 -SRC_URI="http://largo.windowmaker.org/files/worms2sounds.tar.gz
32 - http://largo.windowmaker.org/files/wmsdefault.tar.gz"
33 HOMEPAGE="http://largo.windowmaker.org/"
34 +SRC_URI="
35 + http://largo.windowmaker.org/files/worms2sounds.tar.gz
36 + http://largo.windowmaker.org/files/wmsdefault.tar.gz"
37
38 -DEPEND=">=x11-wm/windowmaker-0.80.2-r2"
39 -
40 -SLOT="0"
41 LICENSE="GPL-2"
42 +SLOT="0"
43 KEYWORDS="amd64 ~ppc sparc x86"
44
45 -S1=${WORKDIR}/Sounds
46 -S2=${WORKDIR}/SoundSets
47 +RDEPEND=">=x11-wm/windowmaker-0.80.2-r2"
48 +
49 +S="${WORKDIR}"
50
51 src_install() {
52 insinto /usr/share/WindowMaker/Defaults
53 @@ -32,11 +30,9 @@ src_install() {
54 insinto /usr/share/WindowMaker/SoundSets/Default
55 doins "${FILESDIR}"/wmsound-soundset
56
57 - cd "${S1}"
58 insinto /usr/share/WindowMaker/Sounds
59 - doins *.wav
60 + doins Sounds/*.wav
61
62 - cd "${S2}"
63 insinto /usr/share/WindowMaker/SoundSets
64 - doins Worms2
65 + doins SoundSets/Worms2
66 }