Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/gwyddion: ChangeLog gwyddion-2.10.ebuild
Date: Mon, 04 Aug 2008 13:49:53
Message-Id: E1KQ0Ra-00031e-KU@stork.gentoo.org
1 markusle 08/08/04 13:49:50
2
3 Modified: ChangeLog
4 Added: gwyddion-2.10.ebuild
5 Log:
6 Version bump (fixes bug #233355).
7 (Portage version: 2.2_rc5/cvs/Linux 2.6.26-SENTINEL-1 i686)
8
9 Revision Changes Path
10 1.13 sci-visualization/gwyddion/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 21 Apr 2008 16:09:51 -0000 1.12
23 +++ ChangeLog 4 Aug 2008 13:49:50 -0000 1.13
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-visualization/gwyddion
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.12 2008/04/21 16:09:51 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.13 2008/08/04 13:49:50 markusle Exp $
29 +
30 +*gwyddion-2.10 (04 Aug 2008)
31 +
32 + 04 Aug 2008; Markus Dittrich <markusle@g.o> +gwyddion-2.10.ebuild:
33 + Version bump (fixes bug #233355).
34
35 21 Apr 2008; Sébastien Fabbro <bicatali@g.o> gwyddion-2.5.ebuild,
36 gwyddion-2.9.ebuild:
37
38
39
40 1.1 sci-visualization/gwyddion/gwyddion-2.10.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gwyddion-2.10.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.10.ebuild,v 1.1 2008/08/04 13:49:50 markusle Exp $
50
51 DESCRIPTION="A software framework for SPM data analysis"
52 HOMEPAGE="http://gwyddion.net/"
53 SRC_URI="http://gwyddion.net/download/${PV}/${P}.tar.bz2"
54
55 LICENSE="GPL-2"
56 SLOT="0"
57 KEYWORDS="~amd64 ~x86"
58 IUSE="python perl ruby nls tiff fftw"
59
60 RDEPEND="virtual/opengl
61 python? ( virtual/python )
62 perl? ( dev-lang/perl )
63 ruby? ( virtual/ruby )
64 tiff? ( media-libs/tiff )
65 fftw? ( >=sci-libs/fftw-3 )
66 >=x11-libs/gtk+-2.8
67 x11-libs/pango
68 x11-libs/cairo
69 x11-libs/gtkglext"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 src_compile() {
74 econf \
75 $(use_enable python) \
76 $(use_enable perl) \
77 $(use_enable ruby) \
78 $(use_enable nls) \
79 $(use_with fftw fftw3 ) \
80 $(use_with tiff ) \
81 --disable-desktop-file-update \
82 || die "econf failed."
83 emake || die "emake failed."
84 }
85
86 src_install() {
87 make DESTDIR="${D}" install || die "make install failed."
88 dodoc AUTHORS ChangeLog NEWS README THANKS TODO
89 }