27 lines
523 B
Bash
27 lines
523 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
inherit kde4-base
|
|
|
|
if [[ $PV == *9999* ]]; then
|
|
KEYWORDS=""
|
|
else
|
|
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
|
|
KEYWORDS="amd64 x86"
|
|
fi
|
|
|
|
DESCRIPTION="A LL(1) parser generator used mainly by KDevelop language plugins"
|
|
HOMEPAGE="http://www.kdevelop.org"
|
|
LICENSE="LGPL-2"
|
|
SLOT="4"
|
|
IUSE="debug"
|
|
|
|
RDEPEND=""
|
|
DEPEND="
|
|
sys-devel/bison
|
|
sys-devel/flex
|
|
"
|
|
|
|
PATCHES=( "${FILESDIR}/${P}-bison3.patch" )
|