diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-01-20 01:04:41 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-01-20 01:04:41 +0000 |
commit | a3e72987ea1d9b66d4a9891c960958e6b8c8785b (patch) | |
tree | 995c08faa3ec14cb720d24456dd45d619875c89a /net-misc/putty | |
parent | Old. (diff) | |
download | gentoo-2-a3e72987ea1d9b66d4a9891c960958e6b8c8785b.tar.gz gentoo-2-a3e72987ea1d9b66d4a9891c960958e6b8c8785b.tar.bz2 gentoo-2-a3e72987ea1d9b66d4a9891c960958e6b8c8785b.zip |
Old.
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-misc/putty')
-rw-r--r-- | net-misc/putty/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/putty/putty-0.63.ebuild | 83 |
2 files changed, 4 insertions, 84 deletions
diff --git a/net-misc/putty/ChangeLog b/net-misc/putty/ChangeLog index 7816e2623399..9a96d54b7e5c 100644 --- a/net-misc/putty/ChangeLog +++ b/net-misc/putty/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/putty # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.92 2014/01/18 20:04:21 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.93 2014/01/20 01:04:41 jer Exp $ + + 20 Jan 2014; Jeroen Roovers <jer@gentoo.org> -putty-0.63.ebuild: + Old. 18 Jan 2014; Agostino Sarubbo <ago@gentoo.org> putty-0.63-r1.ebuild: Stable for alpha, wrt bug #494408 diff --git a/net-misc/putty/putty-0.63.ebuild b/net-misc/putty/putty-0.63.ebuild deleted file mode 100644 index 65e045f136b0..000000000000 --- a/net-misc/putty/putty-0.63.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-0.63.ebuild,v 1.7 2013/09/15 15:57:32 jer Exp $ - -EAPI=5 - -inherit autotools eutils gnome2-utils toolchain-funcs versionator - -DESCRIPTION="A Free Telnet/SSH Client" -HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/" -SRC_URI=" - http://the.earth.li/~sgtatham/${PN}/latest/${P}.tar.gz - http://dev.gentoo.org/~jer/${PN}-icons.tar.bz2" -LICENSE="MIT" - -SLOT="0" -KEYWORDS="alpha amd64 hppa ppc sparc x86" -IUSE="doc ipv6 kerberos" - -RDEPEND=" - !net-misc/pssh - dev-libs/glib - kerberos? ( virtual/krb5 ) - x11-libs/gdk-pixbuf - x11-libs/gtk+:2 - x11-libs/libX11 - x11-libs/pango -" -DEPEND=" - ${RDEPEND} - dev-lang/perl - virtual/pkgconfig -" - -src_prepare() { - cd "${S}"/unix || die - sed -i \ - -e '/AM_PATH_GTK(/d' \ - -e 's|-Wall -Werror||g' \ - configure.ac || die - - eautoreconf -} - -src_configure() { - cd "${S}"/unix || die - econf $(use_with kerberos gssapi) -} - -src_compile() { - cd "${S}"/unix || die - emake AR=$(tc-getAR) $(usex ipv6 '' COMPAT=-DNO_IPV6) -} - -src_install() { - dodoc doc/puttydoc.txt - - if use doc; then - dohtml doc/*.html - fi - - cd "${S}"/unix || die - default - - for i in 16 22 24 32 48 64 128 256; do - newicon -s ${i} "${WORKDIR}"/${PN}-icons/${PN}-${i}.png ${PN}.png - done - - # install desktop file provided by Gustav Schaffter in #49577 - make_desktop_entry ${PN} PuTTY ${PN} Network -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |