jer         15/07/27 04:42:53

  Modified:             ChangeLog
  Added:                putty-0.65.ebuild
  Removed:              putty-0.65_pre20150621.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  Changes    Path
1.115                net-misc/putty/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/putty/ChangeLog?rev=1.115&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/putty/ChangeLog?rev=1.115&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/putty/ChangeLog?r1=1.114&r2=1.115

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -r1.114 -r1.115
--- ChangeLog   21 Jun 2015 08:08:48 -0000      1.114
+++ ChangeLog   27 Jul 2015 04:42:53 -0000      1.115
@@ -1,6 +1,12 @@
 # ChangeLog for net-misc/putty
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.114 2015/06/21 
08:08:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.115 2015/07/27 
04:42:53 jer Exp $
+
+*putty-0.65 (27 Jul 2015)
+
+  27 Jul 2015; Jeroen Roovers <[email protected]> -putty-0.65_pre20150621.ebuild,
+  +putty-0.65.ebuild:
+  Version bump.
 
 *putty-0.65_pre20150621 (21 Jun 2015)
 



1.1                  net-misc/putty/putty-0.65.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/putty/putty-0.65.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/putty/putty-0.65.ebuild?rev=1.1&content-type=text/plain

Index: putty-0.65.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-0.65.ebuild,v 1.1 
2015/07/27 04:42:53 jer Exp $

EAPI=5
inherit autotools eutils gnome2-utils toolchain-funcs

DESCRIPTION="A Free Telnet/SSH Client"
HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/";
LICENSE="MIT"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="doc +gtk ipv6 kerberos"
SRC_URI="
        http://dev.gentoo.org/~jer/${PN}-icons.tar.bz2
        http://the.earth.li/~sgtatham/${PN}/latest/${P}.tar.gz
"

RDEPEND="
        !net-misc/pssh
        gtk? (
                dev-libs/glib:2
                x11-libs/gdk-pixbuf
                x11-libs/gtk+:2
                x11-libs/libX11
                x11-libs/pango
        )
        kerberos? ( virtual/krb5 )
"
DEPEND="
        ${RDEPEND}
        dev-lang/perl
        virtual/pkgconfig
"

src_prepare() {
        sed -i \
                -e '/AM_PATH_GTK(/d' \
                -e 's|-Werror||g' \
                configure.ac || die

        eautoreconf
}

src_configure() {
        cd "${S}"/unix || die
        econf \
                $(use_with kerberos gssapi) \
                $(use_with gtk)
}

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

        if use gtk ; then
                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
        fi
}

pkg_preinst() {
        use gtk && gnome2_icon_savelist
}

pkg_postinst() {
        use gtk && gnome2_icon_cache_update
}

pkg_postrm() {
        use gtk && gnome2_icon_cache_update
}




Reply via email to