blob: 7877ce01dbf5c0f43fff5c002ccba0d871c66a53 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/qbzr/qbzr-0.14.4.ebuild,v 1.1 2009/10/20 16:40:04 pva Exp $
EAPI=2
NEED_PYTHON=2.4
inherit distutils versionator
DESCRIPTION="Qt frontend for Bazaar"
HOMEPAGE="https://launchpad.net/qbzr"
SRC_URI="http://launchpad.net/qbzr/$(get_version_component_range 1-2)/${PV}/+download/${PN}-${PV/.0}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
# bzr version comes from NEWS file. It's lowest version required for some
# features to work.
DEPEND=">=dev-util/bzr-1.14
>=dev-python/PyQt4-4.1[X]"
RDEPEND="${DEPEND}"
DOCS="AUTHORS.txt NEWS.txt README.txt TODO.txt"
S=${WORKDIR}/${PN}
PYTHON_MODNAME=bzrlib
src_test() {
elog "It's impossible to run tests at this point. If you wish to run tests"
elog "after installation of ${PN} execute:"
elog " $ bzr selftest -s bzrlib.plugins.qbzr"
}
pkg_postinst() {
distutils_pkg_postinst
elog
elog "To enable spellchecking in qcommit, please, install >=dev-python/pyenchant-1.5.0"
elog " # emerge -a >=dev-python/pyenchant-1.5.0"
elog "To enable syntax highlighting, please, install dev-python/pygments"
elog " # emerge -a dev-python/pygments"
}
|