Gentoo Archives: gentoo-commits

From: "Stefaan De Roeck (stefaan)" <stefaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libdc1394: ChangeLog libdc1394-2.1.2.ebuild
Date: Sun, 23 Aug 2009 12:56:47
Message-Id: E1MfCcn-0002yn-FG@stork.gentoo.org
1 stefaan 09/08/23 12:56:45
2
3 Modified: ChangeLog
4 Added: libdc1394-2.1.2.ebuild
5 Log:
6 Version bump to 2.1.2, as per bug #282249
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.42 media-libs/libdc1394/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.42&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.42&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/ChangeLog?r1=1.41&r2=1.42
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v
19 retrieving revision 1.41
20 retrieving revision 1.42
21 diff -u -r1.41 -r1.42
22 --- ChangeLog 17 Jun 2009 22:07:22 -0000 1.41
23 +++ ChangeLog 23 Aug 2009 12:56:45 -0000 1.42
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libdc1394
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.41 2009/06/17 22:07:22 stefaan Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.42 2009/08/23 12:56:45 stefaan Exp $
29 +
30 +*libdc1394-2.1.2 (23 Aug 2009)
31 +
32 + 23 Aug 2009; Stefaan De Roeck <stefaan@g.o>
33 + +libdc1394-2.1.2.ebuild:
34 + Version bump to 2.1.2, as per bug #282249
35
36 *libdc1394-2.1.0 (17 Jun 2009)
37
38
39
40
41 1.1 media-libs/libdc1394/libdc1394-2.1.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/libdc1394-2.1.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libdc1394-2.1.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 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.2.ebuild,v 1.1 2009/08/23 12:56:45 stefaan Exp $
51
52 inherit eutils
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="X doc"
62
63 RDEPEND=">=sys-libs/libraw1394-1.2.0
64 X? ( x11-libs/libSM x11-libs/libXv )"
65 DEPEND="${RDEPEND}
66 doc? ( app-doc/doxygen )"
67
68 src_compile() {
69 local myconf=""
70
71 econf \
72 --program-suffix=2 \
73 $(use_with X x) \
74 $(use_enable doc doxygen-html) \
75 ${myconf} \
76 || die "econf failed"
77 emake || die "emake failed"
78 if use doc ; then
79 emake doc || die "emake doc failed"
80 fi
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "install failed"
85 dodoc NEWS README AUTHORS ChangeLog
86 use doc && dohtml doc/html/*
87 }