From owner-svn-ports-all@FreeBSD.ORG Thu Apr 10 23:07:41 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3DF48D9E; Thu, 10 Apr 2014 23:07:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A0C7106F; Thu, 10 Apr 2014 23:07:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3AN7fTU088870; Thu, 10 Apr 2014 23:07:41 GMT (envelope-from lioux@svn.freebsd.org) Received: (from lioux@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3AN7eII088866; Thu, 10 Apr 2014 23:07:40 GMT (envelope-from lioux@svn.freebsd.org) Message-Id: <201404102307.s3AN7eII088866@svn.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 10 Apr 2014 23:07:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350864 - in head/graphics: . gimp-jagged-border-script X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Apr 2014 23:07:41 -0000 Author: lioux Date: Thu Apr 10 23:07:40 2014 New Revision: 350864 URL: http://svnweb.freebsd.org/changeset/ports/350864 QAT: https://qat.redports.org/buildarchive/r350864/ Log: New port jagged-border: GIMP script to create a jagged border around an image Approved by: eadler (mentor) Added: head/graphics/gimp-jagged-border-script/ head/graphics/gimp-jagged-border-script/Makefile (contents, props changed) head/graphics/gimp-jagged-border-script/distinfo (contents, props changed) head/graphics/gimp-jagged-border-script/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Apr 10 22:10:10 2014 (r350863) +++ head/graphics/Makefile Thu Apr 10 23:07:40 2014 (r350864) @@ -270,6 +270,7 @@ SUBDIR += gimp-gap SUBDIR += gimp-gmic-plugin SUBDIR += gimp-help + SUBDIR += gimp-jagged-border-script SUBDIR += gimp-lensfun-plugin SUBDIR += gimp-lqr-plugin SUBDIR += gimp-manual-html Added: head/graphics/gimp-jagged-border-script/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gimp-jagged-border-script/Makefile Thu Apr 10 23:07:40 2014 (r350864) @@ -0,0 +1,40 @@ +# Created by: Mario Sergio Fujikawa Ferreira +# $FreeBSD$ + +PORTNAME= jagged-border +PORTVERSION= 0.2009.11.12 +CATEGORIES= graphics +MASTER_SITES= http://registry.gimp.org/files/ +PKGNAMEPREFIX= gimp- +PKGNAMESUFFIX= -scripts +DISTNAME= script-fu-jagged-border.scm +EXTRACT_SUFX= +EXTRACT_ONLY= + +MAINTAINER= lioux@FreeBSD.org +COMMENT= GIMP script to create a jagged border around an image + +LICENSE= GPLv3 + +RUN_DEPENDS= ${LOCALBASE}/bin/gimp:${PORTSDIR}/graphics/gimp-app + +USES= dos2unix +NO_BUILD= yes +NO_WRKSUBDIR= yes + +GIMP_SCRIPTS_DIR?= share/gimp/scripts + +PLIST_FILES= ${GIMP_SCRIPTS_DIR}/${DISTNAME} + +# installed dirs +PLIST_DIRSTRY= ${GIMP_SCRIPTS_DIR} \ + share/gimp + +post-extract: + @${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC} + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${GIMP_SCRIPTS_DIR} + ${INSTALL_DATA} ${WRKDIR}/${DISTNAME} ${STAGEDIR}${PREFIX}/${GIMP_SCRIPTS_DIR}/ + +.include Added: head/graphics/gimp-jagged-border-script/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gimp-jagged-border-script/distinfo Thu Apr 10 23:07:40 2014 (r350864) @@ -0,0 +1,2 @@ +SHA256 (script-fu-jagged-border.scm) = 600006eea19d4c7ef62de402732c876152f009bfab221d8092004d19bd8f8d84 +SIZE (script-fu-jagged-border.scm) = 9125 Added: head/graphics/gimp-jagged-border-script/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gimp-jagged-border-script/pkg-descr Thu Apr 10 23:07:40 2014 (r350864) @@ -0,0 +1,13 @@ +[ edited excerpt from www site ] + +GIMP plugin that creates a white (or black) border around an image +that merges in with the image so that on a larger white (or black) +background, the image appears to have a ragged border. + +This is similar to the GIMP's Fuzzy Border, but it adapts its +jaggedness to the image. (Also unlike Fuzzy Border, it is deterministic, +it does not depend on random number seeds.) + +The plugin can be found under "Filters > theilr > jagged Border" + +WWW: http://registry.gimp.org/node/20292