blob: 82e74e30c65b4afbb117f4a5f52280cd0c4a539b (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit eutils gnome2-utils python-single-r1
DESCRIPTION="A Bluetooth configuration tool"
HOMEPAGE="https://github.com/linuxmint/blueberry"
SRC_URI="https://github.com/linuxmint/blueberry/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
dev-python/dbus-python[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/setproctitle[${PYTHON_USEDEP}]
>=net-wireless/gnome-bluetooth-3.14[introspection]
net-wireless/bluez[obex]
net-wireless/bluez-tools
|| (
>=sys-apps/util-linux-2.31_rc1
net-wireless/rfkill
)
x11-libs/libnotify[introspection]
x11-misc/wmctrl"
DEPEND="${RDEPEND}"
src_prepare () {
sed -i 's@^#!.*python$@#!/usr/bin/python2@' usr/bin/blueberry{,-tray} || die
default_src_prepare
}
src_install() {
doins -r etc
exeinto /usr/bin
doexe usr/bin/*
exeinto /usr/lib/blueberry
doexe usr/lib/blueberry/*
insinto /usr
doins -r usr/share
}
pkg_preinst() {
gnome2_schemas_savelist
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_schemas_update
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_schemas_update
gnome2_icon_cache_update
}
|