diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-05-02 18:47:49 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-05-02 18:51:32 +0100 |
commit | 9eac809e535c4fc1754b672335d76e40e4837e39 (patch) | |
tree | 5b424cd812e9766398f7000274abd978ba737f5e /dev-lang/mmix | |
parent | dev-lang/erlang: drop old (diff) | |
download | gentoo-9eac809e535c4fc1754b672335d76e40e4837e39.tar.gz gentoo-9eac809e535c4fc1754b672335d76e40e4837e39.tar.bz2 gentoo-9eac809e535c4fc1754b672335d76e40e4837e39.zip |
dev-lang/mmix: drop old
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-lang/mmix')
-rw-r--r-- | dev-lang/mmix/mmix-20160804.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-lang/mmix/mmix-20160804.ebuild b/dev-lang/mmix/mmix-20160804.ebuild deleted file mode 100644 index 95967668d8d0..000000000000 --- a/dev-lang/mmix/mmix-20160804.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils toolchain-funcs - -DESCRIPTION="Donald Knuth's MMIX Assembler and Simulator" -HOMEPAGE="https://www-cs-faculty.stanford.edu/~knuth/mmix.html http://mmix.cs.hm.edu" -SRC_URI="http://mmix.cs.hm.edu/src/${P}.tgz" - -DEPEND="virtual/tex-base - doc? ( dev-texlive/texlive-plaingeneric )" -RDEPEND="" - -SLOT="0" -LICENSE="${PN}" -KEYWORDS="amd64 x86" -IUSE="doc" - -S="${WORKDIR}" - -PATCHES=( - "${FILESDIR}"/${PN}-20110420-makefile.patch - "${FILESDIR}"/${PN}-20131017-format-security.patch -) - -src_compile() { - export VARTEXFONTS=${T}/fonts - emake all \ - CFLAGS="${CFLAGS}" \ - CC="$(tc-getCC)" - - if use doc ; then - emake doc - fi -} - -src_install() { - dobin ${PN} ${PN}al m${PN} mmotype abstime - dodoc README ${PN}.1 - - use doc && dodoc *.ps -} |