diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 14:16:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-12-18 14:16:10 +0000 |
commit | fb9437416461a451b96834052525b7f9aa1355bd (patch) | |
tree | 91f67a15c0fae44db65a5ab1e464973eab218834 /app-crypt | |
parent | Changed einstall||die to einstall (diff) | |
download | historical-fb9437416461a451b96834052525b7f9aa1355bd.tar.gz historical-fb9437416461a451b96834052525b7f9aa1355bd.tar.bz2 historical-fb9437416461a451b96834052525b7f9aa1355bd.zip |
Changed econf||die to econf
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gringotts/gringotts-1.2.2.ebuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/app-crypt/gringotts/gringotts-1.2.2.ebuild b/app-crypt/gringotts/gringotts-1.2.2.ebuild index 118f7c9d9e07..6339809a0750 100644 --- a/app-crypt/gringotts/gringotts-1.2.2.ebuild +++ b/app-crypt/gringotts/gringotts-1.2.2.ebuild @@ -1,10 +1,11 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/gringotts-1.2.2.ebuild,v 1.2 2002/12/06 03:35:59 leonardop Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/gringotts-1.2.2.ebuild,v 1.3 2002/12/18 14:16:10 vapier Exp $ DESCRIPTION="Utility that allows you to jot down sensitive data" SRC_URI="http://devel.pluto.linux.it/projects/Gringotts/current/${P}.tar.bz2" HOMEPAGE="http://devel.pluto.linux.it/projects/Gringotts/" + IUSE="" SLOT="0" LICENSE="GPL-2" @@ -20,16 +21,11 @@ DEPEND="${RDEPEND} >=dev-libs/libgringotts-1.1.1" src_compile() { - econf || die "./configure failed" + econf emake || die "Compilation failed" } src_install() { - einstall || die "Installation failed" - + einstall dodoc AUTHORS BUGS ChangeLog COPYING TODO - - # These documents shouldn't be gzip'd, as they are read from the Help - # menu - #dodoc FAQ README } |