summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus D. Hanwell <cryos@gentoo.org>2006-12-27 16:32:00 +0000
committerMarcus D. Hanwell <cryos@gentoo.org>2006-12-27 16:32:00 +0000
commit1de808ce1b2e830e1dbb86635aad9022be4c33e5 (patch)
treec8090f2fb37b6c0c2876881698c397b3fdf17aff /sci-visualization/gwyddion
parentMove makewhatis to /etc/cron.daily. (diff)
downloadgentoo-2-1de808ce1b2e830e1dbb86635aad9022be4c33e5.tar.gz
gentoo-2-1de808ce1b2e830e1dbb86635aad9022be4c33e5.tar.bz2
gentoo-2-1de808ce1b2e830e1dbb86635aad9022be4c33e5.zip
Version bump.
(Portage version: 2.1.2_rc4-r1)
Diffstat (limited to 'sci-visualization/gwyddion')
-rw-r--r--sci-visualization/gwyddion/ChangeLog7
-rw-r--r--sci-visualization/gwyddion/files/digest-gwyddion-2.23
-rw-r--r--sci-visualization/gwyddion/gwyddion-2.2.ebuild35
3 files changed, 44 insertions, 1 deletions
diff --git a/sci-visualization/gwyddion/ChangeLog b/sci-visualization/gwyddion/ChangeLog
index 7f4b76d15cf5..d21506845600 100644
--- a/sci-visualization/gwyddion/ChangeLog
+++ b/sci-visualization/gwyddion/ChangeLog
@@ -1,6 +1,11 @@
# 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.5 2006/11/01 09:51:06 cryos Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-visualization/gwyddion/ChangeLog,v 1.6 2006/12/27 16:32:00 cryos Exp $
+
+*gwyddion-2.2 (27 Dec 2006)
+
+ 27 Dec 2006; Marcus D. Hanwell <cryos@gentoo.org> +gwyddion-2.2.ebuild:
+ Version bump.
*gwyddion-2.0 (01 Nov 2006)
diff --git a/sci-visualization/gwyddion/files/digest-gwyddion-2.2 b/sci-visualization/gwyddion/files/digest-gwyddion-2.2
new file mode 100644
index 000000000000..e82a07511bf3
--- /dev/null
+++ b/sci-visualization/gwyddion/files/digest-gwyddion-2.2
@@ -0,0 +1,3 @@
+MD5 46c07e478a83fe8dcf56e9968d4aec33 gwyddion-2.2.tar.bz2 2016874
+RMD160 e91d1c086aeae91b2f131f400e18ae265ce39820 gwyddion-2.2.tar.bz2 2016874
+SHA256 9ff1db8c8093ac80e432cf83b2493af4544e0f9f63faa1cddbb0c4ffe1e7421e gwyddion-2.2.tar.bz2 2016874
diff --git a/sci-visualization/gwyddion/gwyddion-2.2.ebuild b/sci-visualization/gwyddion/gwyddion-2.2.ebuild
new file mode 100644
index 000000000000..98cb69b23717
--- /dev/null
+++ b/sci-visualization/gwyddion/gwyddion-2.2.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.2.ebuild,v 1.1 2006/12/27 16:32:00 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
+}