44 lines
1.1 KiB
Bash
44 lines
1.1 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnfc/libnfc-1.7.0-r1.ebuild,v 1.1 2013/09/26 02:58:50 mrueg Exp $
|
|
|
|
EAPI=5
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Near Field Communications (NFC) library"
|
|
HOMEPAGE="http://www.libnfc.org/"
|
|
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~x86"
|
|
IUSE="doc pcsc-lite readline static-libs usb"
|
|
|
|
RDEPEND="pcsc-lite? ( sys-apps/pcsc-lite )
|
|
readline? ( sys-libs/readline )
|
|
usb? ( virtual/libusb:0 )"
|
|
DEPEND="${RDEPEND}
|
|
doc? ( app-doc/doxygen )"
|
|
|
|
src_configure() {
|
|
local drivers="arygon,pn532_uart,pn532_spi,pn532_i2c,acr122s"
|
|
use pcsc-lite && drivers+=",acr122_pcsc"
|
|
use usb && drivers+=",pn53x_usb,acr122_usb"
|
|
econf \
|
|
--with-drivers="${drivers}" \
|
|
$(use_enable doc) \
|
|
$(use_with readline) \
|
|
$(use_enable static-libs static)
|
|
}
|
|
|
|
src_compile() {
|
|
default
|
|
use doc && doxygen
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
use static-libs || find "${ED}" -name 'lib*.la' -delete
|
|
use doc && dohtml "${S}"/doc/html/*
|
|
}
|