You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/quex/quex-0.71.0-r1.ebuild

55 lines
1.1 KiB

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_7 )
inherit python-single-r1
DESCRIPTION="Mode Oriented Directly Coded Lexical Analyser Generator"
HOMEPAGE="http://quex.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}"
BDEPEND="${RDEPEND}
app-arch/unzip"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-gentoo.patch
"${FILESDIR}"/${P}-py37.patch
)
src_prepare() {
default
sed -i \
-e "s:@PYTHON_SITEDIR@:$(python_get_sitedir):g" \
quex/DEFINITIONS.py || die
mkdir -p engine/codec_db/unicode || die
mv quex/engine/codec_db/database engine/codec_db/ || die
mv quex/engine/codec_db/unicode/database engine/codec_db/unicode/ || die
mv quex/code_base . || die
}
src_install() {
default
insinto /usr/share/quex/
doins -r engine
doins -r code_base
python_domodule quex
python_newscript quex-exe.py quex
doman manpage/quex.1
dodoc -r demo
insinto /etc/profile.d/
doins "${FILESDIR}"/quex.sh
}