38 lines
993 B
Bash
38 lines
993 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
PYTHON_COMPAT=( python2_7 )
|
|
PYTHON_REQ_USE="sqlite"
|
|
|
|
inherit distutils-r1 vcs-snapshot
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
EGIT_REPO_URI="git://git.openembedded.org/bitbake.git"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://github.com/openembedded/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
fi
|
|
|
|
DESCRIPTION="package management tool for OpenEmbedded"
|
|
HOMEPAGE="http://git.openembedded.org/bitbake/"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
IUSE="doc"
|
|
|
|
RDEPEND="
|
|
dev-python/ply[${PYTHON_USEDEP}]
|
|
dev-python/progressbar[${PYTHON_USEDEP}]"
|
|
DEPEND="doc? ( dev-libs/libxslt )"
|
|
|
|
src_prepare() {
|
|
if ! use doc ; then
|
|
sed -i -e 's:doctype = "html":doctype = "none":' \
|
|
-e 's:("share/doc/bitbake-%s/manual.*))::' setup.py || die
|
|
echo "none:" >> doc/manual/Makefile || die
|
|
else
|
|
sed -i -e "s:\(share/doc/bitbake-%s.* %\) __version__:\1 \"${PV}\":" setup.py || die
|
|
fi
|
|
}
|