summaryrefslogtreecommitdiffstats
path: root/network/smuxi
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2013-11-19 14:56:14 -0600
committer Robby Workman <rworkman@slackbuilds.org>2013-11-22 00:00:34 -0600
commit6b836d51c0a1122bcac20cb05a7aaa5d9be8195d (patch)
tree2206d04ca553728b642831574297b77277f4682b /network/smuxi
parente7fb9a184cd74950f5099b496c7e10a9f84e8005 (diff)
downloadslackbuilds-6b836d51c0a1122bcac20cb05a7aaa5d9be8195d.tar.gz
slackbuilds-6b836d51c0a1122bcac20cb05a7aaa5d9be8195d.tar.xz
network/smuxi: Removed (no SBo maintainer)
Besides, why would anyone want to install mono just to have an IRC client? Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/smuxi')
-rw-r--r--network/smuxi/README4
-rw-r--r--network/smuxi/doinst.sh4
-rw-r--r--network/smuxi/slack-desc19
-rw-r--r--network/smuxi/smuxi.SlackBuild82
-rw-r--r--network/smuxi/smuxi.info10
5 files changed, 0 insertions, 119 deletions
diff --git a/network/smuxi/README b/network/smuxi/README
deleted file mode 100644
index f61a10e8dd..0000000000
--- a/network/smuxi/README
+++ /dev/null
@@ -1,4 +0,0 @@
-Smuxi (user-friendly and cross-platform IRC for GNOME/GTK#)
-
-Smuxi is an irssi-inspired, flexible, user-friendly and cross-platform
-IRC client for sophisticated users, targeting the GNOME desktop.
diff --git a/network/smuxi/doinst.sh b/network/smuxi/doinst.sh
deleted file mode 100644
index 99fe936e34..0000000000
--- a/network/smuxi/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/network/smuxi/slack-desc b/network/smuxi/slack-desc
deleted file mode 100644
index 14ed50440d..0000000000
--- a/network/smuxi/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------------------------------------------------------|
-smuxi: Smuxi (user-friendly and cross-platform IRC for GNOME/GTK#)
-smuxi:
-smuxi: Smuxi is an irssi-inspired, flexible, user-friendly and
-smuxi: cross-platform IRC client for sophisticated users, targeting the
-smuxi: GNOME desktop.
-smuxi:
-smuxi: The website for smuxi is http://www.smuxi.org
-smuxi:
-smuxi:
-smuxi:
-smuxi:
diff --git a/network/smuxi/smuxi.SlackBuild b/network/smuxi/smuxi.SlackBuild
deleted file mode 100644
index ea629237c0..0000000000
--- a/network/smuxi/smuxi.SlackBuild
+++ /dev/null
@@ -1,82 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for smuxi
-
-# Written by crocket (crockabiscuit@yahoo.com)
-
-PRGNAM=smuxi
-VERSION=${VERSION:-0.8.10}
-BUILD=${BUILD:-1}
-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
-
-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 \
- --mandir=/usr/man \
- --infodir=/usr/info \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- BUGS CREDITS FEATURES LICENSE PROFILING 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/network/smuxi/smuxi.info b/network/smuxi/smuxi.info
deleted file mode 100644
index 7d3f392ad5..0000000000
--- a/network/smuxi/smuxi.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="smuxi"
-VERSION="0.8.10"
-HOMEPAGE="http://www.smuxi.org/"
-DOWNLOAD="http://www.smuxi.org/jaws/data/files/smuxi-0.8.10.tar.gz"
-MD5SUM="73ea97133186a42aee235592770f96e3"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="gtk-sharp log4net nini smartirc4net"
-MAINTAINER="crocket"
-EMAIL="crockabiscuit@yahoo.com"