blob: 5d1473539ecfd67138f2db6f74719b7bb9698592 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/bzrtools/bzrtools-0.8.ebuild,v 1.1 2006/05/14 16:42:26 marienz Exp $
inherit distutils eutils
DESCRIPTION="bzrtools is a useful collection of utilities for bzr."
HOMEPAGE="http://bazaar.canonical.com/BzrTools"
SRC_URI="http://panoramicfeedback.com/opensource/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=dev-lang/python-2.4
=dev-util/bzr-0.8*"
DOCS="CREDITS NEWS NEWS.Shelf README README.Shelf TODO TODO.Shelf"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-optional-pybaz.patch"
}
src_test() {
./test.py build/lib/bzrlib/plugins || die "test failed"
}
|