summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Niels Horn <niels.horn@gmail.com>2010-06-13 16:14:16 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-06-13 16:14:16 -0500
commit7783970ca4a6f65b80eaa1b7dce51f8ff819e471 (patch)
tree5c564820cabc320727ec138ece49ff522dc2b90b
parent979ebf4cacde40d7c49df2f587fd6bb94ca7f636 (diff)
downloadslackbuilds-7783970ca4a6f65b80eaa1b7dce51f8ff819e471.tar.gz
slackbuilds-7783970ca4a6f65b80eaa1b7dce51f8ff819e471.tar.xz
multimedia/cdcat: Added (gui catalog program)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--multimedia/cdcat/README5
-rw-r--r--multimedia/cdcat/bugfix.patch13
-rw-r--r--multimedia/cdcat/cdcat.SlackBuild94
-rw-r--r--multimedia/cdcat/cdcat.desktop10
-rw-r--r--multimedia/cdcat/cdcat.info10
-rw-r--r--multimedia/cdcat/doinst.sh4
-rw-r--r--multimedia/cdcat/gcc4.patch11
-rw-r--r--multimedia/cdcat/slack-desc19
8 files changed, 166 insertions, 0 deletions
diff --git a/multimedia/cdcat/README b/multimedia/cdcat/README
new file mode 100644
index 0000000000..37d9addfac
--- /dev/null
+++ b/multimedia/cdcat/README
@@ -0,0 +1,5 @@
+CdCat is a graphical (QT based) catalog program which scans the directories
+and/or drives you want and stores it (including mp3 tags) in gzipped XML
+format.
+
+This requires qt3 from the /extra/kde3-compat/ packages.
diff --git a/multimedia/cdcat/bugfix.patch b/multimedia/cdcat/bugfix.patch
new file mode 100644
index 0000000000..3b60c47f38
--- /dev/null
+++ b/multimedia/cdcat/bugfix.patch
@@ -0,0 +1,13 @@
+diff -urN cdcat-1.01b/src/mp3tag.cpp cdcat-1.01b~/src/mp3tag.cpp
+--- cdcat-1.01b/src/mp3tag.cpp 2005-08-22 19:03:00.000000000 +0200
++++ cdcat-1.01b~/src/mp3tag.cpp 2006-08-13 15:59:20.000000000 +0200
+@@ -219,7 +219,7 @@
+ unsigned int pos=0;
+ unsigned int framelen;
+ char id[5];
+- id[5] ='\0';
++ id[4] ='\0';
+
+ fseek(mp3,0,SEEK_END);
+ flen = ftell(mp3);
+
diff --git a/multimedia/cdcat/cdcat.SlackBuild b/multimedia/cdcat/cdcat.SlackBuild
new file mode 100644
index 0000000000..d965ca1022
--- /dev/null
+++ b/multimedia/cdcat/cdcat.SlackBuild
@@ -0,0 +1,94 @@
+#!/bin/sh
+
+# Slackware build script for cdcat:
+# a QT based catalog program
+
+# Maintained by Niels Horn <niels.horn@gmail.com>
+# revision date 2010/05/27
+
+PRGNAM=cdcat
+VERSION=${VERSION:-1.01b}
+BUILD=${BUILD:-2}
+TAG=${TAG:-_SBo}
+
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) ARCH=i486 ;;
+ arm*) ARCH=arm ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) ARCH=$( uname -m ) ;;
+ esac
+fi
+
+PRGTAR=CdCat
+QT3MAKE=/opt/kde3/bin/qmake
+
+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 $TMP/$PRGTAR-$VERSION $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+tar xvf $CWD/$PRGTAR-$VERSION.tar.bz2
+cd $PRGTAR-$VERSION
+chown -R root:root .
+chmod -R u+w,go+r-w,a-s .
+
+# Patch source so it will build with modern gcc...
+patch -p1 < $CWD/gcc4.patch
+
+# And fix a bug while we're here...
+# (source: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=358929)
+patch -p1 < $CWD/bugfix.patch
+
+# We need to build from the src directory...
+cd src
+ $QT3MAKE $PRGNAM.pro
+ sed -i "s,-O2,$SLKCFLAGS,g" Makefile
+ sed -i "s,usr/X11R6/lib,usr/lib$LIBDIRSUFFIX/X11,g" Makefile
+ sed -i "s,/usr/local/,/usr/,g" Makefile
+ make
+ make install INSTALL_ROOT=$PKG
+cd ..
+
+find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+
+# desktop file & icon
+mkdir -p $PKG/usr/share/{applications,pixmaps}
+mv $PKG/usr/share/$PRGNAM/$PRGNAM.png $PKG/usr/share/pixmaps/
+cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
+
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
+mv $PKG/usr/share/$PRGNAM/{Authors,COPYING,ChangeLog,README,TRANSLATORS_README} \
+ $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a \
+ INSTALL README_IMPORT* TODO VERSION \
+ $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/multimedia/cdcat/cdcat.desktop b/multimedia/cdcat/cdcat.desktop
new file mode 100644
index 0000000000..9b3d9ed823
--- /dev/null
+++ b/multimedia/cdcat/cdcat.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Name=CdCat
+Comment=CD Catalog
+Categories=AudioVideo;
+Exec=cdcat
+Icon=cdcat
+Terminal=false
+StartupNotify=false
diff --git a/multimedia/cdcat/cdcat.info b/multimedia/cdcat/cdcat.info
new file mode 100644
index 0000000000..1b1527d3d3
--- /dev/null
+++ b/multimedia/cdcat/cdcat.info
@@ -0,0 +1,10 @@
+PRGNAM="cdcat"
+VERSION="1.01b"
+HOMEPAGE="http://cdcat.sourceforge.net/"
+DOWNLOAD="http://downloads.sourceforge.net/cdcat/CdCat-1.01b.tar.bz2"
+MD5SUM="59b321ff3848b34cb6862fd2a408cb44"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
+MAINTAINER="Niels Horn"
+EMAIL="niels.horn@gmail.com"
+APPROVED="rworkman"
diff --git a/multimedia/cdcat/doinst.sh b/multimedia/cdcat/doinst.sh
new file mode 100644
index 0000000000..4e8ba7071d
--- /dev/null
+++ b/multimedia/cdcat/doinst.sh
@@ -0,0 +1,4 @@
+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/multimedia/cdcat/gcc4.patch b/multimedia/cdcat/gcc4.patch
new file mode 100644
index 0000000000..fd103c2de2
--- /dev/null
+++ b/multimedia/cdcat/gcc4.patch
@@ -0,0 +1,11 @@
+--- CdCat-1.01b/src/import.h 2005-08-22 14:03:00.000000000 -0300
++++ CdCat-1.01b-patched/src/import.h 2009-12-08 11:26:54.000000000 -0200
+@@ -66,7 +66,7 @@
+
+ class importGtktalogCsv: public QObject {
+ Q_OBJECT public:
+- importGtktalogCsv::importGtktalogCsv( GuiSlave * parent, QString separator, QString filename, bool createdatabase, bool correctbadstyle );
++ importGtktalogCsv( GuiSlave * parent, QString separator, QString filename, bool createdatabase, bool correctbadstyle );
+ ~importGtktalogCsv();
+
+ /*
diff --git a/multimedia/cdcat/slack-desc b/multimedia/cdcat/slack-desc
new file mode 100644
index 0000000000..124ee5fedd
--- /dev/null
+++ b/multimedia/cdcat/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------------------------------------------------------|
+cdcat: cdcat (Graphical Catalog program)
+cdcat:
+cdcat: CdCat is a graphical (QT based) catalog program which scans the
+cdcat: directories/drives you want and stores it (including mp3 tags) in
+cdcat: gzipped XML format.
+cdcat:
+cdcat: http://cdcat.sourceforge.net/
+cdcat:
+cdcat:
+cdcat:
+cdcat: