blob: 96e29c4bb9ceeeef13ab4a52708ee6dbad713216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
inherit distutils
DESCRIPTION="Tool for sending text messages for various Swiss providers"
HOMEPAGE="http://people.ee.ethz.ch/~maandrea/pySms"
SRC_URI="http://people.ee.ethz.ch/~maandrea/pySms/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/pygtk"
RESTRICT="test"
src_install() {
distutils_src_install
dodoc AUTHORS PKG-INFO README
}
|