diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-09-03 15:37:36 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-10-10 22:23:07 +0200 |
commit | c15d1b09354532fdc909cb03f308e30614fdcb1a (patch) | |
tree | 87ba6fd8d95148099237c50815f6210b2b734004 /dev-games | |
parent | games-rpg/eternal-lands: add missing remote-id (diff) | |
download | gentoo-c15d1b09354532fdc909cb03f308e30614fdcb1a.tar.gz gentoo-c15d1b09354532fdc909cb03f308e30614fdcb1a.tar.bz2 gentoo-c15d1b09354532fdc909cb03f308e30614fdcb1a.zip |
dev-games/guichan: EAPI8 bump, fix HOMEPAGE
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/guichan/guichan-0.8.2-r1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-games/guichan/guichan-0.8.2-r1.ebuild b/dev-games/guichan/guichan-0.8.2-r1.ebuild new file mode 100644 index 000000000000..22e244aec69d --- /dev/null +++ b/dev-games/guichan/guichan-0.8.2-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL" +HOMEPAGE="https://github.com/darkbitsorg/guichan" +SRC_URI="https://github.com/darkbitsorg/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="allegro opengl sdl" + +DEPEND=" + allegro? ( media-libs/allegro:0 ) + opengl? ( virtual/opengl ) + sdl? ( + media-libs/libsdl + media-libs/sdl-image + )" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${P}-as-needed.patch + "${FILESDIR}"/${P}-automake-1.13.patch + "${FILESDIR}"/${P}-slibtool-undefined-references.patch +) + +src_prepare() { + default + + mv configure.in configure.ac || die + eautoreconf +} + +src_configure() { + local myeconfargs=( + $(use_enable allegro) + $(use_enable opengl) + $(use_enable sdl) + $(use_enable sdl sdlimage) + ) + + econf "${myeconfargs}" +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete || die +} |