Diff wminet-3.0.0-r2 with a wminet-3.0.0-r3

/usr/portage/x11-plugins/wminet/wminet-3.0.0-r3.ebuild 2025-02-03 17:39:35.962678108 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
inherit toolchain-funcs
6
inherit toolchain-funcs autotools
7 7

  
8 8
DESCRIPTION="dockapp for monitoring internet connections to and from your computer"
9
HOMEPAGE="http://www.improbability.net/#wminet"
10
SRC_URI="http://www.improbability.net/wmdock//${P}.tar.gz"
9
HOMEPAGE="https://www.improbability.net/#wminet"
10
SRC_URI="https://www.improbability.net/wmdock//${P}.tar.gz"
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
14
KEYWORDS="amd64 ppc ~sparc x86"
14
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
15 15

  
16 16
RDEPEND="x11-libs/libX11
17 17
	x11-libs/libXext
......
19 19
DEPEND="${RDEPEND}
20 20
	x11-base/xorg-proto"
21 21

  
22
PATCHES=( "${FILESDIR}"/${P}-list.patch
22
PATCHES=(
23
	"${FILESDIR}"/${P}-list.patch
23 24
	"${FILESDIR}"/${P}-fno-common.patch
25
	"${FILESDIR}"/${P}-missing-include.patch
24 26
	)
25 27

  
26 28
DOCS=( AUTHORS ChangeLog NEWS README wminetrc )
27 29

  
30
src_prepare() {
31
	default
32

  
33
	# bug https://bugs.gentoo.org/875137
34
	# bug https://bugs.gentoo.org/908912
35
	eautoreconf
36
}
37

  
28 38
src_compile() {
29 39
	tc-export CC
30 40
	emake LDFLAGS="${LDFLAGS}"
Thank you!