diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 02:08:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 02:08:45 +0000 |
commit | 6bd65592eb82ef573a457293356b0fce9cd0be0e (patch) | |
tree | eee03e81cb03f801be3d7e5a26d452b14e8e95fc /app-admin/whowatch | |
parent | Changed src_install () to src_install() (diff) | |
download | gentoo-2-6bd65592eb82ef573a457293356b0fce9cd0be0e.tar.gz gentoo-2-6bd65592eb82ef573a457293356b0fce9cd0be0e.tar.bz2 gentoo-2-6bd65592eb82ef573a457293356b0fce9cd0be0e.zip |
Changed econf||die to econf
Diffstat (limited to 'app-admin/whowatch')
-rw-r--r-- | app-admin/whowatch/whowatch-1.5.2.ebuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/app-admin/whowatch/whowatch-1.5.2.ebuild b/app-admin/whowatch/whowatch-1.5.2.ebuild index 8a151f216ebc..c6c380ece8eb 100644 --- a/app-admin/whowatch/whowatch-1.5.2.ebuild +++ b/app-admin/whowatch/whowatch-1.5.2.ebuild @@ -1,10 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/whowatch/whowatch-1.5.2.ebuild,v 1.11 2002/10/20 18:14:57 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/whowatch/whowatch-1.5.2.ebuild,v 1.12 2002/11/30 02:04:34 vapier Exp $ -S=${WORKDIR}/${P} -DESCRIPTION="an interactive who-like program that displays information -about the users currently logged on to the machine, in real time." +DESCRIPTION="interactive who-like program that displays information about users currently logged on in real time." SRC_URI="http://wizard.ae.krakow.pl/~mike/download/${P}.tar.gz" HOMEPAGE="http://wizard.ae.krakow.pl/~mike/" @@ -21,11 +19,11 @@ src_unpack() { } src_compile() { - econf || die + econf make || die } -src_install () { - einstall || die +src_install() { + einstall dodoc AUTHORS ChangeLog COPYING KEYS NEWS README TODO VERSION } |