From 1b21445a8e9097b0bb0542ed847fbb1eb832848f Mon Sep 17 00:00:00 2001 From: root Date: Thu, 20 Oct 2011 23:14:58 +0000 Subject: Thu Oct 20 23:14:58 UTC 2011 --- extra/x11-ssh-askpass/PKGBUILD | 44 +++++++++++++++++++++++++++++++++++++++++ extra/x11-ssh-askpass/profile.d | 4 ++++ 2 files changed, 48 insertions(+) create mode 100644 extra/x11-ssh-askpass/PKGBUILD create mode 100644 extra/x11-ssh-askpass/profile.d (limited to 'extra/x11-ssh-askpass') diff --git a/extra/x11-ssh-askpass/PKGBUILD b/extra/x11-ssh-askpass/PKGBUILD new file mode 100644 index 000000000..37b84c4d0 --- /dev/null +++ b/extra/x11-ssh-askpass/PKGBUILD @@ -0,0 +1,44 @@ +# $Id: PKGBUILD 140828 2011-10-19 22:29:39Z bisson $ + +# Maintainer: Gaetan Bisson +# Contributor: Mike Sampson +# Contributor: Sergej Pupykin +# Contributor: Charles Mauch + +pkgname=x11-ssh-askpass +pkgver=1.2.4.1 +pkgrel=3 +pkgdesc='Lightweight passphrase dialog for SSH' +url='http://www.jmknoble.net/software/x11-ssh-askpass/' +license=('custom') +arch=('i686' 'x86_64') +depends=('libxt') +makedepends=('imake') +#source=("${url}${pkgname}-${pkgver}.tar.gz" # httpd only sends half the bits +source=("http://pkgs.fedoraproject.org/repo/pkgs/openssh/x11-ssh-askpass-1.2.4.1.tar.gz/8f2e41f3f7eaa8543a2440454637f3c3/x11-ssh-askpass-1.2.4.1.tar.gz" + 'profile.d') +sha1sums=('78c992951685d4dbffb77536f37b83ae2a6eafc7' + '28be56290d07e2625bc8e81ae8c7ea741d329c51') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + + ./configure \ + --mandir=/usr/share/man \ + --libexecdir=/usr/lib/ssh \ + --with-app-defaults-dir=/usr/share/X11/app-defaults \ + + xmkmf + make includes + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}" install install.man + install -Dm755 ../profile.d "${pkgdir}/etc/profile.d/${pkgname}.sh" + + install -d "${pkgdir}/usr/share/licenses/${pkgname}" + sed '109,174p;d' README > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} diff --git a/extra/x11-ssh-askpass/profile.d b/extra/x11-ssh-askpass/profile.d new file mode 100644 index 000000000..955d6ad96 --- /dev/null +++ b/extra/x11-ssh-askpass/profile.d @@ -0,0 +1,4 @@ +if [ -f "/usr/lib/ssh/x11-ssh-askpass" ] ; then + SSH_ASKPASS="/usr/lib/ssh/x11-ssh-askpass" + export SSH_ASKPASS +fi -- cgit v1.2.3-54-g00ecf