commit: 84dce05a355e98a0d500d2f0b4d86ce8665d0545
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Nov 2 15:44:20 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Nov 3 01:12:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84dce05a
dev-vcs/got: add missing dep
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
.../got/{got-0.77.ebuild => got-0.77-r1.ebuild} | 25 +++++++++++++---------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/dev-vcs/got/got-0.77.ebuild b/dev-vcs/got/got-0.77-r1.ebuild
similarity index 71%
rename from dev-vcs/got/got-0.77.ebuild
rename to dev-vcs/got/got-0.77-r1.ebuild
index f8642b4cf..f7846ca77 100644
--- a/dev-vcs/got/got-0.77.ebuild
+++ b/dev-vcs/got/got-0.77-r1.ebuild
@@ -3,8 +3,6 @@
EAPI=8
-inherit toolchain-funcs
-
MY_PN="${PN}-portable"
DESCRIPTION="Portable version of the Game of Trees version control system"
HOMEPAGE="https://gameoftrees.org"
@@ -16,15 +14,22 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
+ 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_Darwin? ( !elibc_SunOS? (
- app-crypt/libmd
- sys-apps/util-linux
- ) )
+ 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
+ )
+ )
"
BDEPEND="
virtual/pkgconfig
@@ -36,5 +41,5 @@ RDEPEND="${DEPEND}"
DOCS=( CHANGELOG CHANGES README TODO )
src_compile() {
- emake AR=$(tc-getAR) GOT_RELEASE=Yes
+ emake GOT_RELEASE=Yes
}