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: gwyddion-2.29.ebuild ChangeLog gwyddion-2.27.ebuild
Date: Wed, 01 Aug 2012 22:34:40
Message-Id: 20120801223025.A27ED2004B@flycatcher.gentoo.org
1 bicatali 12/08/01 22:30:25
2
3 Modified: ChangeLog
4 Added: gwyddion-2.29.ebuild
5 Removed: gwyddion-2.27.ebuild
6 Log:
7 Version bump
8
9 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.38 sci-visualization/gwyddion/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.38&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?rev=1.38&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/ChangeLog?r1=1.37&r2=1.38
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v
21 retrieving revision 1.37
22 retrieving revision 1.38
23 diff -u -r1.37 -r1.38
24 --- ChangeLog 6 Jun 2012 18:51:55 -0000 1.37
25 +++ ChangeLog 1 Aug 2012 22:30:25 -0000 1.38
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-visualization/gwyddion
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.37 2012/06/06 18:51:55 bicatali Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.38 2012/08/01 22:30:25 bicatali Exp $
31 +
32 +*gwyddion-2.29 (01 Aug 2012)
33 +
34 + 01 Aug 2012; Sébastien Fabbro <bicatali@g.o> +gwyddion-2.29.ebuild,
35 + -gwyddion-2.27.ebuild:
36 + Version bump
37
38 *gwyddion-2.28 (06 Jun 2012)
39
40 @@ -175,4 +181,3 @@
41 +gwyddion-1.12.ebuild:
42 Initial import of ebuild, thanks to Aaron Rubinstein <mrodenstein@×××.de>
43 for the original ebuild, closes bug 54327.
44 -
45
46
47
48 1.1 sci-visualization/gwyddion/gwyddion-2.29.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.29.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.29.ebuild?rev=1.1&content-type=text/plain
52
53 Index: gwyddion-2.29.ebuild
54 ===================================================================
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.29.ebuild,v 1.1 2012/08/01 22:30:25 bicatali Exp $
58
59 EAPI=4
60
61 PYTHON_DEPEND="python? 2"
62 AUTOTOOLS_IN_SOURCE_BUILD=1
63
64 inherit eutils fdo-mime gnome2-utils python autotools-utils
65
66 DESCRIPTION="Framework for Scanning Mode Microscopy data analysis"
67 HOMEPAGE="http://gwyddion.net/"
68 SRC_URI="http://gwyddion.net/download/${PV}/${P}.tar.xz"
69
70 LICENSE="GPL-2"
71 SLOT="0"
72 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
73 IUSE="doc fftw gnome kde nls opengl perl python ruby sourceview xml X"
74
75 RDEPEND="media-libs/libpng
76 x11-libs/cairo
77 x11-libs/gtk+:2
78 x11-libs/libXmu
79 x11-libs/pango
80 fftw? ( >=sci-libs/fftw-3 )
81 gnome? ( gnome-base/gconf:2 )
82 kde? ( >=kde-base/kdelibs-4 )
83 opengl? ( virtual/opengl x11-libs/gtkglext )
84 perl? ( dev-lang/perl )
85 python? ( dev-python/pygtk:2 )
86 ruby? ( dev-ruby/narray )
87 sourceview? ( x11-libs/gtksourceview:2.0 )
88 xml? ( dev-libs/libxml2:2 )"
89
90 DEPEND="${RDEPEND}
91 virtual/pkgconfig
92 doc? ( dev-util/gtk-doc )"
93
94 pkg_setup() {
95 use python && python_set_active_version 2
96 }
97
98 src_prepare() {
99 epatch "${FILESDIR}"/${PN}-2.25-libpng15.patch
100 }
101
102 src_configure() {
103 local myeconfargs+=(
104 --disable-rpath
105 $(use_enable doc gtk-doc)
106 $(use_enable nls)
107 $(use_enable python pygwy)
108 $(use_with perl)
109 $(use_with python)
110 $(use_with ruby)
111 $(use_with fftw fftw3)
112 $(use_with opengl gl) \
113 $(use_with sourceview gtksourceview)
114 $(use_with xml libxml2)
115 $(use_with X x)
116 $(use_with kde kde4-thumbnailer)
117 )
118 autotools-utils_src_configure
119 }
120
121 src_install() {
122 autotools-utils_src_install
123 use python && dodoc modules/pygwy/README.pygwy
124 }
125
126 pkg_postinst() {
127 use gnome && gnome2_gconf_install
128 fdo-mime_desktop_database_update
129 }
130
131 pkg_prerm() {
132 use gnome && gnome2_gconf_uninstall
133 }
134
135 pkg_postrm() {
136 fdo-mime_desktop_database_update
137 }