blob: de221d84ee9d68bdb0b86f806b39741a83f19638 (
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
|
# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_P="${PN}-portable-${PV}"
DESCRIPTION="Portable version of the Game of Trees version control system"
HOMEPAGE="https://gameoftrees.org"
SRC_URI="https://gameoftrees.org/releases/portable/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# `make check` does nothing
RESTRICT="test"
RDEPEND="
dev-libs/libevent:=
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
elibc_Darwin? (
dev-libs/ossp-uuid
)
elibc_SunOS? (
sys-libs/libuuid
)
!elibc_Darwin? (
dev-libs/libbsd
!elibc_SunOS? (
app-crypt/libmd
sys-apps/util-linux
)
)
"
DEPEND="${RDEPEND}
kernel_linux? ( sys-kernel/linux-headers )
"
BDEPEND="
virtual/pkgconfig
app-alternatives/yacc
"
DOCS=( CHANGELOG CHANGES README TODO )
|