Diff mboxgrep-0.7.9-r2 with a mboxgrep-0.7.9-r3

/usr/portage/net-mail/mboxgrep/mboxgrep-0.7.9-r3.ebuild 2023-10-09 14:52:34.616368479 +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=7
4
EAPI=8
5
inherit autotools
5 6

  
6 7
DESCRIPTION="Grep for mbox files"
7 8
SRC_URI="mirror://sourceforge/mboxgrep/${P}.tar.gz"
......
9 10

  
10 11
SLOT="0"
11 12
LICENSE="GPL-2+"
12
KEYWORDS="~amd64 ~ppc x86"
13
KEYWORDS="~amd64 ~ppc ~x86"
13 14
IUSE="dmalloc"
14 15

  
15 16
RDEPEND="
......
25 26
	"${FILESDIR}"/${P}-_DEFAULT_SOURCE.patch
26 27
	"${FILESDIR}"/${P}-fno-common.patch
27 28
	"${FILESDIR}"/${P}-ldflags.patch
29
	"${FILESDIR}"/${PN}-0.7.9-musl-missing-strcmp.patch
28 30
)
29 31

  
32
src_prepare() {
33
	default
34
	eautoreconf
35
}
36

  
30 37
src_configure() {
31 38
	econf \
32
		$(use_with dmalloc no yes)
39
		$(use_with dmalloc dmalloc $(usex dmalloc yes no))
33 40
}
34 41

  
35 42
src_install() {
Thank you!