summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-06-02 21:36:51 +0000
committerAron Griffis <agriffis@gentoo.org>2004-06-02 21:36:51 +0000
commit229d1b50e3671ae9c4350802ab904aaf4460da1d (patch)
tree2783d45f547b0255888deb9f697d2bb1c32ab50a
parentFix use invocation (diff)
downloadhistorical-229d1b50e3671ae9c4350802ab904aaf4460da1d.tar.gz
historical-229d1b50e3671ae9c4350802ab904aaf4460da1d.tar.bz2
historical-229d1b50e3671ae9c4350802ab904aaf4460da1d.zip
Fix use invocation
-rw-r--r--dev-haskell/alex/ChangeLog5
-rw-r--r--dev-haskell/alex/alex-2.0.ebuild6
-rw-r--r--dev-haskell/hdoc/ChangeLog7
-rw-r--r--dev-haskell/hdoc/hdoc-0.8.2.ebuild6
-rw-r--r--dev-haskell/hmake/ChangeLog6
-rw-r--r--dev-haskell/hmake/hmake-3.07.ebuild6
-rw-r--r--dev-haskell/hmake/hmake-3.08.ebuild6
7 files changed, 26 insertions, 16 deletions
diff --git a/dev-haskell/alex/ChangeLog b/dev-haskell/alex/ChangeLog
index 44f3ea04952b..5f79f4d371bd 100644
--- a/dev-haskell/alex/ChangeLog
+++ b/dev-haskell/alex/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-haskell/alex
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/ChangeLog,v 1.3 2004/05/17 15:42:51 usata Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/ChangeLog,v 1.4 2004/06/02 21:34:48 agriffis Exp $
+
+ 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> alex-2.0.ebuild:
+ Fix use invocation
18 May 2004; Mamoru KOMACHI <usata@gentoo.org> alex-2.0.ebuild:
Changed app-text/tetex to virtual/tetex.
diff --git a/dev-haskell/alex/alex-2.0.ebuild b/dev-haskell/alex/alex-2.0.ebuild
index 38c4ac1420eb..8c75c1a5e435 100644
--- a/dev-haskell/alex/alex-2.0.ebuild
+++ b/dev-haskell/alex/alex-2.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-haskell/alex/alex-2.0.ebuild,v 1.3 2004/05/17 15:42:51 usata Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/alex-2.0.ebuild,v 1.4 2004/06/02 21:34:48 agriffis Exp $
#
# USE variable summary:
# doc - Build extra documenation from DocBook sources,
@@ -65,11 +65,11 @@ src_install() {
cd ${S}/haddock
dodoc CHANGES LICENSE README TODO
- if [ "`use doc`" ]; then
+ if use doc; then
cd ${S}/alex/doc
dohtml -r alex/* || die
dosym alex.html /usr/share/doc/${PF}/html/index.html
- if [ "`use tetex`" ]; then
+ if use tetex; then
docinto ps
dodoc alex.ps || die
fi
diff --git a/dev-haskell/hdoc/ChangeLog b/dev-haskell/hdoc/ChangeLog
index acffc7835dd9..17d1e7729460 100644
--- a/dev-haskell/hdoc/ChangeLog
+++ b/dev-haskell/hdoc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-haskell/hdoc
-# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/ChangeLog,v 1.1 2003/04/22 08:26:25 kosmikus Exp $
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/ChangeLog,v 1.2 2004/06/02 21:36:02 agriffis Exp $
+
+ 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> hdoc-0.8.2.ebuild:
+ Fix use invocation
*hdoc-0.8.2 (22 Apr 2003)
diff --git a/dev-haskell/hdoc/hdoc-0.8.2.ebuild b/dev-haskell/hdoc/hdoc-0.8.2.ebuild
index 49aaaf14a3ef..343f6d8fade1 100644
--- a/dev-haskell/hdoc/hdoc-0.8.2.ebuild
+++ b/dev-haskell/hdoc/hdoc-0.8.2.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/hdoc-0.8.2.ebuild,v 1.2 2003/09/07 03:13:09 msterret Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/hdoc-0.8.2.ebuild,v 1.3 2004/06/02 21:36:02 agriffis Exp $
DESCRIPTION="A documentation generator for Haskell"
@@ -20,7 +20,7 @@ RDEPEND="virtual/glibc"
SRC_URI="http://www.fmi.uni-passau.de/~groessli/hdoc/${P}.tar.gz"
src_compile() {
- if [ "`use nhc98`" ] ; then
+ if use nhc98 ; then
buildwith="--with-compiler=nhc98"
# I don't see why nhc98 complains in the presence of this
# file, but I am certain that it does no harm to remove it ...
diff --git a/dev-haskell/hmake/ChangeLog b/dev-haskell/hmake/ChangeLog
index 9c89e35462fd..94f4b693691a 100644
--- a/dev-haskell/hmake/ChangeLog
+++ b/dev-haskell/hmake/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-haskell/hmake
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/ChangeLog,v 1.6 2004/03/25 07:21:17 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/ChangeLog,v 1.7 2004/06/02 21:36:51 agriffis Exp $
+
+ 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> hmake-3.07.ebuild,
+ hmake-3.08.ebuild:
+ Fix use invocation
24 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> hmake-3.08.ebuild:
don't use deprecated ? : use syntax
diff --git a/dev-haskell/hmake/hmake-3.07.ebuild b/dev-haskell/hmake/hmake-3.07.ebuild
index aed2e6484396..a6f46d7ec8ea 100644
--- a/dev-haskell/hmake/hmake-3.07.ebuild
+++ b/dev-haskell/hmake/hmake-3.07.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/hmake-3.07.ebuild,v 1.3 2003/09/07 03:13:09 msterret Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/hmake-3.07.ebuild,v 1.4 2004/06/02 21:36:51 agriffis Exp $
DESCRIPTION="a make tool for Haskell programs"
HOMEPAGE="http://www.haskell.org/hmake/"
@@ -17,7 +17,7 @@ DEPEND="nhc98? ( dev-lang/nhc98 )
!nhc98? ( virtual/ghc )"
src_compile() {
- if [ "`use nhc98`" ]; then
+ if use nhc98; then
buildwith="--buildwith=nhc98"
# Makefile is erroneous; we need to fix it
pushd hmake-3.07
diff --git a/dev-haskell/hmake/hmake-3.08.ebuild b/dev-haskell/hmake/hmake-3.08.ebuild
index ed7444918cdb..87546f6079f5 100644
--- a/dev-haskell/hmake/hmake-3.08.ebuild
+++ b/dev-haskell/hmake/hmake-3.08.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-haskell/hmake/hmake-3.08.ebuild,v 1.7 2004/03/25 07:21:17 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/hmake-3.08.ebuild,v 1.8 2004/06/02 21:36:51 agriffis Exp $
inherit base fixheadtails
@@ -30,7 +30,7 @@ src_compile() {
local buildwith
local arch
- if [ "`use nhc98`" ]; then
+ if use nhc98; then
buildwith="--buildwith=nhc98"
else
buildwith="--buildwith=ghc"
@@ -47,7 +47,7 @@ src_compile() {
--mandir=/usr/share/man/man1 \
${buildwith} || die "./configure failed"
- if [ ! "`use readline`" ]; then
+ if ! use readline; then
arch="`script/harch`"
# manually override readline configuration
einfo "Disabling readline ..."