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/libiec61883: ChangeLog libiec61883-1.2.0-r1.ebuild
Date: Thu, 01 Aug 2013 17:41:01
Message-Id: 20130801174057.C738A2171C@flycatcher.gentoo.org
1 aballier 13/08/01 17:40:57
2
3 Modified: ChangeLog
4 Added: libiec61883-1.2.0-r1.ebuild
5 Log:
6 Convert to multlib and stack it for medialibs -r8. Greatly based on the ebuild by Karl Lindén in bug #468940.
7
8 (Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.36 media-libs/libiec61883/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libiec61883/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libiec61883/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libiec61883/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libiec61883/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 21 Jul 2013 15:58:38 -0000 1.35
24 +++ ChangeLog 1 Aug 2013 17:40:57 -0000 1.36
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/libiec61883
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/ChangeLog,v 1.35 2013/07/21 15:58:38 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/ChangeLog,v 1.36 2013/08/01 17:40:57 aballier Exp $
30 +
31 +*libiec61883-1.2.0-r1 (01 Aug 2013)
32 +
33 + 01 Aug 2013; Alexis Ballier <aballier@g.o>
34 + +libiec61883-1.2.0-r1.ebuild:
35 + Convert to multlib and stack it for medialibs -r8. Greatly based on the
36 + ebuild by Karl Lindén in bug #468940.
37
38 21 Jul 2013; Agostino Sarubbo <ago@g.o> libiec61883-1.2.0.ebuild:
39 Stable for ia64, wrt bug #473302
40
41
42
43 1.1 media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libiec61883-1.2.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libiec61883/libiec61883-1.2.0-r1.ebuild,v 1.1 2013/08/01 17:40:57 aballier Exp $
53
54 EAPI=5
55
56 inherit autotools-multilib eutils unpacker autotools
57
58 DESCRIPTION="Library for capturing video (dv or mpeg2) over the IEEE 1394 bus"
59 HOMEPAGE="http://dennedy.org/cgi-bin/gitweb.cgi?p=dennedy.org/libiec61883.git"
60 SRC_URI="mirror://kernel/linux/libs/ieee1394/${P}.tar.xz"
61
62 LICENSE="|| ( LGPL-2.1 GPL-2 )"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="examples static-libs"
66
67 RDEPEND=">=sys-libs/libraw1394-1.2.1-r1[${MULTILIB_USEDEP}]
68 abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r7
69 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )"
70 DEPEND="${RDEPEND}
71 virtual/pkgconfig"
72
73 src_prepare() {
74 if use examples; then
75 sed -i -e "s:noinst_PROGRAMS.*:noinst_PROGRAMS = :g" \
76 -e "s:in_PROGRAMS.*:in_PROGRAMS = plugreport plugctl test-amdtp test-dv test-mpeg2 test-plugs:g" \
77 examples/Makefile.am || die "noinst patching failed"
78 AUTOTOOLS_AUTORECONF="1"
79 fi
80 autotools-multilib_src_prepare
81 }