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 /net-ftp | |
parent | oops :) (diff) | |
download | gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.tar.gz gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.tar.bz2 gentoo-2-1ee722fd191fd39a3e13c5231281041f1b4e9f2a.zip |
added try syntax
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/ftp/ftp-0.17-r1.ebuild | 6 | ||||
-rw-r--r-- | net-ftp/lftp/lftp-2.2.6.ebuild | 8 | ||||
-rw-r--r-- | net-ftp/proftpd/proftpd-1.2.0_rc2-r1.ebuild | 10 |
3 files changed, 12 insertions, 12 deletions
diff --git a/net-ftp/ftp/ftp-0.17-r1.ebuild b/net-ftp/ftp/ftp-0.17-r1.ebuild index 17c87b7a26ed..5f1292b5877c 100644 --- a/net-ftp/ftp/ftp-0.17-r1.ebuild +++ b/net-ftp/ftp/ftp-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 Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftp/ftp-0.17-r1.ebuild,v 1.1 2000/08/16 19:01:40 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/ftp/ftp-0.17-r1.ebuild,v 1.2 2000/09/15 20:09:09 drobbins Exp $ P=ftp-0.17 A=netkit-${P}.tar.gz @@ -11,10 +11,10 @@ SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${A}" src_compile() { cd ${S} - ./configure --prefix=/usr + try ./configure --prefix=/usr cp MCONFIG MCONFIG.orig sed -e "s/-pipe -O2/${CFLAGS}/" MCONFIG.orig > MCONFIG - make + try make } src_install() { diff --git a/net-ftp/lftp/lftp-2.2.6.ebuild b/net-ftp/lftp/lftp-2.2.6.ebuild index 367ece434c92..2d0d13c3ff13 100644 --- a/net-ftp/lftp/lftp-2.2.6.ebuild +++ b/net-ftp/lftp/lftp-2.2.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/net-ftp/lftp/lftp-2.2.6.ebuild,v 1.1 2000/09/10 14:48:08 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/lftp/lftp-2.2.6.ebuild,v 1.2 2000/09/15 20:09:09 drobbins Exp $ A=${P}.tar.bz2 S=${WORKDIR}/${P} @@ -18,13 +18,13 @@ src_unpack () { src_compile() { export CFLAGS="-fno-exceptions -fno-rtti ${CFLAGS}" export CXXFLAGS="-fno-exceptions -fno-rtti ${CXXFLAGS}" - ./configure --prefix=/usr --sysconfdir=/etc/lftp --with-catgets --with-modules - make + try ./configure --prefix=/usr --sysconfdir=/etc/lftp --with-catgets --with-modules + try make } src_install() { cd ${S} - make prefix=${D}/usr sysconfdir=${D}/etc/lftp install + try make prefix=${D}/usr sysconfdir=${D}/etc/lftp install prepman dodoc BUGS COPYING ChangeLog FAQ FEATURES MIRRORS NEWS dodoc README* THANKS TODO diff --git a/net-ftp/proftpd/proftpd-1.2.0_rc2-r1.ebuild b/net-ftp/proftpd/proftpd-1.2.0_rc2-r1.ebuild index 4f1a435ca0b1..21d79dd43bfd 100644 --- a/net-ftp/proftpd/proftpd-1.2.0_rc2-r1.ebuild +++ b/net-ftp/proftpd/proftpd-1.2.0_rc2-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/net-ftp/proftpd/proftpd-1.2.0_rc2-r1.ebuild,v 1.1 2000/08/16 16:45:45 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.2.0_rc2-r1.ebuild,v 1.2 2000/09/15 20:09:09 drobbins Exp $ P=proftpd-1.2.0rc2 A="${P}.tar.gz" @@ -15,17 +15,17 @@ src_unpack() { } src_compile() { - CFLAGS="$CFLAGS -I/usr/include/mysql" ./configure --host=${CHOST} --prefix=/usr --sbindir=/usr/sbin \ + CFLAGS="$CFLAGS -I/usr/include/mysql" try ./configure --host=${CHOST} --prefix=/usr --sbindir=/usr/sbin \ --sysconfdir=/etc --localstatedir=/var/run --mandir=/usr/man \ --with-modules=mod_ldap:mod_ratio:mod_readme:mod_linuxprivs:mod_mysql:mod_sqlpw:mod_pam \ --disable-sendfile --enable-shadow --enable-autoshadow - make clean - make + try make clean + try make } src_install() { - make install prefix=${D}/usr sysconfdir=${D}/etc/proftp mandir=${D}/usr/man \ + try make install prefix=${D}/usr sysconfdir=${D}/etc/proftp mandir=${D}/usr/man \ localstatedir=${D}/var/run sbindir=${D}/usr/sbin prepman |