blob: 181ff5f2d939c86d647b717c06013a0ab4f57dec (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit autotools gnome2
DESCRIPTION="Gnome and XFCE applet for displaying XMonad log"
HOMEPAGE="https://github.com/alexkay/xmonad-log-applet"
SRC_URI="mirror://github/alexkay/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="mirror"
RDEPEND="
sys-apps/dbus
xfce-base/xfce4-panel
dev-libs/glib:2
dev-haskell/dbus
x11-libs/gtk+:3
"
DEPEND="${RDEPEND}"
src_prepare() {
eautoreconf
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure --sysconfdir=/etc --with-panel=xfce4
}
src_install() {
gnome2_src_install
dodoc AUTHORS.md README.md
dodoc "${FILESDIR}"/xmonad.hs
}
pkg_postinst() {
gnome2_pkg_postinst
elog "Remember to update your xmonad.hs accordingly"
elog "a sample xmonad.hs is provided in /usr/share/doc/${PF}"
}
|