blob: ceeff9932b582e462f9cc5507561e73c3b190c08 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit kde4-base
DESCRIPTION="KDE4 plasmoid for monitoring emerge progress on Gentoo Linux"
HOMEPAGE="http://github.com/hwoarang/plasma-emergelog/tree/master"
EGIT_REPO_URI="git://github.com/hwoarang/plasma-emergelog.git"
LICENSE="GPL-3+"
# Included LICENSE is GPL-2, but all headers say 3+. hwoarang said
# that it can be licensed as 3+
KEYWORDS=""
SLOT="4"
IUSE="debug"
RDEPEND="
$(add_kdebase_dep plasma-workspace)
"
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>"
}
|