diff options
author | Markus Dittrich <markusle@gentoo.org> | 2006-09-20 01:15:51 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2006-09-20 01:15:51 +0000 |
commit | 0062a02006ecf3267aff606912a41170e178d835 (patch) | |
tree | ac6cd46085bec98c16c5bc308d70ac52a53c9491 | |
parent | remove old (diff) | |
download | gentoo-2-0062a02006ecf3267aff606912a41170e178d835.tar.gz gentoo-2-0062a02006ecf3267aff606912a41170e178d835.tar.bz2 gentoo-2-0062a02006ecf3267aff606912a41170e178d835.zip |
Replaced tcltk with tk useflag. This fixes bug #148213.
(Portage version: 2.1.2_pre1)
-rw-r--r-- | sci-chemistry/mpqc/ChangeLog | 7 | ||||
-rw-r--r-- | sci-chemistry/mpqc/mpqc-2.3.1-r1.ebuild | 10 | ||||
-rw-r--r-- | sci-chemistry/mpqc/mpqc-2.3.1.ebuild | 8 |
3 files changed, 14 insertions, 11 deletions
diff --git a/sci-chemistry/mpqc/ChangeLog b/sci-chemistry/mpqc/ChangeLog index d2f057530d65..8ae32bd238c1 100644 --- a/sci-chemistry/mpqc/ChangeLog +++ b/sci-chemistry/mpqc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-chemistry/mpqc # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/mpqc/ChangeLog,v 1.13 2006/08/17 20:00:14 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/mpqc/ChangeLog,v 1.14 2006/09/20 01:15:51 markusle Exp $ + + 19 Sep 2006; Markus Dittrich <markusle@gentoo.org> mpqc-2.3.1.ebuild, + mpqc-2.3.1-r1.ebuild: + Replaced tcltk with tk useflag. Thanks to je_fro <je_fro@yahoo.com> + for his patch. This fixes bug #148213. 17 Aug 2006; Markus Rothe <corsair@gentoo.org> mpqc-2.3.1-r1.ebuild: Stable on ppc64 diff --git a/sci-chemistry/mpqc/mpqc-2.3.1-r1.ebuild b/sci-chemistry/mpqc/mpqc-2.3.1-r1.ebuild index 77b84e3655bb..e149d14edff1 100644 --- a/sci-chemistry/mpqc/mpqc-2.3.1-r1.ebuild +++ b/sci-chemistry/mpqc/mpqc-2.3.1-r1.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/mpqc/mpqc-2.3.1-r1.ebuild,v 1.3 2006/08/17 20:00:14 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/mpqc/mpqc-2.3.1-r1.ebuild,v 1.4 2006/09/20 01:15:51 markusle Exp $ inherit fortran @@ -12,11 +12,11 @@ LICENSE="GPL-2" SLOT="0" # Should work on x86, amd64 and ppc, at least KEYWORDS="~amd64 ppc ppc64 x86" -IUSE="doc threads tcltk" +IUSE="doc threads tk" RDEPEND="virtual/blas virtual/lapack - tcltk? ( dev-lang/tk )" + tk? ( dev-lang/tk )" DEPEND="${RDEPEND} sys-devel/flex dev-lang/perl @@ -29,7 +29,7 @@ src_unpack() { cd "${S}" # do not install tkmolrender if not requested - if ! use tcltk; then + if ! use tk; then sed -e "s:.*/bin/molrender/tkmolrender.*::" \ -e "s:.*\$(INSTALLBINOPT) tkmolrender.*::" \ -e "s:/bin/rm -f tkmolrender::" \ @@ -40,8 +40,6 @@ src_unpack() { src_compile() { -# CFLAGS_SAVE=${CFLAGS}; CXXFLAGS_SAVE=${CXXFLAGS} - # Only shared will work on ppc64 - bug #62124 # But we always want shared libraries econf \ diff --git a/sci-chemistry/mpqc/mpqc-2.3.1.ebuild b/sci-chemistry/mpqc/mpqc-2.3.1.ebuild index 6472ecde16c9..3e59d4f63913 100644 --- a/sci-chemistry/mpqc/mpqc-2.3.1.ebuild +++ b/sci-chemistry/mpqc/mpqc-2.3.1.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/mpqc/mpqc-2.3.1.ebuild,v 1.1 2006/04/11 16:43:40 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/mpqc/mpqc-2.3.1.ebuild,v 1.2 2006/09/20 01:15:51 markusle Exp $ inherit fortran @@ -12,14 +12,14 @@ LICENSE="GPL-2" SLOT="0" # Should work on x86, amd64 and ppc, at least KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="doc threads tcltk" +IUSE="doc threads tk" DEPEND="sys-devel/flex virtual/blas virtual/lapack dev-lang/perl >=sys-apps/sed-4 - tcltk? ( dev-lang/tk ) + tk? ( dev-lang/tk ) doc? ( app-doc/doxygen media-gfx/graphviz )" @@ -28,7 +28,7 @@ src_unpack() { cd "${S}" # do not install tkmolrender if not requested - if ! use tcltk; then + if ! use tk; then sed -e "s:.*/bin/molrender/tkmolrender.*::" \ -e "s:.*\$(INSTALLBINOPT) tkmolrender.*::" \ -e "s:/bin/rm -f tkmolrender::" \ |