summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/gtk2-ssh-askpass')
-rw-r--r--net-misc/gtk2-ssh-askpass/Manifest3
-rw-r--r--net-misc/gtk2-ssh-askpass/files/99ssh_askpass1
-rw-r--r--net-misc/gtk2-ssh-askpass/files/digest-gtk2-ssh-askpass-0.31
-rw-r--r--net-misc/gtk2-ssh-askpass/gtk2-ssh-askpass-0.3.ebuild26
4 files changed, 30 insertions, 1 deletions
diff --git a/net-misc/gtk2-ssh-askpass/Manifest b/net-misc/gtk2-ssh-askpass/Manifest
index e896aed72105..6710ed191f7b 100644
--- a/net-misc/gtk2-ssh-askpass/Manifest
+++ b/net-misc/gtk2-ssh-askpass/Manifest
@@ -1,3 +1,4 @@
-MD5 621ce19486e7e16aedd394853c6b44b0 gtk2-ssh-askpass-0.3.ebuild 594
+MD5 2d1a9cba7ab029242b09af25c46edc5f gtk2-ssh-askpass-0.3.ebuild 711
+MD5 8ffeedd1a8034c950c2e67b2e847dab6 ChangeLog 448
MD5 0cbe43e4a20d50f8b1cbcbe522a242c0 files/99ssh_askpass 38
MD5 af95000e5cda99ca351864f8e03ed95c files/digest-gtk2-ssh-askpass-0.3 71
diff --git a/net-misc/gtk2-ssh-askpass/files/99ssh_askpass b/net-misc/gtk2-ssh-askpass/files/99ssh_askpass
new file mode 100644
index 000000000000..1b3b8ff38675
--- /dev/null
+++ b/net-misc/gtk2-ssh-askpass/files/99ssh_askpass
@@ -0,0 +1 @@
+SSH_ASKPASS=/usr/bin/gtk2-ssh-askpass
diff --git a/net-misc/gtk2-ssh-askpass/files/digest-gtk2-ssh-askpass-0.3 b/net-misc/gtk2-ssh-askpass/files/digest-gtk2-ssh-askpass-0.3
new file mode 100644
index 000000000000..6a7d78393291
--- /dev/null
+++ b/net-misc/gtk2-ssh-askpass/files/digest-gtk2-ssh-askpass-0.3
@@ -0,0 +1 @@
+MD5 14ca8c653ad19699b7299198d7a94e0a gtk2-ssh-askpass-0.3.tar.gz 13460
diff --git a/net-misc/gtk2-ssh-askpass/gtk2-ssh-askpass-0.3.ebuild b/net-misc/gtk2-ssh-askpass/gtk2-ssh-askpass-0.3.ebuild
new file mode 100644
index 000000000000..dfd563519ac6
--- /dev/null
+++ b/net-misc/gtk2-ssh-askpass/gtk2-ssh-askpass-0.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gtk2-ssh-askpass/gtk2-ssh-askpass-0.3.ebuild,v 1.1 2003/04/13 23:33:02 liquidx Exp $
+
+DESCRIPTION="A small SSH Askpass replacement written with GTK2."
+HOMEPAGE="http://www.cgabriel.org/sw/gtk2-ssh-askpass/"
+SRC_URI="${HOMEPAGE}${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+DEPEND="virtual/x11
+ >=x11-libs/gtk+-2.0"
+S=${WORKDIR}/${P}
+
+src_compile() {
+ make || die "compile failed"
+}
+
+src_install() {
+ dobin gtk2-ssh-askpass
+ insinto /etc/env.d
+ doins ${FILESDIR}/99ssh_askpass
+ dodoc README AUTHORS
+ doman debian/gtk2-ssh-askpass.1
+}