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.2.3.ebuild
Date: Wed, 03 Dec 2014 17:13:40
Message-Id: 20141203171336.3C56FB793@oystercatcher.gentoo.org
1 aballier 14/12/03 17:13:36
2
3 Modified: ChangeLog
4 Added: libdc1394-2.2.3.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: aballier@g.o
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.85 media-libs/libdc1394/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.85&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?rev=1.85&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/ChangeLog?r1=1.84&r2=1.85
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v
21 retrieving revision 1.84
22 retrieving revision 1.85
23 diff -u -r1.84 -r1.85
24 --- ChangeLog 10 Aug 2014 09:30:29 -0000 1.84
25 +++ ChangeLog 3 Dec 2014 17:13:36 -0000 1.85
26 @@ -1,6 +1,11 @@
27 # ChangeLog for media-libs/libdc1394
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.84 2014/08/10 09:30:29 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdc1394/ChangeLog,v 1.85 2014/12/03 17:13:36 aballier Exp $
31 +
32 +*libdc1394-2.2.3 (03 Dec 2014)
33 +
34 + 03 Dec 2014; Alexis Ballier <aballier@g.o> +libdc1394-2.2.3.ebuild:
35 + version bump
36
37 10 Aug 2014; Agostino Sarubbo <ago@g.o> libdc1394-2.2.1.ebuild:
38 Stable for sparc, wrt bug #515234
39
40
41
42 1.1 media-libs/libdc1394/libdc1394-2.2.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdc1394/libdc1394-2.2.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libdc1394-2.2.3.ebuild
48 ===================================================================
49 # Copyright 1999-2014 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.2.3.ebuild,v 1.1 2014/12/03 17:13:36 aballier Exp $
52
53 EAPI=5
54
55 inherit autotools eutils multilib-minimal
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 http://dev.gentoo.org/~ssuominen/sdl.m4-20140620.tar.xz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="2"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="doc static-libs X"
66
67 RDEPEND=">=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}]
68 >=virtual/libusb-1-r1:1[${MULTILIB_USEDEP}]"
69 DEPEND="${RDEPEND}
70 virtual/pkgconfig
71 doc? ( app-doc/doxygen )"
72
73 src_prepare() {
74 epatch \
75 "${FILESDIR}"/${PN}-2.2.1-pthread.patch
76
77 AT_M4DIR=${WORKDIR}/aclocal eautoreconf
78 }
79
80 multilib_src_configure() {
81 local myconf="$(use_enable doc doxygen-html)"
82 multilib_is_native_abi || myconf="--disable-doxygen-html --disable-examples"
83
84 # X is only useful for examples that are not installed.
85 ECONF_SOURCE="${S}" econf \
86 $(use_enable static-libs static) \
87 --program-suffix=2 \
88 --without-x \
89 ${myconf}
90 }
91
92 multilib_src_compile() {
93 default
94 multilib_is_native_abi && use doc && emake doc
95 }
96
97 multilib_src_install() {
98 default
99 multilib_is_native_abi && use doc && dohtml doc/html/*
100 find "${ED}" -name '*.la' -exec rm -f {} +
101 }