diff options
Diffstat (limited to 'dev-libs/libnfc/libnfc-1.5.1.ebuild')
-rw-r--r-- | dev-libs/libnfc/libnfc-1.5.1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-libs/libnfc/libnfc-1.5.1.ebuild b/dev-libs/libnfc/libnfc-1.5.1.ebuild new file mode 100644 index 000000000000..507871d9ad77 --- /dev/null +++ b/dev-libs/libnfc/libnfc-1.5.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +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" + +RDEPEND="sys-apps/pcsc-lite + virtual/libusb:0" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +src_prepare() { + epatch "${FILESDIR}/${PN}-1.5.1-glibc-2.17.patch" +} + +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/* +} |