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/fityk: ChangeLog fityk-0.8.7.ebuild
Date: Mon, 22 Jun 2009 18:29:14
Message-Id: E1MIoGV-0005XO-UX@stork.gentoo.org
1 bicatali 09/06/22 18:29:11
2
3 Modified: ChangeLog
4 Added: fityk-0.8.7.ebuild
5 Log:
6 Version bump, thanks Michelangelo Scopelliti bug #27468
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 sci-visualization/fityk/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fityk/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fityk/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fityk/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/fityk/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 22 Aug 2008 18:06:19 -0000 1.4
23 +++ ChangeLog 22 Jun 2009 18:29:11 -0000 1.5
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sci-visualization/fityk
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/fityk/ChangeLog,v 1.4 2008/08/22 18:06:19 bicatali Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/fityk/ChangeLog,v 1.5 2009/06/22 18:29:11 bicatali Exp $
30 +
31 +*fityk-0.8.7 (22 Jun 2009)
32 +
33 + 22 Jun 2009; Sébastien Fabbro <bicatali@g.o> +fityk-0.8.7.ebuild,
34 + +files/fityk-0.8.7-3rdparty.patch:
35 + Version bump, thanks Michelangelo Scopelliti bug #274683
36
37 22 Aug 2008; Sébastien Fabbro <bicatali@g.o>
38 -files/fityk-0.8.4-as-needed.patch, +files/fityk-0.8.6-3rdparty.patch,
39
40
41
42 1.1 sci-visualization/fityk/fityk-0.8.7.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fityk/fityk-0.8.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/fityk/fityk-0.8.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fityk-0.8.7.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/fityk/fityk-0.8.7.ebuild,v 1.1 2009/06/22 18:29:11 bicatali Exp $
52
53 EAPI="2"
54 WX_GTK_VER="2.8"
55
56 inherit eutils autotools wxwidgets
57
58 DESCRIPTION="General-purpose nonlinear curve fitting and data analysis"
59 HOMEPAGE="http://www.unipress.waw.pl/fityk/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="doc examples gnuplot readline wxwidgets"
67
68 DEPEND=">=sci-libs/xylib-0.4
69 readline? ( sys-libs/readline )
70 wxwidgets? ( x11-libs/wxGTK:2.8 )
71 dev-libs/boost"
72
73 RDEPEND="${DEPEND}
74 gnuplot? ( sci-visualization/gnuplot )"
75
76 src_prepare() {
77 # avoid building xylib when 3rdparty is disabled
78 epatch "${FILESDIR}"/${P}-3rdparty.patch
79 eautoreconf
80
81 has_version ">=dev-libs/boost-1.37" &&
82 sed -i 's:impl/directives.i:directives.h:' "${S}/src/optional_suffix.h"
83 }
84
85 src_configure() {
86 econf \
87 --disable-3rdparty \
88 $(use_enable wxwidgets GUI) \
89 $(use_with doc) \
90 $(use_with readline)
91 }
92
93 src_install() {
94 emake DESTDIR="${D}" install || die "emake install failed"
95 dodoc NEWS README TODO || die
96 rm -f samples/Makefile*
97 insinto /usr/share/doc/${PF}
98 use examples && doins -r samples
99 }