From 6aa559408484892f0e25a5190252e4914dbce446 Mon Sep 17 00:00:00 2001 From: Heinz Wiesinger Date: Tue, 11 May 2010 20:30:44 +0200 Subject: audio/awesfx: Moved from multimedia --- audio/awesfx/README | 3 ++ audio/awesfx/awesfx.SlackBuild | 60 +++++++++++++++++++++++++++++++++++++ audio/awesfx/awesfx.info | 8 +++++ audio/awesfx/slack-desc | 19 ++++++++++++ multimedia/awesfx/README | 3 -- multimedia/awesfx/awesfx.SlackBuild | 60 ------------------------------------- multimedia/awesfx/awesfx.info | 8 ----- multimedia/awesfx/slack-desc | 19 ------------ 8 files changed, 90 insertions(+), 90 deletions(-) create mode 100644 audio/awesfx/README create mode 100644 audio/awesfx/awesfx.SlackBuild create mode 100644 audio/awesfx/awesfx.info create mode 100644 audio/awesfx/slack-desc delete mode 100644 multimedia/awesfx/README delete mode 100644 multimedia/awesfx/awesfx.SlackBuild delete mode 100644 multimedia/awesfx/awesfx.info delete mode 100644 multimedia/awesfx/slack-desc diff --git a/audio/awesfx/README b/audio/awesfx/README new file mode 100644 index 0000000000..fcac871e8e --- /dev/null +++ b/audio/awesfx/README @@ -0,0 +1,3 @@ +This package includes several utilities for the AWE32 +sound driver on Linux and FreeBSD systems and for the +Emux WaveTable of ALSA sbawe and emu10k1 drivers. diff --git a/audio/awesfx/awesfx.SlackBuild b/audio/awesfx/awesfx.SlackBuild new file mode 100644 index 0000000000..c8ad76208c --- /dev/null +++ b/audio/awesfx/awesfx.SlackBuild @@ -0,0 +1,60 @@ +#!/bin/sh + +# Slackware build script for awesfx +# Written by Kyle Guinn + +set -e + +PRGNAM=awesfx +VERSION=0.5.1a +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --infodir=/usr/info \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION + +make +make install-strip DESTDIR=$PKG + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog INSTALL README SBKtoSF2.txt \ + $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.tgz diff --git a/audio/awesfx/awesfx.info b/audio/awesfx/awesfx.info new file mode 100644 index 0000000000..3e49bbe610 --- /dev/null +++ b/audio/awesfx/awesfx.info @@ -0,0 +1,8 @@ +PRGNAM="awesfx" +VERSION="0.5.1a" +HOMEPAGE="http://www.alsa-project.org/~iwai/awedrv.html" +DOWNLOAD="ftp://ftp.suse.com/pub/people/tiwai/awesfx/awesfx-0.5.1a.tar.bz2" +MD5SUM="edeb9a25e505c9c85cb2453175b0dd1a" +MAINTAINER="Kyle Guinn" +EMAIL="elyk03@gmail.com" +APPROVED="rworkman" diff --git a/audio/awesfx/slack-desc b/audio/awesfx/slack-desc new file mode 100644 index 0000000000..d4c0df3efa --- /dev/null +++ b/audio/awesfx/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 ':'. + + |-----handy-ruler------------------------------------------------------| +awesfx: awesfx (AWE32 sound driver) +awesfx: +awesfx: This package includes several utilities for the AWE32 +awesfx: sound driver on Linux and FreeBSD systems and for the +awesfx: Emux WaveTable of ALSA sbawe and emu10k1 drivers. +awesfx: +awesfx: Homepage: http://www.alsa-project.org/~iwai/awedrv.html +awesfx: +awesfx: +awesfx: +awesfx: diff --git a/multimedia/awesfx/README b/multimedia/awesfx/README deleted file mode 100644 index fcac871e8e..0000000000 --- a/multimedia/awesfx/README +++ /dev/null @@ -1,3 +0,0 @@ -This package includes several utilities for the AWE32 -sound driver on Linux and FreeBSD systems and for the -Emux WaveTable of ALSA sbawe and emu10k1 drivers. diff --git a/multimedia/awesfx/awesfx.SlackBuild b/multimedia/awesfx/awesfx.SlackBuild deleted file mode 100644 index c8ad76208c..0000000000 --- a/multimedia/awesfx/awesfx.SlackBuild +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -# Slackware build script for awesfx -# Written by Kyle Guinn - -set -e - -PRGNAM=awesfx -VERSION=0.5.1a -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -fi - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --infodir=/usr/info \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION - -make -make install-strip DESTDIR=$PKG - -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING ChangeLog INSTALL README SBKtoSF2.txt \ - $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.tgz diff --git a/multimedia/awesfx/awesfx.info b/multimedia/awesfx/awesfx.info deleted file mode 100644 index 3e49bbe610..0000000000 --- a/multimedia/awesfx/awesfx.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="awesfx" -VERSION="0.5.1a" -HOMEPAGE="http://www.alsa-project.org/~iwai/awedrv.html" -DOWNLOAD="ftp://ftp.suse.com/pub/people/tiwai/awesfx/awesfx-0.5.1a.tar.bz2" -MD5SUM="edeb9a25e505c9c85cb2453175b0dd1a" -MAINTAINER="Kyle Guinn" -EMAIL="elyk03@gmail.com" -APPROVED="rworkman" diff --git a/multimedia/awesfx/slack-desc b/multimedia/awesfx/slack-desc deleted file mode 100644 index d4c0df3efa..0000000000 --- a/multimedia/awesfx/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------------------------------------------------------| -awesfx: awesfx (AWE32 sound driver) -awesfx: -awesfx: This package includes several utilities for the AWE32 -awesfx: sound driver on Linux and FreeBSD systems and for the -awesfx: Emux WaveTable of ALSA sbawe and emu10k1 drivers. -awesfx: -awesfx: Homepage: http://www.alsa-project.org/~iwai/awedrv.html -awesfx: -awesfx: -awesfx: -awesfx: -- cgit v1.2.3