blob: eeef6c98ce3b909e31e4ea978603e4f285a8e272 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/wammu-0.20.ebuild,v 1.3 2007/08/01 00:01:35 angelos Exp $
inherit distutils
DESCRIPTION="front-end for gammu (Nokia and other mobiles)"
HOMEPAGE="http://www.cihar.com/gammu/wammu/"
SRC_URI="http://dl.cihar.com/wammu/v0/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="bluetooth"
#gnome-bluetooth is used for additional functionality - see bug #101067
RDEPEND=">=dev-python/wxpython-2.6
>=dev-python/python-gammu-0.20
bluetooth? (
net-wireless/gnome-bluetooth
dev-python/pybluez
)"
DEPEND="dev-util/pkgconfig
${RDEPEND}"
src_compile() {
# SKIPWXCHECK: else 'import wx' results in
# Xlib: connection to ":0.0" refused by server
SKIPWXCHECK=yes distutils_src_compile
}
src_install() {
DOCS="AUTHORS FAQ NEWS"
SKIPWXCHECK=yes distutils_src_install
}
|