diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-07-25 15:44:04 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-07-25 15:44:04 +0000 |
commit | f53611690c307bf8bf94119b1188410baea6aa60 (patch) | |
tree | 40744eb3455d720e94434900f758eb02f02405ac /app-shells | |
parent | just removed some unneeded stuff, added a \|\| die, and fixed the disable of ... (diff) | |
download | historical-f53611690c307bf8bf94119b1188410baea6aa60.tar.gz historical-f53611690c307bf8bf94119b1188410baea6aa60.tar.bz2 historical-f53611690c307bf8bf94119b1188410baea6aa60.zip |
lintool fixes
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash-completion/bash-completion-20020624.ebuild | 3 | ||||
-rw-r--r-- | app-shells/pdksh/pdksh-5.2.14-r3.ebuild | 15 | ||||
-rw-r--r-- | app-shells/sash/sash-3.4-r3.ebuild | 42 |
3 files changed, 30 insertions, 30 deletions
diff --git a/app-shells/bash-completion/bash-completion-20020624.ebuild b/app-shells/bash-completion/bash-completion-20020624.ebuild index c43440ae5f7d..c8afe2e51df6 100644 --- a/app-shells/bash-completion/bash-completion-20020624.ebuild +++ b/app-shells/bash-completion/bash-completion-20020624.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-20020624.ebuild,v 1.6 2002/07/25 15:39:00 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-20020624.ebuild,v 1.7 2002/07/25 15:44:04 aliz Exp $ S=${WORKDIR}/${PN/-/_} @@ -11,6 +11,7 @@ KEYWORDS="x86" LICENSE="GPL-2" SLOT="0" +DEPEND="" RDEPEND=">=sys-apps/bash-2.05a" src_install () { diff --git a/app-shells/pdksh/pdksh-5.2.14-r3.ebuild b/app-shells/pdksh/pdksh-5.2.14-r3.ebuild index 8966a8c48864..922ed5d0691a 100644 --- a/app-shells/pdksh/pdksh-5.2.14-r3.ebuild +++ b/app-shells/pdksh/pdksh-5.2.14-r3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-shells/pdksh/pdksh-5.2.14-r3.ebuild,v 1.4 2002/07/25 15:39:00 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/pdksh/pdksh-5.2.14-r3.ebuild,v 1.5 2002/07/25 15:44:04 aliz Exp $ S=${WORKDIR}/${P} DESCRIPTION="The Public Domain Korn Shell" @@ -12,17 +12,18 @@ SLOT="0" LICENSE="as-is" DEPEND=">=sys-libs/glibc-2.1.3" +RDEPEND=$DEPEND src_unpack() { - unpack ${P}.tar.gz - cd ${S} - patch -p2 < ${DISTDIR}/${P}-patches.1 + unpack ${P}.tar.gz + cd ${S} + patch -p2 < ${DISTDIR}/${P}-patches.1 } src_compile() { - try ./configure --prefix=/usr --host=${CHOST} - try make + ./configure --prefix=/usr --host=${CHOST} || die + make || die } src_install() { diff --git a/app-shells/sash/sash-3.4-r3.ebuild b/app-shells/sash/sash-3.4-r3.ebuild index 8c0bf794e9c4..62bfdbed7e6d 100644 --- a/app-shells/sash/sash-3.4-r3.ebuild +++ b/app-shells/sash/sash-3.4-r3.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.4-r3.ebuild,v 1.8 2002/07/25 15:39:00 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/sash/sash-3.4-r3.ebuild,v 1.9 2002/07/25 15:44:04 aliz Exp $ S=${WORKDIR}/${P} DESCRIPTION="A small UNIX Shell with readline suppport" SRC_URI="http://www.canb.auug.org.au/~dbell/programs/${P}.tar.gz - http://dimavb.st.simbirsk.su/vlk/sash-3.x-readline.diff.gz" + http://dimavb.st.simbirsk.su/vlk/sash-3.x-readline.diff.gz" DEPEND="virtual/glibc >=sys-libs/zlib-1.1.3 @@ -21,27 +21,25 @@ LICENSE="Freeware" KEYWORDS="x86 ppc" src_unpack() { - unpack ${P}.tar.gz - cd ${S} - if [ "`use readline`" ] - then - gzip -dc ${DISTDIR}/sash-3.x-readline.diff.gz | patch -p1 - - cp Makefile Makefile.orig - sed -e "s:-O2:${CFLAGS}:" -e "s:-ltermcap:-lncurses:" Makefile.orig > Makefile - else - cp Makefile Makefile.orig - sed -e "s:-O3:${CFLAGS}:" Makefile.orig > Makefile - fi + unpack ${P}.tar.gz + cd ${S} + if [ "`use readline`" ] + then + gzip -dc ${DISTDIR}/sash-3.x-readline.diff.gz | patch -p1 + cp Makefile Makefile.orig + sed -e "s:-O2:${CFLAGS}:" -e "s:-ltermcap:-lncurses:" Makefile.orig > Makefile + else + cp Makefile Makefile.orig + sed -e "s:-O3:${CFLAGS}:" Makefile.orig > Makefile + fi } src_compile() { - - if [ "`use static`" ] - then - try make - else - try make LDFLAGS="" - fi + if [ "`use static`" ] + then + make || die + else + make LDFLAGS="" || die + fi } src_install() { |