diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-03-17 01:48:47 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-03-17 01:48:47 +0000 |
commit | 448cc4d65bc99c390ee1bb1ceab6b8b93700df68 (patch) | |
tree | ebf7466548f6262ac14905fd61afb9ed81f71ef4 /app-editors | |
parent | remove slang from IUSE (diff) | |
download | gentoo-2-448cc4d65bc99c390ee1bb1ceab6b8b93700df68.tar.gz gentoo-2-448cc4d65bc99c390ee1bb1ceab6b8b93700df68.tar.bz2 gentoo-2-448cc4d65bc99c390ee1bb1ceab6b8b93700df68.zip |
fix up use syntax
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/nano/nano-1.2.2.ebuild | 4 | ||||
-rw-r--r-- | app-editors/nano/nano-1.3.1.ebuild | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/app-editors/nano/nano-1.2.2.ebuild b/app-editors/nano/nano-1.2.2.ebuild index efa6cc084acd..879ef8015496 100644 --- a/app-editors/nano/nano-1.2.2.ebuild +++ b/app-editors/nano/nano-1.2.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/app-editors/nano/nano-1.2.2.ebuild,v 1.16 2004/02/22 15:58:47 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.2.2.ebuild,v 1.17 2004/03/17 01:48:47 vapier Exp $ inherit eutils @@ -31,7 +31,7 @@ src_unpack() { src_compile() { local myconf="" use build && myconf="${myconf} --disable-wrapping-as-root" - [ `use ncurses` ] || myconf="${myconf} `use_with slang`" + use ncurses || myconf="${myconf} `use_with slang`" econf \ --bindir=/bin \ diff --git a/app-editors/nano/nano-1.3.1.ebuild b/app-editors/nano/nano-1.3.1.ebuild index c65440cf7bde..6cda95444f6e 100644 --- a/app-editors/nano/nano-1.3.1.ebuild +++ b/app-editors/nano/nano-1.3.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/app-editors/nano/nano-1.3.1.ebuild,v 1.6 2004/03/02 16:43:56 iggy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-1.3.1.ebuild,v 1.7 2004/03/17 01:48:47 vapier Exp $ inherit eutils @@ -24,14 +24,14 @@ S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} cd ${S} - [ `use nomac` ] && epatch ${FILESDIR}/${PV}-nomac.patch - [ `use wsconvert` ] && epatch ${FILESDIR}/${PV}-wsconvert.patch + use nomac && epatch ${FILESDIR}/${PV}-nomac.patch + use wsconvert && epatch ${FILESDIR}/${PV}-wsconvert.patch } src_compile() { local myconf="" use build && myconf="${myconf} --disable-wrapping-as-root" - [ `use ncurses` ] || myconf="${myconf} `use_with slang`" + use ncurses || myconf="${myconf} `use_with slang`" econf \ --bindir=/bin \ |