blob: 46d0d4079860c6db71c5b122dfe60ea7d7d57b97 (
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
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Version control system prioritizing ease of use over flexibility"
HOMEPAGE="https://gameoftrees.org/"
SRC_URI="https://gameoftrees.org/releases/portable/${PN}-portable-${PV}.tar.gz"
S="${WORKDIR}/${PN}-portable-${PV}"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
IUSE="cvg"
RDEPEND="
sys-libs/ncurses:=
dev-libs/libbsd
app-crypt/libmd
dev-libs/openssl:=
sys-apps/util-linux
virtual/zlib
dev-libs/libevent:=
dev-libs/libretls:=
"
DEPEND="${RDEPEND}"
BDEPEND="
app-alternatives/yacc
virtual/pkgconfig
"
# tests hardcode libexec paths and only pass after a system-wide install
RESTRICT="test"
# silence QA0072
#
# `configure' checks recallocarray with only <stdlib.h>, before
# libbsd-overlay CFLAGS are in scope -- so the implicit declaration is
# expected. glibc has no recallocarray and the bundled
# compat/recallocarray.c will used.
QA_CONFIG_IMPL_DECL_SKIP=(
recallocarray
)
src_configure() {
econf $(use_enable cvg)
}
pkg_postinst() {
elog "gitwrapper requires dev-vcs/git and manual symlink setup."
elog "See README.portable for details."
}
|