blob: d5c0ab5f4f2cf759f65c7eb6d73ca2887fd54aed (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
PYTHON_DEPEND="2"
inherit git python kde4-base
DESCRIPTION="Tasty Python plugins for Kate"
HOMEPAGE="http://github.com/pag/pate"
EGIT_REPO_URI="git://github.com/pag/${PN}.git"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="4"
IUSE=""
DEPEND="
>=kde-base/kate-${KDE_MINIMAL}
>=kde-base/pykde4-${KDE_MINIMAL}
"
RDEPEND="${DEPEND}"
pkg_setup() {
python_set_active_version 2
kde4-base_pkg_setup
}
src_unpack() {
git_src_unpack
}
|