blob: 5e64d86b2367930f38a9c6c06d43b53cef6fcb83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2005 Gentoo Foundation
# 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.13 2005/11/06 22:34:54 dang Exp $
DESCRIPTION="A small SSH Askpass replacement written with GTK2."
HOMEPAGE="http://www.cgabriel.org/sw/gtk2-ssh-askpass/"
SRC_URI="http://www.cgabriel.org/sw/ssh-askpass-fullscreen/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ppc ~sparc x86"
IUSE=""
DEPEND=">=x11-libs/gtk+-2.0"
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
}
|