gentoo-ebuilds/dev-games/ois/ois-1.5.1.ebuild
Andreas Sturmlechner 1eb52b8399
dev-games/ois: update EAPI 7 -> 8, fix build w/ cmake-4
Closes: https://bugs.gentoo.org/954105
Closes: https://bugs.gentoo.org/957227
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
2025-10-01 21:27:31 +02:00

24 lines
575 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Object-oriented Input System - A cross-platform C++ input handling library"
HOMEPAGE="https://github.com/wgois/OIS"
SRC_URI="https://github.com/wgois/OIS/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${P^^}"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
DEPEND="
x11-libs/libXaw
x11-libs/libX11
"
RDEPEND="${DEPEND}"
# bug 954105, plus downstream cmake fix ...
PATCHES=( "${FILESDIR}/${P}-cmake4.patch" )