Сравнение tarsnap-1.0.39-r1 с tarsnap-1.0.40
/usr/portage/app-backup/tarsnap/tarsnap-1.0.40.ebuild 2023-10-09 14:52:28.204368318 +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 | 5 | |
6 | 6 |
inherit bash-completion-r1 toolchain-funcs |
7 | 7 | |
8 | 8 |
DESCRIPTION="Online backups for the truly paranoid" |
9 | 9 |
HOMEPAGE="https://www.tarsnap.com/" |
10 | 10 |
SRC_URI="https://www.tarsnap.com/download/${PN}-autoconf-${PV}.tgz" |
11 |
S="${WORKDIR}"/${PN}-autoconf-${PV} |
|
11 | 12 | |
12 | 13 |
LICENSE="tarsnap" |
13 | 14 |
SLOT="0" |
14 |
KEYWORDS="amd64 x86" |
|
15 |
KEYWORDS="~amd64 ~x86" |
|
15 | 16 |
IUSE="acl bzip2 lzma xattr" |
16 | 17 | |
17 | 18 |
RDEPEND=" |
18 |
dev-libs/openssl:0= |
|
19 |
dev-libs/openssl:= |
|
19 | 20 |
sys-fs/e2fsprogs |
20 | 21 |
sys-libs/zlib |
21 | 22 |
acl? ( sys-apps/acl ) |
22 | 23 |
bzip2? ( app-arch/bzip2 ) |
23 | 24 |
lzma? ( app-arch/xz-utils ) |
24 |
xattr? ( sys-apps/attr )" |
|
25 |
DEPEND="${RDEPEND} |
|
26 |
virtual/os-headers" # Required for "magic.h" |
|
27 | ||
28 |
PATCHES=( "${FILESDIR}"/${PN}-1.0.39-respect-AR.patch ) |
|
29 | ||
30 |
S=${WORKDIR}/${PN}-autoconf-${PV} |
|
25 |
xattr? ( sys-apps/attr ) |
|
26 |
" |
|
27 |
# Required for "magic.h" |
|
28 |
DEPEND=" |
|
29 |
${RDEPEND} |
|
30 |
virtual/os-headers |
|
31 |
" |
|
32 | ||
33 |
PATCHES=( |
|
34 |
"${FILESDIR}"/${PN}-1.0.39-respect-AR.patch |
|
35 |
) |
|
31 | 36 | |
32 | 37 |
src_configure() { |
33 |
econf \ |
|
34 |
$(use_enable xattr) \ |
|
35 |
$(use_enable acl) \ |
|
36 |
$(use_with bzip2 bz2lib) \ |
|
37 |
--without-lzmadec \ |
|
38 |
local myeconfargs=( |
|
39 |
$(use_enable xattr) |
|
40 |
$(use_enable acl) |
|
41 |
$(use_with bzip2 bz2lib) |
|
42 |
--without-lzmadec |
|
38 | 43 |
$(use_with lzma) |
44 |
) |
|
45 | ||
46 |
econf "${myeconfargs[@]}" |
|
39 | 47 |
} |
40 | 48 | |
41 | 49 |
src_compile() { |