From b277cbc6bc2798ce26a98384a61a22d14f5305d4 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Sat, 29 Sep 2012 12:47:16 +0200 Subject: desktop/oxygen-gtk: Removed (included in Slackware) Signed-off-by: Matteo Bernardini --- desktop/oxygen-gtk/README | 14 ------ desktop/oxygen-gtk/oxygen-gtk.SlackBuild | 75 -------------------------------- desktop/oxygen-gtk/oxygen-gtk.info | 10 ----- desktop/oxygen-gtk/slack-desc | 19 -------- 4 files changed, 118 deletions(-) delete mode 100644 desktop/oxygen-gtk/README delete mode 100644 desktop/oxygen-gtk/oxygen-gtk.SlackBuild delete mode 100644 desktop/oxygen-gtk/oxygen-gtk.info delete mode 100644 desktop/oxygen-gtk/slack-desc (limited to 'desktop') diff --git a/desktop/oxygen-gtk/README b/desktop/oxygen-gtk/README deleted file mode 100644 index 91ea0cef2e..0000000000 --- a/desktop/oxygen-gtk/README +++ /dev/null @@ -1,14 +0,0 @@ -Oxygen-Gtk is a port of the default KDE widget theme (Oxygen) to gtk. - -Its primary goal is to ensure visual consistency between gtk and -qt-based applications running under kde. A secondary objective is -to also have a stand-alone nice looking gtk theme that would -behave well on other Desktop Environments. - -Unlike other attempts made to port the kde oxygen theme to gtk, -this attempt does not depend on Qt (via some Qt to Gtk conversion engine), -nor does render the widget appearance via hard coded pixmaps, -which otherwise breaks everytime some setting is changed in kde. - -EXAMPLE_USAGE: - ln -s /usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc ~/.gtkrc-2.0 diff --git a/desktop/oxygen-gtk/oxygen-gtk.SlackBuild b/desktop/oxygen-gtk/oxygen-gtk.SlackBuild deleted file mode 100644 index edda1635d9..0000000000 --- a/desktop/oxygen-gtk/oxygen-gtk.SlackBuild +++ /dev/null @@ -1,75 +0,0 @@ -#!/bin/sh - -# Slackware build script for "oxygen-gtk" - -# Written by Branko Grubic - -PRGNAM=oxygen-gtk -VERSION=${VERSION:-1.1.2} -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.bz2 -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 {} \; - -mkdir -p build -cd build - cmake \ - -DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_VERBOSE_MAKEFILE=on \ - -DLIB_SUFFIX=${LIBDIRSUFFIX} \ - -DCMAKE_BUILD_TYPE=Release .. - make - make install DESTDIR=$PKG -cd .. - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING INSTALL 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 - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/desktop/oxygen-gtk/oxygen-gtk.info b/desktop/oxygen-gtk/oxygen-gtk.info deleted file mode 100644 index 92a6e02cff..0000000000 --- a/desktop/oxygen-gtk/oxygen-gtk.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="oxygen-gtk" -VERSION="1.1.2" -HOMEPAGE="http://kde-look.org/content/show.php/?content=136216" -DOWNLOAD="ftp://ftp.kde.org/pub/kde/stable/oxygen-gtk/1.1.2/src/oxygen-gtk-1.1.2.tar.bz2" -MD5SUM="f4d7f6203d8bcf41ff3403333f399628" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Branko Grubic" -EMAIL="branko.grubic@gmail.com" diff --git a/desktop/oxygen-gtk/slack-desc b/desktop/oxygen-gtk/slack-desc deleted file mode 100644 index 3451dfd491..0000000000 --- a/desktop/oxygen-gtk/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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -oxygen-gtk: oxygen-gtk (gtk port of KDE's oxygen widget theme) -oxygen-gtk: -oxygen-gtk: Oxygen-Gtk is a port of the default KDE widget theme (Oxygen), -oxygen-gtk: to gtk. Its primary goal is to ensure visual consistency between -oxygen-gtk: gtk and qt based applications running under kde. -oxygen-gtk: -oxygen-gtk: A secondary objective is to also have a stand-alone nice looking -oxygen-gtk: gtk theme that would behave well on other Desktop Environments. -oxygen-gtk: -oxygen-gtk: Homepage: http://kde-look.org/content/show.php/?content=136216 -oxygen-gtk: -- cgit v1.2.3