forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lxqt-panel-0.7.0-r1.ebuild
66 lines (57 loc) · 1.81 KB
/
lxqt-panel-0.7.0-r1.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit cmake-utils
DESCRIPTION="LXQt desktop panel and plugins"
HOMEPAGE="http://lxqt.org/"
if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
else
SRC_URI="http://downloads.lxqt.org/lxqt/lxqt/${PV}/${P}.tar.xz"
KEYWORDS="~amd64 ~arm ~x86"
S=${WORKDIR}
fi
LICENSE="GPL-2 LGPL-2.1+"
SLOT="0"
IUSE="+alsa +clock colorpicker cpuload +desktopswitch dom +kbindicator +mainmenu
+mount networkmonitor pulseaudio +quicklaunch screensaver sensors
+showdesktop sysstat +taskbar teatime +tray +volume worldclock"
REQUIRED_USE="volume? ( || ( alsa pulseaudio ) )"
DEPEND="dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
>=lxde-base/menu-cache-0.3.3
~lxqt-base/liblxqt-${PV}
~lxqt-base/liblxqt-mount-${PV}
~lxqt-base/lxqt-globalkeys-${PV}
~dev-libs/libqtxdg-0.5.3
x11-libs/libX11
cpuload? ( sys-libs/libstatgrab )
networkmonitor? ( sys-libs/libstatgrab )
sensors? ( sys-apps/lm_sensors )
sysstat? ( ~lxqt-base/libsysstat-0.1.0 )
volume? ( alsa? ( media-libs/alsa-lib )
pulseaudio? ( media-sound/pulseaudio ) )
worldclock? ( dev-libs/icu:= )"
RDEPEND="${DEPEND}
lxde-base/lxmenu-data"
src_configure() {
local mycmakeargs i y
for i in clock colorpicker cpuload desktopswitch dom kbindicator mainmenu mount \
networkmonitor quicklaunch screensaver sensors showdesktop sysstat \
taskbar teatime tray volume worldclock; do
y=$(tr '[:lower:]' '[:upper:]' <<< "${i}")
mycmakeargs+=( $(cmake-utils_use ${i} ${y}_PLUGIN) )
done
if use volume; then
mycmakeargs+=( $(cmake-utils_use alsa VOLUME_USE_ALSA)
$(cmake-utils_use pulseaudio VOLUME_USE_PULSEAUDIO) )
fi
cmake-utils_src_configure
}
src_install(){
cmake-utils_src_install
doman panel/man/*.1
}