blob: f08add4d9437174f55469214d4fd2ccae44173ba (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/bitbake/bitbake-1.6.2.ebuild,v 1.1 2006/12/22 13:03:59 vapier Exp $
inherit eutils
DESCRIPTION="package management tool for OpenEmbedded"
HOMEPAGE="http://developer.berlios.de/projects/bitbake/"
SRC_URI="http://download.berlios.de/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="dev-lang/python"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/0-gentoo-paths.patch
}
src_install() {
python setup.py install --root="${D}" || die "setup failed"
}
|