graphics/ufraw: Updated for version 0.17.

This commit is contained in:
Nishant Limbachia 2010-04-17 15:39:08 -05:00 committed by Erik Hanson
parent bcffb60063
commit 7e8a016108
4 changed files with 19 additions and 23 deletions

View File

@ -3,11 +3,12 @@ raw images from digital cameras. It supports most of the existing raw
formats (any format supported by DCRaw). UFRaw can be used on its own or
as a Gimp plug-in.
UFRaw requires dcraw and gtkimageview; lensfun is an optional dependency
(run the build script with LENSFUN=yes if you have it installed).
UFRaw depends on dcraw, which is also available at SlackBuilds.org.
However, you can add "--enable-extras" to the configure arguments in the
build script to use the included dcraw. You'll need gtkimageview if you
want to include the image preview window. You can build ufraw without
gtkimageview (run the build script with GTK=no), but you'll only have command
line interface to UFRaw.
build script to use the included dcraw.
UFRaw requires gtkimageview to include the image preview window. You can build
it without gtkimageview (run with GTK=no) but you'll only have command line
interface to UFRaw.
Lensfun library is now autodetected.

View File

@ -6,7 +6,7 @@
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
ufraw: Unindentified Flying RAW (UFRaw)
ufraw: ufraw (Unindentified Flying RAW)
ufraw:
ufraw: ufraw is a utility to read and manipulate raw images from
ufraw: digital cameras. It can be used on its own or as a Gimp plug-in.

View File

@ -3,7 +3,7 @@
# Slackware Package Build Script for UFRaw (Unidentified Flying Raw)
# Home Page http://ufraw.sourceforge.net/
# Copyright (c) 2007-2009, Nishant Limbachia, Hoffman Est, IL, USA (nishant@mnspace.net)
# Copyright (c) 2007-2010, Nishant Limbachia, Hoffman Estates, IL, USA (nishant _AT_ mnspace _DOT_ net)
# Copyright (c) 2007, Robby Workman <rworkman@slackbuilds.org>
# All rights reserved.
#
@ -26,7 +26,7 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=ufraw
VERSION=0.16
VERSION=0.17
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -35,12 +35,6 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "${LENSFUN:-no}" = "no" ]; then
lensfun_option="--without-lensfun"
else
lensfun_option="--with-lensfun"
fi
if [ "${GTK:-yes}" = "yes" ]; then
gtk_option="--with-gtk"
else
@ -82,15 +76,16 @@ CXXFLAGS="$SLKCFLAGS" \
--mandir=/usr/man \
--enable-mime \
--build=$ARCH-slackware-linux \
$lensfun_option \
$gtk_option
make
make install DESTDIR=$PKG
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
xargs strip --strip-unneeded 2> /dev/null || true
)
# Compress man pages

View File

@ -1,10 +1,10 @@
PRGNAM="ufraw"
VERSION="0.16"
VERSION="0.17"
HOMEPAGE="http://ufraw.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/project/ufraw/ufraw/ufraw-0.16/ufraw-0.16.tar.gz"
MD5SUM="61e100e42f17e3a7fcfae64506eebd14"
DOWNLOAD="http://downloads.sourceforge.net/project/ufraw/ufraw/ufraw-0.17/ufraw-0.17.tar.gz"
MD5SUM="5e2c2b4adaea1f6d03eac66e11747fc6"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Nishant Limbachia"
EMAIL="nishant@mnspace.net"
APPROVED="rworkman"
APPROVED="Erik Hanson"