diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-04-23 14:06:31 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-04-23 14:06:52 +0700 |
commit | 222e04089550987c0fe9576d7d6caae6cc186938 (patch) | |
tree | 4f7bc2ff672d14b27f53f06e43de9ae660e4c532 /desktop | |
parent | 36f530505f8e18d5133fdf2c02c9c6fc47609eb7 (diff) |
desktop/adapta-gtk-theme: Removed (project ended development).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/adapta-gtk-theme/README | 15 | ||||
-rw-r--r-- | desktop/adapta-gtk-theme/adapta-gtk-theme.SlackBuild | 113 | ||||
-rw-r--r-- | desktop/adapta-gtk-theme/adapta-gtk-theme.info | 10 | ||||
-rw-r--r-- | desktop/adapta-gtk-theme/doinst.sh | 15 | ||||
-rw-r--r-- | desktop/adapta-gtk-theme/slack-desc | 19 |
5 files changed, 0 insertions, 172 deletions
diff --git a/desktop/adapta-gtk-theme/README b/desktop/adapta-gtk-theme/README deleted file mode 100644 index ac189afbb3699..0000000000000 --- a/desktop/adapta-gtk-theme/README +++ /dev/null @@ -1,15 +0,0 @@ -adapta-gtk-theme (Gtk+ theme) - -adapta-gtk-theme is an adaptive Gtk+ theme based on Material Design -Guidelines. - -For OpenBox users: - -Compton is the famous stand-alone compositor that works well with the -Openbox window-manager. This package provides the recommended -configuration file compton.conf in the Adapta/openbox-3 directory. - -Just copy this file into your ~/.config folder and restart compton. - -To properly work, this suggests the optional dependencies: -ttf-noto, ttf-roboto. diff --git a/desktop/adapta-gtk-theme/adapta-gtk-theme.SlackBuild b/desktop/adapta-gtk-theme/adapta-gtk-theme.SlackBuild deleted file mode 100644 index 673e04d7cab1d..0000000000000 --- a/desktop/adapta-gtk-theme/adapta-gtk-theme.SlackBuild +++ /dev/null @@ -1,113 +0,0 @@ -#!/bin/bash -# -# Slackware build script for adapta-gtk-theme. -# -# Copyright 2016-2020 Edinaldo P. Silva, Rio de Janeiro, Brazil. -# 2020 Jan Filip Chadima <jfch@jagda.eu" -# All rights reserved. -# -# Permission to use, copy, modify, and distribute this software for any purpose -# with or without fee is hereby granted, provided that the above copyright -# notice and this permission notice appear in all copies. -# -# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 -# AUTHORS AND COPYRIGHT HOLDERS AND THEIR 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. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=adapta-gtk-theme -VERSION=${VERSION:-3.95.0.11} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -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 -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -# Well... we still using old glib... -sed -i "s|2\.48.0|2.46.2|" configure.ac - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ - -./autogen.sh \ - --enable-parallel \ - --enable-gtk_legacy \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp COPYING LICENSE_CC_BY_SA4 README.md $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 diff --git a/desktop/adapta-gtk-theme/adapta-gtk-theme.info b/desktop/adapta-gtk-theme/adapta-gtk-theme.info deleted file mode 100644 index d6830d5e99206..0000000000000 --- a/desktop/adapta-gtk-theme/adapta-gtk-theme.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="adapta-gtk-theme" -VERSION="3.95.0.11" -HOMEPAGE="https://github.com/adapta-project/adapta-gtk-theme/" -DOWNLOAD="https://github.com/adapta-project/adapta-gtk-theme/archive/3.95.0.11/adapta-gtk-theme-3.95.0.11.tar.gz" -MD5SUM="5608c26b6169a561fc5a714d1230f561" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="murrine inkscape" -MAINTAINER="Jan Filip Chadima" -EMAIL="jfch@jagda.eu" diff --git a/desktop/adapta-gtk-theme/doinst.sh b/desktop/adapta-gtk-theme/doinst.sh deleted file mode 100644 index 401d9877955be..0000000000000 --- a/desktop/adapta-gtk-theme/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - -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 -f usr/share/icons/hicolor >/dev/null 2>&1 - fi -fi - -if [ -e usr/share/glib-2.0/schemas ]; then - if [ -x /usr/bin/glib-compile-schemas ]; then - /usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas >/dev/null 2>&1 - fi -fi diff --git a/desktop/adapta-gtk-theme/slack-desc b/desktop/adapta-gtk-theme/slack-desc deleted file mode 100644 index 5c85b87288c16..0000000000000 --- a/desktop/adapta-gtk-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 ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -adapta-gtk-theme: adapta-gtk-theme (Gtk+ theme) -adapta-gtk-theme: -adapta-gtk-theme: adapta-gtk-theme is an adaptive Gtk+ theme based on Material Design -adapta-gtk-theme: Guidelines. -adapta-gtk-theme: -adapta-gtk-theme: home page: https://github.com/adapta-project/adapta-gtk-theme/ -adapta-gtk-theme: -adapta-gtk-theme: -adapta-gtk-theme: -adapta-gtk-theme: -adapta-gtk-theme: |