blob: 2dff7bbd3857e94bbe339da235df9a951971b521 (
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
|
# Copyright 1999-2005 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.8.ebuild,v 1.1 2005/07/16 10:40:45 mrness Exp $
inherit distutils
IUSE="doc"
DESCRIPTION="Python bindings for Gammu"
HOMEPAGE="http://www.cihar.com/gammu/python/"
SRC_URI="http://www.cihar.com/gammu/python/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
RDEPEND=">=app-mobilephone/gammu-1.00.04"
DEPEND="dev-util/pkgconfig
${RDEPEND}"
src_install() {
DOCS="AUTHORS NEWS"
distutils_src_install
if use doc; then
insinto /usr/share/doc/${PF}/examples
doins examples/*
fi
}
|