diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-10-07 16:51:46 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-10-07 16:51:46 +0000 |
commit | 18de5b44dc1e81f7c8fa235aff1f789c8c29f124 (patch) | |
tree | e8890b7f272e352660891b7c5a6be32b2c43c7a3 /net-misc/gupsc | |
parent | updated (diff) | |
download | gentoo-2-18de5b44dc1e81f7c8fa235aff1f789c8c29f124.tar.gz gentoo-2-18de5b44dc1e81f7c8fa235aff1f789c8c29f124.tar.bz2 gentoo-2-18de5b44dc1e81f7c8fa235aff1f789c8c29f124.zip |
use die instead of try
Diffstat (limited to 'net-misc/gupsc')
-rw-r--r-- | net-misc/gupsc/gupsc-0.3.1-r1.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net-misc/gupsc/gupsc-0.3.1-r1.ebuild b/net-misc/gupsc/gupsc-0.3.1-r1.ebuild index f6f459c9adb3..dbc3ebe1ba24 100644 --- a/net-misc/gupsc/gupsc-0.3.1-r1.ebuild +++ b/net-misc/gupsc/gupsc-0.3.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/net-misc/gupsc/gupsc-0.3.1-r1.ebuild,v 1.1 2001/10/07 15:02:08 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/gupsc/gupsc-0.3.1-r1.ebuild,v 1.2 2001/10/07 16:50:54 hallski Exp $ S=${WORKDIR}/${P} DESCRIPTION="A Gnome client for the Network UPS Tools (nut)" @@ -12,12 +12,13 @@ DEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1" src_compile() { - try ./configure --host=${CHOST} --prefix=/usr - try pmake + ./configure --host=${CHOST} --prefix=/usr || die + emake || die } src_install() { - try make DESTDIR=${D} install + make DESTDIR=${D} install || die + dodoc AUTHORS COPYING ChangeLog NEWS README TODO } |