Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/dlx/
Date: Thu, 15 Aug 2019 09:42:56
Message-Id: 1565862167.0547b99ec1b1c13c949b16053a3967823658377f.mgorny@gentoo
1 commit: 0547b99ec1b1c13c949b16053a3967823658377f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 15 09:37:34 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 15 09:42:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0547b99e
7
8 app-emulation/dlx: Bump to 1.5.20, major cleanup
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-emulation/dlx/Manifest | 1 +
13 app-emulation/dlx/dlx-1.5.20.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/app-emulation/dlx/Manifest b/app-emulation/dlx/Manifest
17 index 4de82a978b2..d495844051b 100644
18 --- a/app-emulation/dlx/Manifest
19 +++ b/app-emulation/dlx/Manifest
20 @@ -1 +1,2 @@
21 DIST dlx-1.0.0.tar.gz 112589 BLAKE2B 307785d08fd69e45264471fbc21e3b2bdba99798c0b7144c3d6a92819c29e4ac6449a6db83fdd55ba81d3b2e3f8ca6c991ee6c117ddc490a88ae210e5bc07ab8 SHA512 99297f14f6716ada7a29b204723a0c951002529362a22f695b3647517462f43af563ea55467985dda3e21d79a14d46b84dbc9b22a8c0751fba49257e30f70a7f
22 +DIST dlx-1.5.20.zip 137039 BLAKE2B 99dbb2e5bcd89b3e9f3d8edc2fe7e7cc0a59f870f597a40a61a993b95d8b27c4f95b8d0490fdbcbc15693040d6e3abdfb8b0062e109916f5299c3da3c203d755 SHA512 5c832c2a486a82574ae03ec0cb4e30bfec74ef968658a38fbd896a1383dcdc558501baef7cbbdf99df453ba2840622d16c1619f9c5fe34b6cd058a7718bd3790
23
24 diff --git a/app-emulation/dlx/dlx-1.5.20.ebuild b/app-emulation/dlx/dlx-1.5.20.ebuild
25 new file mode 100644
26 index 00000000000..30e768088a5
27 --- /dev/null
28 +++ b/app-emulation/dlx/dlx-1.5.20.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit toolchain-funcs
36 +
37 +DESCRIPTION="DLX Simulator"
38 +HOMEPAGE="https://www.davidviner.com/dlx"
39 +SRC_URI="https://www.davidviner.com/zip/dlx/dlx.zip -> ${P}.zip"
40 +S=${WORKDIR}/dlx
41 +
42 +LICENSE="GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~ppc ~x86"
45 +IUSE=""
46 +
47 +DEPEND="app-arch/unzip"
48 +
49 +src_compile() {
50 + # CXX not used
51 + emake CC="$(tc-getCC)" LINK="$(tc-getCC)" \
52 + CFLAGS="${CFLAGS} ${CPPFLAGS}" \
53 + LFLAGS="${CFLAGS} ${LDFLAGS}"
54 +}
55 +
56 +src_install() {
57 + dobin masm mon dasm
58 + dodoc README.txt MANUAL.TXT
59 +}