summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Heinz Wiesinger2010-05-11 20:30:34 +0200
committer Heinz Wiesinger2010-05-11 20:30:34 +0200
commit510e363748dbc5f5e112e8f91ccd0047b91ddc40 (patch)
tree5b8379533596ff6efa47644f78930e9893a08b79 /desktop
parent1c038b0487fce120c58426f4a2b1b4d506a732ee (diff)
downloadslackbuilds-510e363748dbc5f5e112e8f91ccd0047b91ddc40.tar.gz
desktop/tango-icon-theme: Removed from 12.1 repository
Diffstat (limited to 'desktop')
-rw-r--r--desktop/tango-icon-theme/README30
-rw-r--r--desktop/tango-icon-theme/doinst.sh3
-rw-r--r--desktop/tango-icon-theme/slack-desc19
-rw-r--r--desktop/tango-icon-theme/tango-icon-theme.SlackBuild62
-rw-r--r--desktop/tango-icon-theme/tango-icon-theme.info8
5 files changed, 0 insertions, 122 deletions
diff --git a/desktop/tango-icon-theme/README b/desktop/tango-icon-theme/README
deleted file mode 100644
index 6634972108..0000000000
--- a/desktop/tango-icon-theme/README
+++ /dev/null
@@ -1,30 +0,0 @@
-The Tango Icon Theme is a desktop environment independent set of icons
-following the new icon name specification.
-
-In order to build the package, you need the XML::Simple perl module
-and icon-naming-utils, both of which are available from SlackBuilds.org
-
-For XFce, it should work as is: (Settings Manager -> User Interface).
-Note that Xfce's Rodent icon theme inherits Tango icons by default, so some
-of your icons (the ones that are currently falling back to the hicolor theme)
-will change to the Tango theme simply by installing it.
-
-KDE users will get slightly better looking icons if they add the option
- --enable-png-creation
-to the configure part of the SlackBuild. They can select the icon theme from
-within the control center.
-
-To change the default GNOME icon theme execute:
-
- gconftool-2 --direct --config-source \
- xml:readwrite:/etc/gconf/gconf.xml.defaults --type string \
- --set /desktop/gnome/interface/icon_theme Tango
-
-To change a user-specific GNOME icon theme execute:
-
- gconftool-2 --type string --set /desktop/gnome/interface/icon_theme Tango
-
-If you are not using any settings manager (fluxbox,blackbox...), you can add
-the following to your .gtkrc-2.0 (create it if it does not exist).
-
- gtk-icon-theme-name="Tango"
diff --git a/desktop/tango-icon-theme/doinst.sh b/desktop/tango-icon-theme/doinst.sh
deleted file mode 100644
index 627ec2e247..0000000000
--- a/desktop/tango-icon-theme/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x usr/bin/gtk-update-icon-cache ]; then
- usr/bin/gtk-update-icon-cache -f -q usr/share/icons/Tango &> /dev/null
-fi
diff --git a/desktop/tango-icon-theme/slack-desc b/desktop/tango-icon-theme/slack-desc
deleted file mode 100644
index 2fefeab8b6..0000000000
--- a/desktop/tango-icon-theme/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------------------------------------------------------|
-tango-icon-theme: tango-icon-theme (Desktop independent icon theme)
-tango-icon-theme:
-tango-icon-theme: Homepage: http://tango.freedesktop.org
-tango-icon-theme:
-tango-icon-theme:
-tango-icon-theme:
-tango-icon-theme:
-tango-icon-theme:
-tango-icon-theme:
-tango-icon-theme:
-tango-icon-theme:
diff --git a/desktop/tango-icon-theme/tango-icon-theme.SlackBuild b/desktop/tango-icon-theme/tango-icon-theme.SlackBuild
deleted file mode 100644
index befc4833d2..0000000000
--- a/desktop/tango-icon-theme/tango-icon-theme.SlackBuild
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/sh
-#
-# Slackware build script for tango-icon-theme
-# (C) 2007 Michael Wagner <lapinours@web.de>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script 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=tango-icon-theme
-VERSION=0.8.1
-ARCH=noarch
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-DOCS="AUTHORS COPYING ChangeLog INSTALL README"
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP || exit 1
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1
-cd $PRGNAM-$VERSION || exit 1
-chown -R root.root .
-chmod -R a-s,u+rw,go-w .
-
-./configure \
- --prefix=/usr \
- || exit 1
-
-make || exit 1
-make install DESTDIR=$PKG || exit 1
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/*
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -p -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
diff --git a/desktop/tango-icon-theme/tango-icon-theme.info b/desktop/tango-icon-theme/tango-icon-theme.info
deleted file mode 100644
index ff0c9b275c..0000000000
--- a/desktop/tango-icon-theme/tango-icon-theme.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="tango-icon-theme"
-VERSION="0.8.1"
-HOMEPAGE="http://tango.freedesktop.org"
-DOWNLOAD="http://tango-project.org/releases/tango-icon-theme-0.8.1.tar.gz"
-MD5SUM="32d5258f448b5982af9cfa4364f31d41"
-MAINTAINER="Michael Wagner"
-EMAIL="lapinours@web.de"
-APPROVED="rworkman"