diff options
author | drochner <drochner> | 2005-01-16 11:52:43 +0000 |
---|---|---|
committer | drochner <drochner> | 2005-01-16 11:52:43 +0000 |
commit | a0cc8f8c8c5189ee7bbf648bef52c9f29a9f30ad (patch) | |
tree | 1b8215ad51df21129cb266371d4005336115eab6 | |
parent | d54c4f51d25bef9c20c328b0801780e23dad7b18 (diff) | |
download | pkgsrc-a0cc8f8c8c5189ee7bbf648bef52c9f29a9f30ad.tar.gz |
commandline version of the GIMP plugin
-rw-r--r-- | graphics/refocus-it/DESCR | 4 | ||||
-rw-r--r-- | graphics/refocus-it/Makefile | 18 | ||||
-rw-r--r-- | graphics/refocus-it/PLIST | 2 | ||||
-rw-r--r-- | graphics/refocus-it/distinfo | 5 | ||||
-rw-r--r-- | graphics/refocus-it/patches/patch-aa | 12 |
5 files changed, 41 insertions, 0 deletions
diff --git a/graphics/refocus-it/DESCR b/graphics/refocus-it/DESCR new file mode 100644 index 00000000000..f8f4422b17c --- /dev/null +++ b/graphics/refocus-it/DESCR @@ -0,0 +1,4 @@ +The Iterative refocus Gimp-2.0 plug-in can be used to sharpen images acquired +by a defocused camera, blurred with gaussian or motion blur or any combination +of these degradations. In cases of severe blur it produces much better +results than plug-ins such as sharpen or unsharp mask. diff --git a/graphics/refocus-it/Makefile b/graphics/refocus-it/Makefile new file mode 100644 index 00000000000..05cf578c229 --- /dev/null +++ b/graphics/refocus-it/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/01/16 11:52:43 drochner Exp $ +# + +DISTNAME= refocus-it-2.0.0 +CATEGORIES= graphics +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=refocus-it/} + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://refocus-it.sourceforge.net/ +COMMENT= Refocus images + +USE_BUILDLINK3= yes +GNU_CONFIGURE= yes +#just build the command line tool +CONFIGURE_ARGS+= --without-gimp + +.include "../../devel/gettext-lib/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/graphics/refocus-it/PLIST b/graphics/refocus-it/PLIST new file mode 100644 index 00000000000..eb3fe39ac34 --- /dev/null +++ b/graphics/refocus-it/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/01/16 11:52:43 drochner Exp $ +bin/refocus-it diff --git a/graphics/refocus-it/distinfo b/graphics/refocus-it/distinfo new file mode 100644 index 00000000000..c62e860c7fa --- /dev/null +++ b/graphics/refocus-it/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/01/16 11:52:43 drochner Exp $ + +SHA1 (refocus-it-2.0.0.tar.gz) = 746adb97da84cde10d9f8cd1925652164306dd95 +Size (refocus-it-2.0.0.tar.gz) = 249425 bytes +SHA1 (patch-aa) = 60e48f3f2d1b0886ed79ff140cbc268768470c1a diff --git a/graphics/refocus-it/patches/patch-aa b/graphics/refocus-it/patches/patch-aa new file mode 100644 index 00000000000..dde1c146991 --- /dev/null +++ b/graphics/refocus-it/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/01/16 11:52:44 drochner Exp $ + +--- cmd-line/main-cmd.c.orig 2005-01-14 23:08:31.000000000 +0100 ++++ cmd-line/main-cmd.c +@@ -24,6 +24,7 @@ + #include <stdlib.h> + #include <string.h> + #include <time.h> ++#include <locale.h> + #include "compiler.h" + #include "xmalloc.h" + #include "hopfield.h" |