summaryrefslogtreecommitdiffstats
path: root/audio/aqualung
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2012-08-21 23:30:29 -0500
committer Robby Workman <rworkman@slackbuilds.org>2012-08-21 23:31:20 -0500
commita36919b8791c6778b4550e0cb897dad8c78c8aa0 (patch)
treeeacc8cd24e3b7fb645bb449cca9b3d3ad69401a2 /audio/aqualung
parent7933b004fe0e3ccc3626e14a0f5c2f92883ef974 (diff)
downloadslackbuilds-a36919b8791c6778b4550e0cb897dad8c78c8aa0.tar.gz
slackbuilds-a36919b8791c6778b4550e0cb897dad8c78c8aa0.tar.xz
audio/aqualung: Removed (per maintainer request)
From: Bojan Popovic <bocke@mycity.rs> To: slackbuilds-users@slackbuilds.org Subject: [Slackbuilds-users] Status of my SlackBuilds for 14.0 RC1 Date: Mon, 13 Aug 2012 23:27:20 +0200 ... I'm dropping Aqualung Music Player for time being. I'm not using it anymore. ... Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'audio/aqualung')
-rw-r--r--audio/aqualung/README9
-rw-r--r--audio/aqualung/aqualung-0.9_beta11-ffmpeg.patch.gzbin415 -> 0 bytes
-rw-r--r--audio/aqualung/aqualung.SlackBuild117
-rw-r--r--audio/aqualung/aqualung.desktop10
-rw-r--r--audio/aqualung/aqualung.info10
-rw-r--r--audio/aqualung/doinst.sh9
-rw-r--r--audio/aqualung/slack-desc12
7 files changed, 0 insertions, 167 deletions
diff --git a/audio/aqualung/README b/audio/aqualung/README
deleted file mode 100644
index 0ddc6614af..0000000000
--- a/audio/aqualung/README
+++ /dev/null
@@ -1,9 +0,0 @@
-Aqualung is an advanced music player orignally targeted at the
-GNU/Linux operating system. Today also running onf FreeBSD and
-OpenBSD, with native ports to Mac OS X and even Microsoft Windows.
-It plays audio CDs, internet radio streams and podcasts as well as
-soundfile in just about any audio format and has a feature of
-inserting no gaps between adjacent tracks.
-
-Aqualung is still in beta and has some bugs. But, it's lightweight
-and very modest on dependencies.
diff --git a/audio/aqualung/aqualung-0.9_beta11-ffmpeg.patch.gz b/audio/aqualung/aqualung-0.9_beta11-ffmpeg.patch.gz
deleted file mode 100644
index 8c57cce8a2..0000000000
--- a/audio/aqualung/aqualung-0.9_beta11-ffmpeg.patch.gz
+++ /dev/null
Binary files differ
diff --git a/audio/aqualung/aqualung.SlackBuild b/audio/aqualung/aqualung.SlackBuild
deleted file mode 100644
index 5d2ab5ce61..0000000000
--- a/audio/aqualung/aqualung.SlackBuild
+++ /dev/null
@@ -1,117 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Aqualung Music Player
-
-# Copyright 2011 Bojan Popovic, Belgrade, Serbia <bocke@mycity.rs>
-# 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.
-
-PRGNAM=aqualung
-VERSION=${VERSION:-0.9beta11}
-BUILD=${BUILD:-2}
-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
-# Apply the ffmpeg patch from the upstream
-zcat $CWD/aqualung-0.9_beta11-ffmpeg.patch.gz | patch -p0
-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 {} \;
-
-# No additional flags specified. Let the configure autodetect what
-# packages we have. Let me know if something doesn't behave right.
-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
-
-# Install icons
-for SIZE in 16 24 32 48 64;do
- install -m 755 -d $PKG/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps
- install -m 644 $PKG/usr/share/aqualung/icon_${SIZE}.png \
- $PKG/usr/share/icons/hicolor/${SIZE}x${SIZE}/apps/aqualung.png
-done
-
-# Install desktop entry
-install -m 755 -d $PKG/usr/share/applications
-install -m 644 $CWD/aqualung.desktop $PKG/usr/share/applications
-
-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 AUTHORS ChangeLog COPYING INSTALL NEWS README \
- $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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/audio/aqualung/aqualung.desktop b/audio/aqualung/aqualung.desktop
deleted file mode 100644
index 430450eae0..0000000000
--- a/audio/aqualung/aqualung.desktop
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Type=Application
-Encoding=UTF-8
-Name=Aqualung
-Comment=Aqualung Music Player
-Icon=aqualung
-Exec=aqualung
-Terminal=false
-Categories=Application;AudioVideo;AudioPlayer;
diff --git a/audio/aqualung/aqualung.info b/audio/aqualung/aqualung.info
deleted file mode 100644
index 231d8efd25..0000000000
--- a/audio/aqualung/aqualung.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="aqualung"
-VERSION="0.9beta11"
-HOMEPAGE="http://aqualung.factorial.hu/"
-DOWNLOAD="http://downloads.sourceforge.net/aqualung/aqualung-0.9beta11.tar.gz"
-MD5SUM="cfc470e0738e6edf9532af5f92aac959"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Bojan Popovic"
-EMAIL="bocke@mycity.rs"
diff --git a/audio/aqualung/doinst.sh b/audio/aqualung/doinst.sh
deleted file mode 100644
index 3e5691a052..0000000000
--- a/audio/aqualung/doinst.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
diff --git a/audio/aqualung/slack-desc b/audio/aqualung/slack-desc
deleted file mode 100644
index 9f53a1f4a5..0000000000
--- a/audio/aqualung/slack-desc
+++ /dev/null
@@ -1,12 +0,0 @@
- |-----handy-ruler------------------------------------------------------|
-aqualung: Aqualung (an advanced music player)
-aqualung:
-aqualung: Aqualung is an advanced music player originally targeted at the
-aqualung: GNU/Linux operating system. Today also running onf FreeBSD and
-aqualung: OpenBSD, with native ports to Mac OS X and even Microsoft Windows.
-aqualung: It plays audio CDs, internet radio streams and podcasts as well as
-aqualung: soundfile in just about any audio format and has a feature of
-aqualung: inserting no gaps between adjacent tracks.
-aqualung:
-aqualung: Homepage: http://aqualung.factorial.hu/
-aqualung: