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