Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/lensfun: ChangeLog lensfun-0.3.0.ebuild
Date: Sat, 04 Oct 2014 10:13:29
Message-Id: 20141004101325.843A16EC9@oystercatcher.gentoo.org
1 maekke 14/10/04 10:13:25
2
3 Modified: ChangeLog
4 Added: lensfun-0.3.0.ebuild
5 Log:
6 version bump by Soren Harward in bug #524224
7
8 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 072AD062)
9
10 Revision Changes Path
11 1.76 media-libs/lensfun/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?rev=1.76&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?rev=1.76&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?r1=1.75&r2=1.76
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v
20 retrieving revision 1.75
21 retrieving revision 1.76
22 diff -u -r1.75 -r1.76
23 --- ChangeLog 14 Sep 2014 09:05:46 -0000 1.75
24 +++ ChangeLog 4 Oct 2014 10:13:25 -0000 1.76
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/lensfun
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.75 2014/09/14 09:05:46 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.76 2014/10/04 10:13:25 maekke Exp $
30 +
31 +*lensfun-0.3.0 (04 Oct 2014)
32 +
33 + 04 Oct 2014; Markus Meier <maekke@g.o> +lensfun-0.3.0.ebuild:
34 + version bump by Soren Harward in bug #524224
35
36 14 Sep 2014; Markus Meier <maekke@g.o> lensfun-0.2.8-r1.ebuild,
37 +files/lensfun-0.2.8-support-clang-visibility-as-gcc.patch:
38
39
40
41 1.1 media-libs/lensfun/lensfun-0.3.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/lensfun-0.3.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/lensfun-0.3.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lensfun-0.3.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/lensfun-0.3.0.ebuild,v 1.1 2014/10/04 10:13:25 maekke Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_7 )
55
56 inherit multilib python-single-r1 cmake-utils
57
58 DESCRIPTION="lensfun: A library for rectifying and simulating photographic lens distortions"
59 HOMEPAGE="http://lensfun.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 LICENSE="LGPL-3 CC-BY-SA-3.0" # See README for reasoning.
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
65 IUSE="doc sse sse2"
66
67 RDEPEND=">=dev-libs/glib-2.28
68 media-libs/libpng:0=
69 sys-libs/zlib:="
70 DEPEND="${RDEPEND}
71 doc? ( app-doc/doxygen )"
72
73 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
74
75 DOCS=( README docs/mounts.txt ChangeLog )
76
77 src_configure() {
78 local mycmakeargs=(
79 -DDOCDIR="${EPREFIX}"/usr/share/doc/${PF}/html
80 -DLIBDIR="${EPREFIX}"/usr/$(get_libdir)
81 -DBUILD_AUXFUN=ON
82 $(cmake-utils_use_build doc)
83 $(cmake-utils_use_build sse FOR_SSE)
84 $(cmake-utils_use_build sse2 FOR_SSE2)
85 -DBUILD_STATIC=OFF
86 -DBUILD_TESTS=OFF
87 )
88
89 cmake-utils_src_configure
90 }