Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/putty: ChangeLog putty-0.60.ebuild
Date: Thu, 27 Dec 2007 12:35:35
Message-Id: E1J7rxS-0006Gf-9C@stork.gentoo.org
1 armin76 07/12/27 12:35:30
2
3 Modified: ChangeLog
4 Added: putty-0.60.ebuild
5 Log:
6 Version bump wrt #177227, add icon wrt #174241
7 (Portage version: 2.1.4_rc11)
8
9 Revision Changes Path
10 1.36 net-misc/putty/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/putty/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/putty/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/putty/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 25 Dec 2007 16:03:34 -0000 1.35
23 +++ ChangeLog 27 Dec 2007 12:35:29 -0000 1.36
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/putty
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.35 2007/12/25 16:03:34 phreak Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.36 2007/12/27 12:35:29 armin76 Exp $
29 +
30 +*putty-0.60 (27 Dec 2007)
31 +
32 + 27 Dec 2007; Raúl Porcel <armin76@g.o> +files/putty.xpm,
33 + +putty-0.60.ebuild:
34 + Version bump wrt #177227, add icon wrt #174241
35
36 25 Dec 2007; Christian Heim <phreak@g.o> metadata.xml:
37 Removing taviso from metadata.xml as per #202471. Assigning to
38
39
40
41 1.1 net-misc/putty/putty-0.60.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/putty/putty-0.60.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/putty/putty-0.60.ebuild?rev=1.1&content-type=text/plain
45
46 Index: putty-0.60.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-0.60.ebuild,v 1.1 2007/12/27 12:35:29 armin76 Exp $
51
52 inherit eutils toolchain-funcs flag-o-matic
53
54 DESCRIPTION="UNIX port of the famous Telnet and SSH client"
55 HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/"
56 SRC_URI="http://the.earth.li/~sgtatham/putty/${PV}/${P}.tar.gz"
57 LICENSE="MIT"
58
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
61 IUSE="doc gtk ipv6"
62
63 RDEPEND="gtk? ( =x11-libs/gtk+-1.2* )"
64 DEPEND="${RDEPEND} dev-lang/perl"
65
66 src_compile() {
67 use gtk && unset ptargets || local ptargets="puttygen plink pscp psftp"
68
69 cd "${S}"/unix
70
71 append-flags '-I.././' '-I../charset/' '-I../unix/'
72
73 use ipv6 || append-flags '-DNO_IPV6'
74 use gtk && append-flags '`gtk-config --cflags`'
75
76 emake -f Makefile.gtk ${ptargets:-all} CC="$(tc-getCC)" \
77 CFLAGS="${CFLAGS}"
78 }
79
80 src_install() {
81 cd "${S}"/doc
82 use gtk && doman pterm.1 putty.1 puttytel.1
83 use doc && dohtml *.html
84 dodoc puttydoc.txt
85 doman puttygen.1 plink.1
86
87 cd "${S}"/unix
88 use gtk && dobin pterm putty puttytel
89 dobin puttygen plink pscp psftp
90
91 cd "${S}"
92 dodoc README README.txt CHECKLST.txt LATEST.VER
93
94 # install desktop file provided by Gustav Schaffter in #49577
95 use gtk && {
96 doicon "${FILESDIR}"/${PN}.xpm
97 make_desktop_entry "putty" "PuTTY" putty.xpm "Network"
98 }
99
100 if test ! -c /dev/ptmx; then
101 ewarn
102 ewarn "The pterm application requires kernel UNIX98 PTY support to operate."
103 ewarn
104 fi
105 }
106
107
108
109 --
110 gentoo-commits@g.o mailing list