diff options
author | 2020-08-16 22:55:31 +0100 | |
---|---|---|
committer | 2020-08-16 22:55:31 +0100 | |
commit | b420ca5ba10de5dc9e85c628f07cfdc5fe7a4500 (patch) | |
tree | 8af3db6d7770fd9aaa42c52fe87b78ee4179dd4a /games-engines/dMagnetic/dMagnetic-0.25.ebuild | |
parent | dev-python/beagle: update upstream repo (diff) | |
download | gentoo-b420ca5ba10de5dc9e85c628f07cfdc5fe7a4500.tar.gz gentoo-b420ca5ba10de5dc9e85c628f07cfdc5fe7a4500.tar.bz2 gentoo-b420ca5ba10de5dc9e85c628f07cfdc5fe7a4500.zip |
games-engines/dMagnetic: Bump to 0.25, drop old 0.24, add tests
Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-engines/dMagnetic/dMagnetic-0.25.ebuild')
-rw-r--r-- | games-engines/dMagnetic/dMagnetic-0.25.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/games-engines/dMagnetic/dMagnetic-0.25.ebuild b/games-engines/dMagnetic/dMagnetic-0.25.ebuild new file mode 100644 index 00000000000..367e1726f45 --- /dev/null +++ b/games-engines/dMagnetic/dMagnetic-0.25.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit prefix toolchain-funcs + +MY_P="${PN}_${PV}" +DESCRIPTION="A Magnetic Scrolls Interpreter for playing a collection of old text adventures" +HOMEPAGE="https://www.dettus.net/dMagnetic/" +SRC_URI="https://www.dettus.net/${PN}/${MY_P}.tar.bz2" +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~m68k ~x86" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + default + hprefixify ${PN}.ini src/toplevel/${PN}.c +} + +src_compile() { + emake ${PN} \ + CC="$(tc-getCC)" \ + LINK="$(tc-getCC) ${LDFLAGS}" +} + +src_test() { + emake check \ + SHA256_CMD=sha256sum +} + +src_install() { + dobin ${PN} + doman ${PN}.1 ${PN}ini.5 + dodoc README.txt + + insinto /etc + doins ${PN}.ini +} |