summaryrefslogtreecommitdiffstats
path: root/network/pidgin-musictracker
diff options
context:
space:
mode:
author Dhaby Xiloj <slack.dhabyx@gmail.com>2010-05-12 23:32:41 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-12 23:32:41 +0200
commit045310e29ea3fe6b68510d9a2a3b96b6588f7248 (patch)
treeb29f404f70501e8407b66475a72d28bb7ec67b48 /network/pidgin-musictracker
parent768e16454608aa271cb2271b7d90449d60b487eb (diff)
downloadslackbuilds-045310e29ea3fe6b68510d9a2a3b96b6588f7248.tar.gz
slackbuilds-045310e29ea3fe6b68510d9a2a3b96b6588f7248.tar.xz
network/pidgin-musictracker: Added to 12.2 repository
Diffstat (limited to 'network/pidgin-musictracker')
-rw-r--r--network/pidgin-musictracker/README3
-rw-r--r--network/pidgin-musictracker/pidgin-musictracker.SlackBuild96
-rw-r--r--network/pidgin-musictracker/pidgin-musictracker.info8
-rw-r--r--network/pidgin-musictracker/slack-desc19
4 files changed, 126 insertions, 0 deletions
diff --git a/network/pidgin-musictracker/README b/network/pidgin-musictracker/README
new file mode 100644
index 0000000000..2a60059bc1
--- /dev/null
+++ b/network/pidgin-musictracker/README
@@ -0,0 +1,3 @@
+pidgin-musictracker is a plugin for Pidgin which displays the media
+currently playing in the status message for any protocol on which
+Pidgin supports custom statuses.
diff --git a/network/pidgin-musictracker/pidgin-musictracker.SlackBuild b/network/pidgin-musictracker/pidgin-musictracker.SlackBuild
new file mode 100644
index 0000000000..257506efa8
--- /dev/null
+++ b/network/pidgin-musictracker/pidgin-musictracker.SlackBuild
@@ -0,0 +1,96 @@
+#!/bin/sh
+
+# Slackware build script for pidgin-musictracker
+
+# Copyright (c) miƩ may 20 18:37:31 CST 2009, Dhaby Xiloj <slack.dhabyx@gmail.com>
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+# 1.- Redistributions of source code 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=pidgin-musictracker
+VERSION=${VERSION:-0.4.18}
+ARCH=${ARCH:-i486}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+DOCS="ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS"
+
+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 # Exit on most errors
+
+rm -rf $PKG
+mkdir -p $TMP $PKG $OUTPUT
+cd $TMP
+rm -rf $PRGNAM-$VERSION
+tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
+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 \
+ --build=$ARCH-slackware-linux
+
+make
+make install DESTDIR=$PKG
+
+( cd $PKG
+ find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
+ xargs strip --strip-unneeded 2> /dev/null || true
+ find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
+ xargs strip --strip-unneeded 2> /dev/null
+)
+
+( 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 -ar $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.tgz
diff --git a/network/pidgin-musictracker/pidgin-musictracker.info b/network/pidgin-musictracker/pidgin-musictracker.info
new file mode 100644
index 0000000000..65d22535c8
--- /dev/null
+++ b/network/pidgin-musictracker/pidgin-musictracker.info
@@ -0,0 +1,8 @@
+PRGNAM="pidgin-musictracker"
+VERSION="0.4.18"
+HOMEPAGE="http://code.google.com/p/pidgin-musictracker/"
+DOWNLOAD="http://pidgin-musictracker.googlecode.com/files/pidgin-musictracker-0.4.18.tar.bz2"
+MD5SUM="a4daad22d102e1c231a1264f8c7024d7"
+MAINTAINER="Dhaby Xiloj"
+EMAIL="slack.dhabyx@gmail.com"
+APPROVED="rworkman"
diff --git a/network/pidgin-musictracker/slack-desc b/network/pidgin-musictracker/slack-desc
new file mode 100644
index 0000000000..61213b14ce
--- /dev/null
+++ b/network/pidgin-musictracker/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----------------------------------------------------|
+pidgin-musictracker: Pidgin MusicTracker (pidgin status plugin)
+pidgin-musictracker:
+pidgin-musictracker: pidgin-musictracker is a plugin for Pidgin which displays the
+pidgin-musictracker: media currently playing in the status message for any protocol
+pidgin-musictracker: on which Pidgin supports custom statuses.
+pidgin-musictracker:
+pidgin-musictracker: http://code.google.com/p/pidgin-musictracker/
+pidgin-musictracker:
+pidgin-musictracker:
+pidgin-musictracker:
+pidgin-musictracker: