mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
network/putty: Initial import
This commit is contained in:
parent
61f7bbd76e
commit
99e88bf697
5 changed files with 124 additions and 0 deletions
7
network/putty/README
Normal file
7
network/putty/README
Normal file
|
@ -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.
|
||||
|
18
network/putty/putty-makefile.diff
Normal file
18
network/putty/putty-makefile.diff
Normal file
|
@ -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
|
84
network/putty/putty.SlackBuild
Normal file
84
network/putty/putty.SlackBuild
Normal file
|
@ -0,0 +1,84 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for PuTTY
|
||||
|
||||
# Written by <youngmug@animeneko.net>
|
||||
|
||||
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
|
8
network/putty/putty.info
Normal file
8
network/putty/putty.info
Normal file
|
@ -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"
|
7
network/putty/slack-desc
Normal file
7
network/putty/slack-desc
Normal file
|
@ -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:
|
Loading…
Reference in a new issue