summaryrefslogtreecommitdiff
blob: f8fa08fa0fc48d5ffa6b963fa81eb382180523ab (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
61
62
63
64
65
66
67
68
69
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils python toolchain-funcs multilib

DESCRIPTION="Object-oriented python bindings for subversion"
HOMEPAGE="http://pysvn.tigris.org/"
SRC_URI="http://pysvn.barrys-emacs.org/source_kits/${P}.tar.gz"

LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="examples"

DEPEND=">=dev-util/subversion-1.2.0"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${P}/Source"

src_unpack() {

	python_version

	unpack ${A}
	cd "${S}"

	# since pysvn-1.6.3: These sources are not compatible with python 2.5 - run
	# the backport command to fix
	if [[ "$PYVER_MAJOR" -lt 3 ]] && [[ "$PYVER_MINOR" -le 5 ]] ; then
		python setup.py backport || die "backport failed"
	fi

	python setup.py configure || die "configure failed"

	# we want our CFLAGS as well
	sed -e 's:^\(CCFLAGS=\)\(.*\):\1$(CFLAGS) \2:g' \
		-e 's:^\(CCCFLAGS=\)\(.*\):\1$(CXXFLAGS) \2:g' \
		-e "/^CCC=/s:g++:$(tc-getCXX):" \
		-e "/^CC=/s:gcc:$(tc-getCC):" \
		-i Makefile \
		|| die "sed failed in Makefile"
}

src_install() {
	python_version

	cd pysvn
	exeinto /usr/$(get_libdir)/python${PYVER}/site-packages/${PN}
	doexe _pysvn*.so
	insinto /usr/$(get_libdir)/python${PYVER}/site-packages/${PN}
	doins __init__.py

	cd "${S}/../Docs"
	dohtml *.html *.js

	if use examples; then
		insinto "/usr/share/doc/${PF}/Examples"
		doins -r "${S}"/../Examples/*
	fi
}

pkg_postinst() {
	python_mod_optimize "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}"
}

pkg_postrm() {
	python_mod_cleanup "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${PN}"
}