blob: d9c1976c50c04c66f540d53efad19a134d925314 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit cmake-utils git-r3
DESCRIPTION="Official GTK+ port of KDE's Oxygen widget style"
HOMEPAGE="https://projects.kde.org/projects/playground/artwork/oxygen-gtk"
EGIT_REPO_URI=( "git://anongit.kde.org/oxygen-gtk" )
LICENSE="LGPL-2.1"
KEYWORDS=""
SLOT="0"
IUSE="debug doc"
RDEPEND="
dev-libs/glib
x11-libs/cairo
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/pango
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
DOCS=(AUTHORS README)
src_install() {
if use doc; then
{ cd "${S}" && doxygen Doxyfile; } || die "Generating documentation failed"
HTML_DOCS=( "${S}/doc/html/" )
fi
cmake-utils_src_install
cat <<-EOF > 99oxygen-gtk
CONFIG_PROTECT="/usr/share/themes/oxygen-gtk/gtk-2.0"
EOF
doenvd 99oxygen-gtk
}
|