summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
author Dave Woodfall2021-12-11 20:41:08 +0100
committer Willy Sudiarto Raharjo2021-12-13 18:01:10 +0100
commit6b993def166faac9c3d48c38d30b98016b0f85ec (patch)
treedf008bc1c9ad2e6c28175f857b3e678586ae286f /graphics
parente58f73d3b5db98888cf7780aa7472f8c68d0a0ae (diff)
downloadslackbuilds-6b993def166faac9c3d48c38d30b98016b0f85ec.tar.gz
graphics/Alchemy: removed.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r--graphics/Alchemy/Alchemy.SlackBuild97
-rw-r--r--graphics/Alchemy/Alchemy.info10
-rw-r--r--graphics/Alchemy/README5
-rw-r--r--graphics/Alchemy/doinst.sh9
-rw-r--r--graphics/Alchemy/files/Alchemy.desktop10
-rw-r--r--graphics/Alchemy/files/alchemy9
-rw-r--r--graphics/Alchemy/files/alchemy-logo64.pngbin5133 -> 0 bytes
-rw-r--r--graphics/Alchemy/files/alchemyOpenGL9
-rw-r--r--graphics/Alchemy/slack-desc19
9 files changed, 0 insertions, 168 deletions
diff --git a/graphics/Alchemy/Alchemy.SlackBuild b/graphics/Alchemy/Alchemy.SlackBuild
deleted file mode 100644
index 9743c6254f..0000000000
--- a/graphics/Alchemy/Alchemy.SlackBuild
+++ /dev/null
@@ -1,97 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for Alchemy
-
-# Copyright 2012 Giorgio Peron Campodarsego, PD, Italy giorgio.peron@gmail.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.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=Alchemy
-VERSION=${VERSION:-008}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-ARCH=${ARCH:-$(uname -m)}
-case "$ARCH" in
- i?86) SRCSUFFIX=""
- LIBDIRSUFFIX=""
- ;;
- x86_64) SRCSUFFIX="-x86_64"
- LIBDIRSUFFIX="64"
- ;;
- *) echo "$ARCH is not supported"
- exit 1
- ;;
-esac
-
-# 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}
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM
-tar xvf $CWD/Alchemy-$VERSION.tar.gz
-cd $PRGNAM
-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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-mkdir -p $PKG/usr/share/$PRGNAM
-cp -r {modules,shapes} $PKG/usr/share/$PRGNAM
-cp {Alchemy,Alchemy.jar,AlchemyOpenGL} $PKG/usr/share/$PRGNAM
-mkdir -p $PKG/usr/lib$LIBDIRSUFFIX
-cp lib/libjpen-2-2$SRCSUFFIX.so $PKG/usr/lib$LIBDIRSUFFIX/
-mkdir -p $PKG/usr/bin
-cp $CWD/files/{alchemy,alchemyOpenGL} $PKG/usr/bin
-chmod +x $PKG/usr/bin/*
-
-# Add a desktop menu entry
-mkdir -p $PKG/usr/share/applications
-cat $CWD/files/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
-mkdir -p $PKG/usr/share/icons/hicolor/64x64/apps
-cat $CWD/files/alchemy-logo64.png > $PKG/usr/share/icons/hicolor/64x64/apps/alchemy.png
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a COPYING Alchemy.pdf ReadMe.txt $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/graphics/Alchemy/Alchemy.info b/graphics/Alchemy/Alchemy.info
deleted file mode 100644
index fd5725fe43..0000000000
--- a/graphics/Alchemy/Alchemy.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="Alchemy"
-VERSION="008"
-HOMEPAGE="http://al.chemy.org/"
-DOWNLOAD="http://al.chemy.org/files/Alchemy-008.tar.gz"
-MD5SUM="c900de439c3c2faf9abe17b6f6a55720"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="jdk"
-MAINTAINER="Giorgio Peron"
-EMAIL="giorgio.peron@gmail.com"
diff --git a/graphics/Alchemy/README b/graphics/Alchemy/README
deleted file mode 100644
index 21e2d26695..0000000000
--- a/graphics/Alchemy/README
+++ /dev/null
@@ -1,5 +0,0 @@
-Alchemy is an open drawing project aimed at exploring how we can sketch, draw,
-and create on computers in new ways. Alchemy isn't software for creating
-finished artwork, but rather a sketching environment that focuses on the
-absolute initial stage of the creation process.
-
diff --git a/graphics/Alchemy/doinst.sh b/graphics/Alchemy/doinst.sh
deleted file mode 100644
index 65c7e2eeb9..0000000000
--- a/graphics/Alchemy/doinst.sh
+++ /dev/null
@@ -1,9 +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
diff --git a/graphics/Alchemy/files/Alchemy.desktop b/graphics/Alchemy/files/Alchemy.desktop
deleted file mode 100644
index c03e0a6471..0000000000
--- a/graphics/Alchemy/files/Alchemy.desktop
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Terminal=false
-Icon=alchemy
-Type=Application
-Categories=Graphics;
-TryExec=alchemy
-Exec=alchemy
-Name=Alchemy
-Comment=Sketching tool
diff --git a/graphics/Alchemy/files/alchemy b/graphics/Alchemy/files/alchemy
deleted file mode 100644
index bdd1b87328..0000000000
--- a/graphics/Alchemy/files/alchemy
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-#cd `dirname $0`
-cd /usr/share/Alchemy
-if [ -n "$JAVA_HOME" ]; then
- $JAVA_HOME/bin/java -jar ./Alchemy.jar $*
-else
- java -jar ./Alchemy.jar $*
-fi
-cd $OLDPWD
diff --git a/graphics/Alchemy/files/alchemy-logo64.png b/graphics/Alchemy/files/alchemy-logo64.png
deleted file mode 100644
index 335b7be7de..0000000000
--- a/graphics/Alchemy/files/alchemy-logo64.png
+++ /dev/null
Binary files differ
diff --git a/graphics/Alchemy/files/alchemyOpenGL b/graphics/Alchemy/files/alchemyOpenGL
deleted file mode 100644
index b9f354a5f9..0000000000
--- a/graphics/Alchemy/files/alchemyOpenGL
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-#cd `dirname $0`
-cd /usr/share/Alchemy
-if [ -n "$JAVA_HOME" ]; then
- $JAVA_HOME/bin/java -client -Xmx256m -Dsun.java2d.opengl=true -jar ./Alchemy.jar $*
-else
- java -client -Xmx256m -Dsun.java2d.opengl=true -jar ./Alchemy.jar $*
-fi
-cd $OLDPWD
diff --git a/graphics/Alchemy/slack-desc b/graphics/Alchemy/slack-desc
deleted file mode 100644
index 8661411649..0000000000
--- a/graphics/Alchemy/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------------------------------------------------------|
-Alchemy: Alchemy (sketching environment)
-Alchemy:
-Alchemy: Alchemy is an open drawing project aimed at exploring how we can
-Alchemy: sketch, draw, and create on computers in new ways. Alchemy isn't
-Alchemy: software for creating finished artwork, but rather a sketching
-Alchemy: environment that focuses on the absolute initial stage of the
-Alchemy: creation process.
-Alchemy:
-Alchemy: Homepage: http://al.chemy.org/
-Alchemy:
-Alchemy: