blob: fd6cbbc9415ee5de8f232235637eddc9c1755821 (
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
55
56
57
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Library full of useful things to hack the Blinkenlights"
HOMEPAGE="http://www.blinkenlights.de"
SRC_URI="http://www.blinkenlights.de/dist/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="aalib gtk"
RDEPEND="
dev-libs/glib:2
x11-libs/gdk-pixbuf:2
aalib? ( media-libs/aalib )
gtk? (
app-accessibility/at-spi2-core:2
media-libs/fontconfig
media-libs/freetype
media-libs/harfbuzz:=
x11-libs/cairo
x11-libs/gtk+:2
x11-libs/pango
)"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-deprecated.patch
)
src_prepare() {
default
# drop DEPRECATED flags, bug #391105
sed -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \
-i {blib,gfx,{,test/}modules}/Makefile.{am,in} || die
}
src_configure() {
local econfargs=(
$(use_enable aalib aa)
--disable-directfb
$(use_enable gtk)
)
econf "${econfargs[@]}"
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
|