blob: e79c578dfd4ccfc50f17522b59efe2241c955198 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/gnome-bluetooth/gnome-bluetooth-2.28.0.ebuild,v 1.1 2009/09/26 16:33:27 nirbheek Exp $
EAPI="2"
inherit eutils gnome2
DESCRIPTION="Fork of bluez-gnome focused on integration with GNOME"
HOMEPAGE="http://live.gnome.org/GnomeBluetooth"
LICENSE="GPL-2 LGPL-2.1"
SLOT="2"
IUSE="doc"
KEYWORDS="~amd64 ~hppa ~sparc ~x86"
COMMON_DEPEND=">=dev-libs/glib-2.16
>=x11-libs/gtk+-2.15
>=x11-libs/libnotify-0.4.3
>=gnome-base/gconf-2.6
>=dev-libs/dbus-glib-0.74
dev-libs/libunique"
DEPEND="${COMMON_DEPEND}
!!net-wireless/bluez-gnome
dev-util/pkgconfig
x11-proto/xproto
doc? ( app-text/gnome-doc-utils )"
RDEPEND="${COMMON_DEPEND}
>=net-wireless/bluez-4.34
>=app-mobilephone/obex-data-server-0.4"
DOCS="AUTHORS README NEWS ChangeLog"
G2CONF="${G2CONF}
--disable-desktop-update
--disable-icon-update
--disable-introspection"
src_prepare() {
# Fix intltoolize broken file, see upstream #577133 and #579464
sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \
|| die "sed failed"
}
|