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/libdc1394: ChangeLog libdc1394-2.1.4.ebuild
Date: Fri, 02 Dec 2011 13:23:29
Message-Id: 20111202132319.9A2982004B@flycatcher.gentoo.org
1 aballier 11/12/02 13:23:19
2
3 Modified: ChangeLog
4 Added: libdc1394-2.1.4.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.68 media-libs/libdc1394/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.68&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.68&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?r1=1.67&r2=1.68
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v
20 retrieving revision 1.67
21 retrieving revision 1.68
22 diff -u -r1.67 -r1.68
23 --- ChangeLog 23 Oct 2011 17:35:21 -0000 1.67
24 +++ ChangeLog 2 Dec 2011 13:23:19 -0000 1.68
25 @@ -1,6 +1,11 @@
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.67 2011/10/23 17:35:21 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.68 2011/12/02 13:23:19 aballier Exp $
30 +
31 +*libdc1394-2.1.4 (02 Dec 2011)
32 +
33 + 02 Dec 2011; Alexis Ballier <aballier@g.o> +libdc1394-2.1.4.ebuild:
34 + version bump
35
36 23 Oct 2011; Samuli Suominen <ssuominen@g.o> -libdc1394-2.1.2.ebuild:
37 old
38
39
40
41 1.1 media-libs/libdc1394/libdc1394-2.1.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libdc1394-2.1.4.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.4.ebuild,v 1.1 2011/12/02 13:23:19 aballier Exp $
51
52 EAPI=4
53
54 DESCRIPTION="Library to interface with IEEE 1394 cameras following the IIDC specification"
55 HOMEPAGE="http://sourceforge.net/projects/libdc1394/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
57
58 LICENSE="LGPL-2.1"
59 SLOT="2"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="doc static-libs X"
62
63 RDEPEND=">=sys-libs/libraw1394-1.2.0
64 virtual/libusb:1
65 X? ( x11-libs/libSM x11-libs/libXv )"
66 DEPEND="${RDEPEND}
67 dev-util/pkgconfig
68 doc? ( app-doc/doxygen )"
69
70 src_configure() {
71 econf \
72 $(use_enable static-libs static) \
73 --program-suffix=2 \
74 $(use_with X x) \
75 $(use_enable doc doxygen-html)
76 }
77
78 src_compile() {
79 default
80 use doc && emake doc
81 }
82
83 src_install() {
84 default
85 use doc && dohtml doc/html/*
86 find "${ED}" -name '*.la' -exec rm -f {} +
87 }