diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2004-08-18 21:58:15 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2004-08-18 21:58:15 +0000 |
commit | 6bf8f5caf63812ec42c584af0addce1a6f241230 (patch) | |
tree | 1de3a607ee670748a112ac0441477b35bc96ebdd /dev-lang/gnu-smalltalk | |
parent | Closing #60417 and #60758 (diff) | |
download | historical-6bf8f5caf63812ec42c584af0addce1a6f241230.tar.gz historical-6bf8f5caf63812ec42c584af0addce1a6f241230.tar.bz2 historical-6bf8f5caf63812ec42c584af0addce1a6f241230.zip |
*** empty log message ***
Diffstat (limited to 'dev-lang/gnu-smalltalk')
-rw-r--r-- | dev-lang/gnu-smalltalk/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/gnu-smalltalk/gnu-smalltalk-2.1.8.ebuild | 15 |
2 files changed, 16 insertions, 4 deletions
diff --git a/dev-lang/gnu-smalltalk/ChangeLog b/dev-lang/gnu-smalltalk/ChangeLog index fb45762fe119..d9c34b50faeb 100644 --- a/dev-lang/gnu-smalltalk/ChangeLog +++ b/dev-lang/gnu-smalltalk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/gnu-smalltalk # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.2 2004/07/16 09:43:58 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/ChangeLog,v 1.3 2004/08/18 21:58:15 mkennedy Exp $ + + 18 Aug 2004; <mkennedy@gentoo.org> gnu-smalltalk-2.1.8.ebuild: + Fixed problem with configuration parameters when tcltk is not in USE 16 Jul 2004; David Holm <dholm@gentoo.org> gnu-smalltalk-2.1.8.ebuild: Added to ~ppc. diff --git a/dev-lang/gnu-smalltalk/gnu-smalltalk-2.1.8.ebuild b/dev-lang/gnu-smalltalk/gnu-smalltalk-2.1.8.ebuild index 943bf401761a..a01874d7ca4d 100644 --- a/dev-lang/gnu-smalltalk/gnu-smalltalk-2.1.8.ebuild +++ b/dev-lang/gnu-smalltalk/gnu-smalltalk-2.1.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-2.1.8.ebuild,v 1.2 2004/07/16 09:43:58 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/gnu-smalltalk/gnu-smalltalk-2.1.8.ebuild,v 1.3 2004/08/18 21:58:15 mkennedy Exp $ inherit elisp-common flag-o-matic eutils gcc @@ -31,15 +31,24 @@ src_unpack() { } src_compile() { + local myconf="" + + if use tclk; then + myconf=" + `use_with tcltk tcl=/usr/lib` \ + `use_with tcltk tk=/usr/lib`" + fi + replace-flags '-O3' '-O2' + econf \ `use_with emacs emacs` \ `use_with readline readline` \ - `use_with tcltk tcl=/usr/lib` \ - `use_with tcltk tk=/usr/lib` \ `use_with gmp gmp` \ `use_enable gtk gtk` \ + ${myconf} \ || die + emake || die "emake failed" } |