Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libdc1394: ChangeLog libdc1394-2.1.3.ebuild
Date: Sat, 30 Apr 2011 17:22:58
Message-Id: 20110430172248.2128520054@flycatcher.gentoo.org
1 jlec 11/04/30 17:22:48
2
3 Modified: ChangeLog
4 Added: libdc1394-2.1.3.ebuild
5 Log:
6 Non Maintainer version bump, Build without V4L1 support, #359735 & #363303
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.55 media-libs/libdc1394/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.55&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.55&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?r1=1.54&r2=1.55
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v
20 retrieving revision 1.54
21 retrieving revision 1.55
22 diff -u -r1.54 -r1.55
23 --- ChangeLog 21 Mar 2011 14:23:54 -0000 1.54
24 +++ ChangeLog 30 Apr 2011 17:22:47 -0000 1.55
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/libdc1394
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.54 2011/03/21 14:23:54 flameeyes Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.55 2011/04/30 17:22:47 jlec Exp $
30 +
31 +*libdc1394-2.1.3 (30 Apr 2011)
32 +
33 + 30 Apr 2011; Justin Lecher <jlec@g.o>
34 + +files/libdc1394-videodev.h.patch, +libdc1394-2.1.3.ebuild:
35 + Non Maintainer version bump, Build without V4L1 support, #359735 & #363303
36
37 21 Mar 2011; Diego E. Pettenò <flameeyes@g.o>
38 -files/libdc1394-1.2.1-nox11.patch, libdc1394-1.2.2.ebuild:
39
40
41
42 1.1 media-libs/libdc1394/libdc1394-2.1.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libdc1394-2.1.3.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.3.ebuild,v 1.1 2011/04/30 17:22:48 jlec Exp $
52
53 EAPI="4"
54
55 inherit autotools eutils
56
57 DESCRIPTION="Library to interface with IEEE 1394 cameras following the IIDC specification"
58 HOMEPAGE="http://sourceforge.net/projects/libdc1394/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="2"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="X doc"
65
66 RDEPEND="
67 >=sys-libs/libraw1394-1.2.0
68 X? ( x11-libs/libSM x11-libs/libXv )"
69 DEPEND="${RDEPEND}
70 doc? ( app-doc/doxygen )"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${PN}-videodev.h.patch
74 eautoreconf
75 }
76
77 src_compile() {
78 econf \
79 --program-suffix=2 \
80 $(use_with X x) \
81 $(use_enable doc doxygen-html)
82 }
83
84 src_compile() {
85 default
86 if use doc ; then
87 emake doc
88 fi
89 }
90
91 src_install() {
92 default
93 use doc && dohtml doc/html/*
94 }