thev00d00 14/03/23 15:24:47
Modified: ChangeLog
Added: libcec-2.1.4.ebuild
Removed: libcec-1.9.0.ebuild libcec-2.0.5-r1.ebuild
libcec-2.0.5.ebuild
Log:
Version bump, fixes #505434 and #503478
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.28 dev-libs/libcec/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?rev=1.28&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?rev=1.28&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/ChangeLog?r1=1.27&r2=1.28
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog 27 Jun 2013 18:08:10 -0000 1.27
+++ ChangeLog 23 Mar 2014 15:24:46 -0000 1.28
@@ -1,6 +1,12 @@
# ChangeLog for dev-libs/libcec
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v 1.27 2013/06/27
18:08:10 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/ChangeLog,v 1.28 2014/03/23
15:24:46 thev00d00 Exp $
+
+*libcec-2.1.4 (23 Mar 2014)
+
+ 23 Mar 2014; Ian Whyman <[email protected]> +libcec-2.1.4.ebuild,
+ -libcec-1.9.0.ebuild, -libcec-2.0.5-r1.ebuild, -libcec-2.0.5.ebuild:
+ Version bump, fixes #505434 and #503478
27 Jun 2013; Agostino Sarubbo <[email protected]> libcec-2.1.3.ebuild:
Stable for x86, wrt bug #464552
1.1 dev-libs/libcec/libcec-2.1.4.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/libcec-2.1.4.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libcec/libcec-2.1.4.ebuild?rev=1.1&content-type=text/plain
Index: libcec-2.1.4.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcec/libcec-2.1.4.ebuild,v 1.1
2014/03/23 15:24:46 thev00d00 Exp $
EAPI=5
inherit autotools eutils linux-info
DESCRIPTION="Library for communicating with the Pulse-Eight USB HDMI-CEC
Adaptor"
HOMEPAGE="http://libcec.pulse-eight.com"
SRC_URI="http://github.com/Pulse-Eight/${PN}/archive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug static-libs"
RDEPEND="virtual/udev
dev-libs/lockdev"
DEPEND="${RDEPEND}
virtual/pkgconfig"
CONFIG_CHECK="~USB_ACM"
S="${WORKDIR}/${PN}-${P}"
src_prepare() {
sed -i '/^CXXFLAGS/s:-fPIC::' configure.ac || die
sed -i '/^CXXFLAGS/s:-Werror::' configure.ac || die
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static) \
$(use_enable debug) \
--enable-optimisation \
--disable-rpi \
--disable-cubox
}
src_install() {
default
use static-libs || find "${ED}" -name '*.la' -delete
}