diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2006-11-01 09:51:06 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2006-11-01 09:51:06 +0000 |
commit | e2a8d8e231f26fbe24238f8f83fa8438cc766fb3 (patch) | |
tree | d4550cda5e1c2f402a4ad5743289e169c51b3389 /sci-visualization | |
parent | Removed old versions. (diff) | |
download | historical-e2a8d8e231f26fbe24238f8f83fa8438cc766fb3.tar.gz historical-e2a8d8e231f26fbe24238f8f83fa8438cc766fb3.tar.bz2 historical-e2a8d8e231f26fbe24238f8f83fa8438cc766fb3.zip |
Version bump (bug 150735), and removed old version.
Package-Manager: portage-2.1.2_rc1-r1
Diffstat (limited to 'sci-visualization')
-rw-r--r-- | sci-visualization/gwyddion/ChangeLog | 8 | ||||
-rw-r--r-- | sci-visualization/gwyddion/files/digest-gwyddion-2.0 | 3 | ||||
-rw-r--r-- | sci-visualization/gwyddion/gwyddion-2.0.ebuild | 35 |
3 files changed, 45 insertions, 1 deletions
diff --git a/sci-visualization/gwyddion/ChangeLog b/sci-visualization/gwyddion/ChangeLog index eb08522dd4b3..7f4b76d15cf5 100644 --- a/sci-visualization/gwyddion/ChangeLog +++ b/sci-visualization/gwyddion/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-visualization/gwyddion # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.4 2006/07/15 22:06:48 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.5 2006/11/01 09:51:06 cryos Exp $ + +*gwyddion-2.0 (01 Nov 2006) + + 01 Nov 2006; Marcus D. Hanwell <cryos@gentoo.org> -gwyddion-1.15.ebuild, + +gwyddion-2.0.ebuild: + Version bump (bug 150735), and removed old version. *gwyddion-1.16 (15 Jul 2006) diff --git a/sci-visualization/gwyddion/files/digest-gwyddion-2.0 b/sci-visualization/gwyddion/files/digest-gwyddion-2.0 new file mode 100644 index 000000000000..d2f27361f2a8 --- /dev/null +++ b/sci-visualization/gwyddion/files/digest-gwyddion-2.0 @@ -0,0 +1,3 @@ +MD5 eb944ddac1413c2eb4cef8e9a0f624a9 gwyddion-2.0.tar.bz2 2132755 +RMD160 eeb6e2d99956a10e198fdfc95f27681a5f2d8029 gwyddion-2.0.tar.bz2 2132755 +SHA256 5741156141ec27729f21b7a35b049e025c4219b6e5533a80dfbbc20069e1c0a9 gwyddion-2.0.tar.bz2 2132755 diff --git a/sci-visualization/gwyddion/gwyddion-2.0.ebuild b/sci-visualization/gwyddion/gwyddion-2.0.ebuild new file mode 100644 index 000000000000..dbc7bc1f183a --- /dev/null +++ b/sci-visualization/gwyddion/gwyddion-2.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/gwyddion-2.0.ebuild,v 1.1 2006/11/01 09:51:06 cryos Exp $ + +DESCRIPTION="A software framework for SPM data analysis" +HOMEPAGE="http://gwyddion.net/" +SRC_URI="http://gwyddion.net/download/${PV}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="python perl ruby nls" + +DEPEND="virtual/opengl + python? ( virtual/python ) + perl? ( dev-lang/perl ) + ruby? ( virtual/ruby ) + >=x11-libs/gtk+-2.6 + x11-libs/gtkglext" + +src_compile() { + econf \ + $(use_enable python) \ + $(use_enable perl) \ + $(use_enable ruby) \ + $(use_enable nls) \ + --disable-desktop-file-update \ + || die "econf failed." + emake || die "emake failed." +} + +src_install() { + make DESTDIR=${D} install || die "make install failed." + dodoc AUTHORS ChangeLog NEWS README THANKS TODO +} |