blob: ddad1cbaec84546b4fb95d398ae49678645858c2 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
inherit kde4-base
DESCRIPTION="Kde4 plasmoid for monitoring emerge progress on Gentoo Linux"
HOMEPAGE="http://www.kde-look.org/content/show.php?content=103928"
SRC_URI="http://www.kde-look.org/CONTENT/content-files/103928-${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="debug"
RDEPEND="
>=kde-base/plasma-workspace-${KDE_MINIMAL}
"
pkg_postinst() {
kde4-base_pkg_postinst
einfo "You need to add your user to 'portage' group"
einfo "in order to use this plasmoid. To do that, use"
einfo "the following command:"
einfo "usermod -a -G portage <your_user_here>"
}
|