From 4bb23ae54bf5db0c096a20b11a42cbdfc34bafe3 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Thu, 14 Nov 2013 23:15:57 -0600 Subject: graphics/gimp-registry-plugins: Removed (no SBo maintainer) Nothing else in the repo needs this, so there's not any good reason for us to continue carrying it. Signed-off-by: Robby Workman --- graphics/gimp-registry-plugins/README | 33 ------ .../gimp-registry-plugins.SlackBuild | 124 --------------------- .../gimp-registry-plugins.info | 28 ----- graphics/gimp-registry-plugins/slack-desc | 19 ---- 4 files changed, 204 deletions(-) delete mode 100644 graphics/gimp-registry-plugins/README delete mode 100644 graphics/gimp-registry-plugins/gimp-registry-plugins.SlackBuild delete mode 100644 graphics/gimp-registry-plugins/gimp-registry-plugins.info delete mode 100644 graphics/gimp-registry-plugins/slack-desc (limited to 'graphics') diff --git a/graphics/gimp-registry-plugins/README b/graphics/gimp-registry-plugins/README deleted file mode 100644 index f5d4280265..0000000000 --- a/graphics/gimp-registry-plugins/README +++ /dev/null @@ -1,33 +0,0 @@ -The GIMP Registry provides a location for GIMP plugins and scripts. These -are individual projects to a certain extent, though they all have the -GIMP in common. - -This package takes its cue from the Debian gimp-registry-plugins -package, though there are some differences as the scripts included -here are largely those which I wanted to use. If you want any -particular plugins from the GIMP registry included, drop me an -email. - -This package includes: - -* Add Film Grain -* Contact Sheet -* Diana/Holga2 -* Exposure Blend -* GREYCstoration -* Fake high dynamic range effect -* Smart Separate sharpen (redux) -* Rays of Light -* Vignette Script -* Divide and deskew scanned images - optionally calls gimp-deskew-plugin - -The scripts can be found as follows in the GIMP: -"Rays of Light" is in Filters > Alpha to Logo. -"Vignette" is in Filters > Light and Shadow. -"GREYCstoration" is in Filters > Enhance. -"Divide Scanned Images" has a single-use mode in Filters > Registry and -a batch processing mode in Filters > Batch Tools. -The rest of the plugins can be found in either - Filters > Registry -or - Filters > Photography diff --git a/graphics/gimp-registry-plugins/gimp-registry-plugins.SlackBuild b/graphics/gimp-registry-plugins/gimp-registry-plugins.SlackBuild deleted file mode 100644 index dc00b08ef4..0000000000 --- a/graphics/gimp-registry-plugins/gimp-registry-plugins.SlackBuild +++ /dev/null @@ -1,124 +0,0 @@ -#!/bin/sh - -# SlackBuild script for gimp-registry-plugin. - -# Takes a series of plugins (mostly from the Debian gimp-registry-plugin list) -# plus a couple of extras and extracts them into the relevant gimp directories. - -# Copyright 2009-2010 Pierre Cazenave -# 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=gimp-registry-plugins -VERSION=0.0.2 -BUILD=${BUILD:-3} -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 - LIBDIRSUFFIX="" - elif [ "$ARCH" = "i686" ]; then - LIBDIRSUFFIX="" - elif [ "$ARCH" = "x86_64" ]; then - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG $TMP/GREYCstoration-2.9 $TMP/"Fake HDR effect script-fu-v0.2" -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -mkdir -p $PKG/usr/{lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins,share/gimp/2.0/scripts} - -# Copy the .scm files to the scripts directory -cp $CWD/*.scm $PKG/usr/share/gimp/2.0/scripts/ - -# Grab the scm files from the HDR plugin -unzip $CWD/"Fake HDR effect script-fu-v0.2.zip" -cp $TMP/"Fake HDR effect script-fu-v0.2"/*.scm $PKG/usr/share/gimp/2.0/scripts/ - -# Copy the python scripts to the plugins directory -cp $CWD/*.py $PKG/usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins/ - -# Copy the relevant file from the GREYCstoration.zip archive -unzip $CWD/GREYCstoration-2.9.zip -( cd $PKG/usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins - cp $TMP/GREYCstoration-2.9/GREYCstoration_gimp_pc_linux${LIBDIRSUFFIX} . -) - -# Add ellipsis to the Vignette script name for better consistency with other -# filters in Filters > Light and Shadow. -sed -i '178s|Vignette|Vignette...|' $PKG/usr/share/gimp/2.0/scripts/vignette_0.scm - -# Change the menu name for the .scm files that fall in the Filters GIMP menu -# to put them in a more ordered menu system. -sed -i 's|"/Filters/jp/diana-holga2c|"/Filters/Registry/JP/Diana-Holga2c|g' \ - $PKG/usr/share/gimp/2.0/scripts/diana-holga2c.scm -sed -i 's|"/Filters/Eg"|"/Filters/Registry/Eg"|g' \ - $PKG/usr/share/gimp/2.0/scripts/Eg-AddFilmGrain.scm -sed -i 's|"/Filters/Eg"|"/Filters/Registry/Eg"|g' \ - $PKG/usr/share/gimp/2.0/scripts/Eg-SmartSeparateSharpen.scm -sed -i 's|"/Filters/Photo|"/Filters/Registry/Photography|g' \ - $PKG/usr/share/gimp/2.0/scripts/exposure-blend-tinyscheme.scm -sed -i 's|"/Script-Fu/Enhance|"/Filters/Enhance|g' \ - $PKG/usr/share/gimp/2.0/scripts/hdr-eff.scm -sed -i 's|"/Script-Fu/Enhance|"/Filters/Enhance|g' \ - $PKG/usr/share/gimp/2.0/scripts/hdr-eff-plus.scm -sed -i 's|"/Filters/Divide Scanned Images..."|"/Filters/Registry/Divide Scanned Images..."|' \ - $PKG/usr/share/gimp/2.0/scripts/DivideScannedImages.scm -# Apply the same "fix" to the .py files -sed -i 's|"/Xtns/Batch/|"/Xtns/Photography/|g' \ - $PKG/usr/lib${LIBDIRSUFFIX}/gimp/2.0/plug-ins/contactsheet_0.py - -# Fix permissions -chown -R root:root $PKG -chmod -R u+w,go+r-w,a-s $PKG -find $PKG/usr/share/gimp/2.0/ -type f -exec chmod 644 {} + -find $PKG/usr/lib${LIBDIRSUFFIX}/gimp/2.0/ -type f -exec chmod 755 {} + - -# Add what little documentation we have -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - $TMP/GREYCstoration-2.9/{Licence_CeCILL_V2-en.txt,README.txt} \ - $TMP/"Fake HDR effect script-fu-v0.2"/Info.txt \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README$TAG -find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; - -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/graphics/gimp-registry-plugins/gimp-registry-plugins.info b/graphics/gimp-registry-plugins/gimp-registry-plugins.info deleted file mode 100644 index d3f7eaacec..0000000000 --- a/graphics/gimp-registry-plugins/gimp-registry-plugins.info +++ /dev/null @@ -1,28 +0,0 @@ -PRGNAM="gimp-registry-plugins" -VERSION="0.0.2" -HOMEPAGE="http://registry.gimp.org" -DOWNLOAD="http://registry.gimp.org/files/Eg-AddFilmGrain.scm \ - http://registry.gimp.org/files/contactsheet_0.py \ - http://www.vide.memoire.free.fr/photo/textes/contrefacons/diana-holga2c.scm \ - http://registry.gimp.org/files/exposure-blend-tinyscheme.scm \ - http://ponce.cc/slackware/sources/repo/GREYCstoration-2.9.zip \ - http://registry.gimp.org/files/Fake%20HDR%20effect%20script-fu-v0.2.zip \ - http://registry.gimp.org/files/Eg-SmartSeparateSharpen.scm \ - http://registry.gimp.org/files/rays-of-light.scm \ - http://registry.gimp.org/files/vignette_0.scm \ - http://ffaat.pointclark.net/incoming/scripts/DivideScannedImages.scm" -MD5SUM="fb3043bdbe3f029814caa044eb1b7a80 \ - 49d42daab1ad5c5d498617acfeeaafb4 \ - f77f160cf0408ba383c297c0a858ee6b \ - 50643978b72a8b38b1778d3d067d317c \ - 67b6bfcadd485ee4669069da52a1e8f5 \ - e2693ad32a0b8921d2773f808eeefb88 \ - 3646eb79093372231ddc8b0671f5710f \ - a67f238d6af768d16089e9609e674bc8 \ - 2ba7c7db3143ae95fd10f0d059021faf \ - 8df1ef15e5c754c598f9c717d34e9e00" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Pierre Cazenave" -EMAIL="pwcazenave gmail {dot} com" diff --git a/graphics/gimp-registry-plugins/slack-desc b/graphics/gimp-registry-plugins/slack-desc deleted file mode 100644 index e6eb781922..0000000000 --- a/graphics/gimp-registry-plugins/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------------------------------------------------------| -gimp-registry-plugins: gimp-registry-plugins (collection of gimp scripts) -gimp-registry-plugins: -gimp-registry-plugins: Includes a selection of scripts from the GIMP Registry, some of which -gimp-registry-plugins: are included in the Debian package of the same name. -gimp-registry-plugins: -gimp-registry-plugins: These include: Add Film Grain, Contact Sheet, Diana/Holga2, Exposure -gimp-registry-plugins: Blend, GREYCstoration, Smart Separate Sharpen (redux), Vignette Script -gimp-registry-plugins: and DivideScannedImages. -gimp-registry-plugins: -gimp-registry-plugins: http://registry.gimp.org/ -gimp-registry-plugins: -- cgit v1.2.3