Diff ibm-powerpc-utils-1.3.8-r1 with a ibm-powerpc-utils-1.3.10-r1
/usr/portage/sys-apps/ibm-powerpc-utils/ibm-powerpc-utils-1.3.10-r1.ebuild 2023-10-09 14:52:35.380368499 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2021 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 |
|
5 |
inherit autotools |
|
4 |
EAPI=8 |
|
6 | 5 | |
7 |
DESCRIPTION="Utilities for the maintainance of the IBM and Apple PowerPC platforms" |
|
6 |
inherit autotools systemd |
|
7 | ||
8 |
DESCRIPTION="Utilities for the maintenance of the IBM and Apple PowerPC platforms" |
|
8 | 9 |
HOMEPAGE="https://github.com/ibm-power-utilities/powerpc-utils" |
9 | 10 |
SRC_URI="https://github.com/ibm-power-utilities/${PN//ibm-}/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
10 |
IUSE="+rtas" |
|
11 | ||
12 | 11 |
S="${WORKDIR}/${P//ibm-}" |
13 | 12 | |
14 |
SLOT="0" |
|
15 | 13 |
LICENSE="GPL-2+" |
16 |
KEYWORDS="ppc ppc64" |
|
14 |
SLOT="0" |
|
15 |
KEYWORDS="~ppc ~ppc64" |
|
16 |
IUSE="+rtas" |
|
17 | 17 | |
18 | 18 |
RDEPEND=" |
19 | 19 |
!<sys-apps/powerpc-utils-1.1.3.18-r4 |
20 |
sys-process/numactl |
|
20 | 21 |
rtas? ( >=sys-libs/librtas-2.0.2 ) |
21 | 22 |
" |
22 | 23 | |
23 | 24 |
PATCHES=( |
24 | 25 |
"${FILESDIR}"/${PN}-1.3.5-docdir.patch |
25 |
"${FILESDIR}"/${P}-musl.patch |
|
26 | 26 |
) |
27 | 27 | |
28 | 28 |
src_prepare() { |
... | ... | |
33 | 33 |
src_configure() { |
34 | 34 |
econf \ |
35 | 35 |
--disable-werror \ |
36 |
--with-systemd="$(systemd_get_systemunitdir)" \ |
|
36 | 37 |
$(use_with rtas librtas) |
37 | 38 |
} |