blob: 43e0b3317000056aaaba9d9135013a2b5d0c5bae (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/libbtctl/libbtctl-0.3.ebuild,v 1.12 2004/10/16 20:37:03 liquidx Exp $
inherit gnome2
DESCRIPTION="A GObject wrapper for Bluetooth functionality"
HOMEPAGE="http://usefulinc.com/software/gnome-bluetooth/"
SRC_URI="http://usefulinc.com/software/gnome-bluetooth/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc"
IUSE=""
RDEPEND=">=dev-libs/glib-2
>=net-wireless/bluez-utils-2.7
>=net-wireless/bluez-libs-2.7"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig"
MAKEOPTS="${MAKEOPTS} -j1"
DOCS="README NEWS ChangeLog AUTHORS COPYING"
src_unpack() {
unpack ${A}
sed -i -e 's/-lsdp/-lbluetooth/' ${S}/bluez-sdp.m4
cd ${S}
cat bluez-sdp.m4 bluez-libs.m4 >acinclude.m4
aclocal; autoconf
}
|