graphics/gimp-registry-plugins: Added to 13.0 repository

This commit is contained in:
Pierre Cazenave 2010-05-13 00:58:18 +02:00 committed by Robby Workman
parent 16bf95de61
commit de643a59b7
4 changed files with 185 additions and 0 deletions

View file

@ -0,0 +1,28 @@
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.
Below is a list of the plugins/scripts included and any dependencies.
The only dependency is Refocus for Smart sharpen (redux) optional.
However, this won't build on 13.0 anyway. I mention this only for
completeness. If anyone can get Refocus to build, that'd be great.
* Add Film Grain * Contact Sheet * Diana/Holga2 * Exposure Blend
* GREYCstoration * Fake high dynamic range effect # catchy name, eh? ;)
* Smart sharpen (redux) - optionally requires Refocus (no build available yet)
* Rays of Light * Vignette Script
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.
The rest of the plugins can be found in either
Filters > Registry Plug-Ins
or
Filters > Photography

View file

@ -0,0 +1,112 @@
#!/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 Pierre Cazenave <pwcazenave {at} gmail [dot] com>
# 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.1
ARCH=${ARCH:-i486}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
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"
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|"<Image>/~jp/diana-holga2c|"<Image>/Filters/Registry Plug-Ins/JP/Diana-Holga2c|g' \
$PKG/usr/share/gimp/2.0/scripts/diana-holga2c.scm
sed -i 's|"<Image>/Filters/Eg"|"<Image>/Filters/Registry Plug-Ins/Eg"|g' \
$PKG/usr/share/gimp/2.0/scripts/Eg-AddFilmGrain.scm
sed -i 's|"<Image>/Filters/Eg"|"<Image>/Filters/Registry Plug-Ins/Eg"|g' \
$PKG/usr/share/gimp/2.0/scripts/Eg-SmartSharpen.scm
sed -i 's|"<Image>/Filters/Photo|"<Image>/Filters/Registry Plug-Ins/Photography|g' \
$PKG/usr/share/gimp/2.0/scripts/exposure-blend-tinyscheme.scm
sed -i 's|"<Image>/Script-Fu/Enhance|"<Image>/Filters/Enhance|g' \
$PKG/usr/share/gimp/2.0/scripts/hdr-eff.scm
sed -i 's|"<Image>/Script-Fu/Enhance|"<Image>/Filters/Enhance|g' \
$PKG/usr/share/gimp/2.0/scripts/hdr-eff-plus.scm
# Apply the same "fix" to the .py files
sed -i 's|"<Toolbox>/Xtns/Batch/|"<Toolbox>/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}

View file

@ -0,0 +1,26 @@
PRGNAM="gimp-registry-plugins"
VERSION="0.0.1"
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://kent.dl.sourceforge.net/sourceforge/cimg/GREYCstoration-2.9.zip \
http://registry.gimp.org/files/Fake%20HDR%20effect%20script-fu-v0.2.zip \
http://registry.gimp.org/files/Eg-SmartSharpen.scm \
http://registry.gimp.org/files/rays-of-light.scm \
http://registry.gimp.org/files/vignette_0.scm"
MD5SUM="e75197932cf1734dd60f0b909b98d23f \
49d42daab1ad5c5d498617acfeeaafb4 \
4a3d5f0612d444305724b6e508845b1c \
50643978b72a8b38b1778d3d067d317c \
67b6bfcadd485ee4669069da52a1e8f5 \
e2693ad32a0b8921d2773f808eeefb88 \
691f0b0362d0a1c2a795fd5342db11de \
a67f238d6af768d16089e9609e674bc8 \
2ba7c7db3143ae95fd10f0d059021faf"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Pierre Cazenave"
EMAIL="pwcazenave <at> gmail {dot} com"
APPROVED="rworkman"

View 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------------------------------------------------------|
gimp-registry-plugins: A selection of scripts from http://registry.gimp.org
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 Sharpen (redux) and Vignette Script.
gimp-registry-plugins:
gimp-registry-plugins: http://registry.gimp.org/
gimp-registry-plugins:
gimp-registry-plugins: