blob: e3a93259dccddd678383416c7d345a13295c8470 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/libbtctl/libbtctl-0.4.1.ebuild,v 1.11 2005/07/17 13:45:43 dertobi123 Exp $
inherit gnome2 mono
DESCRIPTION="A GObject wrapper for Bluetooth functionality"
HOMEPAGE="http://usefulinc.com/software/gnome-bluetooth/"
SRC_URI="http://downloads.usefulinc.com/libbtctl/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ppc"
IUSE="doc"
RDEPEND=">=dev-libs/glib-2
>=net-wireless/bluez-utils-2.7
>=net-wireless/bluez-libs-2.7
>=dev-libs/openobex-1
>=dev-lang/python-2.3
>=dev-python/pygtk-2.0"
# none of the mono versions we want are stable,
# so we are masking mono support for now.
# !sparc? ( mono? ( >=dev-lang/mono-0.96 ) )"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig
doc? ( dev-util/gtk-doc )"
MAKEOPTS="${MAKEOPTS} -j1"
DOCS="README NEWS ChangeLog AUTHORS COPYING"
USE_DESTDIR="yes"
src_compile() {
# no stable mono versions available. we'll re-enable once
# one of the mono's has been marked stable.
# use sparc || G2CONF="`use_enable mono`"
G2CONF="--disable-mono"
gnome2_src_configure
sed -i -e "s/libext=\"a/& la/" libtool
emake || die "make failed"
}
|