blob: e77cb27b8123d7b383bbfbdf80124a9c84efd2b4 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-0.60.ebuild,v 1.9 2009/08/18 15:22:47 vostorga Exp $
inherit eutils toolchain-funcs flag-o-matic
DESCRIPTION="UNIX port of the famous Telnet and SSH client"
HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/"
SRC_URI="http://the.earth.li/~sgtatham/putty/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 ppc sparc x86"
IUSE="doc gtk ipv6"
RDEPEND="gtk? ( =x11-libs/gtk+-1.2* )
!x11-terms/pssh"
DEPEND="${RDEPEND} dev-lang/perl"
src_compile() {
use gtk && unset ptargets || local ptargets="puttygen plink pscp psftp"
cd "${S}"/unix
append-flags '-I.././' '-I../charset/' '-I../unix/'
use ipv6 || append-flags '-DNO_IPV6'
use gtk && append-flags '`gtk-config --cflags`'
emake -f Makefile.gtk ${ptargets:-all} CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
cd "${S}"/doc
if use gtk; then
doman pterm.1 putty.1 puttytel.1 || die "doman failed"
fi
if use doc; then
dohtml *.html || die "dohtml failed"
fi
dodoc puttydoc.txt || die "dodoc failed"
doman puttygen.1 plink.1 || die "doman failed"
cd "${S}"/unix
if use gtk; then
dobin pterm putty puttytel || die "dobin failed"
fi
dobin puttygen plink pscp psftp || die "dobin failed"
cd "${S}"
dodoc README CHECKLST.txt LATEST.VER
# install desktop file provided by Gustav Schaffter in #49577
if use gtk; then
doicon "${FILESDIR}"/${PN}.xpm
make_desktop_entry "putty" "PuTTY" putty "Network"
fi
if test ! -c /dev/ptmx; then
ewarn
ewarn "The pterm application requires kernel UNIX98 PTY support to operate."
ewarn
fi
}
|