linamh/app-pda/libopensync-plugin-irmc/libopensync-plugin-irmc-0.36.ebuild
geos_one cea85aca22 delete old package
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2160 6952d904-891a-0410-993b-d76249ca496b
2010-05-09 06:54:13 +00:00

39 lines
1.1 KiB
Bash

# Copyright 1999-2009 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.36.ebuild,v 1.4 2009/09/19 16:26:56 betelgeuse Exp $
EAPI="2"
inherit eutils cmake-utils
DESCRIPTION="OpenSync IrMC plugin"
HOMEPAGE="http://www.opensync.org/"
SRC_URI="http://www.opensync.org/download/releases/${PV}/${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?,irda?]
bluetooth? ( || ( net-wireless/bluez 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
}
src_configure() {
local mycmakeargs="
$(cmake-utils_use_enable bluetooth BLUETOOTH)
$(cmake-utils_use_enable irda IRDA)"
cmake-utils_src_configure
}