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 sys-libs/libraw1394: ChangeLog libraw1394-1.3.0_p20080114.ebuild
Date: Thu, 24 Jan 2008 11:44:58
Message-Id: E1JI0Vr-0002eW-B7@stork.gentoo.org
1 stefaan 08/01/24 11:44:55
2
3 Modified: ChangeLog
4 Added: libraw1394-1.3.0_p20080114.ebuild
5 Log:
6 Add cvs-pulled version with possibility to support new firewire stack in linux (called juju) (fixes bug #205829)
7 (Portage version: 2.1.4)
8
9 Revision Changes Path
10 1.45 sys-libs/libraw1394/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libraw1394/ChangeLog?rev=1.45&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libraw1394/ChangeLog?rev=1.45&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libraw1394/ChangeLog?r1=1.44&r2=1.45
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/ChangeLog,v
19 retrieving revision 1.44
20 retrieving revision 1.45
21 diff -u -r1.44 -r1.45
22 --- ChangeLog 23 Jun 2007 02:24:36 -0000 1.44
23 +++ ChangeLog 24 Jan 2008 11:44:54 -0000 1.45
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-libs/libraw1394
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/ChangeLog,v 1.44 2007/06/23 02:24:36 dsd Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/ChangeLog,v 1.45 2008/01/24 11:44:54 stefaan Exp $
30 +
31 +*libraw1394-1.3.0_p20080114 (24 Jan 2008)
32 +
33 + 24 Jan 2008; Stefaan De Roeck <stefaan@g.o>
34 + +libraw1394-1.3.0_p20080114.ebuild:
35 + Add cvs-pulled version with possibility to support new firewire stack in
36 + linux (called juju) (fixes bug #205829)
37
38 23 Jun 2007; Daniel Drake <dsd@g.o> libraw1394-1.2.0.ebuild,
39 libraw1394-1.2.1.ebuild:
40
41
42
43 1.1 sys-libs/libraw1394/libraw1394-1.3.0_p20080114.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libraw1394/libraw1394-1.3.0_p20080114.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libraw1394/libraw1394-1.3.0_p20080114.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libraw1394-1.3.0_p20080114.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libraw1394/libraw1394-1.3.0_p20080114.ebuild,v 1.1 2008/01/24 11:44:54 stefaan Exp $
53
54 inherit autotools
55
56 DESCRIPTION="library that provides direct access to the IEEE 1394 bus"
57 HOMEPAGE="http://www.linux1394.org/"
58 SRC_URI="mirrors://${P}.tar.gz"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
63 IUSE="juju"
64
65 DEPEND=""
66
67 src_unpack() {
68 unpack ${A}
69 cd "${S}"
70
71 eautoreconf
72 }
73
74 src_compile() {
75 local myconf=""
76 if use juju; then
77 myconf="--with-juju-dir"
78 fi
79
80 econf \
81 ${myconf} \
82 || die "econf failed"
83 emake || die "emake failed"
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die "install failed"
88 dodoc AUTHORS ChangeLog NEWS README
89 }
90
91
92
93
94 --
95 gentoo-commits@l.g.o mailing list