diff options
author | 2021-09-23 19:10:47 +0500 | |
---|---|---|
committer | 2021-09-23 19:17:49 +0500 | |
commit | 1edb9f16fd5c54f0bc5f6f7bb6278d60731beffd (patch) | |
tree | ab29332651e09d4517985db4a9484b8765f3692e /dev-vcs/got/got-0.60.ebuild | |
parent | dev-libs/libphonenumber: Version Bump (diff) | |
download | guru-1edb9f16fd5c54f0bc5f6f7bb6278d60731beffd.tar.gz guru-1edb9f16fd5c54f0bc5f6f7bb6278d60731beffd.tar.bz2 guru-1edb9f16fd5c54f0bc5f6f7bb6278d60731beffd.zip |
dev-vcs/got: add 0.60
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
Diffstat (limited to 'dev-vcs/got/got-0.60.ebuild')
-rw-r--r-- | dev-vcs/got/got-0.60.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-vcs/got/got-0.60.ebuild b/dev-vcs/got/got-0.60.ebuild new file mode 100644 index 00000000..d030d868 --- /dev/null +++ b/dev-vcs/got/got-0.60.ebuild @@ -0,0 +1,40 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +MY_PN="${PN}-portable" +DESCRIPTION="Portable version of the Game of Trees version control system" +HOMEPAGE="https://gameoftrees.org" +SRC_URI="https://gameoftrees.org/releases/portable/${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-libs/openssl:= + sys-libs/ncurses:=[unicode(+)] + sys-libs/zlib:= + elibc_Darwin? ( sys-libs/native-uuid ) + elibc_SunOS? ( sys-libs/libuuid ) + !elibc_Darwin? ( dev-libs/libbsd ) + !elibc_Darwin? ( !elibc_SunOS? ( + app-crypt/libmd + sys-apps/util-linux + ) ) +" +BDEPEND=" + virtual/pkgconfig + virtual/yacc +" +RDEPEND="${DEPEND}" + +DOCS=( CHANGELOG CHANGES README TODO ) + +src_compile() { + emake AR=$(tc-getAR) GOT_RELEASE=Yes +} |