blob: 25d69c1d38d82909f95d128f22af9365e6e30653 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyme/pyme-0.5.1.ebuild,v 1.6 2004/05/04 11:27:44 kloeri Exp $
IUSE=""
DESCRIPTION="GPGME Interface for Python"
MY_P=${P/-/_}
SRC_URI="http://gopher.quux.org:70/devel/pyme/${MY_P}.tar.gz"
HOMEPAGE="http://gopher.quux.org:70/devel/pyme"
DEPEND=">=app-crypt/gpgme-0.3.9"
SLOT="0"
KEYWORDS="x86"
LICENSE="GPL-2"
inherit distutils
src_install() {
mydoc="examples/*"
distutils_src_install
dohtml -r doc/*
}
|