summaryrefslogtreecommitdiffstats
path: root/development/gnome-inform7
diff options
context:
space:
mode:
Diffstat (limited to 'development/gnome-inform7')
-rw-r--r--development/gnome-inform7/README10
-rw-r--r--development/gnome-inform7/doinst.sh19
-rw-r--r--development/gnome-inform7/gnome-inform7.SlackBuild108
-rw-r--r--development/gnome-inform7/gnome-inform7.info12
-rw-r--r--development/gnome-inform7/slack-desc19
5 files changed, 0 insertions, 168 deletions
diff --git a/development/gnome-inform7/README b/development/gnome-inform7/README
deleted file mode 100644
index 1b54d0dc92..0000000000
--- a/development/gnome-inform7/README
+++ /dev/null
@@ -1,10 +0,0 @@
-Inform is a design system for interactive fiction based on natural
-language. It is a radical reinvention of the way interactive fiction
-is designed, guided by contemporary work in semantics and by the
-practical experience of some of the world's best known writers of IF.
-
-This includes both the "gnome-inform7" IDE and the "i7" command-line
-shell.
-
-For the dependencies, gst-plugins-bad needs to be built with libmodplug
-support.
diff --git a/development/gnome-inform7/doinst.sh b/development/gnome-inform7/doinst.sh
deleted file mode 100644
index d13dcaa004..0000000000
--- a/development/gnome-inform7/doinst.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-schema_install() {
- SCHEMA="$1"
- GCONF_CONFIG_SOURCE="xml::etc/gconf/gconf.xml.defaults" \
- chroot . gconftool-2 --makefile-install-rule \
- /etc/gconf/schemas/$SCHEMA \
- 1>/dev/null
-}
-
-schema_install gnome-inform7.schemas
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
diff --git a/development/gnome-inform7/gnome-inform7.SlackBuild b/development/gnome-inform7/gnome-inform7.SlackBuild
deleted file mode 100644
index ec1e0c68ef..0000000000
--- a/development/gnome-inform7/gnome-inform7.SlackBuild
+++ /dev/null
@@ -1,108 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for gnome-inform
-
-# Written by Dugan Chen (thedoogster@gmail.com)
-
-PRGNAM=gnome-inform7
-VERSION=${VERSION:-6L38}
-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
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-
-# Install the command-line tools first.
-
-rm -rf inform7-$VERSION
-tar xfv $CWD/I7_${VERSION}_Linux_all.tar.gz
-cd inform7-$VERSION
-
-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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-sh install-inform7.sh -p $PKG/usr
-mv $PKG/usr/share/doc $PKG/usr
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-# Then install the GUI.
-
-rm -rf $PRGNAM-$VERSION
-tar xfv $CWD/$PRGNAM-${VERSION}.tar.gz
-cp $PKG/usr/share/inform7/Compilers/ni $PRGNAM-$VERSION/src/ni/
-cd $PRGNAM-$VERSION
-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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-sh autogen.sh
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --datarootdir=/usr/share \
- --docdir=/usr/doc/$PRGNAM-$VERSION/gnome-inform7 \
- --build=$ARCH-slackware-linux
-make
-make install DESTDIR=$PKG
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-# Move the docs from usr/share/doc to usr/doc
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/share/doc/* $PKG/usr/doc/$PRGNAM-$VERSION
-mv $PKG/usr/doc/inform7 $PKG/usr/doc/$PRGNAM-$VERSION
-rmdir $PKG/usr/share/doc
-
-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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/development/gnome-inform7/gnome-inform7.info b/development/gnome-inform7/gnome-inform7.info
deleted file mode 100644
index 0cd6daf578..0000000000
--- a/development/gnome-inform7/gnome-inform7.info
+++ /dev/null
@@ -1,12 +0,0 @@
-PRGNAM="gnome-inform7"
-VERSION="6L38"
-HOMEPAGE="http://inform7.com"
-DOWNLOAD="http://ponce.cc/slackware/sources/repo/gnome-inform7-6L38.tar.gz \
- http://inform7.com/download/content/6L38/I7_6L38_Linux_all.tar.gz"
-MD5SUM="de31f900ee9f056a4b35d8b83782315f \
- 4f956c36b30dd0f6588cc21e076c72a0"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="gtksourceview goocanvas libmodplug webkitgtk gst-plugins-ugly gst-plugins-bad"
-MAINTAINER="Dugan Chen"
-EMAIL="thedoogster@gmail.com"
diff --git a/development/gnome-inform7/slack-desc b/development/gnome-inform7/slack-desc
deleted file mode 100644
index a690ab4f38..0000000000
--- a/development/gnome-inform7/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 ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-gnome-inform7: gnome-inform7 (interactive fiction authoring platform)
-gnome-inform7:
-gnome-inform7: Inform is a design system for interactive fiction based on natural
-gnome-inform7: language. It is a radical reinvention of the way interactive fiction
-gnome-inform7: is designed, guided by contemporary work in semantics and by the
-gnome-inform7: practical experience of some of the world's best known writers of SF.
-gnome-inform7:
-gnome-inform7: http://inform7.com/
-gnome-inform7:
-gnome-inform7:
-gnome-inform7: