diff options
author | 2010-10-28 10:02:09 +0000 | |
---|---|---|
committer | 2010-10-28 10:02:09 +0000 | |
commit | b1d65968e1a634a26d65b85e4ad89a22d82caaff (patch) | |
tree | 1993dd373fb4ec32abab5343a78279e63ad74654 /net-misc/efax/efax-0.9a.ebuild | |
parent | drop redudant WANT_AUTO latest lines (diff) | |
download | historical-b1d65968e1a634a26d65b85e4ad89a22d82caaff.tar.gz historical-b1d65968e1a634a26d65b85e4ad89a22d82caaff.tar.bz2 historical-b1d65968e1a634a26d65b85e4ad89a22d82caaff.zip |
redudant COPYING in dodoc, fix quoting
Package-Manager: portage-2.2.0_alpha1/cvs/Linux x86_64
Diffstat (limited to 'net-misc/efax/efax-0.9a.ebuild')
-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 } |