From 3bdde4c9560e3e37e86d4bc570b5d3c5f9df3d7f Mon Sep 17 00:00:00 2001 From: Eugene Wissner Date: Wed, 12 May 2010 23:28:18 +0200 Subject: desktop/gnome-colors: Added to 12.2 repository --- desktop/gnome-colors/README | 11 +++++ desktop/gnome-colors/doinst.sh | 6 +++ desktop/gnome-colors/gnome-colors.SlackBuild | 70 ++++++++++++++++++++++++++++ desktop/gnome-colors/gnome-colors.info | 8 ++++ desktop/gnome-colors/slack-desc | 19 ++++++++ 5 files changed, 114 insertions(+) create mode 100644 desktop/gnome-colors/README create mode 100644 desktop/gnome-colors/doinst.sh create mode 100644 desktop/gnome-colors/gnome-colors.SlackBuild create mode 100644 desktop/gnome-colors/gnome-colors.info create mode 100644 desktop/gnome-colors/slack-desc (limited to 'desktop/gnome-colors') diff --git a/desktop/gnome-colors/README b/desktop/gnome-colors/README new file mode 100644 index 0000000000..1b3814534d --- /dev/null +++ b/desktop/gnome-colors/README @@ -0,0 +1,11 @@ +The GNOME-Colors is a project that aims to make the GNOME desktop as +elegant, consistent and colorful as possible. The current goal is to +allow full color customization of themes, icons, GDM logins and splash +screens. There are already five full color-schemes available; Noble (Purple), +Brave (Blue), Human (Orange), Wine (Red) and Wise (Green). GNOME-Colors is +mostly inspired/based on Tango, GNOME, Elementary, Tango-Generator and +many other open-source projects. + +Don't forget to set gtk-icon-theme-name attribute in your ~/.gtkrc-2.0 +to one of the five color schemes (gnome-noble, gnome-brave, gnome-human, +gnome-wine,and gnome-wise) in order for this icon theme to take effect. diff --git a/desktop/gnome-colors/doinst.sh b/desktop/gnome-colors/doinst.sh new file mode 100644 index 0000000000..30eb690936 --- /dev/null +++ b/desktop/gnome-colors/doinst.sh @@ -0,0 +1,6 @@ +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi + diff --git a/desktop/gnome-colors/gnome-colors.SlackBuild b/desktop/gnome-colors/gnome-colors.SlackBuild new file mode 100644 index 0000000000..ac9218ff04 --- /dev/null +++ b/desktop/gnome-colors/gnome-colors.SlackBuild @@ -0,0 +1,70 @@ +#!/bin/sh + +# Slackware build script for GNOME-Colors + +# Copyright (c) 2008 Eugene Wissner +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "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 COPYRIGHT +# OWNER OR CONTRIBUTORS 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=gnome-colors +VERSION=${VERSION:-3.8.8} +# Hardcode the ARCH as this truly is architecture-independent +ARCH=noarch +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +mkdir -p $TMP/$PRGNAM-$VERSION +cd $TMP/$PRGNAM-$VERSION +tar xvf $CWD/gnome-colors-$VERSION.tar.gz +mkdir -p $PKG/usr/share/icons +tar xvf gnome-brave.tar.gz -C $PKG/usr/share/icons +tar xvf gnome-human.tar.gz -C $PKG/usr/share/icons +tar xvf gnome-wine.tar.gz -C $PKG/usr/share/icons +tar xvf gnome-wise.tar.gz -C $PKG/usr/share/icons +tar xvf gnome-noble.tar.gz -C $PKG/usr/share/icons +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 {} \; + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS COPYING ChangeLog README \ + $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.tgz diff --git a/desktop/gnome-colors/gnome-colors.info b/desktop/gnome-colors/gnome-colors.info new file mode 100644 index 0000000000..5f58917e90 --- /dev/null +++ b/desktop/gnome-colors/gnome-colors.info @@ -0,0 +1,8 @@ +PRGNAM="gnome-colors" +VERSION="3.8.8" +HOMEPAGE="http://code.google.com/p/gnome-colors/" +DOWNLOAD="http://slackbuilds.org/sources/12.2/gnome-colors-3.8.8.tar.gz" +MD5SUM="b44b58b2f2d269f227991e5b3c02cd73" +MAINTAINER="Eugene Wissner" +EMAIL="belka.ew@gmail.com" +APPROVED="chess" diff --git a/desktop/gnome-colors/slack-desc b/desktop/gnome-colors/slack-desc new file mode 100644 index 0000000000..fba50ed2e7 --- /dev/null +++ b/desktop/gnome-colors/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-------------------------------------------------------| +gnome-colors: gnome-colors (extra icon themes for the gnome desktop) +gnome-colors: +gnome-colors: The GNOME-Colors is a project that aims to make the GNOME desktop as +gnome-colors: elegant, consistent and colorful as possible. The current goal is to +gnome-colors: allow full color customization of themes, icons, GDM logins and splash +gnome-colors: screens. There are already five full color-schemes available; Noble +gnome-colors: (Purple), Brave (Blue), Human (Orange), Wine (Red) and Wise (Green). +gnome-colors: GNOME-Colors is mostly inspired/based on Tango, GNOME, Elementary, +gnome-colors: Tango-Generator and many other open-source projects. +gnome-colors: +gnome-colors: Homepage: http://code.google.com/p/gnome-colors/ -- cgit v1.2.3