commit: 06756aaf93576a3346d8983c8b474d3aff4383c6 Author: Carlos Eduardo <carana2099 <AT> gmail <DOT> com> AuthorDate: Tue Feb 22 21:24:10 2022 +0000 Commit: Carlos Eduardo <carana2099 <AT> gmail <DOT> com> CommitDate: Tue Feb 22 21:24:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=06756aaf
app-misc/neo: fix dangling symlink Repoman doesn't seem to have staged neo-9999.ebuild turning from a symlink to a normal file... Signed-off-by: Carlos Eduardo <carana2099 <AT> gmail.com> app-misc/neo/neo-9999.ebuild | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/app-misc/neo/neo-9999.ebuild b/app-misc/neo/neo-9999.ebuild deleted file mode 120000 index 7fee11d41..000000000 --- a/app-misc/neo/neo-9999.ebuild +++ /dev/null @@ -1 +0,0 @@ -neo-0.6.ebuild \ No newline at end of file diff --git a/app-misc/neo/neo-9999.ebuild b/app-misc/neo/neo-9999.ebuild new file mode 100644 index 000000000..7cbc274fd --- /dev/null +++ b/app-misc/neo/neo-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="cmatrix clone with 32-bit color and Unicode support" +HOMEPAGE="https://github.com/st3w/neo" + +if [ "$PV" = 9999 ]; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/st3w/neo/" + KEYWORDS="" +else + SRC_URI="https://github.com/st3w/neo/releases/download/v${PV}/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +DEPEND="sys-libs/ncurses" +RDEPEND="${DEPEND}" +[ "$PV" = 9999 ] && BDEPEND=" + sys-devel/autoconf + sys-devel/autoconf-archive +" + +src_prepare() { + default + [ -f ./configure ] || eautoreconf || die 'autoreconf failed' +}
