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: libdc1394-2.0.3.ebuild ChangeLog
Date: Sat, 31 Jan 2009 10:55:01
Message-Id: E1LTDV4-0004nG-Tv@stork.gentoo.org
1 stefaan 09/01/31 10:54:58
2
3 Modified: ChangeLog
4 Added: libdc1394-2.0.3.ebuild
5 Log:
6 Bumping to 2.0.3, fixing bug #256428
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.39 media-libs/libdc1394/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.39&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.39&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/ChangeLog?r1=1.38&r2=1.39
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v
19 retrieving revision 1.38
20 retrieving revision 1.39
21 diff -u -r1.38 -r1.39
22 --- ChangeLog 31 Jan 2009 10:36:45 -0000 1.38
23 +++ ChangeLog 31 Jan 2009 10:54:58 -0000 1.39
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libdc1394
26 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.38 2009/01/31 10:36:45 stefaan Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.39 2009/01/31 10:54:58 stefaan Exp $
29 +
30 +*libdc1394-2.0.3 (31 Jan 2009)
31 +
32 + 31 Jan 2009; Stefaan De Roeck <stefaan@g.o>
33 + +libdc1394-2.0.3.ebuild:
34 + Bumping to 2.0.3, fixing bug #256428
35
36 *libdc1394-1.2.2 (31 Jan 2009)
37
38
39
40
41 1.1 media-libs/libdc1394/libdc1394-2.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/libdc1394-2.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdc1394/libdc1394-2.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libdc1394-2.0.3.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.0.3.ebuild,v 1.1 2009/01/31 10:54:58 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 juju"
62
63 RDEPEND=">=sys-libs/libraw1394-1.2.0
64 juju? ( >=sys-kernel/linux-headers-2.6.23-r3 )
65 X? ( x11-libs/libSM x11-libs/libXv )"
66 DEPEND="${RDEPEND}
67 doc? ( app-doc/doxygen )"
68
69 src_compile() {
70 local myconf=""
71 if use juju; then
72 myconf="--with-juju-dir"
73 fi
74
75 econf \
76 --program-suffix=2 \
77 $(use_with X x) \
78 $(use_enable doc doxygen-html) \
79 ${myconf} \
80 || die "econf failed"
81 emake || die "emake failed"
82 if use doc ; then
83 emake doc || die "emake doc failed"
84 fi
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "install failed"
89 dodoc NEWS README AUTHORS ChangeLog
90 use doc && dohtml doc/html/*
91 }