blob: 650115fb4f343cf5e0ff54969471431404b57d41 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-gammu/python-gammu-0.15.ebuild,v 1.2 2006/11/15 20:55:34 mrness Exp $
inherit distutils
DESCRIPTION="Python bindings for Gammu"
HOMEPAGE="http://www.cihar.com/gammu/python/"
SRC_URI="ftp://dl.cihar.com/python-gammu/v0/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc x86"
IUSE=""
RDEPEND=">=app-mobilephone/gammu-1.08"
DEPEND="dev-util/pkgconfig
${RDEPEND}"
src_install() {
DOCS="AUTHORS NEWS"
distutils_src_install
insinto /usr/share/doc/${PF}/examples
doins examples/*.py
insinto /usr/share/doc/${PF}/examples/data
doins examples/data/*
}
|