summaryrefslogtreecommitdiff
blob: 3af77e2013cb3101f9f7149ab93af118702eb995 (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
# Copyright 1999-2004 Gentoo Foundation
# 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.11 2004/11/17 02:49:36 pythonhead Exp $

inherit distutils

MY_P=${P/-/_}
DESCRIPTION="GPGME Interface for Python"
SRC_URI="http://gopher.quux.org:70/devel/pyme/${MY_P}.tar.gz"
HOMEPAGE="http://gopher.quux.org:70/devel/pyme"
SLOT="0"
KEYWORDS="~x86 ~sparc ppc"
LICENSE="GPL-2"
IUSE=""
DEPEND="=app-crypt/gpgme-0.3.14-r1
	>=sys-apps/sed-4"
RDEPEND="=app-crypt/gpgme-0.3.14-r1
	dev-lang/swig"


src_unpack() {
	unpack ${A}
	cd ${S}
	sed -i -e "s:gpgme-config:gpgme3-config:" \
		Makefile setup.py
}

src_test() {
	cd ${S}
	env PYTHONPATH=$(echo build/lib.*) \
	${python} examples/genkey.py || die "genkey test failed"
}

src_install() {
	mydoc="examples/*"
	distutils_src_install
	dohtml -r doc/*
}