Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/libfprint: ChangeLog libfprint-0.4.0.ebuild libfprint-0.3.0-r1.ebuild
Date: Sun, 13 Nov 2011 23:53:10
Message-Id: 20111113235300.881432004B@flycatcher.gentoo.org
1 xmw 11/11/13 23:53:00
2
3 Modified: ChangeLog libfprint-0.4.0.ebuild
4 Removed: libfprint-0.3.0-r1.ebuild
5 Log:
6 fix .la file removal (thanks Alexander Adam, bug 374575), remove old version
7
8 (Portage version: 2.1.10.11/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 sys-auth/libfprint/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 16 Jun 2011 23:28:59 -0000 1.5
24 +++ ChangeLog 13 Nov 2011 23:53:00 -0000 1.6
25 @@ -1,6 +1,10 @@
26 # ChangeLog for sys-auth/libfprint
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v 1.5 2011/06/16 23:28:59 xmw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/ChangeLog,v 1.6 2011/11/13 23:53:00 xmw Exp $
30 +
31 + 13 Nov 2011; Michael Weber <xmw@g.o> -libfprint-0.3.0-r1.ebuild,
32 + libfprint-0.4.0.ebuild:
33 + fix .la file removal (thanks Alexander Adam, bug 374575), remove old version
34
35 *libfprint-0.4.0 (16 Jun 2011)
36 *libfprint-0.3.0-r1 (16 Jun 2011)
37
38
39
40 1.2 sys-auth/libfprint/libfprint-0.4.0.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild?r1=1.1&r2=1.2
45
46 Index: libfprint-0.4.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- libfprint-0.4.0.ebuild 16 Jun 2011 23:28:59 -0000 1.1
53 +++ libfprint-0.4.0.ebuild 13 Nov 2011 23:53:00 -0000 1.2
54 @@ -1,8 +1,8 @@
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild,v 1.1 2011/06/16 23:28:59 xmw Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libfprint/libfprint-0.4.0.ebuild,v 1.2 2011/11/13 23:53:00 xmw Exp $
59
60 -EAPI=3
61 +EAPI=4
62
63 inherit autotools
64
65 @@ -21,7 +21,6 @@
66 dev-libs/nss
67 x11-libs/gtk+:2
68 || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )"
69 -
70 DEPEND="${DEPEND}
71 dev-util/pkgconfig"
72
73 @@ -39,15 +38,13 @@
74 }
75
76 src_configure() {
77 - econf ${my_conf} \
78 + econf \
79 $(use_enable debug debug-log) \
80 - $(use_enable static-libs static) || die
81 + $(use_enable static-libs static)
82 }
83
84 src_install() {
85 - emake DESTDIR="${D}" install || die
86 - if ! use static-libs ; then
87 - rm -v "${D}"/usr/lib64/libfprint.la || die
88 - fi
89 - dodoc AUTHORS HACKING NEWS README THANKS TODO || die
90 + emake DESTDIR="${D}" install
91 + use static-libs || find "${D}" -name "*.la" -delete
92 + dodoc AUTHORS HACKING NEWS README THANKS TODO
93 }