Diff mpfc-1.3.8.1-r4 with a mpfc-1.3.8.1-r5

/usr/portage/media-sound/mpfc/mpfc-1.3.8.1-r5.ebuild 2023-10-09 14:52:31.788368408 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=6
4
EAPI=8
5 5

  
6 6
inherit autotools
7 7

  
8 8
DESCRIPTION="Music Player For Console"
9
HOMEPAGE="http://mpfc.sourceforge.net/"
9
HOMEPAGE="https://mpfc.sourceforge.net/"
10 10
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
14
KEYWORDS="amd64 ppc x86"
14
KEYWORDS="~amd64 ~ppc ~x86"
15 15
IUSE="alsa cdda flac gpm mad nls oss static-libs vorbis wav"
16 16

  
17 17
RDEPEND="alsa? ( >=media-libs/alsa-lib-0.9.0 )
......
34 34
}
35 35

  
36 36
src_configure() {
37
	econf \
38
		$(use_enable alsa) \
39
		$(use_enable cdda audiocd) \
40
		$(use_enable flac) \
41
		$(use_enable gpm) \
42
		$(use_enable mad mp3) \
43
		$(use_enable nls) \
44
		$(use_enable oss) \
45
		$(use_enable static-libs static) \
46
		$(use_enable vorbis ogg) \
37
	local myeconfargs=(
38
		$(use_enable alsa)
39
		$(use_enable cdda audiocd)
40
		$(use_enable flac)
41
		$(use_enable gpm)
42
		$(use_enable mad mp3)
43
		$(use_enable nls)
44
		$(use_enable oss)
45
		$(use_enable static-libs static)
46
		$(use_enable vorbis ogg)
47 47
		$(use_enable wav)
48
	)
49
	econf "${myeconfargs[@]}"
48 50
}
49 51

  
50 52
src_install() {
Thank you!