summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2018-06-03 10:08:53 -0400
committerAaron Bauman <bman@gentoo.org>2018-06-03 21:12:19 -0400
commit7d088aad30168a275033825659696bb65f08c108 (patch)
tree4d49dbc8d30be767295fa872a033899d278dc011 /app-emulation/dlx/dlx-1.0.0-r1.ebuild
parentapp-emacs/yasnippet: drop old EAPI (diff)
downloadgentoo-7d088aad30168a275033825659696bb65f08c108.tar.gz
gentoo-7d088aad30168a275033825659696bb65f08c108.tar.bz2
gentoo-7d088aad30168a275033825659696bb65f08c108.zip
app-emulation/dlx: bump EAPI and drop old
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-emulation/dlx/dlx-1.0.0-r1.ebuild')
-rw-r--r--app-emulation/dlx/dlx-1.0.0-r1.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/app-emulation/dlx/dlx-1.0.0-r1.ebuild b/app-emulation/dlx/dlx-1.0.0-r1.ebuild
deleted file mode 100644
index 6b10ef9f7809..000000000000
--- a/app-emulation/dlx/dlx-1.0.0-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit toolchain-funcs
-
-DESCRIPTION="DLX Simulator"
-HOMEPAGE="http://www.davidviner.com/dlx.php"
-SRC_URI="http://www.davidviner.com/${PN}/${PN}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-S="${WORKDIR}/${PN}"
-
-src_compile() {
- emake CC="$(tc-getCC)" \
- LINK="$(tc-getCC)" \
- CFLAGS="${CFLAGS}" \
- LFLAGS="${LDFLAGS}" \
- || die "emake failed"
-}
-
-src_install() {
- dodir /usr/include/dlx /usr/share/dlx/examples
- dobin masm mon dasm
- insinto /usr/include/dlx
- doins *.i auto.a
- insinto /usr/share/dlx/examples
- doins *.a hp.m
- dodoc README.txt MANUAL.TXT
-}