diff options
author | 2004-06-03 14:44:29 +0000 | |
---|---|---|
committer | 2004-06-03 14:44:29 +0000 | |
commit | 2a5cd10a267f80b65c72390fab6deb5fbe577de7 (patch) | |
tree | eccd80c67070b6e4bbf261a0fc14ee0de26fd735 /dev-lang/ghc | |
parent | Added to ~ppc (Manifest recommit) (diff) | |
download | gentoo-2-2a5cd10a267f80b65c72390fab6deb5fbe577de7.tar.gz gentoo-2-2a5cd10a267f80b65c72390fab6deb5fbe577de7.tar.bz2 gentoo-2-2a5cd10a267f80b65c72390fab6deb5fbe577de7.zip |
Fix use invocation
Diffstat (limited to 'dev-lang/ghc')
-rw-r--r-- | dev-lang/ghc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.0.1.ebuild | 8 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.0.ebuild | 8 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.2-r1.ebuild | 8 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.2.1.ebuild | 8 | ||||
-rw-r--r-- | dev-lang/ghc/ghc-6.2.ebuild | 8 |
6 files changed, 25 insertions, 21 deletions
diff --git a/dev-lang/ghc/ChangeLog b/dev-lang/ghc/ChangeLog index 699af0bd9a9d..665f7fed7081 100644 --- a/dev-lang/ghc/ChangeLog +++ b/dev-lang/ghc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/ghc # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.36 2004/05/17 15:47:53 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ChangeLog,v 1.37 2004/06/03 14:44:28 agriffis Exp $ + + 03 Jun 2004; Aron Griffis <agriffis@gentoo.org> ghc-6.0.1.ebuild, + ghc-6.0.ebuild, ghc-6.2-r1.ebuild, ghc-6.2.1.ebuild, ghc-6.2.ebuild: + Fix use invocation 18 May 2004; Mamoru KOMACHI <usata@gentoo.org> ghc-6.0.1.ebuild, ghc-6.0.ebuild, ghc-6.2-r1.ebuild, ghc-6.2.1.ebuild, ghc-6.2.ebuild: diff --git a/dev-lang/ghc/ghc-6.0.1.ebuild b/dev-lang/ghc/ghc-6.0.1.ebuild index 7c43800c4335..eca483eebc4d 100644 --- a/dev-lang/ghc/ghc-6.0.1.ebuild +++ b/dev-lang/ghc/ghc-6.0.1.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/ghc/ghc-6.0.1.ebuild,v 1.6 2004/05/17 15:47:53 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.0.1.ebuild,v 1.7 2004/06/03 14:44:29 agriffis Exp $ #Some explanation of bootstrap logic: # @@ -83,7 +83,7 @@ src_unpack() { src_compile() { local myconf - if [ `use opengl` ]; then + if use opengl; then myconf="--enable-hopengl" fi @@ -116,9 +116,9 @@ src_install () { local mydoc # determine what to do with documentation - if [ `use doc` ]; then + if use doc; then mydoc="html" - if [ `use tetex` ]; then + if use tetex; then mydoc="${mydoc} ps" fi else diff --git a/dev-lang/ghc/ghc-6.0.ebuild b/dev-lang/ghc/ghc-6.0.ebuild index 428f027eae55..b68d70c43082 100644 --- a/dev-lang/ghc/ghc-6.0.ebuild +++ b/dev-lang/ghc/ghc-6.0.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/ghc/ghc-6.0.ebuild,v 1.5 2004/05/17 15:47:53 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.0.ebuild,v 1.6 2004/06/03 14:44:29 agriffis Exp $ #Some explanation of bootstrap logic: # @@ -80,7 +80,7 @@ src_unpack() { src_compile() { local myconf - if [ `use opengl` ]; then + if use opengl; then myconf="--enable-hopengl" fi @@ -107,9 +107,9 @@ src_install () { local mydoc # determine what to do with documentation - if [ `use doc` ]; then + if use doc; then mydoc="html" - if [ `use tetex` ]; then + if use tetex; then mydoc="${mydoc} ps" fi else diff --git a/dev-lang/ghc/ghc-6.2-r1.ebuild b/dev-lang/ghc/ghc-6.2-r1.ebuild index fce44efc9cb3..284870a7e705 100644 --- a/dev-lang/ghc/ghc-6.2-r1.ebuild +++ b/dev-lang/ghc/ghc-6.2-r1.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/ghc/ghc-6.2-r1.ebuild,v 1.4 2004/05/17 15:47:53 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.2-r1.ebuild,v 1.5 2004/06/03 14:44:29 agriffis Exp $ #Some explanation of bootstrap logic: # @@ -80,7 +80,7 @@ src_unpack() { src_compile() { local myconf - if [ `use opengl` ]; then + if use opengl; then myconf="--enable-hopengl" fi @@ -124,10 +124,10 @@ src_install () { insttarget="install" # determine what to do with documentation - if [ `use doc` ]; then + if use doc; then mydoc="html" insttarget="${insttarget} install-docs" - if [ `use tetex` ]; then + if use tetex; then mydoc="${mydoc} ps" fi else diff --git a/dev-lang/ghc/ghc-6.2.1.ebuild b/dev-lang/ghc/ghc-6.2.1.ebuild index fe23704d3c71..e9e0f781af4a 100644 --- a/dev-lang/ghc/ghc-6.2.1.ebuild +++ b/dev-lang/ghc/ghc-6.2.1.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/ghc/ghc-6.2.1.ebuild,v 1.5 2004/05/17 15:47:53 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.2.1.ebuild,v 1.6 2004/06/03 14:44:29 agriffis Exp $ #Some explanation of bootstrap logic: # @@ -79,7 +79,7 @@ src_unpack() { src_compile() { local myconf - if [ `use opengl` ]; then + if use opengl; then myconf="--enable-hopengl" fi @@ -129,10 +129,10 @@ src_install () { insttarget="install" # determine what to do with documentation - if [ `use doc` ]; then + if use doc; then mydoc="html" insttarget="${insttarget} install-docs" - if [ `use tetex` ]; then + if use tetex; then mydoc="${mydoc} ps" fi else diff --git a/dev-lang/ghc/ghc-6.2.ebuild b/dev-lang/ghc/ghc-6.2.ebuild index 0155cc9839af..89c79b7a3d69 100644 --- a/dev-lang/ghc/ghc-6.2.ebuild +++ b/dev-lang/ghc/ghc-6.2.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/ghc/ghc-6.2.ebuild,v 1.7 2004/05/17 15:47:53 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc/ghc-6.2.ebuild,v 1.8 2004/06/03 14:44:29 agriffis Exp $ #Some explanation of bootstrap logic: # @@ -77,7 +77,7 @@ src_unpack() { src_compile() { local myconf - if [ `use opengl` ]; then + if use opengl; then myconf="--enable-hopengl" fi @@ -122,10 +122,10 @@ src_install () { insttarget="install" # determine what to do with documentation - if [ `use doc` ]; then + if use doc; then mydoc="html" insttarget="${insttarget} install-docs" - if [ `use tetex` ]; then + if use tetex; then mydoc="${mydoc} ps" fi else |