games-util/zdbsp: new package, add 1.19

This commit is contained in:
Nicole O'Connor 2023-05-13 21:22:06 -07:00
parent a86a1a9c72
commit 4a1db616a5
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST v1.19.zip 239993 BLAKE2B e3aad80f9fd163c418b7a41c54e40fe74dc63325e11b99093cefd30e8a411c80e39c5eb8eedef93c0b53f05109112adb753450d0aeb17dd3846f31c69e3037e6 SHA512 ff4b257eae3b1b2c25309d3f27a3ea0273c631494de02218a85e2347efb8daf21d767cf17a32c30ed2f24e7536ac4df550231e168986e442b53a65d1a6b4b3bb
EBUILD zdbsp-1.19.ebuild 522 BLAKE2B a197cb87e0ed1775c735429155f465c360de936ab9c53de9e344710ded740b67cfdd53d29a5a49b68786c0156f7a0d63337d8454cd77529673a9316495be2d7d SHA512 f5b1bd53998ca87f6a4c37452d7c33c07f542832ea7a68b330a49d4c70febe50a359b0a47c0626eed595cbaa44b6ea9b5544decf63044d672087bfbbbce096e4
MISC metadata.xml 404 BLAKE2B a266a6dafa13976bb7276ca6e35b603b3b0069f00fa33e3b2ee1e45b2a01a1bc1370148d66a3d6eb21c8121e2e28f6ee60fee5ec26eb43796b7929888213e7c1 SHA512 c1fa97dd03b6cbd3381a102e20dd4e480e6bb34d71d8ae3dde8a09b7bd02bf66b28b0fbce7c56c74f8f79a40d62b73b94f86845c0a4a7ec191f137f1c37f0cb4

View File

@ -0,0 +1,27 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="ZDoom's internal node builder"
HOMEPAGE="https://zdoom.org"
SRC_URI="https://github.com/rheit/${PN}/archive/refs/tags/v${PV}.zip -> v${PV}.zip"
LICENSE="GPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="system-zlib"
DEPEND="system-zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}"
BDEPEND=""
src_install() {
dobin "${BUILD_DIR}"/${PN}
dodoc ${PN}.html
insinto /usr/share/${PN}
doins *.png
}