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.2.5.ebuild
Date: Fri, 02 Apr 2010 14:24:46
Message-Id: E1Nxhnd-0003bw-WC@stork.gentoo.org
1 maekke 10/04/02 14:24:41
2
3 Modified: ChangeLog
4 Added: lensfun-0.2.5.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc67/cvs/Linux i686)
8
9 Revision Changes Path
10 1.17 media-libs/lensfun/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lensfun/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lensfun/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lensfun/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 14 Feb 2010 10:29:06 -0000 1.16
23 +++ ChangeLog 2 Apr 2010 14:24:41 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/lensfun
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.16 2010/02/14 10:29:06 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.17 2010/04/02 14:24:41 maekke Exp $
29 +
30 +*lensfun-0.2.5 (02 Apr 2010)
31 +
32 + 02 Apr 2010; Markus Meier <maekke@g.o> +lensfun-0.2.5.ebuild:
33 + version bump
34
35 14 Feb 2010; Markus Meier <maekke@g.o> -lensfun-0.2.3.ebuild:
36 old
37
38
39
40 1.1 media-libs/lensfun/lensfun-0.2.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lensfun/lensfun-0.2.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/lensfun/lensfun-0.2.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: lensfun-0.2.5.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/lensfun-0.2.5.ebuild,v 1.1 2010/04/02 14:24:41 maekke Exp $
50
51 EAPI=2
52
53 DESCRIPTION="lensfun: A library for rectifying and simulating photographic lens
54 distortions"
55 HOMEPAGE="http://lensfun.berlios.de/"
56 SRC_URI="mirror://berlios/lensfun/${P}.tar.bz2"
57
58 LICENSE="LGPL-3"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
61 IUSE="debug doc"
62
63 RDEPEND="
64 >=dev-libs/glib-2.0
65 >=media-libs/libpng-1.0"
66 DEPEND="${RDEPEND}
67 doc? ( >=app-doc/doxygen-1.5.0 )"
68
69 src_prepare() {
70 # disable stripping, remove ricer CFLAGS
71 sed -i \
72 -e 's:-s -O3 -fomit-frame-pointer -funroll-loops::g' \
73 -e 's:GCC.LDFLAGS.release = -s:GCC.LDFLAGS.release =:g' \
74 build/tibs/compiler/gcc.mak || die
75 }
76
77 src_configure() {
78 local myconf=""
79 use debug && myconf="--mode=debug"
80 # econf does NOT work
81 ./configure --prefix=/usr ${myconf} || die
82 }
83
84 src_compile() {
85 emake all V=1 || die
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die
90 # TODO remove docs if ! use doc
91 }