summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:14 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:14 +0200
commitdc4d36b8e67723027350b10370da5648a556a0f8 (patch)
treef81bc97131beccf30ddc770c6ac2ab2c05aff036
parentae213535e2e5d22e5ad034f2ebb30e41ca8801e6 (diff)
downloadslackbuilds-dc4d36b8e67723027350b10370da5648a556a0f8.tar.gz
slackbuilds-dc4d36b8e67723027350b10370da5648a556a0f8.tar.xz
system/atari++: Removed from 13.0 repository
-rw-r--r--system/atari++/README29
-rw-r--r--system/atari++/atari++.SlackBuild88
-rw-r--r--system/atari++/atari++.desktop10
-rw-r--r--system/atari++/atari++.info8
-rw-r--r--system/atari++/atari++.pngbin310 -> 0 bytes
-rw-r--r--system/atari++/doinst.sh6
-rw-r--r--system/atari++/slack-desc19
7 files changed, 0 insertions, 160 deletions
diff --git a/system/atari++/README b/system/atari++/README
deleted file mode 100644
index cca3ed3112..0000000000
--- a/system/atari++/README
+++ /dev/null
@@ -1,29 +0,0 @@
-The Atari++ Emulator is a Unix based emulator of the Atari eight bit
-computers, namely the Atari 400 and 800, the Atari 600XL, 800XL and 130XE,
-and the Atari 5200 game console. The emulator is auto-configurable and
-will compile on a variety of systems (Linux, Solaris, Irix), and supports
-many emulation features.
-
-Atari++ includes OS++, an open source replacement Atari 8-bit operating
-system, so it's able to run many games and applications without the
-Atari ROM images. However, for maximum compatibility, you probably will
-want the original ROMs. To get them, install the atari800_roms package,
-then use the atari++ GUI to set the ROM file paths to the images in
-/usr/share/atari800/roms/. There is no need to install the atari800_os++
-package for use with atari++ (OS++ is built into the emulator).
-
-Notes:
-
-1. Atari++, by default, is built with a fancy set of CFLAGS that the
-author includes in his makefile. If you're picky about such things, or if
-you run into crashes or compile errors, try setting FORCE_SLACK_CFLAGS=yes
-in the environment before running atari++.SlackBuild
-
-2. The Atari++ author doesn't use a version number in the filename of
-the atari++.tgz distribution, and doesn't keep old versions available
-on the site. This script was written for Atari++ version 1.55. By the
-time you read this, there may be a new release. This script will extract
-the version number from atari++.tgz and set the VERSION in the package
-correctly, so you don't need to edit anything... but if there have been
-major changes to the Atari++ codebase, the script might fail on the
-latest version. Please contact the maintainer, in that case.
diff --git a/system/atari++/atari++.SlackBuild b/system/atari++/atari++.SlackBuild
deleted file mode 100644
index d0fa8b9f7d..0000000000
--- a/system/atari++/atari++.SlackBuild
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for atari++
-
-# Written by B. Watson (yalhcru@gmail.com)
-# Modified by the SlackBuilds.org project.
-
-PRGNAM=atari++
-VERSION=${VERSION:-1.55}
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-# Do you want to force the package to be compiled with standard
-# Slackware CFLAGS, as set below? The author's makefile includes
-# a fancy set of flags, which the program has presumably been tested
-# with, so it should be fine to use them. If you're a stickler about
-# Slackware-ism, you can build with FORCE_SLACK_CFLAGS=yes to use
-# $SLKCFLAGS instead of the author's.
-FORCE_SLACK_CFLAGS=${FORCE_SLACK_CFLAGS:-no}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-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 .
-chmod -R a-s,u+w,go+r-w .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man
-
-if [ "$FORCE_SLACK_CFLAGS" = "yes" ]; then
- make OPTIMIZER="$SLKCFLAGS"
-else
- make
-fi
-
-# no DESTDIR support, --mandir is ignored, docs go to /usr/share/doc,
-# let's not use `make install' at all.
-mkdir -p $PKG/usr/bin $PKG/usr/man/man1 $PKG/usr/doc/$PRGNAM-$VERSION
-
-install -s -m0755 -o root -g root $PRGNAM $PKG/usr/bin
-
-# Man page should be section 1, not 6
-sed -e 's/^\(\.TH atari++\) 6/\1 1/' < $PRGNAM.man | \
- gzip -9c - > $PKG/usr/man/man1/$PRGNAM.1.gz
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp COPYRIGHT CREDITS ARCHITECTURE \
- README.History README.LEGAL README.licence \
- $PKG/usr/doc/$PRGNAM-$VERSION
-
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/usr/share/applications
-cp $CWD/$PRGNAM.desktop $PKG/usr/share/applications
-
-mkdir -p $PKG/usr/share/pixmaps
-cp $CWD/$PRGNAM.png $PKG/usr/share/pixmaps
-
-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.tgz
diff --git a/system/atari++/atari++.desktop b/system/atari++/atari++.desktop
deleted file mode 100644
index dc5bfafc34..0000000000
--- a/system/atari++/atari++.desktop
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Name=Atari++ Emulator
-GenericName=Atari 8-Bit Emulator
-Type=Application
-Exec=atari++
-Icon=atari++
-Terminal=false
-StartupNotify=false
-Categories=Emulator;System;
diff --git a/system/atari++/atari++.info b/system/atari++/atari++.info
deleted file mode 100644
index 3856e34c0f..0000000000
--- a/system/atari++/atari++.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="atari++"
-VERSION="1.55"
-HOMEPAGE="http://www.math.tu-berlin.de/~thor/atari++/"
-DOWNLOAD="http://slackbuilds.org/sources/12.2/atari++-1.55.tar.gz"
-MD5SUM="af6a67b303ef37b1f34ef48ed48fab51"
-MAINTAINER="B. Watson"
-EMAIL="yalhcru@gmail.com"
-APPROVED="dsomero"
diff --git a/system/atari++/atari++.png b/system/atari++/atari++.png
deleted file mode 100644
index 3fa1a474ed..0000000000
--- a/system/atari++/atari++.png
+++ /dev/null
Binary files differ
diff --git a/system/atari++/doinst.sh b/system/atari++/doinst.sh
deleted file mode 100644
index 1200935822..0000000000
--- a/system/atari++/doinst.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/sh
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
diff --git a/system/atari++/slack-desc b/system/atari++/slack-desc
deleted file mode 100644
index 808c822922..0000000000
--- a/system/atari++/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------------------------------------------------------|
-atari++: atari++ (Atari 400/800/XL/XE/5200 emulator)
-atari++:
-atari++: The Atari++ Emulator is a Unix based emulator of the Atari eight
-atari++: bit computers, namely the Atari 400 and 800, the Atari 600XL,
-atari++: 800XL and 130XE, and the Atari 5200 game console. The emulator is
-atari++: auto-configurable and will compile on a variety of systems (Linux,
-atari++: Solaris, Irix), and supports many emulation features.
-atari++:
-atari++:
-atari++:
-atari++: