blob: f006bdf96e7a823ac182205f805a3220faaf053d (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libkolab/libkolab-0.4.1.ebuild,v 1.1 2013/01/29 10:55:52 kensington Exp $
EAPI=5
inherit kde4-base multilib
DESCRIPTION="Advanced Kolab Object Handling Library"
HOMEPAGE="http://kolab.org"
SRC_URI="http://mirror.kolabsys.com/pub/releases/${P}.tar.gz"
LICENSE="LGPL-2+ LGPL-2.1+ LGPL-3+"
SLOT="4"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
IUSE="php python test"
# Tests fail, last checked 0.4.1
RESTRICT="test"
DEPEND="
$(add_kdebase_dep kdepimlibs 'semantic-desktop')
dev-lang/swig
>=net-libs/libkolabxml-0.7.0
php? ( dev-lang/php )
python? ( dev-lang/python )
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DLIB_INSTALL_DIR=$(get_libdir)
$(cmake-utils_use_with test BUILD_TESTS)
$(cmake-utils_use python PYTHON_BINDINGS)
$(cmake-utils_use php PHP_BINDINGS)
)
kde4-base_src_configure
}
|