diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-26 02:53:24 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-26 02:53:24 +0000 |
commit | 1c91e2e729af0feffe569e4170c19044607f1bcf (patch) | |
tree | e46e8871aca03faed57dbaec3e1a3b8499f42636 /dev-lang/tcl | |
parent | Add die following econf for bug 48950 (Manifest recommit) (diff) | |
download | gentoo-2-1c91e2e729af0feffe569e4170c19044607f1bcf.tar.gz gentoo-2-1c91e2e729af0feffe569e4170c19044607f1bcf.tar.bz2 gentoo-2-1c91e2e729af0feffe569e4170c19044607f1bcf.zip |
don't depend on use echo
Diffstat (limited to 'dev-lang/tcl')
-rw-r--r-- | dev-lang/tcl/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/tcl/tcl-8.3.4.ebuild | 6 | ||||
-rw-r--r-- | dev-lang/tcl/tcl-8.4.6.ebuild | 6 |
3 files changed, 11 insertions, 7 deletions
diff --git a/dev-lang/tcl/ChangeLog b/dev-lang/tcl/ChangeLog index 55ea4c5446fb..582d62f261e2 100644 --- a/dev-lang/tcl/ChangeLog +++ b/dev-lang/tcl/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/tcl # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/ChangeLog,v 1.31 2004/04/25 00:19:09 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/ChangeLog,v 1.32 2004/04/26 02:50:06 mr_bones_ Exp $ + + 25 Apr 2004; Michael Sterrett <mr_bones_@gentoo.org> tcl-8.3.4.ebuild, + tcl-8.4.6.ebuild: + don't depend on use echo 25 Apr 2004; Daniel Black <dragonheart@gentoo.org> metadata.xml, tcl-8.4.6.ebuild: diff --git a/dev-lang/tcl/tcl-8.3.4.ebuild b/dev-lang/tcl/tcl-8.3.4.ebuild index d6ab3b733d93..3295075db0e9 100644 --- a/dev-lang/tcl/tcl-8.3.4.ebuild +++ b/dev-lang/tcl/tcl-8.3.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.3.4.ebuild,v 1.11 2004/04/24 19:06:44 port001 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.3.4.ebuild,v 1.12 2004/04/26 02:50:06 mr_bones_ Exp $ IUSE="threads" @@ -22,7 +22,7 @@ KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64" pkg_setup() { - if [ "`use threads`" ] + if use threads then ewarn "" ewarn "PLEASE NOTE: You are compiling ${P} with" @@ -39,7 +39,7 @@ src_compile() { local local_config_use="" - if [ "`use threads`" ] + if use threads then local_config_use="--enable-threads" fi diff --git a/dev-lang/tcl/tcl-8.4.6.ebuild b/dev-lang/tcl/tcl-8.4.6.ebuild index 448b0463291b..b467a2b09ace 100644 --- a/dev-lang/tcl/tcl-8.4.6.ebuild +++ b/dev-lang/tcl/tcl-8.4.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.4.6.ebuild,v 1.6 2004/04/25 00:19:09 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcl/tcl-8.4.6.ebuild,v 1.7 2004/04/26 02:50:06 mr_bones_ Exp $ IUSE="threads" @@ -19,7 +19,7 @@ S=${WORKDIR}/${PN}${PV} pkg_setup() { - if [ "`use threads`" ] + if use threads then ewarn "" ewarn "PLEASE NOTE: You are compiling ${P} with" @@ -36,7 +36,7 @@ src_compile() { local local_config_use="" - if [ "`use threads`" ] + if use threads then local_config_use="--enable-threads" fi |