blob: 0b0710c1e506dc9428e9d8f8fa5909173ecd0ca7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.6.4.ebuild,v 1.1 2010/02/25 08:07:47 ssuominen Exp $
EAPI=2
inherit multilib toolchain-funcs
DESCRIPTION="Collection of video4linux userspace libraries"
HOMEPAGE="http://hansdegoede.livejournal.com/3636.html"
SRC_URI="http://people.fedoraproject.org/~jwrdegoede/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
src_compile() {
tc-export CC
emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" CFLAGS="${CFLAGS}" || die
}
src_install() {
emake PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" DESTDIR="${D}" \
install || die
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
}
|