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@gmail.com>
This commit is contained in:
Carlos Eduardo
2022-02-22 18:24:10 -03:00
parent e782fd1284
commit 06756aaf93

View File

@@ -1 +0,0 @@
neo-0.6.ebuild

View File

@@ -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'
}