Gentoo Archives: gentoo-commits

From: "Mike Auty (ikelos)" <ikelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libnfc: ChangeLog libnfc-1.5.0.ebuild
Date: Fri, 29 Apr 2011 21:28:23
Message-Id: 20110429212813.A6D1A20054@flycatcher.gentoo.org
1 ikelos 11/04/29 21:28:13
2
3 Modified: ChangeLog
4 Added: libnfc-1.5.0.ebuild
5 Log:
6 Version bump libnfc to 1.5.0.
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux i686)
9
10 Revision Changes Path
11 1.8 dev-libs/libnfc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnfc/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnfc/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnfc/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnfc/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 20 Mar 2011 18:11:44 -0000 1.7
24 +++ ChangeLog 29 Apr 2011 21:28:13 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/libnfc
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnfc/ChangeLog,v 1.7 2011/03/20 18:11:44 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnfc/ChangeLog,v 1.8 2011/04/29 21:28:13 ikelos Exp $
30 +
31 +*libnfc-1.5.0 (29 Apr 2011)
32 +
33 + 29 Apr 2011; Mike Auty <ikelos@g.o> +libnfc-1.5.0.ebuild:
34 + Version bump libnfc to 1.5.0.
35
36 20 Mar 2011; Samuli Suominen <ssuominen@g.o> libnfc-1.3.1.ebuild,
37 libnfc-1.3.2.ebuild, libnfc-1.3.3.ebuild, libnfc-1.3.4.ebuild,
38
39
40
41 1.1 dev-libs/libnfc/libnfc-1.5.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnfc/libnfc-1.5.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libnfc/libnfc-1.5.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libnfc-1.5.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libnfc/libnfc-1.5.0.ebuild,v 1.1 2011/04/29 21:28:13 ikelos Exp $
51
52 EAPI="4"
53
54 inherit eutils
55
56 DESCRIPTION="Near Field Communications (NFC) library"
57 HOMEPAGE="http://www.libnfc.org/"
58 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
59
60 LICENSE="LGPL-3"
61 SLOT="0"
62 KEYWORDS="~x86 ~amd64"
63 IUSE="doc"
64
65 RDEPEND="sys-apps/pcsc-lite
66 virtual/libusb:0"
67 DEPEND="${RDEPEND}
68 doc? ( app-doc/doxygen )"
69
70 src_compile() {
71 emake || die "Failed to compile."
72 use doc && doxygen
73 }
74
75 src_install() {
76 emake install DESTDIR="${D}" || die "Failed to install properly."
77 use doc && dohtml "${S}"/doc/html/*
78 }