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: libcec-2.1.4.ebuild ChangeLog libcec-1.9.0.ebuild libcec-2.0.5-r1.ebuild libcec-2.0.5.ebuild
Date: Sun, 23 Mar 2014 15:24:53
Message-Id: 20140323152447.2380C20051@flycatcher.gentoo.org
1 thev00d00 14/03/23 15:24:47
2
3 Modified: ChangeLog
4 Added: libcec-2.1.4.ebuild
5 Removed: libcec-1.9.0.ebuild libcec-2.0.5-r1.ebuild
6 libcec-2.0.5.ebuild
7 Log:
8 Version bump, fixes #505434 and #503478
9
10 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
11
12 Revision Changes Path
13 1.28 dev-libs/libcec/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?rev=1.28&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?rev=1.28&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?r1=1.27&r2=1.28
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v
22 retrieving revision 1.27
23 retrieving revision 1.28
24 diff -u -r1.27 -r1.28
25 --- ChangeLog 27 Jun 2013 18:08:10 -0000 1.27
26 +++ ChangeLog 23 Mar 2014 15:24:46 -0000 1.28
27 @@ -1,6 +1,12 @@
28 # ChangeLog for dev-libs/libcec
29 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v 1.27 2013/06/27 18:08:10 ago Exp $
31 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v 1.28 2014/03/23 15:24:46 thev00d00 Exp $
33 +
34 +*libcec-2.1.4 (23 Mar 2014)
35 +
36 + 23 Mar 2014; Ian Whyman <thev00d00@g.o> +libcec-2.1.4.ebuild,
37 + -libcec-1.9.0.ebuild, -libcec-2.0.5-r1.ebuild, -libcec-2.0.5.ebuild:
38 + Version bump, fixes #505434 and #503478
39
40 27 Jun 2013; Agostino Sarubbo <ago@g.o> libcec-2.1.3.ebuild:
41 Stable for x86, wrt bug #464552
42
43
44
45 1.1 dev-libs/libcec/libcec-2.1.4.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/libcec-2.1.4.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/libcec-2.1.4.ebuild?rev=1.1&content-type=text/plain
49
50 Index: libcec-2.1.4.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/libcec-2.1.4.ebuild,v 1.1 2014/03/23 15:24:46 thev00d00 Exp $
55
56 EAPI=5
57
58 inherit autotools eutils linux-info
59
60 DESCRIPTION="Library for communicating with the Pulse-Eight USB HDMI-CEC Adaptor"
61 HOMEPAGE="http://libcec.pulse-eight.com"
62 SRC_URI="http://github.com/Pulse-Eight/${PN}/archive/${P}.tar.gz"
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="debug static-libs"
67
68 RDEPEND="virtual/udev
69 dev-libs/lockdev"
70 DEPEND="${RDEPEND}
71 virtual/pkgconfig"
72
73 CONFIG_CHECK="~USB_ACM"
74
75 S="${WORKDIR}/${PN}-${P}"
76
77 src_prepare() {
78 sed -i '/^CXXFLAGS/s:-fPIC::' configure.ac || die
79 sed -i '/^CXXFLAGS/s:-Werror::' configure.ac || die
80 eautoreconf
81 }
82
83 src_configure() {
84 econf $(use_enable static-libs static) \
85 $(use_enable debug) \
86 --enable-optimisation \
87 --disable-rpi \
88 --disable-cubox
89 }
90
91 src_install() {
92 default
93 use static-libs || find "${ED}" -name '*.la' -delete
94 }