diff options
author | 2015-08-08 13:49:04 -0700 | |
---|---|---|
committer | 2015-08-08 17:38:18 -0700 | |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-misc/x11-ssh-askpass | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-misc/x11-ssh-askpass')
-rw-r--r-- | net-misc/x11-ssh-askpass/Manifest | 1 | ||||
-rw-r--r-- | net-misc/x11-ssh-askpass/metadata.xml | 8 | ||||
-rw-r--r-- | net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r1.ebuild | 39 |
3 files changed, 48 insertions, 0 deletions
diff --git a/net-misc/x11-ssh-askpass/Manifest b/net-misc/x11-ssh-askpass/Manifest new file mode 100644 index 000000000000..db8600d321f9 --- /dev/null +++ b/net-misc/x11-ssh-askpass/Manifest @@ -0,0 +1 @@ +DIST x11-ssh-askpass-1.2.4.1.tar.gz 29229 SHA256 620de3c32ae72185a2c9aeaec03af24242b9621964e38eb625afb6cdb30b8c88 SHA512 879887cc1d6eb26662494e3a6b59b79a8d153b354abf86e8e8667940545c8e07d0aa051491f5ba6ca5273e3a7fcc367edb4cc79bb2e4bf1bdbd0e234690ad6b9 WHIRLPOOL 0f305023d4d7f4a086122c8c0d5a0a8ecda463b71bed5960365660d293b3670f377d3e0177e743d86413425f6ff48119295dd98d6fc077ba7d759154342dd4de diff --git a/net-misc/x11-ssh-askpass/metadata.xml b/net-misc/x11-ssh-askpass/metadata.xml new file mode 100644 index 000000000000..028c4bed18ff --- /dev/null +++ b/net-misc/x11-ssh-askpass/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>cardoe@gentoo.org</email> + <description>I guess I'll maintain it since I fixed it last</description> +</maintainer> +</pkgmetadata> diff --git a/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r1.ebuild b/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r1.ebuild new file mode 100644 index 000000000000..016c3ac0df22 --- /dev/null +++ b/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit eutils multilib + +DESCRIPTION="X11-based passphrase dialog for use with OpenSSH" +HOMEPAGE="http://www.liquidmeme.net/software/x11-ssh-askpass/" +SRC_URI="http://www.liquidmeme.net/software/x11-ssh-askpass/${P}.tar.gz" + +LICENSE="HPND" +SLOT="0" +KEYWORDS="alpha amd64 ia64 ppc sparc x86" +IUSE="" + +RDEPEND="virtual/ssh + x11-libs/libXt + x11-libs/libX11 + x11-libs/libSM + x11-libs/libICE" + +DEPEND="${RDEPEND} + x11-misc/imake + app-text/rman" + +src_compile() { + econf --libexecdir=/usr/$(get_libdir)/misc || die + xmkmf || die + make includes || die + make "CDEBUGFLAGS=${CFLAGS}" || die +} + +src_install() { + newman x11-ssh-askpass.man x11-ssh-askpass.1 + dobin x11-ssh-askpass + dodir /usr/$(get_libdir)/misc + dosym /usr/bin/x11-ssh-askpass /usr/$(get_libdir)/misc/ssh-askpass + dodoc ChangeLog README TODO +} |