diff options
author | 2010-10-28 10:02:09 +0000 | |
---|---|---|
committer | 2010-10-28 10:02:09 +0000 | |
commit | c5979663bb801dcd10d7ab8d97e96345a5287179 (patch) | |
tree | 9265eef5d5a87724bcfe69002c0f8f4355b0e60e /net-misc/efax | |
parent | drop redudant WANT_AUTO latest lines (diff) | |
download | gentoo-2-c5979663bb801dcd10d7ab8d97e96345a5287179.tar.gz gentoo-2-c5979663bb801dcd10d7ab8d97e96345a5287179.tar.bz2 gentoo-2-c5979663bb801dcd10d7ab8d97e96345a5287179.zip |
redudant COPYING in dodoc, fix quoting
(Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/efax')
-rw-r--r-- | net-misc/efax/efax-0.9a.ebuild | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/net-misc/efax/efax-0.9a.ebuild b/net-misc/efax/efax-0.9a.ebuild index 7e6de9a2bd5d..09f1ba1a6d21 100644 --- a/net-misc/efax/efax-0.9a.ebuild +++ b/net-misc/efax/efax-0.9a.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/efax/efax-0.9a.ebuild,v 1.6 2005/03/29 15:17:56 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/efax/efax-0.9a.ebuild,v 1.7 2010/10/28 10:02:09 ssuominen Exp $ S=${WORKDIR}/${P}-001114 DESCRIPTION="A simple fax program for single-user systems" @@ -11,19 +11,19 @@ IUSE="" SLOT="0" LICENSE="GPL-2" -src_unpack () { +src_unpack() { unpack ${A} - cd ${S} + cd "${S}" cp Makefile Makefile.orig sed -e "s:CFLAGS=:CFLAGS=${CFLAGS}:" Makefile.orig > Makefile } -src_compile () { - emake +src_compile() { + emake || die } -src_install () { - dobin efax efix fax +src_install() { + dobin efax efix fax || die doman efax.1 efix.1 fax.1 - dodoc COPYING README + dodoc README } |