diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:30 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:30 +0000 |
commit | 1ee722fd191fd39a3e13c5231281041f1b4e9f2a (patch) | |
tree | be23a54b8f07b0186bac806e4aa577c1393451e2 /sys-apps | |
parent | oops :) (diff) | |
download | gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.tar.gz gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.tar.bz2 gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.zip |
added try syntax
Diffstat (limited to 'sys-apps')
63 files changed, 207 insertions, 207 deletions
diff --git a/sys-apps/at/at-3.1.8-r1.ebuild b/sys-apps/at/at-3.1.8-r1.ebuild index fa058f01bd44..f663d8628246 100644 --- a/sys-apps/at/at-3.1.8-r1.ebuild +++ b/sys-apps/at/at-3.1.8-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/at/at-3.1.8-r1.ebuild,v 1.3 2000/08/23 06:16:57 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/at/at-3.1.8-r1.ebuild,v 1.4 2000/09/15 20:09:16 drobbins Exp $ A="${P}.tar.bz2 ${P}.dif" S=${WORKDIR}/${P} @@ -11,8 +11,8 @@ SRC_URI="ftp://jurix.jura.uni-sb.de/pub/jurix/source/chroot/appl/at/${P}.tar.bz2 src_compile() { - ./configure --host=${CHOST} --sysconfdir=/etc/at - make + try ./configure --host=${CHOST} --sysconfdir=/etc/at + try make } diff --git a/sys-apps/bash/bash-2.03-r1.ebuild b/sys-apps/bash/bash-2.03-r1.ebuild index ad359d8a6ca9..75ec53d472fc 100644 --- a/sys-apps/bash/bash-2.03-r1.ebuild +++ b/sys-apps/bash/bash-2.03-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/bash/bash-2.03-r1.ebuild,v 1.3 2000/08/16 05:28:14 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/bash/bash-2.03-r1.ebuild,v 1.4 2000/09/15 20:09:16 drobbins Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -12,8 +12,8 @@ HOMEPAGE="http://www.gnu.org/software/bash/bash.html" src_compile() { cd ${S} - ./configure --prefix=/ --disable-profiling --with-curses --host=${CHOST} - make + try ./configure --prefix=/ --disable-profiling --with-curses --host=${CHOST} + try make } diff --git a/sys-apps/bash/bash-2.04.ebuild b/sys-apps/bash/bash-2.04.ebuild index 4f17eb859fa7..7f7fe1284648 100644 --- a/sys-apps/bash/bash-2.04.ebuild +++ b/sys-apps/bash/bash-2.04.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/bash/bash-2.04.ebuild,v 1.1 2000/08/16 05:28:14 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/bash/bash-2.04.ebuild,v 1.2 2000/09/15 20:09:16 drobbins Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -12,8 +12,8 @@ HOMEPAGE="http://www.gnu.org/software/bash/bash.html" src_compile() { cd ${S} - ./configure --prefix=/ --disable-profiling --with-curses --host=${CHOST} - make + try ./configure --prefix=/ --disable-profiling --with-curses --host=${CHOST} + try make } diff --git a/sys-apps/bzip2/bzip2-1.0.1.ebuild b/sys-apps/bzip2/bzip2-1.0.1.ebuild index 28297eca436f..e4787a343860 100644 --- a/sys-apps/bzip2/bzip2-1.0.1.ebuild +++ b/sys-apps/bzip2/bzip2-1.0.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/bzip2/bzip2-1.0.1.ebuild,v 1.3 2000/08/25 04:47:04 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/bzip2/bzip2-1.0.1.ebuild,v 1.4 2000/09/15 20:09:16 drobbins Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -11,7 +11,7 @@ HOMEPAGE="http://sourceware.cygnus.com/bzip2/" src_unpack() { unpack ${A} - # bzip2's makefile does not use CFLAGS so we hard-wire the compile + # bzip2's try makefile does not use CFLAGS so we hard-wire the compile # options using sed ;) cd ${S} cp Makefile Makefile.orig @@ -21,14 +21,14 @@ src_unpack() { } src_compile() { - make -f Makefile-libbz2_so $MAKEOPTS "MAKE = make $MAKEOPTS" all - make $MAKEOPTS "MAKE = make $MAKEOPTS" all + try make -f Makefile-libbz2_so $MAKEOPTS "MAKE = try make $MAKEOPTS" all + try make $MAKEOPTS "MAKE = try make $MAKEOPTS" all } src_install() { dodoc README LICENSE CHANGES manual.ps docinto html dodoc manual_*.html - make PREFIX=${D}/usr install + try make PREFIX=${D}/usr install strip ${D}/usr/bin/* into /usr dolib.so libbz2.so.1.0.1 diff --git a/sys-apps/console-data/console-data-1999.08.29-r1.ebuild b/sys-apps/console-data/console-data-1999.08.29-r1.ebuild index 895436612ce3..8d8e3f92b18c 100644 --- a/sys-apps/console-data/console-data-1999.08.29-r1.ebuild +++ b/sys-apps/console-data/console-data-1999.08.29-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-data/console-data-1999.08.29-r1.ebuild,v 1.2 2000/08/16 04:38:23 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-data/console-data-1999.08.29-r1.ebuild,v 1.3 2000/09/15 20:09:16 drobbins Exp $ P=console-data-1999.08.29 A=${P}.tar.gz @@ -12,15 +12,15 @@ HOMEPAGE="http://altern.org/ydirson/en/lct/data.html" src_compile() { - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_install() { dodoc ChangeLog doc/README.* - make DESTDIR=${D} install + try make DESTDIR=${D} install } diff --git a/sys-apps/console-tools/console-tools-0.2.3-r1.ebuild b/sys-apps/console-tools/console-tools-0.2.3-r1.ebuild index bd9583e643e5..c1283db6f21d 100644 --- a/sys-apps/console-tools/console-tools-0.2.3-r1.ebuild +++ b/sys-apps/console-tools/console-tools-0.2.3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-tools/console-tools-0.2.3-r1.ebuild,v 1.2 2000/08/16 04:38:23 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/console-tools/console-tools-0.2.3-r1.ebuild,v 1.3 2000/09/15 20:09:17 drobbins Exp $ P=console-tools-0.2.3 A=${P}.tar.gz @@ -11,17 +11,17 @@ SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/keyboards/"${A} HOMEPAGE="http://altern.org/ydirson/en/lct/" src_compile() { - ./configure --prefix=/usr --host=${CHOST} + try ./configure --prefix=/usr --host=${CHOST} mv Makefile Makefile.orig #building without documentation for now sed -e s/doc// Makefile.orig > Makefile - make ${MAKEOPTS} "MAKE = make ${MAKEOPTS}" all + try make all } src_install() { into /usr cd ${S} - make DESTDIR=${D} install + try make DESTDIR=${D} install strip ${D}/usr/bin/* strip --strip-unneeded ${D}/usr/lib/*.so.0.0.0 dodoc BUGS COPYING* CREDITS ChangeLog NEWS README RELEASE TODO diff --git a/sys-apps/cpio/cpio-2.4.2-r1.ebuild b/sys-apps/cpio/cpio-2.4.2-r1.ebuild index ecb4f75a7314..3109b75159ff 100644 --- a/sys-apps/cpio/cpio-2.4.2-r1.ebuild +++ b/sys-apps/cpio/cpio-2.4.2-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/cpio/cpio-2.4.2-r1.ebuild,v 1.2 2000/08/16 04:38:23 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/cpio/cpio-2.4.2-r1.ebuild,v 1.3 2000/09/15 20:09:17 drobbins Exp $ P="cpio-2.4.2" A="${P}.tar.gz" @@ -11,8 +11,8 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/cpio/"${A} HOMEPAGE="http://www.gnu.org/software/cpio/cpio.html" src_compile() { - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_unpack() { diff --git a/sys-apps/debianutils/debianutils-1.13.3-r1.ebuild b/sys-apps/debianutils/debianutils-1.13.3-r1.ebuild index 8257576114dc..0164900cb50c 100644 --- a/sys-apps/debianutils/debianutils-1.13.3-r1.ebuild +++ b/sys-apps/debianutils/debianutils-1.13.3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-1.13.3-r1.ebuild,v 1.2 2000/08/16 04:38:23 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/debianutils/debianutils-1.13.3-r1.ebuild,v 1.3 2000/09/15 20:09:17 drobbins Exp $ P=debianutils-1.13.3 A=debianutils_1.13.3.tar.gz @@ -10,7 +10,7 @@ DESCRIPTION="A selection of tools from Debian" SRC_URI="ftp://ftp.debian.org/debian/dists/potato/main/source/base/${A}" src_compile() { - make + try make } src_unpack() { diff --git a/sys-apps/diffutils/diffutils-2.7-r1.ebuild b/sys-apps/diffutils/diffutils-2.7-r1.ebuild index 8e09240bf39f..bbfb5fbc2a97 100644 --- a/sys-apps/diffutils/diffutils-2.7-r1.ebuild +++ b/sys-apps/diffutils/diffutils-2.7-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-2.7-r1.ebuild,v 1.2 2000/08/16 04:38:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/diffutils/diffutils-2.7-r1.ebuild,v 1.3 2000/09/15 20:09:17 drobbins Exp $ P=diffutils-2.7 A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://ftp.gnu.org/gnu/diffutils/diffutils-2.7.tar.gz" HOMEPAGE="http://www.gnu.org/software/diffutils/diffutils.html" src_compile() { - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_install() { diff --git a/sys-apps/e2fsprogs/e2fsprogs-1.18-r1.ebuild b/sys-apps/e2fsprogs/e2fsprogs-1.18-r1.ebuild index ddac7a8ebaef..b94a7881733c 100644 --- a/sys-apps/e2fsprogs/e2fsprogs-1.18-r1.ebuild +++ b/sys-apps/e2fsprogs/e2fsprogs-1.18-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.18-r1.ebuild,v 1.2 2000/08/16 04:38:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.18-r1.ebuild,v 1.3 2000/09/15 20:09:17 drobbins Exp $ P=e2fsprogs-1.18 A=${P}.tar.gz S=${WORKDIR}/${P} @@ -11,14 +11,14 @@ HOMEPAGE="http://web.mit.edu/tytso/www/linux/e2fsprogs.html" src_compile() { - ./configure --host=${CHOST} --enable-elf-shlibs - make + try ./configure --host=${CHOST} --enable-elf-shlibs + try make } src_install() { into /usr - make DESTDIR=${D} install - make DESTDIR=${D} install-libs + try make DESTDIR=${D} install + try make DESTDIR=${D} install-libs gzip -9 ${D}/usr/man/man?/* if [ -z "DBUG" ] then diff --git a/sys-apps/e2fsprogs/e2fsprogs-1.19.ebuild b/sys-apps/e2fsprogs/e2fsprogs-1.19.ebuild index 4ff7acf4591a..a3dfae0ba128 100644 --- a/sys-apps/e2fsprogs/e2fsprogs-1.19.ebuild +++ b/sys-apps/e2fsprogs/e2fsprogs-1.19.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.19.ebuild,v 1.2 2000/08/16 04:38:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.19.ebuild,v 1.3 2000/09/15 20:09:17 drobbins Exp $ P=e2fsprogs-1.19 A=${P}.tar.gz @@ -12,14 +12,14 @@ HOMEPAGE="http://e2fsprogs.sourceforge.net/" src_compile() { - ./configure --host=${CHOST} --enable-elf-shlibs - make + try ./configure --host=${CHOST} --enable-elf-shlibs + try make } src_install() { into /usr - make DESTDIR=${D} install - make DESTDIR=${D} install-libs + try make DESTDIR=${D} install + try make DESTDIR=${D} install-libs prepman if [ -z "DBUG" ] then diff --git a/sys-apps/ebuild/ebuild-1.2-r1.ebuild b/sys-apps/ebuild/ebuild-1.2-r1.ebuild index 5f611033f3ef..6ab1949f0dcd 100644 --- a/sys-apps/ebuild/ebuild-1.2-r1.ebuild +++ b/sys-apps/ebuild/ebuild-1.2-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/ebuild/ebuild-1.2-r1.ebuild,v 1.2 2000/08/16 04:38:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ebuild/ebuild-1.2-r1.ebuild,v 1.3 2000/09/15 20:09:17 drobbins Exp $ P=ebuild-1.2 A="" @@ -19,7 +19,7 @@ src_compile() { src_install() { cd ${O}/files insinto /etc - doins make.conf + doins try make.conf dodir /usr/bin dodir /usr/sbin insinto /usr/bin diff --git a/sys-apps/file/file-3.32.ebuild b/sys-apps/file/file-3.32.ebuild index d27f1ffe1abe..1f37c5d3079e 100644 --- a/sys-apps/file/file-3.32.ebuild +++ b/sys-apps/file/file-3.32.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-3.32.ebuild,v 1.1 2000/08/23 07:00:07 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/file/file-3.32.ebuild,v 1.2 2000/09/15 20:09:18 drobbins Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -12,8 +12,8 @@ DESCRIPTION="Program to identify a file's format by scanning binary data for pat SRC_URI="ftp://ftp.astron.com/pub/file/${A}" src_compile() { - ./configure --prefix=/usr --host=${CHOST} - make + try ./configure --prefix=/usr --host=${CHOST} + try make } src_install() { diff --git a/sys-apps/fileutils/fileutils-4.0x-r1.ebuild b/sys-apps/fileutils/fileutils-4.0x-r1.ebuild index 696e54623e12..3bf6154099b4 100644 --- a/sys-apps/fileutils/fileutils-4.0x-r1.ebuild +++ b/sys-apps/fileutils/fileutils-4.0x-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/fileutils-4.0x-r1.ebuild,v 1.2 2000/08/16 04:38:24 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/fileutils-4.0x-r1.ebuild,v 1.3 2000/09/15 20:09:18 drobbins Exp $ P=fileutils-4.0x A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://alpha.gnu.org/gnu/fetish/fileutils-4.0x.tar.gz" HOMEPAGE="http://www.gnu.org/software/fileutils/fileutils.html" src_compile() { - ./configure --prefix=/usr - make + try ./configure --prefix=/usr + try make } src_install() { diff --git a/sys-apps/fileutils/fileutils-4.0y.ebuild b/sys-apps/fileutils/fileutils-4.0y.ebuild index 22814b828874..d742833fe1d8 100644 --- a/sys-apps/fileutils/fileutils-4.0y.ebuild +++ b/sys-apps/fileutils/fileutils-4.0y.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/fileutils-4.0y.ebuild,v 1.1 2000/08/25 10:39:10 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fileutils/fileutils-4.0y.ebuild,v 1.2 2000/09/15 20:09:18 drobbins Exp $ P=fileutils-4.0y A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://alpha.gnu.org/gnu/fetish/${A}" HOMEPAGE="http://www.gnu.org/software/fileutils/fileutils.html" src_compile() { - ./configure --prefix=/usr - make + try ./configure --prefix=/usr + try make } src_install() { diff --git a/sys-apps/findutils/findutils-4.1-r1.ebuild b/sys-apps/findutils/findutils-4.1-r1.ebuild index 8b74d475fbf4..44f5f14180ad 100644 --- a/sys-apps/findutils/findutils-4.1-r1.ebuild +++ b/sys-apps/findutils/findutils-4.1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.1-r1.ebuild,v 1.2 2000/08/16 04:38:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/findutils/findutils-4.1-r1.ebuild,v 1.3 2000/09/15 20:09:18 drobbins Exp $ P=findutils-4.1 A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/findutils/findutils-4.1.tar.gz" HOMEPAGE="http://www.gnu.org/software/findutils/findutils.html" src_compile() { - ./configure --prefix=/usr --host=${CHOST} - make + try ./configure --prefix=/usr --host=${CHOST} + try make } src_unpack() { diff --git a/sys-apps/gawk/gawk-3.0.4-r1.ebuild b/sys-apps/gawk/gawk-3.0.4-r1.ebuild index 8e921b74e772..5b1fba52d834 100644 --- a/sys-apps/gawk/gawk-3.0.4-r1.ebuild +++ b/sys-apps/gawk/gawk-3.0.4-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.0.4-r1.ebuild,v 1.2 2000/08/16 04:38:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.0.4-r1.ebuild,v 1.3 2000/09/15 20:09:19 drobbins Exp $ P=gawk-3.0.4 A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/gawk/gawk-3.0.4.tar.gz" HOMEPAGE="http://www.gnu.org/software/gawk/gawk.html" src_compile() { - ./configure --prefix=/usr --host=${CHOST} - make + try ./configure --prefix=/usr --host=${CHOST} + try make } src_install() { diff --git a/sys-apps/gawk/gawk-3.0.6.ebuild b/sys-apps/gawk/gawk-3.0.6.ebuild index 88213db8f333..fd7175522662 100644 --- a/sys-apps/gawk/gawk-3.0.6.ebuild +++ b/sys-apps/gawk/gawk-3.0.6.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.0.6.ebuild,v 1.1 2000/08/25 15:10:24 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gawk/gawk-3.0.6.ebuild,v 1.2 2000/09/15 20:09:19 drobbins Exp $ P=gawk-3.0.6 A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/gawk/${A}" HOMEPAGE="http://www.gnu.org/software/gawk/gawk.html" src_compile() { - ./configure --prefix=/usr --host=${CHOST} - make + try ./configure --prefix=/usr --host=${CHOST} + try make } src_install() { diff --git a/sys-apps/grep/grep-2.4.2-r1.ebuild b/sys-apps/grep/grep-2.4.2-r1.ebuild index 34f9b9d403af..09802de50a1c 100644 --- a/sys-apps/grep/grep-2.4.2-r1.ebuild +++ b/sys-apps/grep/grep-2.4.2-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.4.2-r1.ebuild,v 1.2 2000/08/16 04:38:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grep/grep-2.4.2-r1.ebuild,v 1.3 2000/09/15 20:09:19 drobbins Exp $ P=grep-2.4.2 A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/grep/${A}" HOMEPAGE="http://www.gnu.org/software/grep/grep.html" src_compile() { - ./configure --prefix=/usr --host=${CHOST} - make + try ./configure --prefix=/usr --host=${CHOST} + try make } src_install() { diff --git a/sys-apps/groff/groff-1.15-r1.ebuild b/sys-apps/groff/groff-1.15-r1.ebuild index 306265cf41ab..6f040e59e0c0 100644 --- a/sys-apps/groff/groff-1.15-r1.ebuild +++ b/sys-apps/groff/groff-1.15-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.15-r1.ebuild,v 1.2 2000/08/16 04:38:26 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.15-r1.ebuild,v 1.3 2000/09/15 20:09:19 drobbins Exp $ P=groff-1.15 A=${P}.tar.gz @@ -11,13 +11,13 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/groff/${A}" HOMEPAGE="http://www.gnu.org/software/groff/groff.html" src_compile() { - ./configure --host=${CHOST} --prefix=/usr + try ./configure --host=${CHOST} --prefix=/usr cd ${S}/tmac mv Makefile.sub Makefile.sub.orig sed -e "s/all: stamp-strip stamp-wrap/all: stamp-strip/" Makefile.sub.orig > Makefile.sub #fixed some things with the build process using good 'ol sed cd ${S} - make + try make } src_install() { diff --git a/sys-apps/groff/groff-1.16.1.ebuild b/sys-apps/groff/groff-1.16.1.ebuild index 2d547dc6af1c..027ce593b39c 100644 --- a/sys-apps/groff/groff-1.16.1.ebuild +++ b/sys-apps/groff/groff-1.16.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.16.1.ebuild,v 1.2 2000/08/28 06:05:03 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/groff/groff-1.16.1.ebuild,v 1.3 2000/09/15 20:09:19 drobbins Exp $ P=groff-1.16.1 A=${P}.tar.gz @@ -11,19 +11,19 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/groff/${A}" HOMEPAGE="http://www.gnu.org/software/groff/groff.html" src_compile() { - ./configure --host=${CHOST} --prefix=/usr + try ./configure --host=${CHOST} --prefix=/usr cd ${S}/tmac mv Makefile.sub Makefile.sub.orig sed -e "s/all: stamp-strip stamp-wrap/all: stamp-strip/" Makefile.sub.orig > Makefile.sub #fixed some things with the build process using good 'ol sed cd ${S} - make + try make } src_install() { into /usr dodoc NEWS PROBLEMS PROJECTS README TODO VERSION BUG-REPORT COPYING ChangeLog - make prefix=${D}/usr install + try make prefix=${D}/usr install prepman } diff --git a/sys-apps/gzip/gzip-1.2.4a-r1.ebuild b/sys-apps/gzip/gzip-1.2.4a-r1.ebuild index 7459a698f499..9a059703277e 100644 --- a/sys-apps/gzip/gzip-1.2.4a-r1.ebuild +++ b/sys-apps/gzip/gzip-1.2.4a-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/gzip/gzip-1.2.4a-r1.ebuild,v 1.2 2000/08/16 04:38:26 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/gzip/gzip-1.2.4a-r1.ebuild,v 1.3 2000/09/15 20:09:19 drobbins Exp $ P=gzip-1.2.4a A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://prep.ai.mit.edu/gnu/gzip/${A}" HOMEPAGE="http://www.gnu.org/software/gzip/gzip.html" src_compile() { - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_install() { diff --git a/sys-apps/hdparm/hdparm-3.9-r1.ebuild b/sys-apps/hdparm/hdparm-3.9-r1.ebuild index 0b2553cf4e36..4e59b3ad116e 100644 --- a/sys-apps/hdparm/hdparm-3.9-r1.ebuild +++ b/sys-apps/hdparm/hdparm-3.9-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdparm/hdparm-3.9-r1.ebuild,v 1.3 2000/08/21 05:39:46 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdparm/hdparm-3.9-r1.ebuild,v 1.4 2000/09/15 20:09:19 drobbins Exp $ P=hdparm-3.9 A=${P}.tar.gz @@ -10,7 +10,7 @@ DESCRIPTION="Utility to change hard drive performance parameters" SRC_URI="http://metalab.unc.edu/pub/Linux/system/hardware/${A}" src_compile() { - make all + try make all } src_unpack() { diff --git a/sys-apps/ipchains/ipchains-1.3.9-r1.ebuild b/sys-apps/ipchains/ipchains-1.3.9-r1.ebuild index 291bc0ced656..cea72e112a77 100644 --- a/sys-apps/ipchains/ipchains-1.3.9-r1.ebuild +++ b/sys-apps/ipchains/ipchains-1.3.9-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/ipchains/ipchains-1.3.9-r1.ebuild,v 1.2 2000/08/16 04:38:26 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ipchains/ipchains-1.3.9-r1.ebuild,v 1.3 2000/09/15 20:09:19 drobbins Exp $ P=ipchains-1.3.9 A=${P}.tar.bz2 @@ -12,7 +12,7 @@ HOMEPAGE="http://netfilter.filewatcher.org/ipchains/" src_compile() { - make + try make } src_unpack() { diff --git a/sys-apps/isapnptools/isapnptools-1.22-r1.ebuild b/sys-apps/isapnptools/isapnptools-1.22-r1.ebuild index 101c8c77fc62..18fb934c7622 100644 --- a/sys-apps/isapnptools/isapnptools-1.22-r1.ebuild +++ b/sys-apps/isapnptools/isapnptools-1.22-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/isapnptools/isapnptools-1.22-r1.ebuild,v 1.2 2000/08/16 04:38:27 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/isapnptools/isapnptools-1.22-r1.ebuild,v 1.3 2000/09/15 20:09:19 drobbins Exp $ P=isapnptools-1.22 A=${P}.tgz @@ -11,7 +11,7 @@ SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/hardware/isapnptools-1.22.tgz" HOMEPAGE="http://www.roestock.demon.co.uk/isapnptools/" src_compile() { - make + try make } src_unpack() { @@ -29,8 +29,8 @@ src_install() { cd ${S} dodir /usr/man/man5 dodir /usr/man/man8 - make installprefix=${D}/ install - make installprefix=${D}/ install.man + try make installprefix=${D}/ install + try make installprefix=${D}/ install.man prepman dodoc CHANGES COPYING FILES README* *.txt isapnp.conf } diff --git a/sys-apps/isapnptools/isapnptools-1.23.ebuild b/sys-apps/isapnptools/isapnptools-1.23.ebuild index 6c3f864b47da..e0e24894be10 100644 --- a/sys-apps/isapnptools/isapnptools-1.23.ebuild +++ b/sys-apps/isapnptools/isapnptools-1.23.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/isapnptools/isapnptools-1.23.ebuild,v 1.1 2000/08/25 15:10:25 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/isapnptools/isapnptools-1.23.ebuild,v 1.2 2000/09/15 20:09:19 drobbins Exp $ P=isapnptools-1.23 A=${P}.tgz @@ -11,8 +11,8 @@ SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/hardware/${A}" HOMEPAGE="http://www.roestock.demon.co.uk/isapnptools/" src_compile() { - ./configure --prefix=/usr --host=${CHOST} - make + try ./configure --prefix=/usr --host=${CHOST} + try make } src_unpack() { @@ -31,7 +31,7 @@ src_install() { cd ${S} dodir /usr/man/man5 dodir /usr/man/man8 - make DESTDIR=${D} install + try make DESTDIR=${D} install prepman dodoc AUTHORS ChangeLog COPYING README doc/README* doc/*.txt dodoc etc/isapnp.* diff --git a/sys-apps/less/less-358-r1.ebuild b/sys-apps/less/less-358-r1.ebuild index 1bdd294569f9..f555868ceeed 100644 --- a/sys-apps/less/less-358-r1.ebuild +++ b/sys-apps/less/less-358-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/less/less-358-r1.ebuild,v 1.2 2000/08/16 04:38:27 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/less/less-358-r1.ebuild,v 1.3 2000/09/15 20:09:19 drobbins Exp $ P=less-358 A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://ftp.gnu.org/pub/gnu/less/"${A} HOMEPAGE="http://www.gnu.org/software/less/less.html" src_compile() { - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_install() { diff --git a/sys-apps/lilo/lilo-21.5-r1.ebuild b/sys-apps/lilo/lilo-21.5-r1.ebuild index fa286ee034d3..bb9647cf1830 100644 --- a/sys-apps/lilo/lilo-21.5-r1.ebuild +++ b/sys-apps/lilo/lilo-21.5-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lilo/lilo-21.5-r1.ebuild,v 1.2 2000/08/16 04:38:27 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lilo/lilo-21.5-r1.ebuild,v 1.3 2000/09/15 20:09:20 drobbins Exp $ P=lilo-21.5 A=${P}.tar.gz @@ -10,7 +10,7 @@ DESCRIPTION="Standard Linux boot loader" SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/"${A} src_compile() { - make + try make } src_install() { diff --git a/sys-apps/lilo/lilo-21.5.1.ebuild b/sys-apps/lilo/lilo-21.5.1.ebuild index 42bf61df9ca0..4617d8c9def9 100644 --- a/sys-apps/lilo/lilo-21.5.1.ebuild +++ b/sys-apps/lilo/lilo-21.5.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lilo/lilo-21.5.1.ebuild,v 1.1 2000/08/27 23:02:56 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lilo/lilo-21.5.1.ebuild,v 1.2 2000/09/15 20:09:20 drobbins Exp $ P=lilo-21.5.1 A=${P}.tar.gz @@ -10,7 +10,7 @@ DESCRIPTION="Standard Linux boot loader" SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/"${A} src_compile() { - make + try make } src_install() { diff --git a/sys-apps/logrotate/logrotate-3.3-r1.ebuild b/sys-apps/logrotate/logrotate-3.3-r1.ebuild index 7572acc8c305..8989a9c577f6 100644 --- a/sys-apps/logrotate/logrotate-3.3-r1.ebuild +++ b/sys-apps/logrotate/logrotate-3.3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/logrotate/logrotate-3.3-r1.ebuild,v 1.4 2000/08/27 05:31:27 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/logrotate/logrotate-3.3-r1.ebuild,v 1.5 2000/09/15 20:09:20 drobbins Exp $ P=logrotate-3.3 A=${P}.tar.gz @@ -18,7 +18,7 @@ src_compile() { cd ${S} cp Makefile Makefile.orig sed -e "s:CFLAGS += -g:CFLAGS += -g ${CFLAGS}:" Makefile.orig > Makefile - make + try make } src_install() { diff --git a/sys-apps/man/man-1.5.1h-r1.ebuild b/sys-apps/man/man-1.5.1h-r1.ebuild index d55bc4dbd490..867bf7024698 100644 --- a/sys-apps/man/man-1.5.1h-r1.ebuild +++ b/sys-apps/man/man-1.5.1h-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5.1h-r1.ebuild,v 1.1 2000/08/16 17:17:57 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/man/man-1.5.1h-r1.ebuild,v 1.2 2000/09/15 20:09:20 drobbins Exp $ P=man-1.5h1 A=${P}.tar.gz @@ -10,16 +10,16 @@ DESCRIPTION="Standard commands to read man pages" SRC_URI="ftp://ftp.win.tue.nl/pub/linux-local/utils/man/${P}" src_compile() { - ./configure +sgid +fsstnd +lang all + try ./configure +sgid +fsstnd +lang all for FOOF in src man2html do - make ${FOOF}/Makefile + try make ${FOOF}/Makefile cd ${S}/${FOOF} cp Makefile Makefile.orig sed -e "s/gcc -O/gcc ${CFLAGS}/" Makefile.orig > Makefile cd ${S} done - make + try make } src_unpacks() { @@ -36,9 +36,9 @@ src_install() { exeopts -s -m 2555 -o root -g man exeinto /usr/bin doexe man - chmod +x apropos whatis makewhatis + chmod +x apropos whatis try makewhatis dobin apropos whatis - dosbin makewhatis + dosbin try makewhatis dodir /usr/lib insinto /usr/lib doins man.conf @@ -50,7 +50,7 @@ src_install() { cp Makefile Makefile.orig echo "BINROOTDIR=${D}" > Makefile cat Makefile.orig >> Makefile - make installsubdirs + try make installsubdirs cd ${S} dodoc COPYING LSM README* TODO for i in cs da de es fi fr hr it nl pl pt sl diff --git a/sys-apps/mkisofs/mkisofs-1.13-r1.ebuild b/sys-apps/mkisofs/mkisofs-1.13-r1.ebuild index f20b607af213..2cab73994bfd 100644 --- a/sys-apps/mkisofs/mkisofs-1.13-r1.ebuild +++ b/sys-apps/mkisofs/mkisofs-1.13-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/mkisofs/mkisofs-1.13-r1.ebuild,v 1.2 2000/08/16 04:38:28 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/mkisofs/mkisofs-1.13-r1.ebuild,v 1.3 2000/09/15 20:09:20 drobbins Exp $ P=mkisofs-1.13 A=${P}.tar.gz @@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/mkisofs/$A" HOMEPAGE="http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/mkisofs.html" src_compile() { - make + try make } src_install() { diff --git a/sys-apps/modutils/modutils-2.3.12-r1.ebuild b/sys-apps/modutils/modutils-2.3.12-r1.ebuild index 3f5b2afced0f..b74443b790b0 100644 --- a/sys-apps/modutils/modutils-2.3.12-r1.ebuild +++ b/sys-apps/modutils/modutils-2.3.12-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.3.12-r1.ebuild,v 1.2 2000/08/16 04:38:28 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.3.12-r1.ebuild,v 1.3 2000/09/15 20:09:20 drobbins Exp $ P=modutils-2.3.12 A=${P}.tar.gz @@ -10,8 +10,8 @@ DESCRIPTION="Standard kernel module utilities" SRC_URI="ftp://ftp.ocs.com.au/pub/modutils/v2.3/${A}" src_compile() { - ./configure --prefix=/ --host=${CHOST} - make $MAKEOPTS "MAKE = make $MAKEOPTS" + try ./configure --prefix=/ --host=${CHOST} + try make } src_install() { @@ -21,7 +21,7 @@ src_install() { dodir /usr/man/man8 dodir /usr/man/man5 dodir /usr/man/man2 - make prefix=${D} mandir=${D}/usr/man install + try make prefix=${D} mandir=${D}/usr/man install prepman strip ${D}/sbin/* dodoc COPYING CREDITS ChangeLog NEWS README TODO diff --git a/sys-apps/modutils/modutils-2.3.14-r1.ebuild b/sys-apps/modutils/modutils-2.3.14-r1.ebuild index 8458dce8fe90..44d02e4d7b72 100644 --- a/sys-apps/modutils/modutils-2.3.14-r1.ebuild +++ b/sys-apps/modutils/modutils-2.3.14-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.3.14-r1.ebuild,v 1.2 2000/08/16 04:38:28 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.3.14-r1.ebuild,v 1.3 2000/09/15 20:09:20 drobbins Exp $ P=modutils-2.3.14 A=${P}.tar.gz @@ -10,8 +10,8 @@ DESCRIPTION="Standard kernel module utilities" SRC_URI="ftp://ftp.ocs.com.au/pub/modutils/v2.3/${A}" src_compile() { - ./configure --prefix=/ --host=${CHOST} - make $MAKEOPTS "MAKE = make $MAKEOPTS" + try ./configure --prefix=/ --host=${CHOST} + try make } src_install() { @@ -21,7 +21,7 @@ src_install() { dodir /usr/man/man8 dodir /usr/man/man5 dodir /usr/man/man2 - make prefix=${D} mandir=${D}/usr/man install + try make prefix=${D} mandir=${D}/usr/man install prepman strip ${D}/sbin/* dodoc COPYING CREDITS ChangeLog NEWS README TODO diff --git a/sys-apps/modutils/modutils-2.3.15.ebuild b/sys-apps/modutils/modutils-2.3.15.ebuild index 9b38c2d5db29..fca027714a57 100644 --- a/sys-apps/modutils/modutils-2.3.15.ebuild +++ b/sys-apps/modutils/modutils-2.3.15.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.3.15.ebuild,v 1.1 2000/08/22 17:43:40 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/modutils/modutils-2.3.15.ebuild,v 1.2 2000/09/15 20:09:20 drobbins Exp $ P=modutils-2.3.15 A=${P}.tar.gz @@ -10,8 +10,8 @@ DESCRIPTION="Standard kernel module utilities" SRC_URI="ftp://ftp.ocs.com.au/pub/modutils/v2.3/${A}" src_compile() { - ./configure --prefix=/ --host=${CHOST} - make $MAKEOPTS "MAKE = make $MAKEOPTS" + try ./configure --prefix=/ --host=${CHOST} + try make } src_install() { @@ -21,7 +21,7 @@ src_install() { dodir /usr/man/man8 dodir /usr/man/man5 dodir /usr/man/man2 - make prefix=${D} mandir=${D}/usr/man install + try make prefix=${D} mandir=${D}/usr/man install prepman strip ${D}/sbin/* dodoc COPYING CREDITS ChangeLog NEWS README TODO diff --git a/sys-apps/most/most-4.9.0-r1.ebuild b/sys-apps/most/most-4.9.0-r1.ebuild index d282ec2f3e57..66ba5551837a 100644 --- a/sys-apps/most/most-4.9.0-r1.ebuild +++ b/sys-apps/most/most-4.9.0-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/most-4.9.0-r1.ebuild,v 1.2 2000/08/16 04:38:28 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/most-4.9.0-r1.ebuild,v 1.3 2000/09/15 20:09:20 drobbins Exp $ P=most-4.9.0 A=${P}.tar.gz @@ -10,8 +10,8 @@ DESCRIPTION="An extremely excellent text file reader" SRC_URI="ftp://space.mit.edu/pub/davis/most/${A}" src_compile() { - ./configure --host=${CHOST} --prefix=/usr - make -j ${PM} + try ./configure --host=${CHOST} --prefix=/usr + try make -j ${PM} } src_install() { diff --git a/sys-apps/net-tools/net-tools-1.57-r1.ebuild b/sys-apps/net-tools/net-tools-1.57-r1.ebuild index 1307cbcb4386..8550c66f55b9 100644 --- a/sys-apps/net-tools/net-tools-1.57-r1.ebuild +++ b/sys-apps/net-tools/net-tools-1.57-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/net-tools/net-tools-1.57-r1.ebuild,v 1.2 2000/08/16 04:38:28 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/net-tools/net-tools-1.57-r1.ebuild,v 1.3 2000/09/15 20:09:21 drobbins Exp $ P=net-tools-1.57 A=${P}.tar.bz2 @@ -10,9 +10,9 @@ DESCRIPTION="standard Linux network tools" SRC_URI="http://www.tazenda.demon.co.uk/phil/net-tools/${A}" src_compile() { - make + try make cd po - make + try make } @@ -20,7 +20,7 @@ src_unpack() { unpack ${A} cd ${S} cp ${O}/files/config.h . - cp ${O}/files/config.make . + cp ${O}/files/config.try make . mv Makefile Makefile.orig sed -e "s/-O2 -Wall -g/${CFLAGS}/" Makefile.orig > Makefile } @@ -30,7 +30,7 @@ src_install() { dosbin arp hostname ifconfig netstat plipconfig rarp route dosbin slattach iptunnel ipmaddr cd po - make BASEDIR=${D} install + try make BASEDIR=${D} install cd .. doman man/en_US/*.[18] dodoc COPYING README README.ipv6 TODO diff --git a/sys-apps/netkit-base/netkit-base-0.16-r1.ebuild b/sys-apps/netkit-base/netkit-base-0.16-r1.ebuild index d3ba41ba33a6..1dcae2d6544c 100644 --- a/sys-apps/netkit-base/netkit-base-0.16-r1.ebuild +++ b/sys-apps/netkit-base/netkit-base-0.16-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/netkit-base/netkit-base-0.16-r1.ebuild,v 1.2 2000/08/16 04:38:28 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/netkit-base/netkit-base-0.16-r1.ebuild,v 1.3 2000/09/15 20:09:21 drobbins Exp $ P=netkit-base-0.16 A=${P}.tar.gz @@ -10,13 +10,13 @@ DESCRIPTION="Standard linux net thingees -- inetd, ping" SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${A}" src_compile() { - make + try make } src_unpack() { unpack ${A} cd ${S} - ./configure + try ./configure mv MCONFIG MCONFIG.orig sed -e "s/-pipe -O2/${CFLAGS}/" MCONFIG.orig > MCONFIG } diff --git a/sys-apps/netkit-base/netkit-base-0.17-r1.ebuild b/sys-apps/netkit-base/netkit-base-0.17-r1.ebuild index bde6db3b8cb4..7b383dcaa61e 100644 --- a/sys-apps/netkit-base/netkit-base-0.17-r1.ebuild +++ b/sys-apps/netkit-base/netkit-base-0.17-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/netkit-base/netkit-base-0.17-r1.ebuild,v 1.2 2000/08/16 04:38:28 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/netkit-base/netkit-base-0.17-r1.ebuild,v 1.3 2000/09/15 20:09:21 drobbins Exp $ P=netkit-base-0.17 A=${P}.tar.gz @@ -10,13 +10,13 @@ DESCRIPTION="Standard linux net thingees -- inetd, ping" SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${A}" src_compile() { - make + try make } src_unpack() { unpack ${A} cd ${S} - ./configure + try ./configure mv MCONFIG MCONFIG.orig sed -e "s/-pipe -O2/${CFLAGS}/" MCONFIG.orig > MCONFIG } diff --git a/sys-apps/procps/procps-2.0.7-r1.ebuild b/sys-apps/procps/procps-2.0.7-r1.ebuild index 05657cf0bbd6..e5eee1c45012 100644 --- a/sys-apps/procps/procps-2.0.7-r1.ebuild +++ b/sys-apps/procps/procps-2.0.7-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/procps-2.0.7-r1.ebuild,v 1.2 2000/08/16 04:38:29 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/procps-2.0.7-r1.ebuild,v 1.3 2000/09/15 20:09:21 drobbins Exp $ P=procps-2.0.7 A=${P}.tar.gz @@ -10,9 +10,9 @@ DESCRIPTION="Standard informational utilities and process-handling tools" SRC_URI="ftp://people.redhat.com/johnsonm/procps/${A}" src_compile() { - make + try make cd ps - make + try make } src_unpack() { @@ -40,7 +40,7 @@ src_install() { dodir /usr/man/man5 dodir /lib dodir /bin - make DESTDIR=${D} install + try make DESTDIR=${D} install prepman cd ${S} dodoc BUGS COPYING COPYING.LIB NEWS TODO diff --git a/sys-apps/psmisc/psmisc-19-r1.ebuild b/sys-apps/psmisc/psmisc-19-r1.ebuild index 16c905aecb29..e16b0ada6a44 100644 --- a/sys-apps/psmisc/psmisc-19-r1.ebuild +++ b/sys-apps/psmisc/psmisc-19-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/psmisc/psmisc-19-r1.ebuild,v 1.2 2000/08/16 04:38:29 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/psmisc/psmisc-19-r1.ebuild,v 1.3 2000/09/15 20:09:21 drobbins Exp $ #from Debian ;) @@ -12,7 +12,7 @@ DESCRIPTION="Handy process-related utilities from Debian" SRC_URI="ftp://lrcftp.epfl.ch/pub/linux/local/psmisc/"${A} src_compile() { - make + try make } src_unpack() { diff --git a/sys-apps/raidtools/raidtools-0.90-r1.ebuild b/sys-apps/raidtools/raidtools-0.90-r1.ebuild index d13b2d950e90..9b34c353557f 100644 --- a/sys-apps/raidtools/raidtools-0.90-r1.ebuild +++ b/sys-apps/raidtools/raidtools-0.90-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/raidtools/raidtools-0.90-r1.ebuild,v 1.2 2000/08/16 04:38:29 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/raidtools/raidtools-0.90-r1.ebuild,v 1.3 2000/09/15 20:09:21 drobbins Exp $ P=raidtools-0.90-1 A=raidtools-dangerous-0.90-20000116.tar.gz @@ -10,10 +10,10 @@ DESCRIPTION="Linux RAID 0/1/4/5 utilities" SRC_URI="http://people.redhat.com/mingo/raid-patches/"${A} src_compile() { - ./configure + try ./configure cp Makefile Makefile.orig sed -e "s/-O2//" -e "s/-g//" Makefile.orig > Makefile - make + try make } src_install() { diff --git a/sys-apps/sed/sed-3.02.80.ebuild b/sys-apps/sed/sed-3.02.80.ebuild index 8ca7c08364d7..33c428cb4773 100644 --- a/sys-apps/sed/sed-3.02.80.ebuild +++ b/sys-apps/sed/sed-3.02.80.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-3.02.80.ebuild,v 1.2 2000/08/16 04:38:29 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-3.02.80.ebuild,v 1.3 2000/09/15 20:09:22 drobbins Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -9,8 +9,8 @@ DESCRIPTION="Super-useful stream editor" SRC_URI="ftp://alpha.gnu.org/pub/gnu/sed/${A}" src_compile() { - ./configure --prefix=/usr --host=${CHOST} - make + try ./configure --prefix=/usr --host=${CHOST} + try make } src_install() { diff --git a/sys-apps/setserial/setserial-2.17-r1.ebuild b/sys-apps/setserial/setserial-2.17-r1.ebuild index ff9928dc7e10..0d6a35b2344c 100644 --- a/sys-apps/setserial/setserial-2.17-r1.ebuild +++ b/sys-apps/setserial/setserial-2.17-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/setserial/setserial-2.17-r1.ebuild,v 1.3 2000/08/25 15:10:25 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/setserial/setserial-2.17-r1.ebuild,v 1.4 2000/09/15 20:09:22 drobbins Exp $ P=setserial-2.17 A=${P}.tar.gz @@ -11,8 +11,8 @@ SRC_URI="ftp://tsx-11.mit.edu/pub/linux/sources/sbin/${A} ftp://ftp.sunsite.org.uk/Mirrors/tsx-11.mit.edu/pub/linux/sources/sbin/${A}" src_compile() { - ./configure - make + try ./configure + try make } src_install() { diff --git a/sys-apps/sh-utils/sh-utils-2.0j-r1.ebuild b/sys-apps/sh-utils/sh-utils-2.0j-r1.ebuild index 09c1b82187e4..5ad33010ba03 100644 --- a/sys-apps/sh-utils/sh-utils-2.0j-r1.ebuild +++ b/sys-apps/sh-utils/sh-utils-2.0j-r1.ebuild @@ -2,7 +2,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sh-utils/sh-utils-2.0j-r1.ebuild,v 1.3 2000/08/21 05:39:46 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sh-utils/sh-utils-2.0j-r1.ebuild,v 1.4 2000/09/15 20:09:22 drobbins Exp $ P=sh-utils-2.0j A=${P}.tar.gz @@ -18,9 +18,9 @@ src_unpack() { } src_compile() { - ./configure --host=${CHOST} --prefix=/usr \ + try ./configure --host=${CHOST} --prefix=/usr \ --with-catgets --without-included-regex - make + try make } src_install() { diff --git a/sys-apps/shadow/shadow-19990827-r1.ebuild b/sys-apps/shadow/shadow-19990827-r1.ebuild index 24a0078c33d2..d496b47c3fb4 100644 --- a/sys-apps/shadow/shadow-19990827-r1.ebuild +++ b/sys-apps/shadow/shadow-19990827-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/shadow/shadow-19990827-r1.ebuild,v 1.2 2000/08/16 04:38:30 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/shadow/shadow-19990827-r1.ebuild,v 1.3 2000/09/15 20:09:22 drobbins Exp $ P="shadow-19990827" A=${P}.tar.gz @@ -11,10 +11,10 @@ DESCRIPTION="Utilities to deal with user accounts" SRC_URI="ftp://piast.t19.ds.pwr.wroc.pl/pub/linux/shadow/shadow-19990827.tar.gz" src_compile() { - ./configure --disable-desrpc --with-libcrypt --with-catgets \ + try ./configure --disable-desrpc --with-libcrypt --with-catgets \ --with-libcrack \ --with-libpam --disable-shared --host=${CHOST} - make + try make } src_unpack() { @@ -25,7 +25,7 @@ src_unpack() { src_install() { cd ${S} - make install prefix=${D}/usr exec_prefix=${D} + try make install prefix=${D}/usr exec_prefix=${D} cd ${D}/usr/sbin ln -s useradd ${D}/usr/sbin/adduser gzip -9 ${D}/usr/man/man?/*.[1-9] diff --git a/sys-apps/sharutils/sharutils-4.2.1-r1.ebuild b/sys-apps/sharutils/sharutils-4.2.1-r1.ebuild index 395859c4a0b5..03e1504d66d9 100644 --- a/sys-apps/sharutils/sharutils-4.2.1-r1.ebuild +++ b/sys-apps/sharutils/sharutils-4.2.1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sharutils/sharutils-4.2.1-r1.ebuild,v 1.2 2000/08/16 04:38:30 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sharutils/sharutils-4.2.1-r1.ebuild,v 1.3 2000/09/15 20:09:22 drobbins Exp $ P=sharutils-4.2.1 A=${P}.tar.gz @@ -10,8 +10,8 @@ DESCRIPTION="Tools to deal with shar archives" SRC_URI="ftp://prep.ai.mit.edu/gnu/sharutils/${A}" src_compile() { - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_unpack() { @@ -25,7 +25,7 @@ src_unpack() { src_install() { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install doman doc/*.[15] prepinfo rm -r ${D}/usr/share/locale diff --git a/sys-apps/shtool/shtool-1.5.1-r1.ebuild b/sys-apps/shtool/shtool-1.5.1-r1.ebuild index 3307f8acb13a..b0e6dd3c1bb5 100644 --- a/sys-apps/shtool/shtool-1.5.1-r1.ebuild +++ b/sys-apps/shtool/shtool-1.5.1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/shtool/shtool-1.5.1-r1.ebuild,v 1.2 2000/08/16 04:38:30 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/shtool/shtool-1.5.1-r1.ebuild,v 1.3 2000/09/15 20:09:22 drobbins Exp $ A=shtool-1.5.1.tar.gz S=${WORKDIR}/shtool-1.5.1 @@ -13,15 +13,15 @@ HOMEPAGE="http://www.gnu.org/software/shtool/shtool.html" src_compile() { cd ${S} - ./configure --prefix=/usr --host=${CHOST} - make + try ./configure --prefix=/usr --host=${CHOST} + try make } src_install () { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install prepman } diff --git a/sys-apps/sysklogd/sysklogd-1.3.31-r1.ebuild b/sys-apps/sysklogd/sysklogd-1.3.31-r1.ebuild index ecd2ad24ce34..e4eca352e636 100644 --- a/sys-apps/sysklogd/sysklogd-1.3.31-r1.ebuild +++ b/sys-apps/sysklogd/sysklogd-1.3.31-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysklogd/sysklogd-1.3.31-r1.ebuild,v 1.2 2000/08/16 04:38:30 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysklogd/sysklogd-1.3.31-r1.ebuild,v 1.3 2000/09/15 20:09:22 drobbins Exp $ P=sysklogd-1.3.31 A=sysklogd-1.3-31.tar.gz @@ -10,7 +10,7 @@ DESCRIPTION="standard log daemons" SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/daemons/${A}" src_compile() { - make + try make } src_unpack() { diff --git a/sys-apps/sysklogd/sysklogd-1.3.31-r2.ebuild b/sys-apps/sysklogd/sysklogd-1.3.31-r2.ebuild index 10ea6e1213f6..31c33dc52c88 100644 --- a/sys-apps/sysklogd/sysklogd-1.3.31-r2.ebuild +++ b/sys-apps/sysklogd/sysklogd-1.3.31-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysklogd/sysklogd-1.3.31-r2.ebuild,v 1.1 2000/08/28 15:06:20 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysklogd/sysklogd-1.3.31-r2.ebuild,v 1.2 2000/09/15 20:09:23 drobbins Exp $ P=sysklogd-1.3.31 A=sysklogd-1.3-31.tar.gz @@ -10,7 +10,7 @@ DESCRIPTION="standard log daemons" SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/daemons/${A}" src_compile() { - make + try make } src_unpack() { diff --git a/sys-apps/sysvinit/sysvinit-2.78-r1.ebuild b/sys-apps/sysvinit/sysvinit-2.78-r1.ebuild index 31de78791898..af81be9a0979 100644 --- a/sys-apps/sysvinit/sysvinit-2.78-r1.ebuild +++ b/sys-apps/sysvinit/sysvinit-2.78-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel robbins <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.78-r1.ebuild,v 1.2 2000/08/16 04:38:31 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/sysvinit-2.78-r1.ebuild,v 1.3 2000/09/15 20:09:23 drobbins Exp $ P="sysvinit-2.78" A=${P}.tar.gz @@ -11,7 +11,7 @@ SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/daemons/init/${A}" src_compile() { cd ${S}/src - make + try make cd ${S}/contrib gcc start-stop-daemon.c -o start-stop-daemon } diff --git a/sys-apps/tar/tar-1.13.17-r1.ebuild b/sys-apps/tar/tar-1.13.17-r1.ebuild index e1797047ab92..22ce4b1ab791 100644 --- a/sys-apps/tar/tar-1.13.17-r1.ebuild +++ b/sys-apps/tar/tar-1.13.17-r1.ebuild @@ -1,25 +1,25 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/tar/tar-1.13.17-r1.ebuild,v 1.2 2000/08/16 04:38:31 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/tar/tar-1.13.17-r1.ebuild,v 1.3 2000/09/15 20:09:23 drobbins Exp $ P=tar-1.13.17 A=${P}.tar.gz S=${WORKDIR}/${P} -DESCRIPTION="Use this to make tarballs :)" +DESCRIPTION="Use this to try make tarballs :)" SRC_URI="ftp://alpha.gnu.org/gnu/tar/"${A} src_compile() { - ./configure --prefix=/usr --with-catgets --host=${CHOST} + try ./configure --prefix=/usr --with-catgets --host=${CHOST} cp lib/fnmatch.hin lib/fnmatch.h - make + try make cd ${S} } src_install() { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install prepinfo dodoc COPYING NEWS README THANKS AUTHORS } diff --git a/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r1.ebuild b/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r1.ebuild index 781f1ae308d3..5af9a2d5a119 100644 --- a/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r1.ebuild +++ b/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r1.ebuild,v 1.2 2000/08/16 04:38:31 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcp-wrappers/tcp-wrappers-7.6-r1.ebuild,v 1.3 2000/09/15 20:09:23 drobbins Exp $ P=tcp-wrappers-7.6 A=tcp_wrappers_7.6.tar.gz @@ -21,7 +21,7 @@ src_unpack() { } src_compile() { - make REAL_DAEMON_DIR=/usr/sbin linux + try make REAL_DAEMON_DIR=/usr/sbin linux } src_install() { diff --git a/sys-apps/texinfo/texinfo-4.0-r1.ebuild b/sys-apps/texinfo/texinfo-4.0-r1.ebuild index abeb4c4d7320..c816ad25926b 100644 --- a/sys-apps/texinfo/texinfo-4.0-r1.ebuild +++ b/sys-apps/texinfo/texinfo-4.0-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.0-r1.ebuild,v 1.2 2000/08/16 04:38:31 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.0-r1.ebuild,v 1.3 2000/09/15 20:09:23 drobbins Exp $ P=texinfo-4.0 A=${P}.tar.gz @@ -10,13 +10,13 @@ DESCRIPTION="The GNU info program and utilities" SRC_URI="ftp://ftp.gnu.org/pub/gnu/texinfo/${A}" src_compile() { - ./configure --host=${CHOST} --prefix=/usr --with-catgets - make + try ./configure --host=${CHOST} --prefix=/usr --with-catgets + try make } src_install() { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install prepman prepinfo cp ${O}/files/mkinfodir ${D}/usr/bin diff --git a/sys-apps/textutils/textutils-2.0f-r1.ebuild b/sys-apps/textutils/textutils-2.0f-r1.ebuild index ab67c10ead1a..3ee9f21bc0c8 100644 --- a/sys-apps/textutils/textutils-2.0f-r1.ebuild +++ b/sys-apps/textutils/textutils-2.0f-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0f-r1.ebuild,v 1.3 2000/08/21 05:39:46 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0f-r1.ebuild,v 1.4 2000/09/15 20:09:23 drobbins Exp $ P=textutils-2.0f A=${P}.tar.gz @@ -11,9 +11,9 @@ DESCRIPTION="Standard GNU text utilities" SRC_URI="ftp://alpha.gnu.org/gnu/fetish/textutils-2.0f.tar.gz" src_compile() { - ./configure --prefix=/usr --host=${CHOST} \ + try ./configure --prefix=/usr --host=${CHOST} \ --with-catgets --without-included-regex - make + try make } src_unpack() { @@ -27,7 +27,7 @@ src_unpack() { src_install() { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install prepman prepinfo dodoc AUTHORS COPYING ChangeLog NEWS README* THANKS TODO diff --git a/sys-apps/textutils/textutils-2.0g.ebuild b/sys-apps/textutils/textutils-2.0g.ebuild index 40de2ffcbc92..457e8545cacd 100644 --- a/sys-apps/textutils/textutils-2.0g.ebuild +++ b/sys-apps/textutils/textutils-2.0g.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0g.ebuild,v 1.1 2000/08/25 10:55:44 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/textutils/textutils-2.0g.ebuild,v 1.2 2000/09/15 20:09:23 drobbins Exp $ P=textutils-2.0g A=${P}.tar.gz @@ -11,9 +11,9 @@ DESCRIPTION="Standard GNU text utilities" SRC_URI="ftp://alpha.gnu.org/gnu/fetish/${A}" src_compile() { - ./configure --prefix=/usr --host=${CHOST} \ + try ./configure --prefix=/usr --host=${CHOST} \ --with-catgets --without-included-regex - make + try make } src_unpack() { @@ -27,7 +27,7 @@ src_unpack() { src_install() { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install prepman prepinfo dodoc AUTHORS COPYING ChangeLog NEWS README* THANKS TODO diff --git a/sys-apps/updated/updated-2.11-r1.ebuild b/sys-apps/updated/updated-2.11-r1.ebuild index b7f51681b69b..7506c494211d 100644 --- a/sys-apps/updated/updated-2.11-r1.ebuild +++ b/sys-apps/updated/updated-2.11-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/updated/updated-2.11-r1.ebuild,v 1.2 2000/08/16 04:38:31 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/updated/updated-2.11-r1.ebuild,v 1.3 2000/09/15 20:09:23 drobbins Exp $ P=updated-2.11 A=${P}.tar.gz @@ -10,7 +10,7 @@ DESCRIPTION="Update flushes filesystem buffers at regular intervals" SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/daemons/${P}" src_compile() { - make + try make } src_unpack() { diff --git a/sys-apps/util-linux/util-linux-2.10m-r1.ebuild b/sys-apps/util-linux/util-linux-2.10m-r1.ebuild index 25f9954efc2d..0d11a4ff7f0e 100644 --- a/sys-apps/util-linux/util-linux-2.10m-r1.ebuild +++ b/sys-apps/util-linux/util-linux-2.10m-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.10m-r1.ebuild,v 1.2 2000/08/16 04:38:32 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.10m-r1.ebuild,v 1.3 2000/09/15 20:09:24 drobbins Exp $ P="util-linux-2.10m" A="${P}.tar.bz2 @@ -17,8 +17,8 @@ SRC_URI="ftp://ftp.kernel.org/pub/linux/utils/util-linux/${P}.tar.bz2 ftp://ftp.linuxnfs.sourceforge.org/pub/nfs/${P}-mount-rpc.patch" src_compile() { - ./configure - make + try ./configure + try make } src_unpack() { @@ -39,7 +39,7 @@ src_unpack() { src_install() { cd ${S} - make DESTDIR=${D} install + try make DESTDIR=${D} install cd ${S} dodoc licenses/* HISTORY prepman diff --git a/sys-apps/util-linux/util-linux-2.10o.ebuild b/sys-apps/util-linux/util-linux-2.10o.ebuild index 2dc359117371..7f70b8d0bdff 100644 --- a/sys-apps/util-linux/util-linux-2.10o.ebuild +++ b/sys-apps/util-linux/util-linux-2.10o.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.10o.ebuild,v 1.1 2000/08/25 15:10:25 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.10o.ebuild,v 1.2 2000/09/15 20:09:24 drobbins Exp $ P="util-linux-2.10o" A="${P}.tar.bz2" @@ -11,8 +11,8 @@ DESCRIPTION="Various useful Linux utilities" SRC_URI="ftp://ftp.kernel.org/pub/linux/utils/util-linux/${P}.tar.bz2" src_compile() { - ./configure - make + try ./configure + try make } src_unpack() { @@ -30,7 +30,7 @@ src_unpack() { src_install() { cd ${S} - make DESTDIR=${D} install + try make DESTDIR=${D} install cd ${S} dodoc licenses/* HISTORY prepman diff --git a/sys-apps/vcron/vcron-3.0_p1-r1.ebuild b/sys-apps/vcron/vcron-3.0_p1-r1.ebuild index 7ec3b573f438..4fab3618b3eb 100644 --- a/sys-apps/vcron/vcron-3.0_p1-r1.ebuild +++ b/sys-apps/vcron/vcron-3.0_p1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/vcron/vcron-3.0_p1-r1.ebuild,v 1.1 2000/08/16 17:17:57 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/vcron/vcron-3.0_p1-r1.ebuild,v 1.2 2000/09/15 20:09:24 drobbins Exp $ P=vcron-3.0p1 A=cron3.0pl1.tar.gz @@ -18,7 +18,7 @@ src_unpack() { src_compile() { cd ${S} - make + try make } src_install() { diff --git a/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild b/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild index de00c7a73a3a..680dd65091c3 100644 --- a/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild +++ b/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild,v 1.3 2000/08/16 04:38:32 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/vim-nogui/vim-nogui-5.7-r1.ebuild,v 1.4 2000/09/15 20:09:24 drobbins Exp $ P=vim-nogui-5.7 A="vim-5.7-src.tar.gz vim-5.7-rt.tar.gz" @@ -12,13 +12,13 @@ SRC_URI="ftp://ftp.home.vim.org/pub/vim/unix/vim-5.7-src.tar.gz HOMEPAGE="http://www.vim.org" src_compile() { - ./configure --prefix=/usr --host=${CHOST} \ + try ./configure --prefix=/usr --host=${CHOST} \ --enable-gui=no --without-x - make + try make } src_install() { - make prefix=${D}/usr install + try make prefix=${D}/usr install prepman dodoc README* diff --git a/sys-apps/which/which-2.11-r1.ebuild b/sys-apps/which/which-2.11-r1.ebuild index ab2467b2af58..582bb9d8e15b 100644 --- a/sys-apps/which/which-2.11-r1.ebuild +++ b/sys-apps/which/which-2.11-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Daniel robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/which-2.11-r1.ebuild,v 1.2 2000/08/16 04:38:32 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/which-2.11-r1.ebuild,v 1.3 2000/09/15 20:09:24 drobbins Exp $ P=which-2.11 A=${P}.tar.gz @@ -10,8 +10,8 @@ DESCRIPTION="Prints out location of specified executables that are in your path" SRC_URI="ftp://prep.ai.mit.edu/gnu/which/${P}" src_compile() { - ./configure --prefix=/usr - make + try ./configure --prefix=/usr + try make } src_unpack() { diff --git a/sys-apps/xinetd/xinetd-2.1.8.8_p3-r1.ebuild b/sys-apps/xinetd/xinetd-2.1.8.8_p3-r1.ebuild index c53aa94693ae..ad596133bd1f 100644 --- a/sys-apps/xinetd/xinetd-2.1.8.8_p3-r1.ebuild +++ b/sys-apps/xinetd/xinetd-2.1.8.8_p3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/xinetd-2.1.8.8_p3-r1.ebuild,v 1.1 2000/08/16 17:17:57 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/xinetd-2.1.8.8_p3-r1.ebuild,v 1.2 2000/09/15 20:09:24 drobbins Exp $ P=xinetd-2.1.8.8p3 A=${P}.tar.gz @@ -10,14 +10,14 @@ DESCRIPTION="Replacement for inetd." SRC_URI="http://www.xinetd.org/${A}" src_compile() { - ./configure --with-loadavg --with-libwrap --prefix=/usr --host=${CHOST} - make + try ./configure --with-loadavg --with-libwrap --prefix=/usr --host=${CHOST} + try make } src_install() { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install prepman dodoc CHANGELOG README COPYRIGHT dodir /etc/rc.d/init.d |