summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD.M.D. Ljungmark <spider@gentoo.org>2002-04-04 06:18:07 +0000
committerD.M.D. Ljungmark <spider@gentoo.org>2002-04-04 06:18:07 +0000
commit5d79276f0d82268bf2727e33f23c29eb68dbc2d3 (patch)
treef8bcf803ed6e89ff49f80d7f576c120bc9c8a1a2 /net-misc/x11-ssh-askpass
parentClosing bug #1497 (diff)
downloadhistorical-5d79276f0d82268bf2727e33f23c29eb68dbc2d3.tar.gz
historical-5d79276f0d82268bf2727e33f23c29eb68dbc2d3.tar.bz2
historical-5d79276f0d82268bf2727e33f23c29eb68dbc2d3.zip
fix CDEBUGFLAGS and close bug 1505
Diffstat (limited to 'net-misc/x11-ssh-askpass')
-rw-r--r--net-misc/x11-ssh-askpass/ChangeLog7
-rw-r--r--net-misc/x11-ssh-askpass/files/digest-x11-ssh-askpass-1.2.2-r11
-rw-r--r--net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.2-r1.ebuild36
3 files changed, 43 insertions, 1 deletions
diff --git a/net-misc/x11-ssh-askpass/ChangeLog b/net-misc/x11-ssh-askpass/ChangeLog
index 96d589c5ec89..4485af28394b 100644
--- a/net-misc/x11-ssh-askpass/ChangeLog
+++ b/net-misc/x11-ssh-askpass/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for net-misc/x11-ssh-askpass
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-misc/x11-ssh-askpass/ChangeLog,v 1.1 2002/02/01 21:53:36 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/x11-ssh-askpass/ChangeLog,v 1.2 2002/04/04 06:18:07 spider Exp $
+*x11-ssh-askpass-1.2.2-r1 (04 Apr 2002)
+ 04 Apr 2002; Spider <spider@gentoo.org>
+ added CDEBUGFLAGS=${CFLAGS} to close bug 1505
+
+
*x11-ssh-askpass-1.2.2 (1 Feb 2002)
1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
diff --git a/net-misc/x11-ssh-askpass/files/digest-x11-ssh-askpass-1.2.2-r1 b/net-misc/x11-ssh-askpass/files/digest-x11-ssh-askpass-1.2.2-r1
new file mode 100644
index 000000000000..297104421ff5
--- /dev/null
+++ b/net-misc/x11-ssh-askpass/files/digest-x11-ssh-askpass-1.2.2-r1
@@ -0,0 +1 @@
+MD5 6b403348310df14cab1d0e29a6e3b5ac x11-ssh-askpass-1.2.2.tar.gz 29085
diff --git a/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.2-r1.ebuild b/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.2-r1.ebuild
new file mode 100644
index 000000000000..8a811b8fa080
--- /dev/null
+++ b/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.2-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2001 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author: Adam Manthei <manthei@sistina.com>
+# $Header: /var/cvsroot/gentoo-x86/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.2-r1.ebuild,v 1.1 2002/04/04 06:18:07 spider Exp $
+
+
+P=x11-ssh-askpass-1.2.2
+A=${P}.tar.gz
+S=${WORKDIR}/${P}
+DESCRIPTION="X11-based passphrase dialog for use with OpenSSH"
+HOMEPAGE="http://www.ntrnet.net/~jmknoble/software/x11-ssh-askpass/"
+SRC_URI="http://www.ntrnet.net/~jmknoble/software/x11-ssh-askpass/${A}"
+
+DEPEND="virtual/glibc virtual/x11"
+RDEPEND=">=net-misc/openssh-2.3.0 virtual/x11"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ patch -p0 < ${FILESDIR}/stupid-imake.diff
+}
+src_compile() {
+ try ./configure --prefix=/usr --libexecdir=/usr/lib/misc
+ try xmkmf
+ try make includes
+ try make "CDEBUGFLAGS=${CFLAGS}"
+}
+
+
+src_install() {
+ newman x11-ssh-askpass.man x11-ssh-askpass.1
+ dobin x11-ssh-askpass
+ dodir /usr/lib/misc
+ dosym /usr/bin/x11-ssh-askpass /usr/lib/misc/ssh-askpass
+ dodoc ChangeLog README TODO
+}