dev-libs/sealcurses: add 2.0.18_pre20241202

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
Anna (cybertailor) Vyalkova
2024-12-14 00:25:38 +05:00
parent f3d2d6f313
commit cd153aefa1
2 changed files with 33 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST sealcurses-2.0.18_pre20241014.tar.gz 22958 BLAKE2B c72fd9b5857fc2bf86fcb0e12f2d78a536b0ef9e4949b473005a34754a55ccb21cfd58b5403a12b0a07a4a1ec12c688d89cc9b04c81709b929213446bc8d5446 SHA512 3e26fc27f029d22522dddc0a220724af6b09de1e2ed2e9a41bad3749f817d1ff37db81d6fc4d5023e1ee1938dc438ed86c61c20a1e581cb99d942c0b5deb42a8
DIST sealcurses-2.0.18_pre20241202.tar.gz 23008 BLAKE2B 78cd2df8ee8a776c7cb382bbd15e0810b3d67c60bdc5f8eb491f5f918cc05b9f1ad6cff8290d59406ee6535b5ee32c403852a516491bb82a1c7ef60c7e99e576 SHA512 8bae21b0692222883da45712fdcb0bd7251dc90ea9aba44a8a1453dd089b133a9a6f8e49cc4431886dba6ae6d2483a534cb5e1be57db1b6147fb39b634f4fe9c

View File

@@ -0,0 +1,32 @@
# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake flag-o-matic
COMMIT="310348a6b88678a47d371c7edfcc1e8c76ca1677"
DESCRIPTION="SDL Emulation and Adaptation Layer for Curses"
HOMEPAGE="https://git.skyjake.fi/skyjake/sealcurses"
SRC_URI="https://git.skyjake.fi/skyjake/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}"
LICENSE="BSD-2"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
RDEPEND="
dev-libs/tfdn:=
sys-libs/ncurses:=
"
DEPEND="${RDEPEND}"
src_configure() {
local -a mycmakeargs=(
-DSEALCURSES_ENABLE_STATIC=OFF
)
append-cppflags $(usex debug "-UNDEBUG" "-DNDEBUG")
cmake_src_configure
}