summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ Robert Ray <jrray@gentoo.org>2003-02-07 14:57:12 +0000
committerJ Robert Ray <jrray@gentoo.org>2003-02-07 14:57:12 +0000
commitcd0df1328552c92243d90cd4aa3451ed71c6c1cf (patch)
treedae86b33393672ded788b5d77ef2186b20a9fb03 /app-crypt
parentadd ~alpha (diff)
downloadgentoo-2-cd0df1328552c92243d90cd4aa3451ed71c6c1cf.tar.gz
gentoo-2-cd0df1328552c92243d90cd4aa3451ed71c6c1cf.tar.bz2
gentoo-2-cd0df1328552c92243d90cd4aa3451ed71c6c1cf.zip
New ebuild
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/quintuple-agent/ChangeLog8
-rw-r--r--app-crypt/quintuple-agent/files/digest-quintuple-agent-1.0.31
-rw-r--r--app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild38
3 files changed, 47 insertions, 0 deletions
diff --git a/app-crypt/quintuple-agent/ChangeLog b/app-crypt/quintuple-agent/ChangeLog
new file mode 100644
index 000000000000..d71ad66e6f65
--- /dev/null
+++ b/app-crypt/quintuple-agent/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for app-crypt/quintuple-agent
+# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/quintuple-agent/ChangeLog,v 1.1 2003/02/07 14:57:12 jrray Exp $
+
+*quintuple-agent-1.0.3 (07 Feb 2003)
+
+ 07 Feb 2003; J Robert Ray <jrray@gentoo.org> : Initial ebuild,
+ contributed by Clemens Oertel <gentoo-bugzilla@kriegste.net>.
diff --git a/app-crypt/quintuple-agent/files/digest-quintuple-agent-1.0.3 b/app-crypt/quintuple-agent/files/digest-quintuple-agent-1.0.3
new file mode 100644
index 000000000000..6c6c4f53d75f
--- /dev/null
+++ b/app-crypt/quintuple-agent/files/digest-quintuple-agent-1.0.3
@@ -0,0 +1 @@
+MD5 dc999c047855f2fbcd2fc79972ced6f2 quintuple-agent-1.0.3.tar.gz 195900
diff --git a/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild b/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild
new file mode 100644
index 000000000000..ef08e0158e8f
--- /dev/null
+++ b/app-crypt/quintuple-agent/quintuple-agent-1.0.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2003 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.1 2003/02/07 14:57:12 jrray 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"
+KEYWORDS="~x86"
+IUSE="nls"
+
+DEPEND="app-crypt/gnupg
+ >=dev-libs/glib-1.2.0
+ >=x11-libs/gtk+-1.2.0
+ nls? ( sys-devel/gettext )"
+
+src_compile() {
+ econf $(use_enable nls)
+ emake
+}
+
+src_install () {
+ einstall
+ chmod +s "${D}/usr/bin/q-agent"
+
+ dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README THANKS TODO
+ docinto doc
+ dodoc doc/*.sgml
+}
+
+pkg_postinst() {
+ einfo "q-agent is installed SUID root to make use of protected memory space"
+ einfo "This is needed in order to have a secure place to store your passphrases,"
+ einfo "etc. at runtime but may make some sysadmins nervous"
+}