diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-03-12 17:00:35 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-03-12 17:00:35 +0000 |
commit | 28145c30ce506a3d19ef15fe8d806c03bc85fcab (patch) | |
tree | ce4133a7efd6bbb4842e0000ed4bc8ee60a1506b /net-dialup/lrzsz | |
parent | stable on amd64 wrt bug 125878 (diff) | |
download | gentoo-2-28145c30ce506a3d19ef15fe8d806c03bc85fcab.tar.gz gentoo-2-28145c30ce506a3d19ef15fe8d806c03bc85fcab.tar.bz2 gentoo-2-28145c30ce506a3d19ef15fe8d806c03bc85fcab.zip |
Quote $FILESDIR and add die messages.
(Portage version: 2.0.54)
Diffstat (limited to 'net-dialup/lrzsz')
-rw-r--r-- | net-dialup/lrzsz/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/lrzsz/lrzsz-0.12.20-r1.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-dialup/lrzsz/ChangeLog b/net-dialup/lrzsz/ChangeLog index 862c2e5af1c0..f9130cda4f08 100644 --- a/net-dialup/lrzsz/ChangeLog +++ b/net-dialup/lrzsz/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/lrzsz # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/lrzsz/ChangeLog,v 1.4 2006/02/05 08:53:59 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/lrzsz/ChangeLog,v 1.5 2006/03/12 17:00:35 mrness Exp $ + + 12 Mar 2006; Alin Nastac <mrness@gentoo.org> lrzsz-0.12.20-r1.ebuild: + Quote $FILESDIR and add die messages. 05 Feb 2006; Alin Nastac <mrness@gentoo.org> lrzsz-0.12.20-r1.ebuild: Use make vcheck for testing the package (#120748). diff --git a/net-dialup/lrzsz/lrzsz-0.12.20-r1.ebuild b/net-dialup/lrzsz/lrzsz-0.12.20-r1.ebuild index 6516a49d981e..abea5893cbf6 100644 --- a/net-dialup/lrzsz/lrzsz-0.12.20-r1.ebuild +++ b/net-dialup/lrzsz/lrzsz-0.12.20-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/lrzsz/lrzsz-0.12.20-r1.ebuild,v 1.5 2006/02/05 08:53:59 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/lrzsz/lrzsz-0.12.20-r1.ebuild,v 1.6 2006/03/12 17:00:35 mrness Exp $ inherit flag-o-matic eutils @@ -16,12 +16,12 @@ IUSE="nls" src_unpack() { unpack ${A} - epatch ${FILESDIR}/${PN}-makefile-smp.patch + epatch "${FILESDIR}/${PN}-makefile-smp.patch" } src_compile() { append-flags -Wstrict-prototypes - econf $(use_enable nls) || die + econf $(use_enable nls) || die "econf failed" emake || die "emake failed" } @@ -35,7 +35,7 @@ src_install() { make \ prefix="${D}/usr" \ mandir="${D}/usr/share/man" \ - install || die + install || die "make install failed" local x for x in {r,s}{b,x,z} ; do |