Files
gentoo/dev-libs/libnfc/libnfc-1.4.2.ebuild
Robin H. Johnson 61b861acd7 Drop $Id$ per council decision in bug #611234.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
2017-02-28 11:50:50 -08:00

31 lines
654 B
Bash

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
inherit eutils
DESCRIPTION="Near Field Communications (NFC) library"
HOMEPAGE="http://www.libnfc.org/"
SRC_URI="https://github.com/nfc-tools/${PN}/releases/download/${P}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc"
RDEPEND="sys-apps/pcsc-lite
virtual/libusb:0"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_compile() {
emake || die "Failed to compile."
use doc && doxygen
}
src_install() {
emake install DESTDIR="${D}" || die "Failed to install properly."
use doc && dohtml "${S}"/doc/html/*
}