forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bzr-gtk-0.104.0-r1.ebuild
62 lines (47 loc) · 1.44 KB
/
bzr-gtk-0.104.0-r1.ebuild
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
DISTUTILS_SINGLE_IMPL=1
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
MY_P="/${P/_rc/rc}"
DESCRIPTION="A GTK+ interfaces to most Bazaar operations"
HOMEPAGE="http://bazaar-vcs.org/bzr-gtk"
SRC_URI="https://launchpad.net/${PN}/gtk3/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome-keyring gpg nautilus"
DEPEND=">=dev-vcs/bzr-1.6_rc1[${PYTHON_USEDEP}]
dev-python/pygobject[${PYTHON_USEDEP}]
dev-python/notify-python[${PYTHON_USEDEP}]
>=dev-python/pycairo-1.0[${PYTHON_USEDEP}]
nautilus? (
>=dev-python/nautilus-python-1.0[${PYTHON_USEDEP}]
virtual/pkgconfig
)"
RDEPEND="${DEPEND}
nautilus? ( >=dev-python/nautilus-python-1.0[${PYTHON_USEDEP}] )
dev-python/notify-python[${PYTHON_USEDEP}]
gnome-keyring? ( dev-python/gnome-keyring-python[${PYTHON_USEDEP}] )
gpg? ( app-crypt/seahorse )"
S="${WORKDIR}/${MY_P}"
#TODO: src_test
python_prepare_all() {
cp "${FILESDIR}"/credits.pickle "${S}"/credits.pickle || die
distutils-r1_python_prepare_all
}
python_install() {
distutils-r1_python_install
if ! use nautilus; then
# automagic dep
rm -rf "${D%/}"/usr/$(get_libdir)/nautilus/ || die
rm -rf "${D%/}"$(python_get_sitedir)/bzrlib/plugins/gtk/nautilus-bzr.py* || die
fi
}
python_install_all() {
distutils-r1_python_install_all
insinto /etc/xdg/autostart
doins bzr-notify.desktop
}