Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/lensfun: ChangeLog lensfun-0.2.6.ebuild
Date: Mon, 02 Jul 2012 16:15:20
Message-Id: 20120702161501.043F52004C@flycatcher.gentoo.org
1 ssuominen 12/07/02 16:15:01
2
3 Modified: ChangeLog
4 Added: lensfun-0.2.6.ebuild
5 Log:
6 Version bump. tidy
7
8 (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.44 media-libs/lensfun/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 29 May 2012 16:39:52 -0000 1.43
24 +++ ChangeLog 2 Jul 2012 16:15:00 -0000 1.44
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/lensfun
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.43 2012/05/29 16:39:52 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.44 2012/07/02 16:15:00 ssuominen Exp $
30 +
31 +*lensfun-0.2.6 (02 Jul 2012)
32 +
33 + 02 Jul 2012; Samuli Suominen <ssuominen@g.o> +lensfun-0.2.6.ebuild,
34 + +files/lensfun-0.2.6-auxfun.patch:
35 + Version bump.
36
37 29 May 2012; Alexis Ballier <aballier@g.o>
38 lensfun-0.2.5_p153-r1.ebuild:
39
40
41
42 1.1 media-libs/lensfun/lensfun-0.2.6.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/lensfun-0.2.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/lensfun-0.2.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lensfun-0.2.6.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/lensfun-0.2.6.ebuild,v 1.1 2012/07/02 16:15:00 ssuominen Exp $
52
53 EAPI=4
54
55 PYTHON_DEPEND="2:2.6"
56
57 inherit cmake-utils multilib python
58
59 DESCRIPTION="lensfun: A library for rectifying and simulating photographic lens distortions"
60 HOMEPAGE="http://lensfun.berlios.de/"
61 SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
62
63 LICENSE="LGPL-3 CCPL-Attribution-ShareAlike-3.0" # See README for reasoning.
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd"
66 IUSE="doc sse sse2"
67
68 RDEPEND=">=dev-libs/glib-2.28
69 media-libs/libpng:0
70 sys-libs/zlib"
71 DEPEND="${RDEPEND}
72 doc? ( app-doc/doxygen )"
73
74 PATCHES=(
75 "${FILESDIR}"/${P}-auxfun.patch
76 "${FILESDIR}"/${PN}-0.2.5_p153-build.patch
77 "${FILESDIR}"/${PN}-0.2.5_p153-pc.patch
78 )
79
80 DOCS=( README docs/mounts.txt )
81
82 pkg_setup() {
83 python_set_active_version 2
84 python_pkg_setup
85 }
86
87 src_configure() {
88 local mycmakeargs=(
89 -DDOCDIR=/usr/share/doc/${PF}/html
90 -DLIBDIR=$(get_libdir)
91 -DBUILD_AUXFUN=ON
92 $(cmake-utils_use_build doc)
93 $(cmake-utils_use_build sse FOR_SSE)
94 $(cmake-utils_use_build sse2 FOR_SSE2)
95 -DBUILD_STATIC=OFF
96 -DBUILD_TESTS=OFF
97 )
98
99 cmake-utils_src_configure
100 }