blob: ef31499c390b84a169b55c217933f6a91f2837e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/jariruusu.asc
UTIL_LINUX_VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/karelzak.asc
inherit autotools flag-o-matic toolchain-funcs verify-sig
MY_PV="${PV/_/-}"
MY_P="util-linux-${MY_PV}"
LOOPAES_P="loop-AES-v3.8e"
DESCRIPTION="Loop-AES losetup utility"
HOMEPAGE="https://www.kernel.org/pub/linux/utils/util-linux/ https://github.com/util-linux/util-linux"
SRC_URI="
https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.xz
https://loop-aes.sourceforge.net/loop-AES/${LOOPAES_P}.tar.bz2
verify-sig? (
https://www.kernel.org/pub/linux/utils/util-linux/v${PV:0:4}/${MY_P}.tar.sign
https://loop-aes.sourceforge.net/loop-AES/${LOOPAES_P}.tar.bz2.sign
)
"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2 GPL-3 LGPL-2.1 BSD-4 MIT public-domain"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sparc ~x86"
IUSE="nls selinux static"
RDEPEND="
selinux? ( >=sys-libs/libselinux-2.2.2-r4 )
verify-sig? (
>=sec-keys/openpgp-keys-karelzak-20230517
>=sec-keys/openpgp-keys-jariruusu-20240521
)
"
BDEPEND="
virtual/pkgconfig
nls? (
app-text/po4a
sys-devel/gettext
)
"
DEPEND="
${RDEPEND}
virtual/os-headers
"
PATCHES=(
"${WORKDIR}/${LOOPAES_P}/util-linux-${PV}.diff"
)
src_unpack() {
# Upstream sign the decompressed .tar
if use verify-sig ; then
einfo "Unpacking ${MY_P}.tar.xz ..."
verify-sig_verify_detached - "${DISTDIR}"/${MY_P}.tar.sign "${UTIL_LINUX_VERIFY_SIG_OPENPGP_KEY_PATH}" \
< <(xz -cd "${DISTDIR}"/${MY_P}.tar.xz | tee >(tar -xf -))
assert "Unpack failed"
verify-sig_verify_detached "${DISTDIR}"/${LOOPAES_P}.tar.bz2{,.sign}
unpack ${LOOPAES_P}.tar.bz2
else
default
fi
}
src_prepare() {
default
eautoreconf
}
src_configure() {
append-lfs-flags
ECONF_SOURCE=${S} \
econf \
--disable-all-programs \
--disable-libmount-mountfd-support \
--disable-liblastlog2 \
--disable-pam-lastlog2 \
--disable-pylibmount \
--disable-uuidd \
--enable-libblkid \
--enable-libmount \
--enable-libsmartcols \
--enable-losetup \
--enable-mount \
--without-btrfs \
--without-libz \
--without-libmagic \
--without-ncurses \
--without-ncursesw \
--without-python \
--without-readline \
--without-systemd \
--without-tinfo \
--without-udev \
--without-util \
$(use_enable nls) \
$(use_with selinux) \
$(tc-has-tls || echo --disable-tls) \
$(use_enable static) \
$(use static && echo --enable-static-programs=losetup,mount)
}
src_install() {
emake install DESTDIR="${T}/root"
newsbin "${T}/root/sbin/losetup" loop-aes-losetup
newbin "${T}/root/bin/mount" loop-aes-mount
newman "${T}/root/usr/share/man/man8/losetup.8" loop-aes-losetup.8
newman "${T}/root/usr/share/man/man8/mount.8" loop-aes-mount.8
use static && newsbin "${T}/root/bin/losetup.static" loop-aes-losetup.static
use static && newbin "${T}/root/bin/mount.static" loop-aes-mount.static
}
|