Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libv4l: ChangeLog libv4l-0.6.4.ebuild
Date: Thu, 25 Feb 2010 08:08:02
Message-Id: E1NkYlA-0007ss-FX@stork.gentoo.org
1 ssuominen 10/02/25 08:07:48
2
3 Modified: ChangeLog
4 Added: libv4l-0.6.4.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc63/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.24 media-libs/libv4l/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 24 Feb 2010 19:30:19 -0000 1.23
23 +++ ChangeLog 25 Feb 2010 08:07:47 -0000 1.24
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libv4l
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.23 2010/02/24 19:30:19 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.24 2010/02/25 08:07:47 ssuominen Exp $
29 +
30 +*libv4l-0.6.4 (25 Feb 2010)
31 +
32 + 25 Feb 2010; Samuli Suominen <ssuominen@g.o> +libv4l-0.6.4.ebuild:
33 + Version bump.
34
35 24 Feb 2010; Raúl Porcel <armin76@g.o> libv4l-0.5.3.ebuild,
36 libv4l-0.6.1.ebuild:
37
38
39
40 1.1 media-libs/libv4l/libv4l-0.6.4.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/libv4l-0.6.4.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/libv4l-0.6.4.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libv4l-0.6.4.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.6.4.ebuild,v 1.1 2010/02/25 08:07:47 ssuominen Exp $
50
51 EAPI=2
52 inherit multilib toolchain-funcs
53
54 DESCRIPTION="Collection of video4linux userspace libraries"
55 HOMEPAGE="http://hansdegoede.livejournal.com/3636.html"
56 SRC_URI="http://people.fedoraproject.org/~jwrdegoede/${P}.tar.gz"
57
58 LICENSE="LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
61 IUSE=""
62
63 src_compile() {
64 tc-export CC
65 emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" CFLAGS="${CFLAGS}" || die
66 }
67
68 src_install() {
69 emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" DESTDIR="${D}" \
70 install || die
71 dodoc ChangeLog README* TODO
72 }
73
74 pkg_postinst() {
75 elog
76 elog "libv4l includes wrapper libraries for compatibility and pixel format"
77 elog "conversion, which are especially useful for users of the gspca usb"
78 elog "webcam driver in kernel 2.6.27 and higher."
79 elog
80 elog "To add v4l2 compatibility to a v4l application 'myapp', launch it via"
81 elog "LD_PRELOAD=/usr/$(get_libdir)/libv4l/v4l1compat.so myapp"
82 elog "To add automatic pixel format conversion to a v4l2 application, use"
83 elog "LD_PRELOAD=/usr/$(get_libdir)/libv4l/v4l2convert.so myapp"
84 elog
85 }