Gentoo Archives: gentoo-commits

From: "Ian Whyman (thev00d00)" <thev00d00@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libcec: ChangeLog libcec-1.7.1.ebuild libcec-1.7.0.ebuild
Date: Fri, 29 Jun 2012 19:50:21
Message-Id: 20120629195011.9EBAC2004B@flycatcher.gentoo.org
1 thev00d00 12/06/29 19:50:11
2
3 Modified: ChangeLog
4 Added: libcec-1.7.1.ebuild
5 Removed: libcec-1.7.0.ebuild
6 Log:
7 Version bump
8
9 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.10 dev-libs/libcec/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?rev=1.10&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?rev=1.10&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?r1=1.9&r2=1.10
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v
21 retrieving revision 1.9
22 retrieving revision 1.10
23 diff -u -r1.9 -r1.10
24 --- ChangeLog 18 Jun 2012 19:32:07 -0000 1.9
25 +++ ChangeLog 29 Jun 2012 19:50:11 -0000 1.10
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/libcec
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v 1.9 2012/06/18 19:32:07 thev00d00 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v 1.10 2012/06/29 19:50:11 thev00d00 Exp $
31 +
32 +*libcec-1.7.1 (29 Jun 2012)
33 +
34 + 29 Jun 2012; Ian Whyman <thev00d00@g.o> -libcec-1.7.0.ebuild,
35 + +libcec-1.7.1.ebuild:
36 + Version bump
37
38 *libcec-1.7.0 (18 Jun 2012)
39
40
41
42
43 1.1 dev-libs/libcec/libcec-1.7.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/libcec-1.7.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/libcec-1.7.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libcec-1.7.1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/libcec-1.7.1.ebuild,v 1.1 2012/06/29 19:50:11 thev00d00 Exp $
53
54 EAPI=4
55
56 inherit autotools linux-info vcs-snapshot
57
58 DESCRIPTION="Library for communicating with the Pulse-Eight USB HDMI-CEC Adaptor"
59 HOMEPAGE="http://libcec.pulse-eight.com"
60 SRC_URI="http://github.com/Pulse-Eight/${PN}/tarball/${P} -> ${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="static-libs"
66
67 RDEPEND=">=sys-fs/udev-151"
68 DEPEND="${RDEPEND}
69 dev-libs/lockdev
70 virtual/pkgconfig"
71
72 CONFIG_CHECK="~USB_ACM"
73
74 src_prepare() {
75 sed -i '/^CXXFLAGS/s:-fPIC::' configure.ac || die
76 eautoreconf
77 }
78
79 src_configure() {
80 econf $(use_enable static-libs static)
81 }
82
83 src_install() {
84 default
85 use static-libs || find "${ED}" -name '*.la' -delete
86 }