diff options
author | Felix Pfeifer <pfeifer[dot]felix[at]googlemail[dot]com> | 2010-08-28 08:07:40 -0400 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-08-29 15:32:14 -0500 |
commit | 0c218fe9a0caa5529cb479248c73fbf981a5f860 (patch) | |
tree | abac6ce64f4e68d945e6f7d10601ab087626a3c0 /network | |
parent | 1cef10bc23da8bbb43995bc4ceb858e1210f5c53 (diff) | |
download | slackbuilds-0c218fe9a0caa5529cb479248c73fbf981a5f860.tar.gz |
network/emacs-w3m: Added (simple Emacs interface of w3m)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/emacs-w3m/README | 7 | ||||
-rw-r--r-- | network/emacs-w3m/emacs-w3m.SlackBuild | 89 | ||||
-rw-r--r-- | network/emacs-w3m/emacs-w3m.info | 10 | ||||
-rw-r--r-- | network/emacs-w3m/slack-desc | 19 |
4 files changed, 125 insertions, 0 deletions
diff --git a/network/emacs-w3m/README b/network/emacs-w3m/README new file mode 100644 index 0000000000..a07112d454 --- /dev/null +++ b/network/emacs-w3m/README @@ -0,0 +1,7 @@ +simple Emacs interface of w3m + +Emacs-w3m is an interface program of w3m, a pager with WWW +capability. It can be used as a lightweight WWW browser on +emacsen. + +This requires w3m. diff --git a/network/emacs-w3m/emacs-w3m.SlackBuild b/network/emacs-w3m/emacs-w3m.SlackBuild new file mode 100644 index 0000000000..99ccfccebd --- /dev/null +++ b/network/emacs-w3m/emacs-w3m.SlackBuild @@ -0,0 +1,89 @@ +#!/bin/sh + +# Slackware build script for emacs-w3m + +# Written by Felix Pfeifer (pfeifer[dot]felix[at]googlemail[dot]com + +PRGNAM=emacs-w3m +VERSION=${VERSION:-cvs_1.4.400_0.20100725} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} # For consistency's sake, use this +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} # Drop the package in /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 # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM +tar xvf $CWD/w3m-el-snapshot_1.4.400+0.20100725.orig.tar.gz +cd $PRGNAM +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -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 {} \; + +autoconf +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --infodir=$PKG/usr/info \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make +make install prefix=$PKG/usr + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +rm -f $PKG/usr/info/dir +gzip -9 $PKG/usr/info/*.info* + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + [BCNR]* \ + $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/network/emacs-w3m/emacs-w3m.info b/network/emacs-w3m/emacs-w3m.info new file mode 100644 index 0000000000..88f5a8ecce --- /dev/null +++ b/network/emacs-w3m/emacs-w3m.info @@ -0,0 +1,10 @@ +PRGNAM="emacs-w3m" +VERSION="cvs_1.4.400_0.20100725" +HOMEPAGE="http://emacs-w3m.namazu.org/" +DOWNLOAD="http://ftp.de.debian.org/debian/pool/main/w/w3m-el-snapshot/w3m-el-snapshot_1.4.400+0.20100725.orig.tar.gz" +MD5SUM="0c5da2a83ea6502bcf7b589b8c4daed8" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Felix Pfeifer" +EMAIL="pfeifer[dot]felix[at]googlemail[dot]com" +APPROVED="dsomero" diff --git a/network/emacs-w3m/slack-desc b/network/emacs-w3m/slack-desc new file mode 100644 index 0000000000..1ac8f70e8c --- /dev/null +++ b/network/emacs-w3m/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--------------------------------------------------------| +emacs-w3m: emacs-w3m (simple Emacs interface of w3m) +emacs-w3m: +emacs-w3m: Emacs-w3m is an interface program of w3m, a pager with WWW +emacs-w3m: capability. It can be used as a lightweight WWW browser on +emacs-w3m: emacsen. +emacs-w3m: +emacs-w3m: +emacs-w3m: +emacs-w3m: +emacs-w3m: +emacs-w3m: |