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.3.2.ebuild
Date: Mon, 01 Feb 2010 11:23:10
Message-Id: E1NbuN0-0004rk-NZ@stork.gentoo.org
1 ikelos 10/02/01 11:23:06
2
3 Modified: ChangeLog
4 Added: libnfc-1.3.2.ebuild
5 Log:
6 Version bump libnfc to 1.3.2.
7 (Portage version: 2.2_rc61/cvs/Linux i686)
8
9 Revision Changes Path
10 1.3 dev-libs/libnfc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libnfc/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libnfc/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libnfc/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libnfc/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 23 Jan 2010 22:02:13 -0000 1.2
23 +++ ChangeLog 1 Feb 2010 11:23:06 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/libnfc
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnfc/ChangeLog,v 1.2 2010/01/23 22:02:13 ikelos Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnfc/ChangeLog,v 1.3 2010/02/01 11:23:06 ikelos Exp $
29 +
30 +*libnfc-1.3.2 (01 Feb 2010)
31 +
32 + 01 Feb 2010; Mike Auty <ikelos@g.o> +libnfc-1.3.2.ebuild:
33 + Version bump libnfc to 1.3.2.
34
35 *libnfc-1.3.1 (23 Jan 2010)
36
37
38
39
40 1.1 dev-libs/libnfc/libnfc-1.3.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libnfc/libnfc-1.3.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libnfc/libnfc-1.3.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libnfc-1.3.2.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libnfc/libnfc-1.3.2.ebuild,v 1.1 2010/02/01 11:23:06 ikelos Exp $
50
51 EAPI="2"
52
53 inherit eutils
54
55 DESCRIPTION="Near Field Communications (NFC) library"
56 HOMEPAGE="http://www.libnfc.org/"
57 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
58
59 LICENSE="LGPL-3"
60 SLOT="0"
61 KEYWORDS="~x86 ~amd64"
62 IUSE="doc"
63
64 CDEPEND="sys-apps/pcsc-lite
65 dev-libs/libusb"
66 DEPEND="${CDEPEND}
67 doc? ( app-doc/doxygen )"
68 RDEPEND="${CDEPEND}"
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 }