summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Dittrich <markusle@gentoo.org>2006-12-27 03:04:20 +0000
committerMarkus Dittrich <markusle@gentoo.org>2006-12-27 03:04:20 +0000
commita7f6fe7c4e38101def06e54d5898e469540c69e8 (patch)
tree910d87e5fcc0826f9140673491ac3e0e60d06f4e /sci-chemistry
parentBig new-maintainer cleanup. Bump to latest 0.5.6, remove old versions, remove... (diff)
downloadgentoo-2-a7f6fe7c4e38101def06e54d5898e469540c69e8.tar.gz
gentoo-2-a7f6fe7c4e38101def06e54d5898e469540c69e8.tar.bz2
gentoo-2-a7f6fe7c4e38101def06e54d5898e469540c69e8.zip
Remove netcdf use flag and enable netcdf support by default since it is needed by the catdcd plugin. This fixes bug #159081.
(Portage version: 2.1.2_rc3-r7)
Diffstat (limited to 'sci-chemistry')
-rw-r--r--sci-chemistry/vmd/ChangeLog6
-rw-r--r--sci-chemistry/vmd/vmd-1.8.5.ebuild20
2 files changed, 12 insertions, 14 deletions
diff --git a/sci-chemistry/vmd/ChangeLog b/sci-chemistry/vmd/ChangeLog
index c2c4ee203fb8..dab04607acdb 100644
--- a/sci-chemistry/vmd/ChangeLog
+++ b/sci-chemistry/vmd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sci-chemistry/vmd
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/vmd/ChangeLog,v 1.10 2006/12/22 14:00:25 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/vmd/ChangeLog,v 1.11 2006/12/27 03:04:20 markusle Exp $
+
+ 27 Dec 2006; Markus Dittrich <markusle@gentoo.org> vmd-1.8.5.ebuild:
+ Remove netcdf use flag and enable netcdf support by default
+ since it is needed by the catdcd plugin. This fixes bug #159081.
22 Dec 2006; Markus Dittrich <markusle@gentoo.org>
files/vmd-1.8.5-config-gentoo.patch, vmd-1.8.5.ebuild:
diff --git a/sci-chemistry/vmd/vmd-1.8.5.ebuild b/sci-chemistry/vmd/vmd-1.8.5.ebuild
index 805a14c4de76..1b3d0c55ff97 100644
--- a/sci-chemistry/vmd/vmd-1.8.5.ebuild
+++ b/sci-chemistry/vmd/vmd-1.8.5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/vmd/vmd-1.8.5.ebuild,v 1.3 2006/12/22 14:00:25 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/vmd/vmd-1.8.5.ebuild,v 1.4 2006/12/27 03:04:20 markusle Exp $
inherit eutils toolchain-funcs python
@@ -11,7 +11,7 @@ SRC_URI="${P}.src.tar.gz"
SLOT="0"
KEYWORDS="~ppc ~x86"
-IUSE="hardened netcdf"
+IUSE="hardened"
RESTRICT="fetch"
@@ -23,7 +23,7 @@ DEPEND="app-shells/tcsh
=dev-lang/tk-8.4*
>=dev-lang/python-2.3
sci-biology/stride
- netcdf? ( sci-libs/netcdf )
+ sci-libs/netcdf
hardened? ( sys-apps/paxctl )"
@@ -79,11 +79,9 @@ src_unpack() {
-e "s:gentoo-fltk-libs:/usr/$(get_libdir)/fltk-1.1:" \
-i configure || die "failed setting up fltk"
- if use netcdf; then
- sed -e "s:gentoo-netcdf-include:/usr/include:" \
- -e "s:gentoo-netcdf-libs:/usr/$(get_libdir):" \
- -i configure || die "failed to set up netcdf"
- fi
+ sed -e "s:gentoo-netcdf-include:/usr/include:" \
+ -e "s:gentoo-netcdf-libs:/usr/$(get_libdir):" \
+ -i configure || die "failed to set up netcdf"
# get installed python version
python_version
@@ -99,11 +97,7 @@ src_unpack() {
-e "s:LINUXAMD64:LINUX:g" \
-i ${S}/bin/vmd || die "failed setting up vmd wrapper script"
- local myconfig="LINUX OPENGL FLTK TK TCL PTHREADS PYTHON IMD"
-
- if use netcdf; then
- myconfig="${myconfig} NETCDF"
- fi
+ local myconfig="LINUX OPENGL FLTK TK TCL PTHREADS PYTHON IMD NETCDF"
rm -f configure.options && echo $myconfig >> configure.options