Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/gwyddion: ChangeLog gwyddion-2.10.ebuild
Date: Wed, 03 Dec 2008 12:13:57
Message-Id: E1L7qc6-0008C4-Nn@stork.gentoo.org
1 bicatali 08/12/03 12:13:54
2
3 Modified: ChangeLog gwyddion-2.10.ebuild
4 Log:
5 Added --enable-library-bloat, necessary for as-needed
6 (Portage version: 2.2_rc16/cvs/Linux 2.6.25-gentoo-r7 x86_64)
7
8 Revision Changes Path
9 1.14 sci-visualization/gwyddion/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.14&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.14&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/ChangeLog?r1=1.13&r2=1.14
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v
18 retrieving revision 1.13
19 retrieving revision 1.14
20 diff -u -r1.13 -r1.14
21 --- ChangeLog 4 Aug 2008 13:49:50 -0000 1.13
22 +++ ChangeLog 3 Dec 2008 12:13:54 -0000 1.14
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sci-visualization/gwyddion
25 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.13 2008/08/04 13:49:50 markusle Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.14 2008/12/03 12:13:54 bicatali Exp $
28 +
29 + 03 Dec 2008; Sébastien Fabbro <bicatali@g.o> gwyddion-2.10.ebuild:
30 + Added --enable-library-bloat, necessary for as-needed
31
32 *gwyddion-2.10 (04 Aug 2008)
33
34
35
36
37 1.2 sci-visualization/gwyddion/gwyddion-2.10.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild?r1=1.1&r2=1.2
42
43 Index: gwyddion-2.10.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- gwyddion-2.10.ebuild 4 Aug 2008 13:49:50 -0000 1.1
50 +++ gwyddion-2.10.ebuild 3 Dec 2008 12:13:54 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild,v 1.1 2008/08/04 13:49:50 markusle Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild,v 1.2 2008/12/03 12:13:54 bicatali Exp $
56
57 DESCRIPTION="A software framework for SPM data analysis"
58 HOMEPAGE="http://gwyddion.net/"
59 @@ -30,14 +30,14 @@
60 $(use_enable perl) \
61 $(use_enable ruby) \
62 $(use_enable nls) \
63 - $(use_with fftw fftw3 ) \
64 - $(use_with tiff ) \
65 + $(use_with fftw fftw3) \
66 + $(use_with tiff) \
67 --disable-desktop-file-update \
68 - || die "econf failed."
69 + --enable-library-bloat
70 emake || die "emake failed."
71 }
72
73 src_install() {
74 - make DESTDIR="${D}" install || die "make install failed."
75 + emake DESTDIR="${D}" install || die "emake install failed"
76 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
77 }