blob: 89d168f301aa00f491879d90f2394b2c6ba9c89a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-syncml/libopensync-plugin-syncml-0.35.ebuild,v 1.1 2007/12/29 14:46:40 peper Exp $
EAPI="1"
inherit eutils cmake-utils
DESCRIPTION="OpenSync SyncML Plugin"
HOMEPAGE="http://www.opensync.org/"
SRC_URI="http://www.opensync.org/download/releases/${PV}/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="LGPL-2.1"
IUSE="http +obex"
DEPEND="=app-pda/libopensync-${PV}*
>=app-pda/libsyncml-0.4.5"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! use obex && ! use http; then
eerror "${CATEGORY}/${P} without support for obex nor http is unusable."
eerror "Please enable \"obex\" or/and \"http\" USE flags."
die "Please enable \"obex\" or/and \"http\" USE flags."
fi
if use obex && ! built_with_use app-pda/libsyncml obex; then
eerror "You are trying to build ${CATEGORY}/${P} with the \"obex\""
eerror "USE flags, but app-pda/libsyncml was built without"
eerror "the \"obex\" USE flag."
eerror "Please rebuild app-pda/libsyncml with \"obex\" USE flag."
die "Please rebuild app-pda/libsyncml with \"obex\" USE flag."
fi
if use http && ! built_with_use app-pda/libsyncml http; then
eerror "You are trying to build ${CATEGORY}/${P} with the \"http\""
eerror "USE flags, but app-pda/libsyncml was built without"
eerror "the \"http\" USE flag."
eerror "Please rebuild app-pda/libsyncml with \"http\" USE flag."
die "Please rebuild app-pda/libsyncml with \"http\" USE flag."
fi
}
src_compile() {
local mycmakeargs="
$(cmake-utils_use_enable http HTTP)
$(cmake-utils_use_enable obex OBEX)"
cmake-utils_src_compile
}
|