forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitbake-1.17.0.ebuild
38 lines (31 loc) · 990 Bytes
/
bitbake-1.17.0.ebuild
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
# 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
}