diff options
author | markm <markm@FreeBSD.org> | 2005-04-10 23:28:18 +0800 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2005-04-10 23:28:18 +0800 |
commit | 11a31ce5ff4506acd0ad0e289920df3519c8549e (patch) | |
tree | 2d0e9b9bfac7947474678ef9f29a65172c3717c8 /graphics/gimp-ufraw | |
parent | ae045344b0660e80573bd31a5e6b79894cb69529 (diff) | |
download | freebsd-ports-gnome-11a31ce5ff4506acd0ad0e289920df3519c8549e.tar.gz freebsd-ports-gnome-11a31ce5ff4506acd0ad0e289920df3519c8549e.tar.zst freebsd-ports-gnome-11a31ce5ff4506acd0ad0e289920df3519c8549e.zip |
Add UFRaw, a plugin for Gimp to read "posh" digital cameras' raw
image files.
Diffstat (limited to 'graphics/gimp-ufraw')
-rw-r--r-- | graphics/gimp-ufraw/Makefile | 25 | ||||
-rw-r--r-- | graphics/gimp-ufraw/distinfo | 2 | ||||
-rw-r--r-- | graphics/gimp-ufraw/files/patch-ufraw__ufraw.c | 11 | ||||
-rw-r--r-- | graphics/gimp-ufraw/pkg-descr | 17 | ||||
-rw-r--r-- | graphics/gimp-ufraw/pkg-plist | 2 |
5 files changed, 57 insertions, 0 deletions
diff --git a/graphics/gimp-ufraw/Makefile b/graphics/gimp-ufraw/Makefile new file mode 100644 index 000000000000..7ead4e15eaed --- /dev/null +++ b/graphics/gimp-ufraw/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: UFRaw gimp plugin +# Date created: Sun 10 Apr 2005 14:44:15 BST +# Whom: markm@FreeBSD.org +# +# $FreeBSD$ + +PORTNAME= ufraw +PORTVERSION= 0.4 +CATEGORIES= graphics gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ufraw + +MAINTAINER= markm@FreeBSD.org +COMMENT= GIMP plug-in for raw digital camera image importing + +RUN_DEPENDS= gimp:${PORTSDIR}/graphics/gimp +LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ + tiff.4:${PORTSDIR}/graphics/tiff + +USE_X_PREFIX= yes +USE_GMAKE= yes +ALL_TARGET= build +INSTALL_TARGET= install-admin + +.include <bsd.port.mk> diff --git a/graphics/gimp-ufraw/distinfo b/graphics/gimp-ufraw/distinfo new file mode 100644 index 000000000000..03205c5cf177 --- /dev/null +++ b/graphics/gimp-ufraw/distinfo @@ -0,0 +1,2 @@ +MD5 (ufraw-0.4.tar.gz) = c66a2498b3fb74eef6f3b7ce5477d44a +SIZE (ufraw-0.4.tar.gz) = 101409 diff --git a/graphics/gimp-ufraw/files/patch-ufraw__ufraw.c b/graphics/gimp-ufraw/files/patch-ufraw__ufraw.c new file mode 100644 index 000000000000..a5e6eb1b13f7 --- /dev/null +++ b/graphics/gimp-ufraw/files/patch-ufraw__ufraw.c @@ -0,0 +1,11 @@ +--- ./ufraw_ufraw.c.orig Sun Apr 10 15:19:43 2005 ++++ ./ufraw_ufraw.c Sun Apr 10 15:20:06 2005 +@@ -123,7 +123,7 @@ + for (i=0; i<cfg->curveCount; i++) + cfg->curve[i].black = cfg_default.curve[0].black; + } +- if (cfg->exposureLoad==load_auto) cfg->exposure = nan(""); ++ if (cfg->exposureLoad==load_auto) cfg->exposure = __builtin_nanf(""); + + if (image==NULL) return UFRAW_SUCCESS; + diff --git a/graphics/gimp-ufraw/pkg-descr b/graphics/gimp-ufraw/pkg-descr new file mode 100644 index 000000000000..9a69aab7452e --- /dev/null +++ b/graphics/gimp-ufraw/pkg-descr @@ -0,0 +1,17 @@ +UFRaw - Unidentified Flying Raw +Raw photo loader plugin for The GIMP +by udi Fuchs, + +UFRaw is a utility to read and manipulate raw images from digital cameras. +It can be used by itself or as a Gimp plug-in. +It reads raw images using Dave Coffin's raw conversion utility DCRaw. +And it supports basic color management using Little CMS, allowing +the user to apply color profiles. + +Ufraw was originally based on the gimp plug-in by Dave Coffin +http://www.cybercom.net/~dcoffin/ +and on Pawel T. Jochym's (jochym at ifj edu pl) plug-in. + +UFRaw is licensed under the GNU General Public License. + +WWW: http://www.aei.mpg.de/~udif/ufraw/ diff --git a/graphics/gimp-ufraw/pkg-plist b/graphics/gimp-ufraw/pkg-plist new file mode 100644 index 000000000000..d442c57bee0d --- /dev/null +++ b/graphics/gimp-ufraw/pkg-plist @@ -0,0 +1,2 @@ +bin/ufraw +libexec/gimp/2.2/plug-ins/ufraw-gimp |