diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-03-06 04:50:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-03-06 04:50:55 +0000 |
commit | 8b5a703d77bae08c7f4d83363c7405558ef296f2 (patch) | |
tree | 15aae67f1023410867008350a499dd957c121017 /app-crypt/quintuple-agent | |
parent | Changed src_install () to src_install() (diff) | |
download | historical-8b5a703d77bae08c7f4d83363c7405558ef296f2.tar.gz historical-8b5a703d77bae08c7f4d83363c7405558ef296f2.tar.bz2 historical-8b5a703d77bae08c7f4d83363c7405558ef296f2.zip |
Changed src_install () to src_install()
Diffstat (limited to 'app-crypt/quintuple-agent')
-rw-r--r-- | app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild b/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild index 6f6bda682fdf..a8b58960f8ef 100644 --- a/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild +++ b/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild @@ -1,14 +1,13 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild,v 1.4 2003/09/06 22:15:09 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild,v 1.5 2004/03/06 04:50:55 vapier Exp $ -S="${WORKDIR}/${P}" DESCRIPTION="Quintuple Agent stores your (GnuPG) secrets in a secure manner." HOMEPAGE="http://www.vibe.at/tools/secret-agent/" SRC_URI="http://www.vibe.at/tools/secret-agent/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ~ppc" IUSE="nls" @@ -18,15 +17,15 @@ DEPEND="app-crypt/gnupg nls? ( sys-devel/gettext )" src_compile() { - econf $(use_enable nls) - emake + econf `use_enable nls` || die + emake || die } -src_install () { - einstall - chmod +s "${D}/usr/bin/q-agent" +src_install() { + einstall || die + fperms +s /usr/bin/q-agent - dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README THANKS TODO + dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO docinto doc dodoc doc/*.sgml } |