mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
desktop/gnome-colors: Added to 12.2 repository
This commit is contained in:
parent
6d09b4e1bc
commit
3bdde4c956
5 changed files with 114 additions and 0 deletions
11
desktop/gnome-colors/README
Normal file
11
desktop/gnome-colors/README
Normal file
|
@ -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.
|
6
desktop/gnome-colors/doinst.sh
Normal file
6
desktop/gnome-colors/doinst.sh
Normal file
|
@ -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
|
||||
|
70
desktop/gnome-colors/gnome-colors.SlackBuild
Normal file
70
desktop/gnome-colors/gnome-colors.SlackBuild
Normal file
|
@ -0,0 +1,70 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for GNOME-Colors
|
||||
|
||||
# Copyright (c) 2008 Eugene Wissner <belka.ew@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:
|
||||
#
|
||||
# * 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
|
8
desktop/gnome-colors/gnome-colors.info
Normal file
8
desktop/gnome-colors/gnome-colors.info
Normal file
|
@ -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"
|
19
desktop/gnome-colors/slack-desc
Normal file
19
desktop/gnome-colors/slack-desc
Normal file
|
@ -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/
|
Loading…
Reference in a new issue