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: lensfun-0.3.1.ebuild ChangeLog
Date: Sun, 28 Jun 2015 08:59:41
Message-Id: 20150628085928.3DEA6737@oystercatcher.gentoo.org
1 maekke 15/06/28 08:59:28
2
3 Modified: ChangeLog
4 Added: lensfun-0.3.1.ebuild
5 Log:
6 version bump by Vadim Efimov in bug #550270
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 072AD062)
9
10 Revision Changes Path
11 1.95 media-libs/lensfun/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?rev=1.95&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?rev=1.95&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/ChangeLog?r1=1.94&r2=1.95
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v
20 retrieving revision 1.94
21 retrieving revision 1.95
22 diff -u -r1.94 -r1.95
23 --- ChangeLog 19 Jun 2015 17:11:11 -0000 1.94
24 +++ ChangeLog 28 Jun 2015 08:59:28 -0000 1.95
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/lensfun
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.94 2015/06/19 17:11:11 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.95 2015/06/28 08:59:28 maekke Exp $
30 +
31 +*lensfun-0.3.1 (28 Jun 2015)
32 +
33 + 28 Jun 2015; Markus Meier <maekke@g.o> +lensfun-0.3.1.ebuild:
34 + version bump by Vadim Efimov in bug #550270
35
36 19 Jun 2015; Markus Meier <maekke@g.o> lensfun-0.3.0.ebuild:
37 arm stable, bug #549902
38
39
40
41 1.1 media-libs/lensfun/lensfun-0.3.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/lensfun-0.3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/lensfun/lensfun-0.3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lensfun-0.3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.1.ebuild,v 1.1 2015/06/28 08:59:28 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.gz"
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 cpu_flags_x86_sse cpu_flags_x86_sse2 test"
66
67 RDEPEND=">=dev-libs/glib-2.28
68 media-libs/libpng:0=
69 sys-libs/zlib:="
70 DEPEND="${RDEPEND}
71 doc? (
72 app-doc/doxygen
73 dev-python/docutils
74 )"
75
76 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
77
78 DOCS=( README docs/mounts.txt ChangeLog )
79
80 src_configure() {
81 local mycmakeargs=(
82 -DDOCDIR="${EPREFIX}"/usr/share/doc/${PF}/html
83 -DLIBDIR="${EPREFIX}"/usr/$(get_libdir)
84 -DBUILD_AUXFUN=ON
85 $(cmake-utils_use_build doc)
86 $(cmake-utils_use_build cpu_flags_x86_sse FOR_SSE)
87 $(cmake-utils_use_build cpu_flags_x86_sse2 FOR_SSE2)
88 $(cmake-utils_use_build test TESTS)
89 -DBUILD_STATIC=OFF
90 )
91
92 cmake-utils_src_configure
93 }