blob: 22e244aec69d5f1d06be73fad78e84fa8eb62e62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
}
|