Сравнение libservicelog-1.1.18 с libservicelog-1.1.19
/usr/portage/sys-libs/libservicelog/libservicelog-1.1.19.ebuild 2023-10-09 14:52:35.556368503 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2019 Gentoo Authors |
|
1 |
# Copyright 1999-2021 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=7 |
5 | 5 | |
6 |
inherit autotools |
|
7 | ||
6 | 8 |
DESCRIPTION="Provides a library for logging service-related events" |
7 |
SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz" |
|
8 |
HOMEPAGE="http://linux-diag.sourceforge.net/servicelog/" |
|
9 |
SRC_URI="https://github.com/power-ras/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" |
|
10 |
HOMEPAGE="https://github.com/power-ras/libservicelog" |
|
9 | 11 | |
10 | 12 |
SLOT="0" |
11 |
LICENSE="LGPL-2.1+" |
|
12 |
KEYWORDS="ppc ppc64" |
|
13 |
LICENSE="GPL-2+" |
|
14 |
KEYWORDS="~ppc ~ppc64" |
|
13 | 15 |
IUSE="static-libs" |
14 | 16 | |
15 | 17 |
DEPEND=" |
... | ... | |
20 | 22 |
${DEPEND} |
21 | 23 |
virtual/logger |
22 | 24 |
" |
23 | ||
24 |
DOCS=( ChangeLog ) |
|
25 |
src_prepare() { |
|
26 |
default |
|
27 |
eautoreconf |
|
28 |
} |
|
25 | 29 | |
26 | 30 |
src_configure() { |
27 |
econf $(use_enable static-libs static) |
|
31 |
econf --disable-static |
|
28 | 32 |
} |
29 | 33 | |
30 | 34 |
src_install() { |
35 |
local DOCS=( ChangeLog README ) |
|
31 | 36 |
default |
32 | 37 |
find "${D}" -name '*.la' -delete || die |
33 | 38 |
} |