Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mmix/
Date: Sat, 02 May 2020 17:51:53
Message-Id: 1588441892.9eac809e535c4fc1754b672335d76e40e4837e39.slyfox@gentoo
1 commit: 9eac809e535c4fc1754b672335d76e40e4837e39
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 2 17:47:49 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat May 2 17:51:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eac809e
7
8 dev-lang/mmix: drop old
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-lang/mmix/mmix-20160804.ebuild | 44 --------------------------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/dev-lang/mmix/mmix-20160804.ebuild b/dev-lang/mmix/mmix-20160804.ebuild
17 deleted file mode 100644
18 index 95967668d8d..00000000000
19 --- a/dev-lang/mmix/mmix-20160804.ebuild
20 +++ /dev/null
21 @@ -1,44 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit eutils toolchain-funcs
28 -
29 -DESCRIPTION="Donald Knuth's MMIX Assembler and Simulator"
30 -HOMEPAGE="https://www-cs-faculty.stanford.edu/~knuth/mmix.html http://mmix.cs.hm.edu"
31 -SRC_URI="http://mmix.cs.hm.edu/src/${P}.tgz"
32 -
33 -DEPEND="virtual/tex-base
34 - doc? ( dev-texlive/texlive-plaingeneric )"
35 -RDEPEND=""
36 -
37 -SLOT="0"
38 -LICENSE="${PN}"
39 -KEYWORDS="amd64 x86"
40 -IUSE="doc"
41 -
42 -S="${WORKDIR}"
43 -
44 -PATCHES=(
45 - "${FILESDIR}"/${PN}-20110420-makefile.patch
46 - "${FILESDIR}"/${PN}-20131017-format-security.patch
47 -)
48 -
49 -src_compile() {
50 - export VARTEXFONTS=${T}/fonts
51 - emake all \
52 - CFLAGS="${CFLAGS}" \
53 - CC="$(tc-getCC)"
54 -
55 - if use doc ; then
56 - emake doc
57 - fi
58 -}
59 -
60 -src_install() {
61 - dobin ${PN} ${PN}al m${PN} mmotype abstime
62 - dodoc README ${PN}.1
63 -
64 - use doc && dodoc *.ps
65 -}