blob: 4897c74423ce43504b9667a5b25f56edf8a031c8 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync/libopensync-0.22-r1.ebuild,v 1.1 2011/02/14 20:14:23 dirtyepic Exp $
EAPI="3"
PYTHON_DEPEND="python? 2:2.5"
SUPPORT_PYTHON_ABIS="1"
inherit autotools eutils python
DESCRIPTION="OpenSync synchronisation framework library"
HOMEPAGE="http://www.opensync.org/"
SRC_URI="http://www.opensync.org/download/releases/${PV}/${P}.tar.bz2"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
SLOT="0"
LICENSE="LGPL-2.1"
IUSE="debug doc python"
RDEPEND="dev-db/sqlite:3
dev-libs/glib:2
dev-libs/libxml2"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9.0
doc? ( app-doc/doxygen )
python? ( >=dev-lang/swig-1.3.17 )"
# test? ( >=dev-libs/check-0.9.2 )"
# Tests don't pass
RESTRICT="test"
RESTRICT_PYTHON_ABIS="3.*"
src_prepare() {
epatch "${FILESDIR}"/${P}-fbsd.patch
epatch "${FILESDIR}"/${P}-pythonpath.patch
epatch "${FILESDIR}"/${P}-swig-typeerror.patch
eautoreconf # for pythonpath
find "${S}" -name Makefile.in -print0 | xargs -0 sed -i -e 's: -Werror::'
use python && python_copy_sources
}
src_configure() {
do_configure() {
econf \
--enable-engine \
--enable-tools \
$(use_enable python) \
$(use_enable debug) \
$(use_enable debug tracing)
#$(use_enable test unit-tests)
}
use python && python_execute_function -s do_configure
do_configure # do even when USE=python to generate Doxyfile in ${S}
}
src_compile() {
use python \
&& python_execute_function -d -s \
|| default
if use doc; then
doxygen Doxyfile || die
fi
}
src_install() {
do_install() {
emake DESTDIR="${D}" install || die
}
use python \
&& python_execute_function -s do_install \
|| do_install
find "${D}" -name '*.la' -exec rm -f {} + || die
dodoc AUTHORS NEWS README TODO
if use doc; then
dohtml docs/html/* || die
fi
}
pkg_postinst() {
elog "Enabling the 'debug' useflag is required for bug reports."
elog "Also see: http://www.opensync.org/wiki/tracing"
}
|