summaryrefslogtreecommitdiffstats
path: root/audio/mp3splt-gtk
diff options
context:
space:
mode:
author dsomero2010-05-21 05:43:17 +0200
committer David Somero2010-05-21 07:53:20 +0200
commita3215452a14b4a3ee66f3907491c993237eaacbf (patch)
tree60e6473d43511741b4b78ce000c4c129d7ee4157 /audio/mp3splt-gtk
parentf44319a63aca0d2078ba8c3ff45f449d04511f2b (diff)
downloadslackbuilds-a3215452a14b4a3ee66f3907491c993237eaacbf.tar.gz
audio/mp3splt-gtk: Removed (build failure)
Diffstat (limited to 'audio/mp3splt-gtk')
-rw-r--r--audio/mp3splt-gtk/README13
-rw-r--r--audio/mp3splt-gtk/doinst.sh4
-rw-r--r--audio/mp3splt-gtk/mp3splt-gtk.SlackBuild72
-rw-r--r--audio/mp3splt-gtk/mp3splt-gtk.desktop.diff12
-rw-r--r--audio/mp3splt-gtk/mp3splt-gtk.info10
-rw-r--r--audio/mp3splt-gtk/slack-desc19
6 files changed, 0 insertions, 130 deletions
diff --git a/audio/mp3splt-gtk/README b/audio/mp3splt-gtk/README
deleted file mode 100644
index ad071e5ffc..0000000000
--- a/audio/mp3splt-gtk/README
+++ /dev/null
@@ -1,13 +0,0 @@
-Mp3Splt-project is a utility to split mp3 and ogg files selecting a begin and an
-end time position, without decoding. It's very useful to split large mp3/ogg to
-make smaller files or to split entire albums to obtain original tracks. If you
-want to split an album, you can select split points and filenames manually or
-you can get them automatically from CDDB (internet or a local file) or from .cue
-files. Supports also automatic silence split, that can be used also to adjust
-cddb/cue splitpoints. You can extract tracks from Mp3Wrap or AlbumWrap files in
-few seconds.
-
-Mp3splt-project is divided in 3 parts (all available from SlackBuilds.org):
- - libmp3splt, a library (created from mp3splt version 2.1c)
- - mp3splt, a command line program
- - mp3splt-gtk, a GTK2 gui
diff --git a/audio/mp3splt-gtk/doinst.sh b/audio/mp3splt-gtk/doinst.sh
deleted file mode 100644
index 4e8ba7071d..0000000000
--- a/audio/mp3splt-gtk/doinst.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
diff --git a/audio/mp3splt-gtk/mp3splt-gtk.SlackBuild b/audio/mp3splt-gtk/mp3splt-gtk.SlackBuild
deleted file mode 100644
index c8be626142..0000000000
--- a/audio/mp3splt-gtk/mp3splt-gtk.SlackBuild
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for mp3splt-gtk
-
-# Written by Roberto Neri <rneri@libero.it>
-
-PRGNAM=mp3splt-gtk
-VERSION=${VERSION:-0.5.7a}
-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"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-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 .
-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 {} \;
-
-patch -p1 < $CWD/mp3splt-gtk.desktop.diff
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --mandir=/usr/man \
- --enable-audacious \
- --enable-gstreamer \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL NEWS README TODO \
- $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/mp3splt-gtk/mp3splt-gtk.desktop.diff b/audio/mp3splt-gtk/mp3splt-gtk.desktop.diff
deleted file mode 100644
index b73c9e2224..0000000000
--- a/audio/mp3splt-gtk/mp3splt-gtk.desktop.diff
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nur mp3splt-gtk-0.5.4.orig/mp3splt-gtk.desktop mp3splt-gtk-0.5.4/mp3splt-gtk.desktop
---- mp3splt-gtk-0.5.4.orig/mp3splt-gtk.desktop 2008-06-06 15:29:03.000000000 -0500
-+++ mp3splt-gtk-0.5.4/mp3splt-gtk.desktop 2009-01-30 23:54:08.806698497 -0600
-@@ -5,7 +5,7 @@
- GenericName=Sound Splitter
- Comment=Split mp3 and ogg files without decoding
-
--Icon=/usr/share/mp3splt-gtk/mp3splt-gtk_ico.png
-+Icon=mp3splt-gtk_ico
-
- Type=Application
- Categories=Application;AudioVideo;Audio;AudioVideoEditing;
diff --git a/audio/mp3splt-gtk/mp3splt-gtk.info b/audio/mp3splt-gtk/mp3splt-gtk.info
deleted file mode 100644
index 60da650379..0000000000
--- a/audio/mp3splt-gtk/mp3splt-gtk.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="mp3splt-gtk"
-VERSION="0.5.7a"
-HOMEPAGE="http://mp3splt.sourceforge.net"
-DOWNLOAD="http://downloads.sourceforge.net/mp3splt/mp3splt-gtk-0.5.7a.tar.gz"
-MD5SUM="932eed8faf227e5f53dad3f3afba9bdf"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Roberto Neri"
-EMAIL="rneri@libero.it"
-APPROVED="rworkman"
diff --git a/audio/mp3splt-gtk/slack-desc b/audio/mp3splt-gtk/slack-desc
deleted file mode 100644
index f4186dfa24..0000000000
--- a/audio/mp3splt-gtk/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------------------------------------------------------|
-mp3splt-gtk: mp3splt-gtk (gtk2 gui from the mp3splt project)
-mp3splt-gtk:
-mp3splt-gtk: mp3splt is a free utility to split mp3/ogg files (without decoding),
-mp3splt-gtk: selecting begin/end time; if file is an album, you can get splitpoints
-mp3splt-gtk: automatically from internet or a local cue/cddb file.
-mp3splt-gtk: It splits also Mp3Wrap and AlbumWrap archives.
-mp3splt-gtk: The mp3splt project is divided in 3 parts:
-mp3splt-gtk: - libmp3splt, a library (created from mp3splt version 2.1c)
-mp3splt-gtk: - mp3splt, a command line program
-mp3splt-gtk: - mp3splt-gtk, a gtk2 gui
-mp3splt-gtk: Homepage: http://mp3splt.sourceforge.net/