blob: 80330a174509ac32f0e76ed2920dc992ff1203c1 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyme/pyme-0.8.1-r1.ebuild,v 1.1 2012/05/18 09:25:39 aidecoe Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils eutils
DESCRIPTION="GPGME Interface for Python"
HOMEPAGE="http://pyme.sourceforge.net"
SRC_URI="mirror://sourceforge/pyme/${P}.tar.gz"
LICENSE="|| ( GPL-2 LGPL-2.1 )"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="examples"
RDEPEND=">=app-crypt/gpgme-0.9.0"
DEPEND="${RDEPEND}
dev-lang/swig"
RESTRICT="test"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
src_prepare() {
epatch "${FILESDIR}/${PV}-libgpgme11-1.2-compatibility-fix.patch"
distutils_src_prepare
sed \
-e 's:include/:include/gpgme/:' \
-e 's/SWIGOPT :=.*/& -D_FILE_OFFSET_BITS=64/' \
-e 's/shell python/shell $(PYTHON)/' \
-i Makefile || die "sed Makefile failed"
sed -e 's/^\(define_macros = \).*/\1[("_FILE_OFFSET_BITS=64", None)]/' -i setup.py || die "sed setup.py failed"
}
src_compile() {
emake -j1 PYTHON="$(PYTHON -f)" swig || die "emake swig failed"
distutils_src_compile
}
src_test() {
testing() {
PYTHONPATH=$(echo build-${PYTHON_ABI}/lib.*) "$(PYTHON)" examples/genkey.py
}
python_execute_function testing
}
src_install() {
distutils_src_install
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins examples/*
fi
}
|