Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
aballier 09/07/17 08:33:39
Modified: ChangeLog
Added: libv4l-0.6.0.ebuild
Log:
version bump, by Alexandre Rostovtsev <tetromino@...>, bug #278116
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.18 media-libs/libv4l/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?r1=1.17&r2=1.18
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog 4 Jul 2009 15:03:17 -0000 1.17
+++ ChangeLog 17 Jul 2009 08:33:39 -0000 1.18
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/libv4l
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.17 2009/07/04 15:03:17 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.18 2009/07/17 08:33:39 aballier Exp $
+
+*libv4l-0.6.0 (17 Jul 2009)
+
+ 17 Jul 2009; Alexis Ballier <aballier@g.o> +libv4l-0.6.0.ebuild:
+ version bump, by Alexandre Rostovtsev <tetromino@...>, bug #278116
04 Jul 2009; Jeroen Roovers <jer@g.o> libv4l-0.5.8.ebuild:
Marked ~hppa (bug #276355).
1.1 media-libs/libv4l/libv4l-0.6.0.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/libv4l-0.6.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/libv4l-0.6.0.ebuild?rev=1.1&content-type=text/plain
Index: libv4l-0.6.0.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.6.0.ebuild,v 1.1 2009/07/17 08:33:39 aballier Exp $
inherit multilib toolchain-funcs
DESCRIPTION="V4L userspace libraries"
HOMEPAGE="http://people.atrpms.net/~hdegoede/
http://hansdegoede.livejournal.com/3636.html"
SRC_URI="http://people.atrpms.net/~hdegoede/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
IUSE=""
src_compile() {
tc-export CC
emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" CFLAGS="${CFLAGS}" \
|| die "emake failed"
}
src_install() {
emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" \
DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog README* TODO
}
pkg_postinst() {
elog
elog "libv4l includes wrapper libraries for compatibility and pixel format"
elog "conversion, which are especially useful for users of the gspca usb"
elog "webcam driver in kernel 2.6.27 and higher."
elog
elog "To add v4l2 compatibility to a v4l application 'myapp', launch it via"
elog "LD_PRELOAD=/usr/$(get_libdir)/libv4l/v4l1compat.so myapp"
elog "To add automatic pixel format conversion to a v4l2 application, use"
elog "LD_PRELOAD=/usr/$(get_libdir)/libv4l/v4l2convert.so myapp"
elog
}
|
|