diff options
author | B. Watson <yalhcru@gmail.com> | 2020-11-27 19:42:57 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-11-29 01:02:52 +0700 |
commit | 17d911717e0fc92df04c32b9d3c2f4fb1fd2b561 (patch) | |
tree | 9a46a9818354cc1728484034affa4b7e2bcbe9d7 | |
parent | 51c55eca05fa9bd27753c8f9695cddad38701397 (diff) | |
download | slackbuilds-17d911717e0fc92df04c32b9d3c2f4fb1fd2b561.tar.gz |
system/conspy: Added (take control of a virtual console)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | system/conspy/README | 8 | ||||
-rw-r--r-- | system/conspy/conspy.SlackBuild | 77 | ||||
-rw-r--r-- | system/conspy/conspy.info | 10 | ||||
-rw-r--r-- | system/conspy/slack-desc | 19 |
4 files changed, 114 insertions, 0 deletions
diff --git a/system/conspy/README b/system/conspy/README new file mode 100644 index 0000000000..6214505103 --- /dev/null +++ b/system/conspy/README @@ -0,0 +1,8 @@ +conspy (take control of a virtual console) + +Conspy allows the user to take control of a Linux virtual console. +The user can see what is displayed on the console and their keystrokes +are sent to it. + +Actually, conspy needs to be run as root, so "the user" above is a bit +misleading... diff --git a/system/conspy/conspy.SlackBuild b/system/conspy/conspy.SlackBuild new file mode 100644 index 0000000000..ed1bb1afbc --- /dev/null +++ b/system/conspy/conspy.SlackBuild @@ -0,0 +1,77 @@ +#!/bin/sh + +# Slackware build script for conspy + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +PRGNAM=conspy +VERSION=${VERSION:-1.16} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ + +autoreconf -if +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG +gzip -9 $PKG/usr/man/man1/$PRGNAM.1 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a *.txt *.html $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +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.${PKGTYPE:-tgz} diff --git a/system/conspy/conspy.info b/system/conspy/conspy.info new file mode 100644 index 0000000000..139f0ecb86 --- /dev/null +++ b/system/conspy/conspy.info @@ -0,0 +1,10 @@ +PRGNAM="conspy" +VERSION="1.16" +HOMEPAGE="http://conspy.sourceforge.net/" +DOWNLOAD="https://downloads.sourceforge.net/project/conspy/conspy-1.16-1/conspy-1.16.tar.gz" +MD5SUM="c5ab86215e27a418f220d853b6ebf6d4" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" diff --git a/system/conspy/slack-desc b/system/conspy/slack-desc new file mode 100644 index 0000000000..551226aa69 --- /dev/null +++ b/system/conspy/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +conspy: conspy (take control of a virtual console) +conspy: +conspy: Conspy allows the user to take control of a Linux virtual console. +conspy: The user can see what is displayed on the console and their keystrokes +conspy: are sent to it. +conspy: +conspy: +conspy: +conspy: +conspy: +conspy: |