From 6ebd349fd75a33f5999dec973aa3aad9159d8867 Mon Sep 17 00:00:00 2001 From: Dominik Drobek Date: Wed, 20 Jul 2011 09:41:02 -0300 Subject: network/pidgin-extprefs: Added (additional preferences plugin) Signed-off-by: Niels Horn --- network/pidgin-extprefs/README | 3 + network/pidgin-extprefs/pidgin-extprefs.SlackBuild | 80 ++++++++++++++++++++++ network/pidgin-extprefs/pidgin-extprefs.info | 10 +++ network/pidgin-extprefs/slack-desc | 19 +++++ 4 files changed, 112 insertions(+) create mode 100644 network/pidgin-extprefs/README create mode 100644 network/pidgin-extprefs/pidgin-extprefs.SlackBuild create mode 100644 network/pidgin-extprefs/pidgin-extprefs.info create mode 100644 network/pidgin-extprefs/slack-desc (limited to 'network/pidgin-extprefs') diff --git a/network/pidgin-extprefs/README b/network/pidgin-extprefs/README new file mode 100644 index 0000000000..568a293440 --- /dev/null +++ b/network/pidgin-extprefs/README @@ -0,0 +1,3 @@ +The Pidgin Extended Preferences Plugin adds additional preferences +that that are either already implemented and hidden, or trivial to +implement via a plugin. diff --git a/network/pidgin-extprefs/pidgin-extprefs.SlackBuild b/network/pidgin-extprefs/pidgin-extprefs.SlackBuild new file mode 100644 index 0000000000..e684cd2618 --- /dev/null +++ b/network/pidgin-extprefs/pidgin-extprefs.SlackBuild @@ -0,0 +1,80 @@ +#!/bin/sh + +# Slackware build script for pidgin-extprefs +# Written by Dominik Drobek + +PRGNAM=pidgin-extprefs +VERSION=${VERSION:-0.7} +BUILD=${BUILD:-1} +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 +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 \ + --disable-static \ + --enable-shared \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS COPYING ChangeLog INSTALL LICENSE NEWS README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +# some of the permissions are still messed up +chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/* + +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.${PKGTYPE:-tgz} diff --git a/network/pidgin-extprefs/pidgin-extprefs.info b/network/pidgin-extprefs/pidgin-extprefs.info new file mode 100644 index 0000000000..b4bd7af997 --- /dev/null +++ b/network/pidgin-extprefs/pidgin-extprefs.info @@ -0,0 +1,10 @@ +PRGNAM="pidgin-extprefs" +VERSION="0.7" +HOMEPAGE="http://gaim-extprefs.sourceforge.net" +DOWNLOAD="http://downloads.sourceforge.net/gaim-extprefs/pidgin-extprefs-0.7.tar.gz" +MD5SUM="db6782cfe4b9beec6deaadb97d18fbd3" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Dominik Drobek" +EMAIL="dominik.drobek@o2.pl" +APPROVED="Niels Horn" diff --git a/network/pidgin-extprefs/slack-desc b/network/pidgin-extprefs/slack-desc new file mode 100644 index 0000000000..f488b69560 --- /dev/null +++ b/network/pidgin-extprefs/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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +pidgin-extprefs: pidgin-extprefs (additional preferences plugin for Pidgin) +pidgin-extprefs: +pidgin-extprefs: The Pidgin Extended Preferences Plugin adds additional preferences +pidgin-extprefs: that that are either already implemented and hidden, or trivial to +pidgin-extprefs: implement via a plugin. +pidgin-extprefs: +pidgin-extprefs: Homepage: http://gaim-extprefs.sourceforge.net +pidgin-extprefs: +pidgin-extprefs: +pidgin-extprefs: +pidgin-extprefs: -- cgit v1.2.3