blob: 00b1e3e98c41a4f4bbeb8f73c0fac1ac93c43994 (
plain) (
tree)
|
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit eutils versionator
DESCRIPTION="Near Field Communications (NFC) library"
HOMEPAGE="http://www.libnfc.org/"
MY_P="${PN}-$(replace_version_separator 3 "-")"
SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc"
CDEPEND="sys-apps/pcsc-lite
dev-libs/libusb"
DEPEND="${CDEPEND}
doc? ( app-doc/doxygen )"
RDEPEND="${CDEPEND}"
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/*
}
|