blob: bef7ad10ed6f1ec1a02a3cd4ea165ba3db196527 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools xdg-utils
DESCRIPTION="Gtk+ Widgets for live display of large amounts of fluctuating numerical data"
HOMEPAGE="https://sourceforge.net/projects/gtkdatabox/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="examples +glade"
RDEPEND="
dev-libs/atk
dev-libs/glib:2
media-libs/harfbuzz:=
x11-libs/cairo
x11-libs/gtk+:3
x11-libs/gdk-pixbuf:2
x11-libs/pango
glade? ( dev-util/glade:3.10= )
"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-slibtool.patch
)
src_prepare() {
default
# Remove -D.*DISABLE_DEPRECATED cflags
find . -iname 'Makefile.am' -exec \
sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die
sed -e '/SUBDIRS/{s: examples::;}' -i Makefile.am || die
eautoreconf
}
src_configure() {
econf \
$(use_enable glade) \
--enable-libtool-lock
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
dodoc AUTHORS ChangeLog README TODO
if use examples; then
docinto examples
dodoc "${S}"/examples/*
fi
}
maybe_update_xdg_icon_cache() {
if use glade; then
xdg_icon_cache_update
fi
}
pkg_postinst() {
maybe_update_xdg_icon_cache
}
pkg_postrm() {
maybe_update_xdg_icon_cache
}
|