diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-04-12 17:05:45 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-04-12 17:05:45 +0000 |
commit | c6fcda8c6b8c68e94750b73466a2e1e3550f75a4 (patch) | |
tree | a3d05c7e8fef80beb93efb539d1199f2379cb18e /sci-visualization | |
parent | x86 stable wrt bug #305761 (diff) | |
download | gentoo-2-c6fcda8c6b8c68e94750b73466a2e1e3550f75a4.tar.gz gentoo-2-c6fcda8c6b8c68e94750b73466a2e1e3550f75a4.tar.bz2 gentoo-2-c6fcda8c6b8c68e94750b73466a2e1e3550f75a4.zip |
Version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/fityk/ChangeLog | 7 | ||||
-rw-r--r-- | sci-visualization/fityk/fityk-0.9.1.ebuild | 57 |
2 files changed, 63 insertions, 1 deletions
diff --git a/sci-visualization/fityk/ChangeLog b/sci-visualization/fityk/ChangeLog index 2ec4248601b9..22bb4b75084e 100644 --- a/sci-visualization/fityk/ChangeLog +++ b/sci-visualization/fityk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-visualization/fityk # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/fityk/ChangeLog,v 1.9 2010/01/06 03:15:22 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/fityk/ChangeLog,v 1.10 2010/04/12 17:05:45 bicatali Exp $ + +*fityk-0.9.1 (12 Apr 2010) + + 12 Apr 2010; Sébastien Fabbro <bicatali@gentoo.org> +fityk-0.9.1.ebuild: + Version bump *fityk-0.9.0 (06 Jan 2010) diff --git a/sci-visualization/fityk/fityk-0.9.1.ebuild b/sci-visualization/fityk/fityk-0.9.1.ebuild new file mode 100644 index 000000000000..d70d0ba3f220 --- /dev/null +++ b/sci-visualization/fityk/fityk-0.9.1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/fityk/fityk-0.9.1.ebuild,v 1.1 2010/04/12 17:05:45 bicatali Exp $ + +EAPI=2 +WX_GTK_VER="2.8" + +inherit eutils wxwidgets + +DESCRIPTION="General-purpose nonlinear curve fitting and data analysis" +HOMEPAGE="http://www.unipress.waw.pl/fityk/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples gnuplot lua python readline wxwidgets" + +CDEPEND=">=sci-libs/xylib-0.5 + lua? ( dev-lang/lua ) + python? ( dev-lang/python ) + readline? ( sys-libs/readline ) + wxwidgets? ( x11-libs/wxGTK:2.8 )" + +DEPEND="${CDEPEND} + dev-libs/boost + >=sys-devel/libtool-2.2" + +RDEPEND="${CDEPEND} + gnuplot? ( sci-visualization/gnuplot )" + +src_prepare() { + has_version "<dev-libs/boost-1.37" && \ + sed -i -e 's:impl/directives.hpp:directives.ipp:g' \ + "${S}/src/optional_suffix.h" +} + +src_configure() { + econf \ + --docdir="/usr/share/doc/${PF}" \ + --disable-3rdparty \ + --disable-xyconvert \ + --without-xylib \ + $(use_enable lua) \ + $(use_enable python) \ + $(use_enable wxwidgets GUI) \ + $(use_with doc) \ + $(use_with examples samples) \ + $(use_with readline) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + rm -f "${D}"usr/lib*/python*/site-packages/*.la + dodoc NEWS README TODO +} |