summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Barry J. Grundy <bgrundyatlinuxleo.com>2013-11-04 22:18:38 -0600
committer Robby Workman <rworkman@slackbuilds.org>2013-11-04 22:18:38 -0600
commitd82c28dc942ec102d87e3896e9409dac2bfcacf6 (patch)
treeb3f08644cadd00862b84e5a1d618bc4c6f75793c /system
parent9c66360b377cfef0a92b887c9a6029496c34b794 (diff)
downloadslackbuilds-d82c28dc942ec102d87e3896e9409dac2bfcacf6.tar.gz
slackbuilds-d82c28dc942ec102d87e3896e9409dac2bfcacf6.tar.xz
system/aimage: Removed (deprecated/unmaintained)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/aimage/README7
-rw-r--r--system/aimage/aimage.SlackBuild92
-rw-r--r--system/aimage/aimage.info10
-rw-r--r--system/aimage/slack-desc19
4 files changed, 0 insertions, 128 deletions
diff --git a/system/aimage/README b/system/aimage/README
deleted file mode 100644
index 3d012912e1..0000000000
--- a/system/aimage/README
+++ /dev/null
@@ -1,7 +0,0 @@
-aimage (the advanced imager) is an imaging tool which is part of AFF, the
-Advanced Forensic Format.
-
-aimage can create files in raw, AFF, AFD, or AFM formats. AFF and AFD
-formats can be compressed or uncompressed. aimage can optionally compress
-and calculate MD5 or SHA-1 hash residues while the data is being copied.
-It has intelligent error recovery, similar to what is in ddrescue.
diff --git a/system/aimage/aimage.SlackBuild b/system/aimage/aimage.SlackBuild
deleted file mode 100644
index b3f8bc2b48..0000000000
--- a/system/aimage/aimage.SlackBuild
+++ /dev/null
@@ -1,92 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for aimage
-
-# Copyright 2009 by Barry J. Grundy <bgrundy@linuxleo.com>
-# 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.
-
-# Updated on 20111109 by Barry J. Grundy
-
-PRGNAM=aimage
-VERSION=3.2.5
-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
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-# Docs "NEWS" "README" AND "AUTHORS" exist but are empty
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ChangeLog COPYING INSTALL \
- $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/system/aimage/aimage.info b/system/aimage/aimage.info
deleted file mode 100644
index 8a25a582c4..0000000000
--- a/system/aimage/aimage.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="aimage"
-VERSION="3.2.5"
-HOMEPAGE="http://www.afflib.org"
-DOWNLOAD="http://digitalcorpora.org/downloads/aimage-3.2.5.tar.gz"
-MD5SUM="07a11d653cdd1d7a5aefe4d99cdbd408"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="afflib"
-MAINTAINER="Barry J. Grundy"
-EMAIL="bgrundy<at>linuxleo.com"
diff --git a/system/aimage/slack-desc b/system/aimage/slack-desc
deleted file mode 100644
index fe64a068e6..0000000000
--- a/system/aimage/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------------------------------------------------------|
-aimage: aimage (The Advanced Imager)
-aimage:
-aimage: aimage is an imaging tool which is part of AFF, the Advanced Forensic
-aimage: Format. aimage can create files in raw, AFF, AFD, or AFM formats. AFF
-aimage: and AFD formats can be compressed or uncompressed. aimage can
-aimage: optionally compress and calculate MD5 or SHA-1 hash residues while
-aimage: the data is being copied. It has intelligent error recovery similar
-aimage: to what is in ddrescue.
-aimage:
-aimage: Homepage: http://www.afflib.org
-aimage: