Diff nfs-utils-2.6.2-r1 with a nfs-utils-2.6.3-r2
/usr/portage/net-fs/nfs-utils/nfs-utils-2.6.3-r2.ebuild 2023-10-09 14:52:34.432368475 +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 | 4 |
EAPI=8 |
... | ... | |
14 | 14 |
S="${WORKDIR}/${PN}-${PN}-${MY_PV}" |
15 | 15 |
else |
16 | 16 |
SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2" |
17 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86" |
|
17 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" |
|
18 | 18 |
fi |
19 | 19 | |
20 | 20 |
LICENSE="GPL-2" |
... | ... | |
33 | 33 |
net-libs/libtirpc:= |
34 | 34 |
>=net-nds/rpcbind-0.2.4 |
35 | 35 |
sys-fs/e2fsprogs |
36 |
dev-db/sqlite:3 |
|
37 |
dev-libs/libevent:= |
|
36 | 38 |
caps? ( sys-libs/libcap ) |
37 | 39 |
ldap? ( |
38 | 40 |
net-nds/openldap:= |
... | ... | |
43 | 45 |
) |
44 | 46 |
libmount? ( sys-apps/util-linux ) |
45 | 47 |
nfsv4? ( |
46 |
dev-db/sqlite:3 |
|
47 |
dev-libs/libevent:= |
|
48 | 48 |
>=sys-apps/keyutils-1.5.9:= |
49 | 49 |
kerberos? ( |
50 | 50 |
>=net-libs/libtirpc-0.2.4-r1[kerberos] |
... | ... | |
73 | 73 | |
74 | 74 |
PATCHES=( |
75 | 75 |
"${FILESDIR}"/${PN}-2.5.2-no-werror.patch |
76 |
"${FILESDIR}"/${P}-clang-Wlogical-not-parentheses.patch |
|
77 |
"${FILESDIR}"/${P}-clang-fix-function-prototypes.patch |
|
78 |
"${FILESDIR}"/${PN}-2.6.2-clang-more-function-prototypes.patch |
|
76 |
"${FILESDIR}"/${PN}-udev-sysctl.patch |
|
79 | 77 |
) |
80 | 78 | |
81 | 79 |
pkg_setup() { |
... | ... | |
129 | 127 |
$(use_enable nfsv41) |
130 | 128 |
$(use_enable uuid) |
131 | 129 |
$(use_with tcpd tcp-wrappers) |
130 |
# XXX: Remove this hack after 2.6.3 |
|
131 |
# See bug #904718. |
|
132 |
# Patch: https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commit;h=bc4a5deef9f820c55fdac3c0070364c17cd91cca |
|
133 |
LIBS="-lsqlite3 -levent_core" |
|
132 | 134 |
) |
133 | 135 |
econf "${myeconfargs[@]}" |
134 | 136 |
} |