summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-06-02 01:55:17 +0000
committerAron Griffis <agriffis@gentoo.org>2004-06-02 01:55:17 +0000
commita5302645e210018e91708affd7f1cab340afc2a1 (patch)
tree02050b84c47105e51a5ee93a6954f8aef56bf8e0 /app-gnustep/pantomime
parentFix use invocation (diff)
downloadhistorical-a5302645e210018e91708affd7f1cab340afc2a1.tar.gz
historical-a5302645e210018e91708affd7f1cab340afc2a1.tar.bz2
historical-a5302645e210018e91708affd7f1cab340afc2a1.zip
Fix use invocation
Diffstat (limited to 'app-gnustep/pantomime')
-rw-r--r--app-gnustep/pantomime/ChangeLog5
-rw-r--r--app-gnustep/pantomime/pantomime-1.1.0.ebuild6
2 files changed, 7 insertions, 4 deletions
diff --git a/app-gnustep/pantomime/ChangeLog b/app-gnustep/pantomime/ChangeLog
index c2b3e2347ea4..469cc15849f5 100644
--- a/app-gnustep/pantomime/ChangeLog
+++ b/app-gnustep/pantomime/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-gnustep/pantomime
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-gnustep/pantomime/ChangeLog,v 1.7 2004/05/04 16:06:47 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-gnustep/pantomime/ChangeLog,v 1.8 2004/06/02 01:53:51 agriffis Exp $
+
+ 01 Jun 2004; Aron Griffis <agriffis@gentoo.org> pantomime-1.1.0.ebuild:
+ Fix use invocation
04 May 2004; Bryan Østergaard <kloeri@gentoo.org> pantomime-1.1.0.ebuild,
pantomime-1.1.0_pre2.ebuild:
diff --git a/app-gnustep/pantomime/pantomime-1.1.0.ebuild b/app-gnustep/pantomime/pantomime-1.1.0.ebuild
index da8fbdb46c79..44b267df44f9 100644
--- a/app-gnustep/pantomime/pantomime-1.1.0.ebuild
+++ b/app-gnustep/pantomime/pantomime-1.1.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/app-gnustep/pantomime/pantomime-1.1.0.ebuild,v 1.4 2004/05/04 16:06:47 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-gnustep/pantomime/pantomime-1.1.0.ebuild,v 1.5 2004/06/02 01:53:51 agriffis Exp $
IUSE="ssl"
@@ -16,7 +16,7 @@ S=${WORKDIR}/${PN/p/P}
src_compile() {
egnustepmake
- if [ "`use ssl`" ]; then
+ if use ssl; then
cd ${S}/Bundles/SSL
make
cd ${S}
@@ -26,7 +26,7 @@ src_compile() {
src_install() {
egnustepinstall
- if [ "`use ssl`" ]; then
+ if use ssl; then
mkdir -p ${D}usr/GNUstep/System/Library/Pantomime
cd ${S}/Bundles/SSL
tar cf - TCPSSLConnection.bundle | ( cd ${D}usr/GNUstep/System/Library/Pantomime; tar xf - )