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.3.ebuild ChangeLog libcec-2.1.1.ebuild
Date: Sun, 19 May 2013 12:03:51
Message-Id: 20130519120341.BD4AC2171D@flycatcher.gentoo.org
1 thev00d00 13/05/19 12:03:41
2
3 Modified: ChangeLog
4 Added: libcec-2.1.3.ebuild
5 Removed: libcec-2.1.1.ebuild
6 Log:
7 Version bump
8
9 (Portage version: 2.2.0_alpha174/cvs/Linux x86_64, unsigned Manifest commit)
10
11 Revision Changes Path
12 1.25 dev-libs/libcec/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?rev=1.25&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?rev=1.25&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?r1=1.24&r2=1.25
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v
21 retrieving revision 1.24
22 retrieving revision 1.25
23 diff -u -r1.24 -r1.25
24 --- ChangeLog 17 Mar 2013 19:36:34 -0000 1.24
25 +++ ChangeLog 19 May 2013 12:03:41 -0000 1.25
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/libcec
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v 1.24 2013/03/17 19:36:34 thev00d00 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v 1.25 2013/05/19 12:03:41 thev00d00 Exp $
31 +
32 +*libcec-2.1.3 (19 May 2013)
33 +
34 + 19 May 2013; Ian Whyman <thev00d00@g.o> +libcec-2.1.3.ebuild,
35 + -libcec-2.1.1.ebuild:
36 + Version bump
37
38 *libcec-2.1.1 (17 Mar 2013)
39
40
41
42
43 1.1 dev-libs/libcec/libcec-2.1.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/libcec-2.1.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/libcec-2.1.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libcec-2.1.3.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/libcec-2.1.3.ebuild,v 1.1 2013/05/19 12:03:41 thev00d00 Exp $
53
54 EAPI=5
55
56 inherit autotools eutils 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="debug static-libs"
66
67 RDEPEND="virtual/udev"
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 sed -i '/^CXXFLAGS/s:-Werror::' configure.ac || die
77 eautoreconf
78 }
79
80 src_configure() {
81 econf $(use_enable static-libs static) \
82 $(use_enable debug) \
83 --enable-optimisation \
84 --disable-rpi \
85 --disable-cubox
86 }
87
88 src_install() {
89 default
90 use static-libs || find "${ED}" -name '*.la' -delete
91 }