diff options
-rw-r--r-- | dev-lang/mmix/Manifest | 1 | ||||
-rw-r--r-- | dev-lang/mmix/mmix-20131017.ebuild | 47 |
2 files changed, 0 insertions, 48 deletions
diff --git a/dev-lang/mmix/Manifest b/dev-lang/mmix/Manifest index 359b982648be..62a62c81b29f 100644 --- a/dev-lang/mmix/Manifest +++ b/dev-lang/mmix/Manifest @@ -1,2 +1 @@ -DIST mmix-20131017.tgz 308016 BLAKE2B 195c4945c61584842af08af891dc2e26672194aef66ff71ba6dfa18bab4e7349de013aa1c3ae195d9d6a69ee4ebc61403acf558a06af86393d5b053920ebad55 SHA512 e816b1ee9205b9f4a2e25ff183c48736ea66e63721a49f0b574850c5872ae85a6e847d802a01b5aa120ac969638d5d05e9b3135512d9362a4d672564f1228922 DIST mmix-20160804.tgz 308410 BLAKE2B 8bbde51921fe23f016e35bd51346e6445d530815e5e87bff44cf17e081c6b8e55dd6bd24f1ce1621851d2eac309fa44d71aa33d93d3ddfce5213c6643181d38c SHA512 35c518227a4ee40d0aa3be02eda2ab8b2a27696fa789f5007a978419d07b3deebb7f391895e63e3556aeb38dc1ded3bddf2b860125ebf8f7848375e90dc7af75 diff --git a/dev-lang/mmix/mmix-20131017.ebuild b/dev-lang/mmix/mmix-20131017.ebuild deleted file mode 100644 index 7e736d6cecff..000000000000 --- a/dev-lang/mmix/mmix-20131017.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -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}" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-20110420-makefile.patch - epatch "${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 - - if use doc ; then - insinto /usr/share/doc/${PF} - doins *.ps - fi -} |