From patchwork Fri Oct 12 20:28:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Stefan_Fr=C3=B6berg?= X-Patchwork-Id: 191204 X-Patchwork-Delegate: patrickdepinguin+buildroot@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 4A8AB2C008F for ; Sat, 13 Oct 2012 07:28:55 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 75B978B107; Fri, 12 Oct 2012 20:28:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5qJ68a-slat3; Fri, 12 Oct 2012 20:28:46 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 4AFD38F6F9; Fri, 12 Oct 2012 20:28:44 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id BB6E88F74A for ; Fri, 12 Oct 2012 20:28:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F28308A340 for ; Fri, 12 Oct 2012 20:28:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FB60nJQc2CYv for ; Fri, 12 Oct 2012 20:28:40 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.petroprogram.com (mail.petroprogram.com [194.89.34.74]) by whitealder.osuosl.org (Postfix) with ESMTPS id 8FC628B107 for ; Fri, 12 Oct 2012 20:28:40 +0000 (UTC) Received: from localhost.localdomain (212-226-64-71-nat.elisa-mobile.fi [212.226.64.71]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: stefan.froberg@petroprogram.com) by mail.petroprogram.com (Postfix) with ESMTPSA id A62EE4400C; Fri, 12 Oct 2012 23:18:05 +0300 (EEST) From: =?UTF-8?q?Stefan=20Fr=C3=B6berg?= To: buildroot@busybox.net Date: Fri, 12 Oct 2012 23:28:11 +0300 Message-Id: <1350073691-18721-1-git-send-email-stefan.froberg@petroprogram.com> X-Mailer: git-send-email 1.7.7.6 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] putty: UNIX port of the famous Telnet and SSH GUI client X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Stefan Fröberg --- package/Config.in | 1 + package/putty/Config.in | 7 +++++++ package/putty/putty.mk | 24 ++++++++++++++++++++++++ 3 files changed, 32 insertions(+), 0 deletions(-) create mode 100644 package/putty/Config.in create mode 100644 package/putty/putty.mk diff --git a/package/Config.in b/package/Config.in index fb4ec28..3f2c289 100644 --- a/package/Config.in +++ b/package/Config.in @@ -598,6 +598,7 @@ source "package/portmap/Config.in" source "package/pppd/Config.in" source "package/pptp-linux/Config.in" source "package/proftpd/Config.in" +source "package/putty/Config.in" source "package/quagga/Config.in" source "package/radvd/Config.in" source "package/rp-pppoe/Config.in" diff --git a/package/putty/Config.in b/package/putty/Config.in new file mode 100644 index 0000000..125fbd6 --- /dev/null +++ b/package/putty/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_PUTTY + bool "putty" + select BR2_PACKAGE_LIBGTK2 + help + UNIX port of the famous Telnet and SSH GUI client + + http://www.chiark.greenend.org.uk/~sgtatham/putty diff --git a/package/putty/putty.mk b/package/putty/putty.mk new file mode 100644 index 0000000..df66df5 --- /dev/null +++ b/package/putty/putty.mk @@ -0,0 +1,24 @@ +############################################ +# +# putty +# +############################################ + +PUTTY_VERSION = 0.62-2012-08-27 +PUTTY_SOURCE = putty-$(PUTTY_VERSION).tar.gz +PUTTY_SITE = http://tartarus.org/~simon/putty-snapshots +PUTTY_SUBDIR = unix +PUTTY_AUTORECONF = yes +PUTTY_DEPENDENCIES = libglib2 libgtk2 gdk-pixbuf xlib_libX11 pango +PUTTY_LICENSE = MIT +PUTTY_LICENSE_FILES = LICENSE + +define PUTTY_CONFIGURE_FIXUP + (cd $(@D)/unix; \ + sed -i configure.ac -e '/^AM_PATH_GTK(/d' -e 's|-Wall -Werror||g' ) +endef + +PUTTY_POST_PATCH_HOOKS += PUTTY_CONFIGURE_FIXUP + +$(eval $(autotools-package)) +