diff options
author | Sam James <sam@gentoo.org> | 2021-06-18 23:05:42 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-06-18 23:05:42 +0200 |
commit | 280278f4db57054601707158f36316296c55f256 (patch) | |
tree | 4c6e8d310673ad7447f2ac9624f25a359018f425 /app-misc/dvorakng/dvorakng-0.6.0.ebuild | |
parent | dev-util/cppcheck: use BDEPEND in EAPI 7 (diff) | |
download | gentoo-280278f4db57054601707158f36316296c55f256.tar.gz gentoo-280278f4db57054601707158f36316296c55f256.tar.bz2 gentoo-280278f4db57054601707158f36316296c55f256.zip |
app-misc/dvorakng: use correct (:=) slot operator for ncurses
We need to be rebuilt when ncurses' subslot (representing
its ABI here) is changed, not just note that we're fine
with any (sub)slot which is what :* does.
Package-Manager: Portage-3.0.18-prefix, Repoman-3.0.3
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-misc/dvorakng/dvorakng-0.6.0.ebuild')
-rw-r--r-- | app-misc/dvorakng/dvorakng-0.6.0.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/app-misc/dvorakng/dvorakng-0.6.0.ebuild b/app-misc/dvorakng/dvorakng-0.6.0.ebuild deleted file mode 100644 index b99e9273b654..000000000000 --- a/app-misc/dvorakng/dvorakng-0.6.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit toolchain-funcs - -DESCRIPTION="Dvorak typing tutor" -HOMEPAGE="http://freshmeat.net/projects/dvorakng/?topic_id=71%2C861" -SRC_URI="http://www.free.of.pl/n/nopik/${P}rc1.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -RDEPEND=" - sys-libs/ncurses:* -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -S=${WORKDIR}/${PN} - -src_compile() { - emake \ - CXX="$(tc-getCXX)" \ - CXXFLAGS="${CXXFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses )" -} - -src_install() { - dobin ${PN} - dodoc README TODO -} |