summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:24 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:09:24 +0200
commit0b29b14394b75cd6d1459905a83351712a545365 (patch)
tree1f5052c9af7e15c05e1bd21acf4bb69fb83238dc /system
parent6a210a1a6e36d36ae19bbe22f175f3aa5c3c5b9f (diff)
downloadslackbuilds-0b29b14394b75cd6d1459905a83351712a545365.tar.gz
slackbuilds-0b29b14394b75cd6d1459905a83351712a545365.tar.xz
system/mybashburn: Removed from 13.0 repository
Diffstat (limited to 'system')
-rw-r--r--system/mybashburn/README10
-rw-r--r--system/mybashburn/doinst.sh16
-rw-r--r--system/mybashburn/mybashburn.SlackBuild78
-rw-r--r--system/mybashburn/mybashburn.info8
-rw-r--r--system/mybashburn/slack-desc19
5 files changed, 0 insertions, 131 deletions
diff --git a/system/mybashburn/README b/system/mybashburn/README
deleted file mode 100644
index 42f3b456d7..0000000000
--- a/system/mybashburn/README
+++ /dev/null
@@ -1,10 +0,0 @@
-MyBashBurn (Burn from the CLI with dialog boxes)
-
-A frontend with dialog box that draws (using ncurses) windows onto
-the screen and can burn data cds, music cds, supports burning
-DVD-images and data DVDs as well as ripping/encoding.
-
-It was forked form bashburn to provide a nicer User Interface.
-
-If you want MyBashBurn to handle mp3 files, please install LAME,
-which is also available at SlackBuilds.org.
diff --git a/system/mybashburn/doinst.sh b/system/mybashburn/doinst.sh
deleted file mode 100644
index 67106d5525..0000000000
--- a/system/mybashburn/doinst.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-# Handle configuration files
-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...
-}
-# List of configuration files (they should end in .new)
-
-config etc/mybashburnrc.new
-
diff --git a/system/mybashburn/mybashburn.SlackBuild b/system/mybashburn/mybashburn.SlackBuild
deleted file mode 100644
index 8dafa94920..0000000000
--- a/system/mybashburn/mybashburn.SlackBuild
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-# Slackware Build Script for mybashburn
-# (C) 2007 Michael Wagner <lapinours@web.de>
-# 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.
-
-set -e
-
-PRGNAM=mybashburn
-VERSION=1.0.2
-ARCH=${ARCH:-noarch}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP || exit 1
-rm -rf $PRGNAM-$VERSION
-tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
-cd $PRGNAM-$VERSION || exit 1
-chown -R root:root . || true
-chmod -R u+w,go+r-w,a-s .
-
-make install DESTDIR=$PKG || exit 1
-
-# Move mandir, docdir and sysconfir to their proper locations
-( for i in man doc etc; do
- if [ $i != etc ]; then
- mv $PKG/usr/share/$i $PKG/usr
- else
- cat $PKG/usr/share/$PRGNAM/etc/${PRGNAM}rc > $PKG/etc/${PRGNAM}rc.new
- rm -rf $PKG/usr/share/$PRGNAM/etc
- fi
-done ) || exit 1
-
-# Re-arrange the symlinks created during make install
-for i in $(find $PKG -type l); do
- if [ $(basename $i) != mybashburn ]; then
- ln -sf ../../doc/$PRGNAM-$VERSION/$(basename $i) $i
- else
- ln -sf ../share/$PRGNAM/MyBashBurn.sh $i
- fi
-done
-
-( cd $PKG/usr/man
- find . -name "*.?" -type f 2> /dev/null | xargs gzip -9 2> /dev/null
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
-
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/*
-
-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/mybashburn/mybashburn.info b/system/mybashburn/mybashburn.info
deleted file mode 100644
index d1a852b585..0000000000
--- a/system/mybashburn/mybashburn.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="mybashburn"
-VERSION="1.0.2"
-HOMEPAGE="http://mybashburn.sourceforge.net"
-DOWNLOAD="http://downloads.sourceforge.net/mybashburn/mybashburn-1.0.2.tar.bz2"
-MD5SUM="6bcf860ed5e9317ca2447a9026a8e8f7"
-MAINTAINER="Michael Wagner"
-EMAIL="lapinours@web.de"
-APPROVED="rworkman"
diff --git a/system/mybashburn/slack-desc b/system/mybashburn/slack-desc
deleted file mode 100644
index 5aa8ccabc2..0000000000
--- a/system/mybashburn/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------------------------------------------------------|
-mybashburn: MyBashBurn (Burn from the CLI with dialog boxes)
-mybashburn:
-mybashburn: A frontend with dialog box that draws (using ncurses) windows onto
-mybashburn: the screen and can burn data cds, music cds, supports burning
-mybashburn: DVD-images and data DVDs as well as ripping/encoding.
-mybashburn:
-mybashburn: It was forked form bashburn to provide a nicer User Interface.
-mybashburn:
-mybashburn: Homepage: http://mybashburn.sourceforge.net
-mybashburn:
-mybashburn: