From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PBPJE-0005sU-Vv for garchives@archives.gentoo.org; Thu, 28 Oct 2010 10:02:13 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 571F6E0B3B; Thu, 28 Oct 2010 10:02:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 36716E0ABC for ; Thu, 28 Oct 2010 10:02:12 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A57751B42E1 for ; Thu, 28 Oct 2010 10:02:11 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2166) id A7A4D20051; Thu, 28 Oct 2010 10:02:09 +0000 (UTC) From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-misc/efax: efax-0.9a.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: efax-0.9a.ebuild X-VCS-Directories: net-misc/efax X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Message-Id: <20101028100209.A7A4D20051@flycatcher.gentoo.org> Date: Thu, 28 Oct 2010 10:02:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: c4b7230e-c898-4660-9fe5-356df1312fe5 X-Archives-Hash: 2982286c34f1e69870d23f75f28360a9 ssuominen 10/10/28 10:02:09 Modified: efax-0.9a.ebuild Log: redudant COPYING in dodoc, fix quoting =20 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64) Revision Changes Path 1.7 net-misc/efax/efax-0.9a.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/efax/efax= -0.9a.ebuild?rev=3D1.7&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/efax/efax= -0.9a.ebuild?rev=3D1.7&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/efax/efax= -0.9a.ebuild?r1=3D1.6&r2=3D1.7 Index: efax-0.9a.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/net-misc/efax/efax-0.9a.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- efax-0.9a.ebuild 29 Mar 2005 15:17:56 -0000 1.6 +++ efax-0.9a.ebuild 28 Oct 2010 10:02:09 -0000 1.7 @@ -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 $ =20 S=3D${WORKDIR}/${P}-001114 DESCRIPTION=3D"A simple fax program for single-user systems" @@ -11,19 +11,19 @@ SLOT=3D"0" LICENSE=3D"GPL-2" =20 -src_unpack () { +src_unpack() { unpack ${A} - cd ${S} + cd "${S}" cp Makefile Makefile.orig sed -e "s:CFLAGS=3D:CFLAGS=3D${CFLAGS}:" Makefile.orig > Makefile } =20 -src_compile () { - emake +src_compile() { + emake || die } =20 -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 }