diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2015-06-24 10:49:54 +0300 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2015-06-24 10:49:54 +0300 |
commit | 66c035f64fef20199fad12fb75285aec3ffe8b33 (patch) | |
tree | 52417e0600a3c1885b2e8cd163d6d5b1368c964a /kde-misc/ksuperkey/ksuperkey-99999.ebuild | |
parent | 3f3eb088770626f5798e801e40404e6336f8628e (diff) | |
parent | dc902eb88e6dfa3cc46a065a8a5fc8c708c94915 (diff) |
Merge branch 'master' of github.com:Rogentos/kogaion-desktop
Diffstat (limited to 'kde-misc/ksuperkey/ksuperkey-99999.ebuild')
-rw-r--r-- | kde-misc/ksuperkey/ksuperkey-99999.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/kde-misc/ksuperkey/ksuperkey-99999.ebuild b/kde-misc/ksuperkey/ksuperkey-99999.ebuild new file mode 100644 index 00000000..f7e7ad42 --- /dev/null +++ b/kde-misc/ksuperkey/ksuperkey-99999.ebuild @@ -0,0 +1,37 @@ +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit eutils git-2 + +DESCRIPTION="Open the KDE Plasma application launcher using the Super key (patched to bind Krunner to Super key)" +HOMEPAGE="https://github.com/hanschen/ksuperkey" + +EGIT_BRANCH=master +EGIT_REPO_URI="https://github.com/hanschen/ksuperkey.git" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="amd64 x86" + +IUSE="" +DEPEND="x11-libs/libXtst + x11-libs/libX11" + +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN} + + +src_prepare() { + epatch -p0 ${FILESDIR}/bind_krunner_to_super_key.patch +} + +src_compile() { + cd "${S}" + make || die "Make failed" +} + +src_install() { + default +} |