blob: bba9cdcb9c08f19e84e85700f76f310f36da4b68 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/bitbake/bitbake-1.13.3.ebuild,v 1.1 2011/08/02 06:09:55 radhermit Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
inherit distutils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://git.openembedded.org/bitbake.git"
inherit git-2
SRC_URI=""
KEYWORDS=""
else
SRC_URI="http://cgit.openembedded.org/cgit.cgi/${PN}/snapshot/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
fi
DESCRIPTION="package management tool for OpenEmbedded"
HOMEPAGE="http://developer.berlios.de/projects/bitbake/"
LICENSE="GPL-2"
SLOT="0"
IUSE="doc"
RDEPEND="|| ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite] dev-lang/python:2.5[sqlite] >=dev-python/pysqlite-2.3.2 )
dev-python/ply
dev-python/progressbar"
DEPEND="${RDEPEND}
doc? ( dev-libs/libxslt )"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
if ! use doc ; then
sed -i -e 's:doctype = "html":doctype = "none":' \
-e 's:("share/doc/bitbake-%s/manual.*))::' setup.py
echo "none:" >> doc/manual/Makefile
else
sed -i -e "s:\(share/doc/bitbake-%s.* %\) __version__:\1 \"${PV}\":" setup.py
fi
}
|