diff options
author | Grigorios Bouzakis <grbzks@xsmail.com> | 2011-03-02 16:53:11 -0300 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-03-02 16:53:11 -0300 |
commit | bdab46ab1440e6b386aea8cb100d3e4533c84dd6 (patch) | |
tree | 0c33ca453bbcd20dd1a27fe3f61aff15d9fb99c9 /system/cdw | |
parent | 9c1877386c36f2a9db0ce69df0155da7aab671dc (diff) | |
download | slackbuilds-bdab46ab1440e6b386aea8cb100d3e4533c84dd6.tar.gz |
system/cdw: Added (ncurses front-end for media burning tools)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'system/cdw')
-rw-r--r-- | system/cdw/README | 5 | ||||
-rw-r--r-- | system/cdw/cdw.SlackBuild | 99 | ||||
-rw-r--r-- | system/cdw/cdw.info | 10 | ||||
-rw-r--r-- | system/cdw/slack-desc | 19 |
4 files changed, 133 insertions, 0 deletions
diff --git a/system/cdw/README b/system/cdw/README new file mode 100644 index 0000000000..5d114e31d5 --- /dev/null +++ b/system/cdw/README @@ -0,0 +1,5 @@ +cdw is a front-end for command-line tools: cdrecord/wodim, mkisofs/ +genisoimage, growisofs, dvd+rw-mediainfo, dvd+rw-format. It utilizes the +ncurses library to build user-friendly interface and it can be used in UNIX +terminal window or in a terminal emulator under the X Window environment. +cdw supports only ISO9660 filesystem for optical media. diff --git a/system/cdw/cdw.SlackBuild b/system/cdw/cdw.SlackBuild new file mode 100644 index 0000000000..8ce84147d6 --- /dev/null +++ b/system/cdw/cdw.SlackBuild @@ -0,0 +1,99 @@ +#!/bin/sh +# Slackware build script for cdw + +# Copyright 2011 Grigorios Bouzakis <grbzks@xsmail.com> +# All rights reserved. +# +# Permission to use, copy, modify, and distribute this software for any purpose +# with or without fee is hereby granted, provided that the above copyright +# notice and this permission notice appear in all copies. +# +# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 +# AUTHORS AND COPYRIGHT HOLDERS AND THEIR CONTRIBUTORS 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. + +PRGNAM=cdw +VERSION=${VERSION:-0.6.0} +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 + +DOCS="AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS cdw.conf cdw.colors" + +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 \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --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 + +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 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a $DOCS $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/cdw/cdw.info b/system/cdw/cdw.info new file mode 100644 index 0000000000..ecb6738489 --- /dev/null +++ b/system/cdw/cdw.info @@ -0,0 +1,10 @@ +PRGNAM="cdw" +VERSION="0.6.0" +HOMEPAGE="http://cdw.sourceforge.net" +DOWNLOAD="http://downloads.sourceforge.net/cdw/cdw-0.6.0.tar.gz" +MD5SUM="808601f91e3aa13e539b98e684cec1a9" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Grigorios Bouzakis" +EMAIL="grbzks@xsmail.com" +APPROVED="Niels Horn" diff --git a/system/cdw/slack-desc b/system/cdw/slack-desc new file mode 100644 index 0000000000..74281d0150 --- /dev/null +++ b/system/cdw/slack-desc @@ -0,0 +1,19 @@ +# 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------------------------------------------------------| +cdw: cdw (ncurses front-end for command-line media burning tools) +cdw: +cdw: cdw is a front-end for command-line tools used for burning data CD and +cdw: DVD discs and for related tasks. You can also use cdw to rip tracks +cdw: from your audio CD to raw audio files. +cdw: Limited support for copying content of CD and DVD discs to image files +cdw: is also provided. cdw can utilize md5sum program to verify correctness +cdw: of writing ISO image to CD and DVD disc. +cdw: +cdw: Homepage: http://cdw.sourceforge.net +cdw: |