blob: 05c43c5e8099be5dc3111a86bb975ffe3fea8b32 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
KDE_SCM="git"
if [[ $PV == *9999 ]]; then
SRC_URI=""
KEYWORDS=""
else
EGIT_REPO_URI="git://anongit.kde.org/kdevelop-pg-qt.git"
EGIT_COMMIT="v${PV}"
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${PN}-v${PV}.tar.bz2"
KEYWORDS="amd64 x86"
fi
inherit kde4-base
DESCRIPTION="A LL(1) parser generator used mainly by KDevelop language plugins"
HOMEPAGE="http://www.kdevelop.org"
LICENSE="LGPL-2"
SLOT="0"
IUSE="debug"
RDEPEND=""
DEPEND="
sys-devel/bison
sys-devel/flex
"
|