From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CAC86138AC6 for ; Mon, 18 Feb 2013 00:16:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC2DDE05E4; Mon, 18 Feb 2013 00:16:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15217E05DB for ; Mon, 18 Feb 2013 00:16:45 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 23A8233DC20 for ; Mon, 18 Feb 2013 00:16:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 16D62E4090 for ; Mon, 18 Feb 2013 00:16:42 +0000 (UTC) From: "Mike Auty" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Auty" Message-ID: <1342638144.6095627f997bb39fcef78fa114d934e91f694c6a.ikelos@gentoo> Subject: [gentoo-commits] dev/ikelos:master commit in: dev-libs/libnfc/ X-VCS-Repository: dev/ikelos X-VCS-Files: dev-libs/libnfc/libnfc-1.6.0_rc1.ebuild X-VCS-Directories: dev-libs/libnfc/ X-VCS-Committer: ikelos X-VCS-Committer-Name: Mike Auty X-VCS-Revision: 6095627f997bb39fcef78fa114d934e91f694c6a X-VCS-Branch: master Date: Mon, 18 Feb 2013 00:16:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4c823666-4cac-45d6-8aab-f5b604be40c0 X-Archives-Hash: ddb00999f53a3bb13f0545f8600107e6 commit: 6095627f997bb39fcef78fa114d934e91f694c6a Author: Mike Auty gmail com> AuthorDate: Wed Jul 18 19:02:24 2012 +0000 Commit: Mike Auty gentoo org> CommitDate: Wed Jul 18 19:02:24 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/ikelos.git;a=commit;h=6095627f Don't forget to add the bumped version of libnfc. --- dev-libs/libnfc/libnfc-1.6.0_rc1.ebuild | 35 +++++++++++++++++++++++++++++++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/dev-libs/libnfc/libnfc-1.6.0_rc1.ebuild b/dev-libs/libnfc/libnfc-1.6.0_rc1.ebuild new file mode 100644 index 0000000..626066e --- /dev/null +++ b/dev-libs/libnfc/libnfc-1.6.0_rc1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnfc/libnfc-1.4.2.ebuild,v 1.2 2011/03/20 18:11:44 ssuominen Exp $ + +EAPI="4" + +inherit eutils versionator + +MY_P=${P/_/-} + +DESCRIPTION="Near Field Communications (NFC) library" +HOMEPAGE="http://www.libnfc.org/" +SRC_URI="http://${PN}.googlecode.com/files/${MY_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 )" + +S="${WORKDIR}/${MY_P}" + +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/* +}