Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libv4l: libv4l-1.6.0.ebuild ChangeLog
Date: Thu, 30 Oct 2014 04:32:36
Message-Id: 20141030043230.EDD2990BC@oystercatcher.gentoo.org
1 vapier 14/10/30 04:32:30
2
3 Modified: ChangeLog
4 Added: libv4l-1.6.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
9
10 Revision Changes Path
11 1.105 media-libs/libv4l/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libv4l/ChangeLog?rev=1.105&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libv4l/ChangeLog?rev=1.105&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libv4l/ChangeLog?r1=1.104&r2=1.105
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v
20 retrieving revision 1.104
21 retrieving revision 1.105
22 diff -u -r1.104 -r1.105
23 --- ChangeLog 20 Aug 2014 04:15:13 -0000 1.104
24 +++ ChangeLog 30 Oct 2014 04:32:30 -0000 1.105
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libv4l
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.104 2014/08/20 04:15:13 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/ChangeLog,v 1.105 2014/10/30 04:32:30 vapier Exp $
30 +
31 +*libv4l-1.6.0 (30 Oct 2014)
32 +
33 + 30 Oct 2014; Mike Frysinger <vapier@g.o> +libv4l-1.6.0.ebuild:
34 + Version bump.
35
36 *libv4l-1.2.1 (20 Aug 2014)
37
38
39
40
41 1.1 media-libs/libv4l/libv4l-1.6.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libv4l/libv4l-1.6.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libv4l/libv4l-1.6.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libv4l-1.6.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libv4l/libv4l-1.6.0.ebuild,v 1.1 2014/10/30 04:32:30 vapier Exp $
51
52 EAPI=5
53 inherit eutils linux-info udev multilib-minimal
54
55 MY_P=v4l-utils-${PV}
56
57 DESCRIPTION="Separate libraries ebuild from upstream v4l-utils package"
58 HOMEPAGE="http://git.linuxtv.org/v4l-utils.git"
59 SRC_URI="http://linuxtv.org/downloads/v4l-utils/${MY_P}.tar.bz2"
60
61 LICENSE="LGPL-2.1+"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
64 IUSE=""
65
66 # The libraries only link to -ljpeg, therefore multilib depend only for virtual/jpeg.
67 RDEPEND=">=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}]
68 virtual/glu
69 virtual/opengl
70 x11-libs/libX11:=
71 !media-tv/v4l2-ctl
72 !<media-tv/ivtv-utils-1.4.0-r2
73 abi_x86_32? (
74 !<=app-emulation/emul-linux-x86-medialibs-20130224-r5
75 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)]
76 )"
77 DEPEND="${RDEPEND}
78 sys-devel/gettext
79 virtual/os-headers
80 virtual/pkgconfig"
81
82 S=${WORKDIR}/${MY_P}
83
84 pkg_setup() {
85 CONFIG_CHECK="~SHMEM"
86 linux-info_pkg_setup
87 }
88
89 multilib_src_configure() {
90 ECONF_SOURCE=${S} \
91 econf \
92 --disable-static \
93 --disable-qv4l2 \
94 --disable-v4l-utils \
95 --with-udevdir="$(get_udevdir)"
96 }
97
98 multilib_src_compile() {
99 emake -C lib
100 }
101
102 multilib_src_install() {
103 emake -j1 -C lib DESTDIR="${D}" install
104 }
105
106 multilib_src_install_all() {
107 dodoc ChangeLog README.lib* TODO
108 prune_libtool_files --all
109 }