diff options
author | 2019-10-08 20:26:00 +0200 | |
---|---|---|
committer | 2019-10-08 20:26:00 +0200 | |
commit | 2eb1b30a04dfdf156c6d9bca5bf4b0f01f19e27e (patch) | |
tree | 289f15ad2f782e90a34210176e18a441201d5045 /app-emulation | |
parent | net-p2p/saku: Remove last-rited pkg (diff) | |
download | gentoo-2eb1b30a04dfdf156c6d9bca5bf4b0f01f19e27e.tar.gz gentoo-2eb1b30a04dfdf156c6d9bca5bf4b0f01f19e27e.tar.bz2 gentoo-2eb1b30a04dfdf156c6d9bca5bf4b0f01f19e27e.zip |
app-emulation/vov: Remove last-rited pkg
Closes: https://bugs.gentoo.org/693748
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/vov/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/vov/metadata.xml | 17 | ||||
-rw-r--r-- | app-emulation/vov/vov-2.0.0.ebuild | 53 |
3 files changed, 0 insertions, 71 deletions
diff --git a/app-emulation/vov/Manifest b/app-emulation/vov/Manifest deleted file mode 100644 index a9c8420ae0a0..000000000000 --- a/app-emulation/vov/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST vov-2.0.0.tar.gz 510667 BLAKE2B cb138fd5c1c28f958d01dbb7a717fe21595a57d06fdf2b7c18b3d68b9adaf4a349edc94a7d54e36e7367b69b9a92af5feb8fcc822a011ed7518a4113a255ac3c SHA512 67a3b552dc768dff57ed2b7119ff288f4ef120a5f48279a4a003ff39add051b7fec9f22c3278449c6e96b7b5da1cc40a5fefef7a320fbfceadddf73b317a57a7 diff --git a/app-emulation/vov/metadata.xml b/app-emulation/vov/metadata.xml deleted file mode 100644 index ea5b19f45fc0..000000000000 --- a/app-emulation/vov/metadata.xml +++ /dev/null @@ -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> diff --git a/app-emulation/vov/vov-2.0.0.ebuild b/app-emulation/vov/vov-2.0.0.ebuild deleted file mode 100644 index 17fe7ee6c79f..000000000000 --- a/app-emulation/vov/vov-2.0.0.ebuild +++ /dev/null @@ -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 -} |