summaryrefslogtreecommitdiffstats
path: root/source/e
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2020-07-29 04:46:21 +0000
committer Eric Hameleers <alien@slackware.com>2020-07-29 17:59:53 +0200
commit9faa0e110ecf14ad2a82d6c7fd2c72a78a49ea0d (patch)
tree04b5ad5aa57320f5ba81b3f03f18a3e9f697856f /source/e
parent3df47c8baadd98f1a0572144353c056b5ea7357f (diff)
downloadcurrent-9faa0e110ecf14ad2a82d6c7fd2c72a78a49ea0d.tar.gz
current-9faa0e110ecf14ad2a82d6c7fd2c72a78a49ea0d.tar.xz
Wed Jul 29 04:46:21 UTC 202020200729044621
d/git-2.28.0-x86_64-1.txz: Upgraded. e/emacspeak-52.0-x86_64-1.txz: Added. l/espeak-ng-1.50-x86_64-1.txz: Added. l/pcaudiolib-1.1-x86_64-1.txz: Added. l/xxHash-0.8.0-x86_64-1.txz: Upgraded. xap/xaos-4.1-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/e')
-rwxr-xr-xsource/e/emacspeak/emacspeak.SlackBuild158
-rw-r--r--source/e/emacspeak/emacspeak.url1
-rwxr-xr-xsource/e/emacspeak/prune-unneeded-files.sh46
-rw-r--r--source/e/emacspeak/slack-desc19
4 files changed, 224 insertions, 0 deletions
diff --git a/source/e/emacspeak/emacspeak.SlackBuild b/source/e/emacspeak/emacspeak.SlackBuild
new file mode 100755
index 000000000..ab9644b15
--- /dev/null
+++ b/source/e/emacspeak/emacspeak.SlackBuild
@@ -0,0 +1,158 @@
+#!/bin/sh
+# Copyright 2006, 2008, 2010, 2011, 2020 Patrick J. Volkerding, Sebeka, MN, USA
+# All rights reserved.
+#
+# Redistribution and use of this script, with or without modification, is
+# permitted provided that the following conditions are met:
+#
+# 1. Redistributions of this script must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
+# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+cd $(dirname $0) ; CWD=$(pwd)
+
+PKGNAM=emacspeak
+VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
+BUILD=${BUILD:-1}
+
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) export ARCH=i586 ;;
+ arm*) export ARCH=arm ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) export ARCH=$( uname -m ) ;;
+ esac
+fi
+
+# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
+# the name of the created package would be, and then exit. This information
+# could be useful to other scripts.
+if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
+ echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
+ exit 0
+fi
+
+if [ "$TMP" = "" ]; then
+ TMP=/tmp
+fi
+
+PKG=$TMP/package-${PKGNAM}
+rm -rf $PKG
+mkdir -p $PKG/usr/info
+
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "s390" ]; then
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
+elif [ "$ARCH" = "armv7hl" ]; then
+ SLKCFLAGS="-O3 -march=armv7-a -mfpu=vfpv3-d16"
+ LIBDIRSUFFIX=""
+else
+ SLKCFLAGS="-O2"
+ LIBDIRSUFFIX=""
+fi
+
+cd $TMP
+rm -rf ${PKGNAM}-${VERSION}
+tar xvf $CWD/${PKGNAM}-$VERSION.tar.?z || exit 1
+cd ${PKGNAM}-$VERSION || exit 1
+
+# Make sure ownerships and permissions are sane:
+chown -R root:root .
+find . \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 700 -o -perm 555 -o -perm 511 \) \
+ -exec chmod 755 {} \+ -o \
+ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
+ -exec chmod 644 {} \+
+
+# Remove dangling symlinks:
+find . -xtype l -exec rm -f {} \;
+
+# Compile the main program against Emacs:
+make config
+make emacspeak
+if [ ! -r info/emacspeak.info ]; then
+ makeinfo -o info/ info/emacspeak.texi
+fi
+
+# Build espeak server if espeak or espeak-ng are installed:
+if [ -e /usr/bin/espeak ]; then
+ make espeak || exit 1
+fi
+
+# Install (there is no longer a "make install" feature...):
+mkdir -p $PKG/usr/share/emacs/site-lisp
+cp -a $TMP/${PKGNAM}-${VERSION} $PKG/usr/share/emacs/site-lisp/emacspeak
+mv $PKG/usr/share/emacs/site-lisp/emacspeak/info/*.info* $PKG/usr/info
+rm -rf $PKG/usr/share/emacs/site-lisp/emacspeak/info
+# Create an emacspeak run script:
+mkdir -p $PKG/usr/bin
+cat << EOF > $PKG/usr/bin/emacspeak
+#!/bin/sh
+# Start emacspeak.
+# Default to using espeak unless DTK_PROGRAM is set.
+#
+:\${DTK_PROGRAM} ? "Using \${DTK_PROGRAM}" : export DTK_PROGRAM="espeak"
+if [ ! -e /usr/bin/espeak -a "\$DTK_PROGRAM" = "espeak" ]; then
+ echo "espeak (or espeak-ng) not installed. Please set a supported speech server like this:"
+ echo " export DTK_PROGRAM=<speech engine>"
+ echo "Then re-run this script."
+fi
+if [ -d \$HOME/.emacs.d/init.el ]; then
+ emacs -q -l /usr/share/emacs/site-lisp/emacspeak/lisp/emacspeak-setup.el -l \$HOME/.emacs.d/init.el \$*
+else
+ emacs -q -l /usr/share/emacs/site-lisp/emacspeak/lisp/emacspeak-setup.el \$*
+fi
+EOF
+chown root:root $PKG/usr/bin/emacspeak
+chmod 755 $PKG/usr/bin/emacspeak
+
+# Strip binaries:
+( cd $PKG
+ find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-debug 2> /dev/null
+ find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-debug 2> /dev/null
+)
+
+# Compress info files, if any:
+if [ -d $PKG/usr/info ]; then
+ ( cd $PKG/usr/info
+ rm -f dir
+ gzip -9 *
+ )
+fi
+
+# Add a documentation directory:
+mkdir -p $PKG/usr/doc/${PKGNAM}-$VERSION
+( cd $PKG/usr/doc/${PKGNAM}-$VERSION
+ ln -sf /usr/share/emacs/site-lisp/emacspeak/etc .
+ ln -sf etc/COPYRIGHT .
+ ln -sf etc/NEWS .
+ ln -sf /usr/share/emacs/site-lisp/emacspeak/README.md .
+ ln -sf /usr/share/emacs/site-lisp/emacspeak/blog-archive .
+)
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+
+cd $TMP/package-${PKGNAM}
+makepkg -l y -c n ../${PKGNAM}-$VERSION-$ARCH-$BUILD.txz
diff --git a/source/e/emacspeak/emacspeak.url b/source/e/emacspeak/emacspeak.url
new file mode 100644
index 000000000..c0195a569
--- /dev/null
+++ b/source/e/emacspeak/emacspeak.url
@@ -0,0 +1 @@
+https://github.com/tvraman/emacspeak
diff --git a/source/e/emacspeak/prune-unneeded-files.sh b/source/e/emacspeak/prune-unneeded-files.sh
new file mode 100755
index 000000000..6acef88dd
--- /dev/null
+++ b/source/e/emacspeak/prune-unneeded-files.sh
@@ -0,0 +1,46 @@
+#!/bin/sh
+# Repacks the emacspeak tarball to remove some large/unused files.
+
+PKGNAM=emacspeak
+VERSION=${VERSION:-$(echo $PKGNAM-*.tar.bz2 | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
+
+# Unpack original .tar.bz2:
+rm -rf ${PKGNAM}-${VERSION}
+tar xf ${PKGNAM}-${VERSION}.tar.bz2 || exit 1
+
+# I have no idea what these are useful for. They aren't referenced anywhere
+# else. If .json weren't such a bloated format I might keep them just in case,
+# but let's strip them out for now. If it would be better to keep them (perhaps
+# compressed as .gz or .xz), let me know.
+( cd ${PKGNAM}-${VERSION}/etc && rm -f CompSciFact.json TVRaman.json UnixToolTip.json )
+
+# Get rid of support files used to build .html:
+( cd ${PKGNAM}-${VERSION}/etc
+ for file in *.html ; do
+ for supportfile in $(basename $file .html).* ; do
+ if [ ! "$file" = "$supportfile" ]; then
+ rm -f $supportfile
+ fi
+ done
+ done
+)
+
+# Keep the last 6 NEWS files:
+( cd ${PKGNAM}-${VERSION}/etc
+ mkdir news-tmp
+ mv $(ls -t NEWS* | head -n 6) news-tmp
+ rm -f NEWS*
+ mv news-tmp/* .
+ rmdir news-tmp
+)
+
+# Drop the Makefile in etc/:
+rm -f ${PKGNAM}-${VERSION}/etc/Makefile
+
+# Repack as .tar.lz:
+rm -f ${PKGNAM}-${VERSION}.tar
+tar cf ${PKGNAM}-${VERSION}.tar ${PKGNAM}-${VERSION}
+rm -f ${PKGNAM}-${VERSION}.tar.lz
+plzip -9 ${PKGNAM}-${VERSION}.tar
+touch -r ${PKGNAM}-${VERSION}.tar.bz2 ${PKGNAM}-${VERSION}.tar.lz
+rm -r ${PKGNAM}-${VERSION}
diff --git a/source/e/emacspeak/slack-desc b/source/e/emacspeak/slack-desc
new file mode 100644
index 000000000..8cd00c4d8
--- /dev/null
+++ b/source/e/emacspeak/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 ':'.
+
+ |-----handy-ruler------------------------------------------------------|
+emacspeak: emacspeak (Emacs speech interface)
+emacspeak:
+emacspeak: Emacspeak is a speech interface that allows visually impaired users to
+emacspeak: interact independently and efficiently with the computer. By
+emacspeak: seamlessly blending all aspects of the Internet such as Web-surfing
+emacspeak: and messaging, Emacspeak speech-enables local and remote information
+emacspeak: via a consistent and well-integrated user interface. Emacspeak has
+emacspeak: dramatically changed how the author, T. V. Raman, and hundreds of
+emacspeak: blind and visually impaired users around the world interact with the
+emacspeak: personal computer and the Internet.
+emacspeak: