From cf8cc4ba89d05f3daa5f634c635c0ce4c2b4c641 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 19 Mar 2014 07:04:49 +0700 Subject: system/suckless-tools: Added (utilities from suckless.org). Signed-off-by: Willy Sudiarto Raharjo --- system/suckless-tools/README | 32 +++++++ system/suckless-tools/doinst.sh | 6 ++ system/suckless-tools/pod/lsx.pod | 43 ++++++++++ system/suckless-tools/pod/sselp.pod | 36 ++++++++ system/suckless-tools/pod/ssid.pod | 34 ++++++++ system/suckless-tools/pod/swarp.pod | 39 +++++++++ system/suckless-tools/pod/wmname.pod | 44 ++++++++++ system/suckless-tools/slack-desc | 19 +++++ system/suckless-tools/suckless-tools.SlackBuild | 107 ++++++++++++++++++++++++ system/suckless-tools/suckless-tools.info | 24 ++++++ 10 files changed, 384 insertions(+) create mode 100644 system/suckless-tools/README create mode 100644 system/suckless-tools/doinst.sh create mode 100644 system/suckless-tools/pod/lsx.pod create mode 100644 system/suckless-tools/pod/sselp.pod create mode 100644 system/suckless-tools/pod/ssid.pod create mode 100644 system/suckless-tools/pod/swarp.pod create mode 100644 system/suckless-tools/pod/wmname.pod create mode 100644 system/suckless-tools/slack-desc create mode 100644 system/suckless-tools/suckless-tools.SlackBuild create mode 100644 system/suckless-tools/suckless-tools.info diff --git a/system/suckless-tools/README b/system/suckless-tools/README new file mode 100644 index 0000000000..66ca33d394 --- /dev/null +++ b/system/suckless-tools/README @@ -0,0 +1,32 @@ +suckless-tools (tools from suckless.org) + +This is a collection of small tools from tools.suckless.org. They're +bundled together in one build because they're so small and simple. + +Included tools: + +lsw - Lists the titles of all running X windows to stdout, similar to ls(1). +lsx - List executables in a directory tree [1]. +sprop - Simple X property utility. +sselp - Simple X selection printer. +ssid - Simple setsid replacement. +swarp - Simple pointer warping tool for X. +wmname - Prints/sets the window manager name property of the root window [2]. +xssstate - A simple tool to retrieve the X screensaver state. + +Not included: + +dmenu, sandy, sic, slock, svkbd, tabbed - These are packaged separately +on SlackBuilds.org. + +9base, ii - Currently not available on SlackBuilds.org. If you package +one of these, please let me know so I can update this README. + +[1] lsx would conflict with the /usr/bin/lsx from Slackware's minicom +package. To avoid this, lsx is installed as /usr/bin/lsX. If you don't use +XMODEM (or even know what it is), "rm -f /usr/bin/lsx" before installing +suckless-tools, and /usr/bin/lsx will be a symlink to lsX. + +[2] wmname has been packaged separately (as desktop/wmname). This build +gives you the same version of wmname, plus a man page for it, so the +separate wmname build isn't needed. diff --git a/system/suckless-tools/doinst.sh b/system/suckless-tools/doinst.sh new file mode 100644 index 0000000000..30e260a0e9 --- /dev/null +++ b/system/suckless-tools/doinst.sh @@ -0,0 +1,6 @@ +if [ ! -r usr/bin/lsx ]; then + ( cd usr/man/man1 ; rm -rf lsx.1.gz ) + ( cd usr/man/man1 ; ln -sf lsX.1.gz lsx.1.gz ) + ( cd usr/bin ; rm -rf lsx ) + ( cd usr/bin ; ln -sf lsX lsx ) +fi diff --git a/system/suckless-tools/pod/lsx.pod b/system/suckless-tools/pod/lsx.pod new file mode 100644 index 0000000000..0e9f5c9319 --- /dev/null +++ b/system/suckless-tools/pod/lsx.pod @@ -0,0 +1,43 @@ +# POD source for lsX man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 lsx.pod > lsx.1 + +=pod + +=head1 NAME + +B - List executables in one or more directory trees. + +=head1 SYNOPSIS + +B [dir] {[dir] ...} + +=head1 DESCRIPTION + +B lists the executables in the given directories, non-recursively. +Non-directory arguments are ignored. If no arguments are given, B +exits without doing anything. + +B always exits with zero status. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 NOTES + +When using B with multiple directory arguments, the 2nd and any +further directories must be absolute paths (this counts as a bug). + +B may also be installed as B. The name change is to avoid +conflicting with the B symlink included in Slackware's minicom +package. If minicom isn't installed, B will be a +symlink to B. + +=head1 AUTHORS + +B was written by Anselm R. Garbe (garbeam at gmail dot com) and +Sander van Dijk (a dot h dot vandijk at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/pod/sselp.pod b/system/suckless-tools/pod/sselp.pod new file mode 100644 index 0000000000..2b812bef3b --- /dev/null +++ b/system/suckless-tools/pod/sselp.pod @@ -0,0 +1,36 @@ +# POD source for sselp man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 sselp.pod > sselp.1 + +=pod + +=head1 NAME + +B - Simple X selection printer. + +=head1 SYNOPSIS + +B + +=head1 DESCRIPTION + +B prints the X selection to stdout. If there is no X client owning +the selection it just exits. Useful for scripts where you can query the +X selection without pressing mouse Button2 in cumbersome ways. + +B always exits with zero status. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 ENVIRONMENT + +B - used in the usual way. + +=head1 AUTHORS + +B was written by Anselm R. Garbe (garbeam at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/pod/ssid.pod b/system/suckless-tools/pod/ssid.pod new file mode 100644 index 0000000000..e5df7b622b --- /dev/null +++ b/system/suckless-tools/pod/ssid.pod @@ -0,0 +1,34 @@ +# POD source for ssid man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 ssid.pod > ssid.1 + +=pod + +=head1 NAME + +B - Simple setsid replacement. + +=head1 SYNOPSIS + +B [-v] cmd [arg ...] + +=head1 DESCRIPTION + +B runs a program in a new session. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 SEE ALSO + +setsid(2) + +setsid(1) + +=head1 AUTHORS + +B was written by Anselm R. Garbe (garbeam at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/pod/swarp.pod b/system/suckless-tools/pod/swarp.pod new file mode 100644 index 0000000000..87136887a5 --- /dev/null +++ b/system/suckless-tools/pod/swarp.pod @@ -0,0 +1,39 @@ +# POD source for swarp man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 swarp.pod > swarp.1 + +=pod + +=head1 NAME + +B - simple pointer warp + +=head1 SYNOPSIS + +B [x] [y] + +B -v + +=head1 DESCRIPTION + +B is a generic pointer warping utility for X. Example: + +# B + +will warp the pointer to (100, 100) on your screen. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 ENVIRONMENT + +B - used in the usual way. + +=head1 AUTHORS + +B was written by Anselm R. Garbe (garbeam at gmail dot com) +and Sander van Dijk (a dot h dot vandijk at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/pod/wmname.pod b/system/suckless-tools/pod/wmname.pod new file mode 100644 index 0000000000..0659ac1d67 --- /dev/null +++ b/system/suckless-tools/pod/wmname.pod @@ -0,0 +1,44 @@ +# POD source for wmname man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 wmname.pod > wmname.1 + +=pod + +=head1 NAME + +B - Prints/sets the EWMH WM name property. + +=head1 SYNOPSIS + +B I<{[name]}> + +=head1 DESCRIPTION + +wmname prints/sets the window manager name property of the root window, +similar to how hostname(1) behaves. + +wmname is a nice utility to fix problems with JDK versions and other +broken programs assuming a reparenting window manager for instance. + +The following command prints the window manager name, if any: + +# B + +The following command sets the window manager name, e.g. + +# B + +This helpful when attempting to run java swing (broken) applications, +it makes them think they are running through the looking glass and behave +as expected. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 AUTHORS + +B was written by Anselm R. Garbe (garbeam at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/slack-desc b/system/suckless-tools/slack-desc new file mode 100644 index 0000000000..d241cbb82f --- /dev/null +++ b/system/suckless-tools/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------------------------------------------------------| +suckless-tools: suckless-tools (utilities from suckless.org) +suckless-tools: +suckless-tools: This is a collection of small tools/utilities from +suckless-tools: suckless.org. They're bundled together in one build because they're +suckless-tools: so small and simple. +suckless-tools: +suckless-tools: Included tools: +suckless-tools: +suckless-tools: lsw-XXXX lsx-XXXX sprop-XXXX sselp-XXXX +suckless-tools: ssid-XXXX swarp-XXXX wmname-XXXX xssstate-XXXX +suckless-tools: diff --git a/system/suckless-tools/suckless-tools.SlackBuild b/system/suckless-tools/suckless-tools.SlackBuild new file mode 100644 index 0000000000..bf2daa5fe2 --- /dev/null +++ b/system/suckless-tools/suckless-tools.SlackBuild @@ -0,0 +1,107 @@ +#!/bin/sh + +# Slackware build script for suckless-tools + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +PROGS="lsw lsx sprop sselp ssid swarp wmname xssstate" + +PRGNAM=suckless-tools +VERSION=${VERSION:-20140317} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -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 + +DOCDIR=$PKG/usr/doc/$PRGNAM-$VERSION + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +mkdir -p $PRGNAM-$VERSION +cd $PRGNAM-$VERSION + +# we are going to repeatedly modify the slack-desc, don't do +# it in $CWD because that might be read-only. +cp $CWD/slack-desc . + +# some of the Makefiles expect these to already exist: +mkdir -p $PKG/usr/bin $PKG/usr/man/man1 + +for prog in $PROGS; do + tar xvf $CWD/$prog-*.tar.gz + cd $prog-* + dir=$( basename $( pwd ) ) + toolver=$( echo $dir | cut -d- -f2 ) + + chown -R root:root . + find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + + sed -i -e "s,-O.\>,$SLKCFLAGS," -e "s,\,lib$LIBDIRSUFFIX," config.mk + + make PREFIX=/usr MANPREFIX=/usr/man DESTDIR=$PKG install + mkdir -p $DOCDIR/$dir + cp -a README LICENSE $DOCDIR/$dir + cd - + + sed -i "s,$prog-XXXX,$dir," slack-desc + + # some of the man pages were written for this build + [ -e $CWD/pod/$prog.pod ] && \ + pod2man --stderr -s1 -c"Suckless.org Tools" -r$toolver $CWD/pod/$prog.pod \ + > $PKG/usr/man/man1/$prog.1 +done + +strip $PKG/usr/bin/* +gzip -9 $PKG/usr/man/man?/*.? + +# Special case handling because Slackware's minicom package includes a +# /usr/bin/lsx already (it's a symlink to lsz). Our doinst.sh will +# link these to their lowercase versions, if minicom's /usr/bin/lsx +# is missing at install time. +mv $PKG/usr/bin/lsx $PKG/usr/bin/lsX +mv $PKG/usr/man/man1/lsx.1.gz $PKG/usr/man/man1/lsX.1.gz + +cp -a $CWD/README $DOCDIR +cat $CWD/$PRGNAM.SlackBuild > $DOCDIR/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/suckless-tools/suckless-tools.info b/system/suckless-tools/suckless-tools.info new file mode 100644 index 0000000000..51fbad269e --- /dev/null +++ b/system/suckless-tools/suckless-tools.info @@ -0,0 +1,24 @@ +PRGNAM="suckless-tools" +VERSION="20140317" +HOMEPAGE="http://tools.suckless.org/" +DOWNLOAD="http://dl.suckless.org/tools/lsw-0.2.tar.gz + http://dl.suckless.org/tools/lsx-0.1.tar.gz + http://dl.suckless.org/tools/sprop-0.1.tar.gz + http://dl.suckless.org/tools/sselp-0.2.tar.gz + http://dl.suckless.org/tools/ssid-0.1.tar.gz + http://dl.suckless.org/tools/swarp-0.1.tar.gz + http://dl.suckless.org/tools/wmname-0.1.tar.gz + http://dl.suckless.org/tools/xssstate-1.1.tar.gz" +MD5SUM="5ddd61d04ff084a39494b2aa06c00b65 + d48fdce9868b13bf5ef3e7834768f89f + 7586fc99580a1f79194f2e83f9ef3e9e + b74d6558790d8df897db40bca90bc0f6 + 8740013208d79ef4d7ce7fe0c1f12e87 + b674dd2f33c45cbd789e4b6e09b7b55e + 6903d299f84d335e529fbd2c1d6e49fe + 7d4935bc17b6f01afa12e420331fa688" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" -- cgit v1.2.3