diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-02-01 17:25:11 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-02-01 17:25:11 +0000 |
commit | 37e60b426fc1b88092f6324f957c3378f110ebff (patch) | |
tree | 8db5516766adc87d9eee2aceedb71bb304190a46 /net-misc | |
parent | Marking sudo-1.8.3_p2 ppc for bug 401533 (diff) | |
download | historical-37e60b426fc1b88092f6324f957c3378f110ebff.tar.gz historical-37e60b426fc1b88092f6324f957c3378f110ebff.tar.bz2 historical-37e60b426fc1b88092f6324f957c3378f110ebff.zip |
Old.
Package-Manager: portage-2.2.0_alpha84/cvs/Linux x86_64
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/putty/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/putty/putty-0.60_p20100131.ebuild | 63 | ||||
-rw-r--r-- | net-misc/putty/putty-0.61.ebuild | 64 |
3 files changed, 5 insertions, 128 deletions
diff --git a/net-misc/putty/ChangeLog b/net-misc/putty/ChangeLog index f340519352fc..3ea315d12da4 100644 --- a/net-misc/putty/ChangeLog +++ b/net-misc/putty/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/putty # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.66 2012/02/01 17:08:27 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/ChangeLog,v 1.67 2012/02/01 17:25:11 jer Exp $ + + 01 Feb 2012; Jeroen Roovers <jer@gentoo.org> -putty-0.60_p20100131.ebuild, + -putty-0.61.ebuild: + Old. 01 Feb 2012; Brent Baude <ranger@gentoo.org> putty-0.62.ebuild: Marking putty-0.62 ppc for bug 394429 diff --git a/net-misc/putty/putty-0.60_p20100131.ebuild b/net-misc/putty/putty-0.60_p20100131.ebuild deleted file mode 100644 index 0654b4a8d965..000000000000 --- a/net-misc/putty/putty-0.60_p20100131.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-0.60_p20100131.ebuild,v 1.10 2011/03/22 20:47:55 ranger Exp $ - -EAPI="2" - -inherit autotools eutils toolchain-funcs - -DESCRIPTION="UNIX port of the famous Telnet and SSH client" -HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/" -SRC_URI="mirror://gentoo/${P}.tar.gz" -LICENSE="MIT" - -SLOT="0" -KEYWORDS="alpha amd64 ppc sparc x86" -IUSE="doc ipv6 kerberos" - -RDEPEND=" - x11-libs/gtk+:2 - kerberos? ( virtual/krb5 ) - !net-misc/pssh -" -DEPEND="${RDEPEND} dev-lang/perl" - -S="${WORKDIR}/putty-0.60-2010-01-31" - -src_prepare() { - cd "${S}"/unix || die "cd unix failed" - sed \ - -i configure.ac \ - -e '/^AM_PATH_GTK(/d' \ - -e 's|-Wall -Werror||g' || die "sed failed" - eautoreconf -} - -src_configure() { - cd "${S}"/unix || die "cd failed" - econf \ - $(use_with kerberos gssapi) \ - || die "econf failed" -} - -src_compile() { - cd "${S}"/unix || die "cd unix failed" - emake \ - $(use ipv6 || echo COMPAT=-DNO_IPV6) \ - VER=-DSNAPSHOT=${PV} \ - || die "emake failed" -} - -src_install() { - if use doc; then - dodoc doc/puttydoc.txt || die "dodoc failed" - dohtml doc/*.html || die "dohtml failed" - fi - - cd "${S}"/unix - emake DESTDIR="${D}" install || die "install failed" - - # install desktop file provided by Gustav Schaffter in #49577 - doicon "${FILESDIR}"/${PN}.xpm - make_desktop_entry "putty" "PuTTY" putty "Network" -} diff --git a/net-misc/putty/putty-0.61.ebuild b/net-misc/putty/putty-0.61.ebuild deleted file mode 100644 index 8e707f093a6b..000000000000 --- a/net-misc/putty/putty-0.61.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/putty/putty-0.61.ebuild,v 1.5 2011/09/24 16:38:52 armin76 Exp $ - -EAPI="4" - -inherit autotools toolchain-funcs - -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/${PN}/latest/${P}.tar.gz" -LICENSE="MIT" - -SLOT="0" -KEYWORDS="alpha amd64 ~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 - dev-util/pkgconfig -" - -src_prepare() { - cd "${S}"/unix || die "cd unix failed" - sed \ - -i configure.ac \ - -e '/^AM_PATH_GTK(/d' \ - -e 's|-Wall -Werror||g' || die "sed failed" - eautoreconf -} - -src_configure() { - cd "${S}"/unix || die "cd failed" - econf $(use_with kerberos gssapi) -} - -src_compile() { - cd "${S}"/unix || die "cd unix failed" - emake $(use ipv6 || echo COMPAT=-DNO_IPV6) -} - -src_install() { - if use doc; then - dodoc doc/puttydoc.txt - dohtml doc/*.html - fi - - cd "${S}"/unix - default - - # install desktop file provided by Gustav Schaffter in #49577 - doicon "${FILESDIR}"/${PN}.xpm - make_desktop_entry putty PuTTY putty Network -} |