summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
author dsomero <xgizzmo@gmail.com>2010-05-21 19:22:06 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-24 16:07:56 -0500
commitbb7cf37c681c34bb3778d15da09d7f3749a457b3 (patch)
treedecf259287532a240c44bc9d8ed3618a124a92f7 /graphics
parent3979a8a17e9ae96b58139bc625a7b54d7f990644 (diff)
downloadslackbuilds-bb7cf37c681c34bb3778d15da09d7f3749a457b3.tar.gz
slackbuilds-bb7cf37c681c34bb3778d15da09d7f3749a457b3.tar.xz
graphics/rawstudio: Removed (Build failure)
error: invalid conversion from 'const char*' to 'char*'
Diffstat (limited to 'graphics')
-rw-r--r--graphics/rawstudio/README4
-rw-r--r--graphics/rawstudio/doinst.sh4
-rw-r--r--graphics/rawstudio/rawstudio.SlackBuild97
-rw-r--r--graphics/rawstudio/rawstudio.info10
-rw-r--r--graphics/rawstudio/slack-desc19
5 files changed, 0 insertions, 134 deletions
diff --git a/graphics/rawstudio/README b/graphics/rawstudio/README
deleted file mode 100644
index 7b984c7e19..0000000000
--- a/graphics/rawstudio/README
+++ /dev/null
@@ -1,4 +0,0 @@
-Rawstudio is an open-source program to read and manipulate
-RAW images from most digital cameras.
-
-This requires exiv2 and GConf (also available at SlackBuilds.org).
diff --git a/graphics/rawstudio/doinst.sh b/graphics/rawstudio/doinst.sh
deleted file mode 100644
index 65fd352418..0000000000
--- a/graphics/rawstudio/doinst.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1
-fi
-
diff --git a/graphics/rawstudio/rawstudio.SlackBuild b/graphics/rawstudio/rawstudio.SlackBuild
deleted file mode 100644
index f2154f3723..0000000000
--- a/graphics/rawstudio/rawstudio.SlackBuild
+++ /dev/null
@@ -1,97 +0,0 @@
-#!/bin/sh
-
-# Slackware Package Build Script for rawstudio
-# Home Page http://rawstudio.org/
-
-# Copyright (c) 2007-2010, Nishant Limbachia, Hoffman Estates, IL, USA (nishant _AT_ mnspace _DOT_ net)
-# 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 script must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "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 COPYRIGHT OWNER OR
-# 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.
-
-# Modified by Robby Workman <rworkman@slackbuilds.org>
-# No additional license terms :-)
-
-PRGNAM=rawstudio
-VERSION=1.2
-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
- 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"
-fi
-
-set -e # Exit on most errors
-
-rm -fr $TMP/$PRGNAM-$VERSION $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-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 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --localstatedir=/var \
- --mandir=/usr/man \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-### strip binaries
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
- pixmaps/artwork.license $PKG/usr/doc/$PRGNAM-$VERSION
-
-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:-tgz}
diff --git a/graphics/rawstudio/rawstudio.info b/graphics/rawstudio/rawstudio.info
deleted file mode 100644
index beaa5aaff7..0000000000
--- a/graphics/rawstudio/rawstudio.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="rawstudio"
-VERSION="1.2"
-HOMEPAGE="http://rawstudio.org/"
-DOWNLOAD="http://rawstudio.org/files/release/rawstudio-1.2.tar.gz"
-MD5SUM="25399cd80294fa44220a8940fc77689f"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Nishant Limbachia"
-EMAIL="nishant@mnspace.net"
-APPROVED="Erik Hanson"
diff --git a/graphics/rawstudio/slack-desc b/graphics/rawstudio/slack-desc
deleted file mode 100644
index 34bb8c6d32..0000000000
--- a/graphics/rawstudio/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 ':'.
-
- |-----handy-ruler------------------------------------------------------|
-rawstudio: RAWStudio (read and manipulate RAW images)
-rawstudio:
-rawstudio: Rawstudio is an open-source program to read and manipulate
-rawstudio: RAW images from most digital cameras. Rawstudio can convert
-rawstudio: RAW files into JPEG, PNG, or TIF images.
-rawstudio:
-rawstudio: Home Page: http://www.rawstudio.org/
-rawstudio:
-rawstudio:
-rawstudio:
-rawstudio: