summaryrefslogtreecommitdiff
blob: 261dffb0862d43a50bc16c172c16aee12458325c (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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit cvs autotools gnome2

DESCRIPTION="Bluetooth helpers for GNOME"
HOMEPAGE="http://www.bluez.org/"

SRC_URI=""
ECVS_SERVER="cvs.bluez.org:/cvsroot/bluez"
ECVS_MODULE="gnome"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""

IUSE=""
DEPEND=">=dev-libs/glib-2.0
	>=x11-libs/libnotify-0.3.2
	>=gnome-base/gconf-2.6
	>=dev-libs/dbus-glib-0.60
	>=x11-libs/gtk+-2.6"
RDEPEND="=net-wireless/bluez-utils-3*
	${DEPEND}"

S="${WORKDIR}/gnome"

src_unpack() {
	cvs_src_unpack
	cd "${S}"
	eautoreconf
	intltoolize --automake --copy --force || die "intltoolize failed"
}

src_compile() {
	econf --disable-schemas-install
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS README NEWS || die
}