diff options
author | 2008-12-08 09:19:39 +0000 | |
---|---|---|
committer | 2008-12-08 09:19:39 +0000 | |
commit | 690a07bcf6f1fe8c265e5bb149a63c05f949c7c1 (patch) | |
tree | 96467ec5de7867c0b4a79184138b95c522101c4f /media-libs/libv4l | |
parent | version bump (diff) | |
download | gentoo-2-690a07bcf6f1fe8c265e5bb149a63c05f949c7c1.tar.gz gentoo-2-690a07bcf6f1fe8c265e5bb149a63c05f949c7c1.tar.bz2 gentoo-2-690a07bcf6f1fe8c265e5bb149a63c05f949c7c1.zip |
version bump, bug #249759
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.7 x86_64)
Diffstat (limited to 'media-libs/libv4l')
-rw-r--r-- | media-libs/libv4l/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libv4l/libv4l-0.5.7.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/media-libs/libv4l/ChangeLog b/media-libs/libv4l/ChangeLog index 3e1d41987df5..cb1d1e180191 100644 --- a/media-libs/libv4l/ChangeLog +++ b/media-libs/libv4l/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libv4l # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.11 2008/11/27 15:59:27 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.12 2008/12/08 09:19:39 aballier Exp $ + +*libv4l-0.5.7 (08 Dec 2008) + + 08 Dec 2008; Alexis Ballier <aballier@gentoo.org> +libv4l-0.5.7.ebuild: + version bump, bug #249759 *libv4l-0.5.6 (27 Nov 2008) diff --git a/media-libs/libv4l/libv4l-0.5.7.ebuild b/media-libs/libv4l/libv4l-0.5.7.ebuild new file mode 100644 index 000000000000..99f24daab8e2 --- /dev/null +++ b/media-libs/libv4l/libv4l-0.5.7.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-0.5.7.ebuild,v 1.1 2008/12/08 09:19: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 ~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 +} |