mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-emulation/vov: Remove last-rited pkg
Closes: https://bugs.gentoo.org/693748 Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST vov-2.0.0.tar.gz 510667 BLAKE2B cb138fd5c1c28f958d01dbb7a717fe21595a57d06fdf2b7c18b3d68b9adaf4a349edc94a7d54e36e7367b69b9a92af5feb8fcc822a011ed7518a4113a255ac3c SHA512 67a3b552dc768dff57ed2b7119ff288f4ef120a5f48279a4a003ff39add051b7fec9f22c3278449c6e96b7b5da1cc40a5fefef7a320fbfceadddf73b317a57a7
|
||||
@@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>dlan@gentoo.org</email>
|
||||
<name>Yixun Lan</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
vov (Vov's Obsessive Von-Neumann) is a tool that emulates the behavior of a Von-Neumann machine.
|
||||
It is basically an interpreter, which reads files in the form of memory assignments and executes
|
||||
the encoded instructions. The vov's instructions make you able to perform simple arithmetic data
|
||||
manipulation. It is a very useful tool to see if your programs work and how.
|
||||
</longdescription>
|
||||
<use>
|
||||
<flag name="gprof">build with profiling support</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
@@ -1,53 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=0
|
||||
|
||||
inherit flag-o-matic
|
||||
|
||||
DESCRIPTION="A tool that emulates the behavior of a Von-Neumann machine"
|
||||
HOMEPAGE="http://home.gna.org/vov/"
|
||||
SRC_URI="http://download.gna.org/vov/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="x86"
|
||||
IUSE="debug gprof"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND=">=sys-devel/flex-2.5.33-r3
|
||||
>=sys-apps/sed-4.1.5"
|
||||
|
||||
src_unpack()
|
||||
{
|
||||
unpack ${A}
|
||||
|
||||
# do no install redundant documentation
|
||||
cd "${S}"
|
||||
sed -i 's/src scripts docs/src scripts/' "${S}/Makefile.in"
|
||||
}
|
||||
|
||||
src_compile()
|
||||
{
|
||||
local fp_support=""
|
||||
|
||||
if use gprof; then
|
||||
filter-flags "-fomit-frame-pointer"
|
||||
fp_support="--enable-frame-pointer"
|
||||
fi
|
||||
|
||||
econf \
|
||||
`use_enable gprof` \
|
||||
`use_enable debug` \
|
||||
${fp_support} \
|
||||
|| die "econf failed"
|
||||
|
||||
emake || die "emake failed"
|
||||
}
|
||||
|
||||
src_install()
|
||||
{
|
||||
emake DESTDIR="${D}" install || die "emake install failed"
|
||||
dodoc AUTHORS README NEWS
|
||||
doman docs/vov.1
|
||||
}
|
||||
@@ -1034,12 +1034,6 @@ dev-lang/tinycobol
|
||||
# Removal in 30 days. Bug #693750.
|
||||
app-text/freepwing
|
||||
|
||||
# Michał Górny <mgorny@gentoo.org> (2019-09-08)
|
||||
# Added in 2008 and not updated since. EAPI 0. Upstream homepage
|
||||
# disappeared. Not keyworded on amd64.
|
||||
# Removal in 30 days. Bug #693748.
|
||||
app-emulation/vov
|
||||
|
||||
# Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
|
||||
# Unofficial build. Superseded by official 2.49.5 release.
|
||||
# Masked for removal.
|
||||
|
||||
Reference in New Issue
Block a user