diff options
Diffstat (limited to 'dev-libs/libnfc/libnfc-1.4.0.ebuild')
-rw-r--r-- | dev-libs/libnfc/libnfc-1.4.0.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-libs/libnfc/libnfc-1.4.0.ebuild b/dev-libs/libnfc/libnfc-1.4.0.ebuild new file mode 100644 index 0000000..1b49970 --- /dev/null +++ b/dev-libs/libnfc/libnfc-1.4.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +inherit eutils + +DESCRIPTION="Near Field Communications (NFC) library" +HOMEPAGE="http://www.libnfc.org/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" + +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/* +} |