diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:12 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:12 +0000 |
commit | f6968b4f1d31a9b4268da340b3bdaaa81f93b029 (patch) | |
tree | bc9f629d8554fe315f323659695d88449e7abd30 /net-mail/amavis | |
parent | added try syntax (diff) | |
download | historical-f6968b4f1d31a9b4268da340b3bdaaa81f93b029.tar.gz historical-f6968b4f1d31a9b4268da340b3bdaaa81f93b029.tar.bz2 historical-f6968b4f1d31a9b4268da340b3bdaaa81f93b029.zip |
added try syntax
Diffstat (limited to 'net-mail/amavis')
-rw-r--r-- | net-mail/amavis/amavis-0.2.1_p2.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-mail/amavis/amavis-0.2.1_p2.ebuild b/net-mail/amavis/amavis-0.2.1_p2.ebuild index bccb964496b4..cf9d0f0e5ca4 100644 --- a/net-mail/amavis/amavis-0.2.1_p2.ebuild +++ b/net-mail/amavis/amavis-0.2.1_p2.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-mail/amavis/amavis-0.2.1_p2.ebuild,v 1.1 2000/08/16 17:16:16 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/amavis/amavis-0.2.1_p2.ebuild,v 1.2 2000/09/15 20:09:10 drobbins Exp $ P=amavis-0.2.1-p2 A=amavis-0.2.1-pre2.tar.gz @@ -12,16 +12,16 @@ HOMEPAGE="http://www.amavis.org" src_compile() { cd ${S} - ./configure --host=${CHOST} --prefix=/usr \ + try ./configure --host=${CHOST} --prefix=/usr \ --with-logdir=/var/log/scanmail \ --with-virusdir=/var/tmp/virusmails \ --enable-qmail - make + try make } src_install() { cd ${S} - make prefix=${D}/usr install + try make prefix=${D}/usr install into /usr dodoc AUTHORS BUGS COPYING ChangeLog FAQ HINTS NEWS README* TODO dodoc doc/amavis.txt |