Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libv4l: ChangeLog libv4l-0.5.5.ebuild
Date: Sun, 23 Nov 2008 12:27:43
Message-Id: E1L4E3r-0005Pr-Vd@stork.gentoo.org
1 aballier 08/11/23 12:27:35
2
3 Modified: ChangeLog
4 Added: libv4l-0.5.5.ebuild
5 Log:
6 version bump, bug #248042
7 (Portage version: 2.2_rc15/cvs/Linux 2.6.27.5 x86_64)
8
9 Revision Changes Path
10 1.10 media-libs/libv4l/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 12 Nov 2008 18:30:01 -0000 1.9
23 +++ ChangeLog 23 Nov 2008 12:27:35 -0000 1.10
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libv4l
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.9 2008/11/12 18:30:01 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.10 2008/11/23 12:27:35 aballier Exp $
29 +
30 +*libv4l-0.5.5 (23 Nov 2008)
31 +
32 + 23 Nov 2008; Alexis Ballier <aballier@g.o> +libv4l-0.5.5.ebuild:
33 + version bump, bug #248042
34
35 12 Nov 2008; Alexis Ballier <aballier@g.o> -libv4l-0.5.1.ebuild:
36 remove old
37
38
39
40 1.1 media-libs/libv4l/libv4l-0.5.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/libv4l-0.5.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libv4l/libv4l-0.5.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libv4l-0.5.5.ebuild
46 ===================================================================
47 # Copyright 1999-2008 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.5.5.ebuild,v 1.1 2008/11/23 12:27:35 aballier Exp $
50
51 inherit multilib toolchain-funcs
52
53 DESCRIPTION="V4L userspace libraries"
54 HOMEPAGE="http://people.atrpms.net/~hdegoede/
55 http://hansdegoede.livejournal.com/3636.html"
56 SRC_URI="http://people.atrpms.net/~hdegoede/${P}.tar.gz"
57
58 LICENSE="LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
61 IUSE=""
62
63 src_compile() {
64 tc-export CC
65 emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" CFLAGS="${CFLAGS}" \
66 || die "emake failed"
67 }
68
69 src_install() {
70 emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" \
71 DESTDIR="${D}" install || die "emake install failed"
72 dodoc ChangeLog README* TODO
73 }
74
75 pkg_postinst() {
76 elog
77 elog "libv4l includes wrapper libraries for compatibility and pixel format"
78 elog "conversion, which are especially useful for users of the gspca usb"
79 elog "webcam driver in kernel 2.6.27 and higher."
80 elog
81 elog "To add v4l2 compatibility to a v4l application 'myapp', launch it via"
82 elog "LD_PRELOAD=/usr/$(get_libdir)/libv4l/v4l1compat.so myapp"
83 elog "To add automatic pixel format conversion to a v4l2 application, use"
84 elog "LD_PRELOAD=/usr/$(get_libdir)/libv4l/v4l2convert.so myapp"
85 elog
86 }