32 lines
696 B
Bash
32 lines
696 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=3
|
|
|
|
inherit kde4-base
|
|
|
|
MY_PN="iHateTheCashew"
|
|
|
|
DESCRIPTION="KDE4 plasmoid. Removes the \"hand\" in upper right corner of the screen"
|
|
HOMEPAGE="http://www.kde-look.org/content/show.php/I+HATE+the+Cashew?content=91009"
|
|
SRC_URI="http://www.kde-look.org/CONTENT/content-files/91009-${MY_PN}-4.4.tbz"
|
|
|
|
LICENSE="GPL-3"
|
|
KEYWORDS="~amd64 ~x86"
|
|
SLOT="0"
|
|
IUSE="debug"
|
|
|
|
RDEPEND="
|
|
>=kde-base/plasma-workspace-${KDE_MINIMAL}
|
|
"
|
|
|
|
S="${WORKDIR}/${MY_PN}"
|
|
|
|
src_compile() {
|
|
# Pinkbyte: add KDE 4.6 compatibility patch
|
|
epatch "$FILESDIR/kde-4.6-compat.patch"
|
|
#
|
|
kde4-base_src_compile
|
|
}
|