summaryrefslogtreecommitdiffstats
path: root/system/mlterm
diff options
context:
space:
mode:
Diffstat (limited to 'system/mlterm')
-rw-r--r--system/mlterm/README11
-rw-r--r--system/mlterm/doinst.sh13
-rw-r--r--system/mlterm/mlterm.SlackBuild106
-rw-r--r--system/mlterm/mlterm.info10
-rw-r--r--system/mlterm/slack-desc19
5 files changed, 0 insertions, 159 deletions
diff --git a/system/mlterm/README b/system/mlterm/README
deleted file mode 100644
index caf02e4fe4..0000000000
--- a/system/mlterm/README
+++ /dev/null
@@ -1,11 +0,0 @@
-mlterm is a multilingual X11 terminal emulator. It supports different
-character sets, automatic selection of proper enconding, complex
-characters such as double width for East Asian and bi-direction for
-Arabic and Hebrew.
-
-For ISCII rendering mlterm is dependent upon the libind library.
-To compile the package with libind support add "--enable-ind"
-to the configure options in the build script.
-
-To use anti-aliased fonts select XfreeType rather than xcore, run the
-script as follows: FONT_ENGINE=xft ./mlterm.SlackBuild
diff --git a/system/mlterm/doinst.sh b/system/mlterm/doinst.sh
deleted file mode 100644
index 19a6ff6ac8..0000000000
--- a/system/mlterm/doinst.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
diff --git a/system/mlterm/mlterm.SlackBuild b/system/mlterm/mlterm.SlackBuild
deleted file mode 100644
index 49e308bb75..0000000000
--- a/system/mlterm/mlterm.SlackBuild
+++ /dev/null
@@ -1,106 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for mlterm
-
-# Written by Marco Cecchetti (mrc.ildp@gmail.com)
-
-PRGNAM=mlterm
-VERSION=${VERSION:-3.0.0}
-BUILD=${BUILD:-3}
-TAG=${TAG:-_SBo}
-
-FONT_ENGINE=${FONT_ENGINE:-xcore}
-
-# 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}
-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
-
-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 . \
- \( -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 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --enable-optimize-redrawing \
- --with-imagelib=gdk-pixbuf2 \
- --with-type-engines=${FONT_ENGINE} \
- --enable-fribidi \
- --disable-static \
- --enable-m17nlib \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-( 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
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- ABOUT-NLS ChangeLog LICENCE README doc/* \
- $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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-# Don't clobber config files
-( cd $PKG/etc/mlterm
- for file in \
- aafont color font key main menu taafont termcap tfont vaafont vfont xim ;
- do \
- mv $file $file.new
- echo "config etc/mlterm/${file}.new" >> $PKG/install/doinst.sh
- done
-)
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/system/mlterm/mlterm.info b/system/mlterm/mlterm.info
deleted file mode 100644
index 9e059a462b..0000000000
--- a/system/mlterm/mlterm.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="mlterm"
-VERSION="3.0.0"
-HOMEPAGE="http://mlterm.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/mlterm/mlterm-3.0.0.tar.gz"
-MD5SUM="0d40121b735fd18dc79ae38ed4e75a11"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Marco Cecchetti"
-EMAIL="mrc.ildp@gmail.com"
-APPROVED="dsomero"
diff --git a/system/mlterm/slack-desc b/system/mlterm/slack-desc
deleted file mode 100644
index 64e42471e8..0000000000
--- a/system/mlterm/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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------------------------------------------------------|
-mlterm: mlterm (X11 multilingual terminal emulator)
-mlterm:
-mlterm: mlterm supports various character sets and encodings in the world and
-mlterm: complex characters such as double width for East Asian,
-mlterm: combining for Thai, Vietnamese, and so on, and bidirection for Arabic
-mlterm: and Hebrew. Indic scripts in ISCII encoding are experimentally
-mlterm: supported using libind library. It also supports various unique
-mlterm: feature such as anti-alias using FreeType, multiple XIM, multiple
-mlterm: windows, scrollbar API, scroll bymouse wheel, automatic selection of
-mlterm: encoding, daemon mode, and so on.
-mlterm: