blob: 1b6dbabc0876d8b879cf4119efc2ec5eabd59a28 (
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
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDEBASE="kdevelop"
KMNAME="kdev-python"
KDE_LINGUAS="bs ca ca@valencia de en_GB es et fi fr gl it nl pl pt pt_BR sk sl sv tr uk"
PYTHON_COMPAT=( python2_7 )
MY_P="${KMNAME}-${PV}"
inherit kde4-base python-any-r1
if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://kde/stable/kdevelop/${KMNAME}/${PV}/${MY_P}.tar.xz"
KEYWORDS="~amd64 ~x86"
S=${WORKDIR}/${MY_P}
fi
DESCRIPTION="Python plugin for KDevelop 4"
IUSE="debug"
DEPEND="
${PYTHON_DEPS}
"
RDEPEND="
dev-util/kdevelop:4
"
RESTRICT="test"
pkg_setup() {
python-any-r1_pkg_setup
kde4-base_pkg_setup
}
src_compile() {
pushd "${WORKDIR}"/${P}_build > /dev/null || die
emake parser
popd > /dev/null || die
kde4-base_src_compile
}
|