blob: de55f3f3665b3c14d28540219f6655a3a356d327 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-irmc/libopensync-plugin-irmc-0.21.ebuild,v 1.3 2008/12/04 14:09:03 flameeyes Exp $
inherit eutils
DESCRIPTION="OpenSync IrMC plugin"
HOMEPAGE="http://www.opensync.org/"
SRC_URI="http://dev.gentooexperimental.org/~peper/distfiles/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="GPL-2"
IUSE="bluetooth irda"
DEPEND="=app-pda/libopensync-${PV}*
>=dev-libs/openobex-1.0
bluetooth? ( net-wireless/bluez-libs )"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! use irda && ! use bluetooth; then
eerror "${CATEGORY}/${P} without support for bluetooth nor irda is unusable."
eerror "Please enable \"bluetooth\" or/and \"irda\" USE flags."
die "Please enable \"bluetooth\" or/and \"irda\" USE flags."
fi
if use bluetooth && ! built_with_use dev-libs/openobex bluetooth; then
eerror "You are trying to build ${CATEGORY}/${P} with the \"bluetooth\""
eerror "USE flag, but dev-libs/openobex was built without"
eerror "the \"bluetooth\" USE flag."
eerror "Please rebuild dev-libs/openobex with \"bluetooth\" USE flag."
die "Please rebuild dev-libs/openobex with \"bluetooth\" USE flag."
fi
if use irda && ! built_with_use dev-libs/openobex irda; then
eerror "You are trying to build ${CATEGORY}/${P} with the \"irda\""
eerror "USE flag, but dev-libs/openobex was built without"
eerror "the \"irda\" USE flag."
eerror "Please rebuild dev-libs/openobex with \"irda\" USE flag."
die "Please rebuild dev-libs/openobex with \"irda\" USE flag."
fi
}
src_compile() {
econf \
$(use_enable bluetooth) \
$(use_enable irda) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog COPYING NEWS README
}
|