blob: d5bce625fd4076f67b40e54e24de7b032b862d92 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/wammu/wammu-0.8.ebuild,v 1.1 2004/11/11 22:47:09 mrness Exp $
inherit distutils
IUSE=""
DESCRIPTION="front-end for gammu (Nokia and others mobiles)"
HOMEPAGE="http://www.cihar.com/gammu/wammu/"
SRC_URI="http://www.cihar.com/gammu/wammu/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
RDEPEND=">=dev-lang/python-2.3.0
>=dev-python/wxpython-2.4.1.2
>=dev-python/python-gammu-0.6
net-dialup/gammu"
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 TODO NEWS"
SKIPWXCHECK=yes distutils_src_install
insinto /usr/share/pixmaps
doins ${FILESDIR}/${PN}.png
insinto /usr/share/applications
doins ${FILESDIR}/${PN}.desktop
}
|