diff options
author | James Le Cuirot <chewi@gentoo.org> | 2021-04-08 20:39:40 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2021-04-08 20:39:40 +0100 |
commit | 5ff5425226787e20cf00ecf37a558b3ad431eab4 (patch) | |
tree | b9923ca72085c9bc3b919adc11b9a4c18666908c /games-util | |
parent | dev-util/cmake: Bump to version 3.20.1 (diff) | |
download | gentoo-5ff5425226787e20cf00ecf37a558b3ad431eab4.tar.gz gentoo-5ff5425226787e20cf00ecf37a558b3ad431eab4.tar.bz2 gentoo-5ff5425226787e20cf00ecf37a558b3ad431eab4.zip |
games-util/acc: Bump to version 1.58
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/acc/Manifest | 1 | ||||
-rw-r--r-- | games-util/acc/acc-1.58.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/games-util/acc/Manifest b/games-util/acc/Manifest index 8ed92df6993a..4836c2fde7e8 100644 --- a/games-util/acc/Manifest +++ b/games-util/acc/Manifest @@ -1 +1,2 @@ DIST acc-1.57.tar.gz 70969 BLAKE2B 0c5d9f6778505881d9fa698da0958aea410a8d42f4b81c24277f59d0e9a601d44213e9399f0e693a210d0b935e57df4b6878fe1575005e5d573e19993404f570 SHA512 997bb6bb262743cacbf0606e7f6dcd00132a1f54eb24eddad92948c31ed552b3b678e72932150856fee57df2ab01fd25c29408f6c46a804614b883cf07532f3a +DIST acc-1.58.tar.gz 70326 BLAKE2B 327449b987b2675c4c16f0769c08f2093a0ee2db28e6fbba608f3de81a17d943f6dbfc6ed333ea25331ecf194bdd661d3cfaf0d02b1f5fa714e7f60e49aabca9 SHA512 6fb0302f47b6a4e7114f543ad654f71753fb4cec973c933fc28aa0737f1d68a07509b2eee22cee34422387635cc889882b897a27f782000a2c0b184c1867d650 diff --git a/games-util/acc/acc-1.58.ebuild b/games-util/acc/acc-1.58.ebuild new file mode 100644 index 000000000000..2519c43835b7 --- /dev/null +++ b/games-util/acc/acc-1.58.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="ACS script compiler for use with ZDoom and Hexen" +HOMEPAGE="https://zdoom.org/wiki/ACC" +SRC_URI="https://github.com/rheit/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="Activision" +SLOT="0" +KEYWORDS="~amd64" + +# The Activision EULA is inappropriate but this was never resolved. :( +# https://doomwiki.org/wiki/Raven_source_code_licensing +RESTRICT="bindist mirror" + +src_install() { + dobin "${BUILD_DIR}"/${PN} + dodoc readme.md + + insinto /usr/share/${PN} + doins *.acs +} |