blob: aa0d0c5ec0e4dc8569496a6a0463f0457c598433 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/bzr-svn/bzr-svn-1.0.0.ebuild,v 1.2 2009/10/10 19:03:54 pva Exp $
EAPI=2
inherit distutils
MY_P=${P/_rc/~rc}
DESCRIPTION="Bazaar plugin that adds support for foreign Subversion repositories."
HOMEPAGE="http://bazaar-vcs.org/BzrForeignBranches/Subversion"
SRC_URI="http://samba.org/~jelmer/bzr/${MY_P}.tar.gz"
LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
# Packager: check compatible bzr versions via
# `grep bzr_compatible_versions info.py`, and minimum subvertpy version
# via `grep subvertpy_minimum_version info.py`.
DEPEND="
|| ( =dev-util/bzr-1.16*
=dev-util/bzr-1.17*
=dev-util/bzr-1.18*
=dev-util/bzr-2.0* )
>=dev-lang/python-2.5[sqlite]
>=dev-python/subvertpy-0.6.1"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS="AUTHORS FAQ HACKING NEWS README TODO UPGRADING mapping.txt specs/*"
|