blob: 8a2ea62a1509601d9bd29fb214b6384a9eda807d (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="A little bit like the famous OS X dock but in shape of a pie menu"
HOMEPAGE="
http://markusfisch.de/PieDock
https://github.com/markusfisch/PieDock
"
SRC_URI="
https://github.com/markusfisch/PieDock/archive/${PV}.tar.gz -> ${P}.tar.gz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk"
RDEPEND="
media-libs/libpng:0=
x11-libs/libX11
x11-libs/libXft
x11-libs/libXmu
x11-libs/libXrender
gtk? (
dev-libs/atk
dev-libs/glib
x11-libs/gdk-pixbuf
x11-libs/gtk+:2
)
"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS=( res/${PN}rc.sample AUTHORS ChangeLog NEWS )
PATCHES=(
"${FILESDIR}"/${PN}-1.6.1-signals.patch
"${FILESDIR}"/${PN}-1.6.9-freetype_pkgconfig.patch
)
S="${WORKDIR}/PieDock-${PV}"
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable gtk)
--disable-kde
--bindir="${EPREFIX}"/usr/bin
--enable-xft
--enable-xmu
--enable-xrender
)
econf "${myeconfargs[@]}"
}
|