From 99e88bf6977b705f887aeefb4c93736e297de24f Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Tue, 11 May 2010 15:01:34 +0200 Subject: network/putty: Initial import --- network/putty/README | 7 ++++ network/putty/putty-makefile.diff | 18 +++++++++ network/putty/putty.SlackBuild | 84 +++++++++++++++++++++++++++++++++++++++ network/putty/putty.info | 8 ++++ network/putty/slack-desc | 7 ++++ 5 files changed, 124 insertions(+) create mode 100644 network/putty/README create mode 100644 network/putty/putty-makefile.diff create mode 100644 network/putty/putty.SlackBuild create mode 100644 network/putty/putty.info create mode 100644 network/putty/slack-desc (limited to 'network/putty') diff --git a/network/putty/README b/network/putty/README new file mode 100644 index 0000000000..81867ddb21 --- /dev/null +++ b/network/putty/README @@ -0,0 +1,7 @@ +PuTTY is a free implementation of Telnet and SSH for Win32 and Unix +platforms, along with an xterm terminal emulator. It is written and +maintained primarily by Simon Tatham. + +PuTTY requires GTK+ 1.2 (part of official Slackware) to build the +GUI tools. + diff --git a/network/putty/putty-makefile.diff b/network/putty/putty-makefile.diff new file mode 100644 index 0000000000..564a070741 --- /dev/null +++ b/network/putty/putty-makefile.diff @@ -0,0 +1,18 @@ +--- Makefile.gtk.orig 2006-11-30 14:52:38.000000000 -0800 ++++ Makefile.gtk 2006-11-30 14:53:07.000000000 -0800 +@@ -83,13 +83,13 @@ + CC = $(TOOLPATH)cc + + CFLAGS = -O2 -Wall -Werror -g -I.././ -I../charset/ -I../windows/ -I../unix/ \ +- -I../mac/ -I../macosx/ `gtk-config --cflags` ++ -I../mac/ -I../macosx/ `gtk-config --cflags` $(SLKCFLAGS) + XLDFLAGS = `gtk-config --libs` + ULDFLAGS =# + INSTALL=install + INSTALL_PROGRAM=$(INSTALL) + INSTALL_DATA=$(INSTALL) +-prefix=/usr/local ++prefix=/usr + exec_prefix=$(prefix) + bindir=$(exec_prefix)/bin + mandir=$(prefix)/man diff --git a/network/putty/putty.SlackBuild b/network/putty/putty.SlackBuild new file mode 100644 index 0000000000..3f1f98fa3f --- /dev/null +++ b/network/putty/putty.SlackBuild @@ -0,0 +1,84 @@ +#!/bin/sh + +# Slackware build script for PuTTY + +# Written by + +PRGNAM=putty +VERSION=0.58 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=`pwd` +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "s390" ]; then + SLKCFLAGS="-O2" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +elif [ "$ARCH" = "alpha" ]; then + SLKCFLAGS="-O2 -mcpu=ev4" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar xvzf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +cd $TMP/$PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +# PuTTY's Makefile is in the unix subdirectory. +cd unix + +# Patch the Makefile to the prefix we want. +cat $CWD/putty-makefile.diff | patch -p0 --verbose + +# Build the software +SLKCFLAGS="$SLKCFLAGS" \ +make -f Makefile.gtk || exit 1 + +# The install process is stupid and needs the directories to exist... +mkdir -p $PKG/usr/bin $PKG/usr/man/man1 + +# Okay, directories made, now we can install +make -f Makefile.gtk install DESTDIR=$PKG || exit 1 + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in `find . -type l` ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +# Switch back to main source directory +cd $TMP/$PRGNAM-$VERSION + +# Make the documentation directory and copy some docs +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html +cp -a README LICENCE doc/puttydoc.txt $PKG/usr/doc/$PRGNAM-$VERSION + +#Copy the HTML docs +cp -a doc/*.html $PKG/usr/doc/$PRGNAM-$VERSION/html + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz + +if [ "$1" = "--cleanup" ]; then + cd $CWD + rm -rf $TMP/$PRGNAM-$VERSION + rm -rf $PKG +fi diff --git a/network/putty/putty.info b/network/putty/putty.info new file mode 100644 index 0000000000..76e75ba243 --- /dev/null +++ b/network/putty/putty.info @@ -0,0 +1,8 @@ +PRGNAM="putty" +VERSION="0.58" +HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/" +DOWNLOAD="http://the.earth.li/~sgtatham/putty/latest/putty-0.58.tar.gz" +MD5SUM="ffb78a7db7e4802896189b2112714a9f" +MAINTAINER="Michael Johnson" +EMAIL="youngmug@animeneko.net" +APPROVED="robw810" diff --git a/network/putty/slack-desc b/network/putty/slack-desc new file mode 100644 index 0000000000..62dec2378f --- /dev/null +++ b/network/putty/slack-desc @@ -0,0 +1,7 @@ +putty: putty (A Free Telnet/SSH Client) +putty: +putty: PuTTY is a free implementation of Telnet and SSH for Win32 and +putty: Unix platforms, along with an xterm terminal emulator. It is +putty: written and maintained primarily by Simon Tatham. +putty: +putty: -- cgit v1.2.3-80-g2a13