Сравнение portage-utils-0.97 с portage-utils-9999

/usr/portage/app-portage/portage-utils/portage-utils-9999.ebuild 2025-11-06 18:18:08.098172739 +0300
13 13
	EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage-utils.git"
14 14
else
15 15
	SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.tar.xz"
16
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
16
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
17 17
fi
18 18

  
19 19
LICENSE="GPL-2"
20 20
SLOT="0"
21
IUSE="openmp +qmanifest static"
21
IUSE="+gpkg +gtree openmp +qmanifest static"
22 22

  
23 23
RDEPEND="
24
	gpkg? (
25
		!static? (
26
			app-crypt/gpgme:=
27
			app-arch/libarchive:=
28
		)
29
	)
30
	gtree? (
31
		!static? (
32
			app-crypt/gpgme:=
33
			app-arch/libarchive:=[zstd]
34
		)
35
	)
24 36
	openmp? ( || (
25 37
		sys-devel/gcc:*[openmp]
26 38
		llvm-runtimes/openmp
......
33 45
		)
34 46
	)"
35 47
DEPEND="${RDEPEND}
48
	gpkg? (
49
		static? (
50
			app-crypt/gpgme[static-libs]
51
			app-arch/libarchive[static-libs]
52
		)
53
	)
54
	gtree? (
55
		static? (
56
			app-crypt/gpgme[static-libs]
57
			app-arch/libarchive[static-libs,zstd]
58
		)
59
	)
36 60
	qmanifest? (
37 61
		static? (
38 62
			app-crypt/gpgme[static-libs]
......
65 89
	econf \
66 90
		--disable-maintainer-mode \
67 91
		--with-eprefix="${EPREFIX}" \
92
		$(use_enable gpkg) \
93
		$(use_enable gtree) \
68 94
		$(use_enable qmanifest) \
69 95
		$(use_enable openmp)
70 96
}
Спасибо!