From owner-svn-ports-head@FreeBSD.ORG Thu Feb 28 16:22:31 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EB3802C6; Thu, 28 Feb 2013 16:22:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id CD089F26; Thu, 28 Feb 2013 16:22:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1SGMVwI059004; Thu, 28 Feb 2013 16:22:31 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1SGMV0H058997; Thu, 28 Feb 2013 16:22:31 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201302281622.r1SGMV0H058997@svn.freebsd.org> From: Dmitry Marakasov Date: Thu, 28 Feb 2013 16:22:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313102 - head/graphics/gimp-resynthesizer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Feb 2013 16:22:32 -0000 Author: amdmi3 Date: Thu Feb 28 16:22:30 2013 New Revision: 313102 URL: http://svnweb.freebsd.org/changeset/ports/313102 Log: - Update to 2.0 Added: head/graphics/gimp-resynthesizer/pkg-plist (contents, props changed) Modified: head/graphics/gimp-resynthesizer/Makefile head/graphics/gimp-resynthesizer/distinfo head/graphics/gimp-resynthesizer/pkg-message Modified: head/graphics/gimp-resynthesizer/Makefile ============================================================================== --- head/graphics/gimp-resynthesizer/Makefile Thu Feb 28 16:17:07 2013 (r313101) +++ head/graphics/gimp-resynthesizer/Makefile Thu Feb 28 16:22:30 2013 (r313102) @@ -1,42 +1,42 @@ -# New ports collection makefile for: resynthesizer -# Date created: 05 May 2010 -# Whom: Dmitry Marakasov -# +# Created by: Dmitry Marakasov # $FreeBSD$ -# PORTNAME= resynthesizer -PORTVERSION= 0.16 -PORTREVISION= 2 +PORTVERSION= 2.0 CATEGORIES= graphics -MASTER_SITES= http://www.logarithmic.net/pfh-files/resynthesizer/ \ - http://mirror.amdmi3.ru/distfiles/ PKGNAMEPREFIX= gimp- MAINTAINER= amdmi3@FreeBSD.org COMMENT= Gimp plug-in for texture synthesis +RUN_DEPENDS= ${LOCALBASE}/libexec/gimp/2.2/python/gimpfu.py:${PORTSDIR}/graphics/py-gimp +BUILD_DEPENDS= intltool-extract:${PORTSDIR}/textproc/intltool LIB_DEPENDS= gimp-2.0:${PORTSDIR}/graphics/gimp-app -GIMPTOOL?= gimptool-2.0 -PLUGINS_DIR?= libexec/gimp/2.2/plug-ins -SCRIPTS_DIR?= share/gimp/scripts +USE_GITHUB= yes +GH_ACCOUNT= bootchk +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 28cade5 +GNU_CONFIGURE= yes +CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -lintl" USE_GETTEXT= yes MAKE_JOBS_SAFE= yes -PLIST_FILES= ${PLUGINS_DIR}/resynth \ - ${SCRIPTS_DIR}/smart-enlarge.scm \ - ${SCRIPTS_DIR}/smart-remove.scm - -do-build: - cd ${WRKSRC} && ${CXX} ${CXXFLAGS} \ - `${GIMPTOOL} --cflags --libs` -o resynth resynth.cc - -do-install: - ${MKDIR} ${PREFIX}/${PLUGINS_DIR} ${PREFIX}/${SCRIPTS_DIR} - ${INSTALL_PROGRAM} ${WRKSRC}/resynth ${PREFIX}/${PLUGINS_DIR} - ${INSTALL_DATA} ${WRKSRC}/smart-enlarge.scm \ - ${WRKSRC}/smart-remove.scm ${PREFIX}/${SCRIPTS_DIR} +USE_AUTOTOOLS= aclocal automake +USE_GMAKE= yes + +OPTIONS_DEFINE= THREADS +THREADS_DESC= Threading support (produces nondeterministic results) + +.include + +post-patch: + @${REINPLACE_CMD} -e 's|^\(gimpplugindir=\).*|\1"$$GIMP_LIBDIR"|' \ + ${WRKSRC}/configure +.if ! ${PORT_OPTIONS:MTHREADS} + @${REINPLACE_CMD} -e '/^#define SYNTH_THREADED/ d' \ + ${WRKSRC}/src/buildSwitches.h +.endif post-install: @${ECHO_CMD} Modified: head/graphics/gimp-resynthesizer/distinfo ============================================================================== --- head/graphics/gimp-resynthesizer/distinfo Thu Feb 28 16:17:07 2013 (r313101) +++ head/graphics/gimp-resynthesizer/distinfo Thu Feb 28 16:22:30 2013 (r313102) @@ -1,2 +1,2 @@ -SHA256 (resynthesizer-0.16.tar.gz) = dd24ec89f3a36f867b733c6a5c1d193b6d603251bd6553ac54b573fd655020cd -SIZE (resynthesizer-0.16.tar.gz) = 18241 +SHA256 (resynthesizer-2.0.tar.gz) = ce019c07422888b12596abd292f9f954b8495aca1d113cb6c7d5d207e594119b +SIZE (resynthesizer-2.0.tar.gz) = 11168594 Modified: head/graphics/gimp-resynthesizer/pkg-message ============================================================================== --- head/graphics/gimp-resynthesizer/pkg-message Thu Feb 28 16:17:07 2013 (r313101) +++ head/graphics/gimp-resynthesizer/pkg-message Thu Feb 28 16:22:30 2013 (r313102) @@ -1,7 +1,12 @@ -After restarting the Gimp you should find the following items in -the pop-up image menu: +After restarting the Gimp you should find the following new items +in the menu: + * Edit/Fill with pattern seamless + * Filters/Enhance/Enlarge & sharpen + * Filters/Enhance/Heal selection + * Filters/Enhance/Heal transparency + * Filters/Enhance/Sharpen by synthesis + * Filters/Enhance/Uncrop * Filters/Map/Resynthesize - * Filters/Enhance/Smart enlarge - * Filters/Enhance/Smart sharpen - * Filters/Enhance/Smart remove selection + * Filters/Map/Style + * Filters/Render/Texture Added: head/graphics/gimp-resynthesizer/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gimp-resynthesizer/pkg-plist Thu Feb 28 16:22:30 2013 (r313102) @@ -0,0 +1,18 @@ +libexec/gimp/2.2/plug-ins/plugin-heal-selection.py +libexec/gimp/2.2/plug-ins/plugin-heal-transparency.py +libexec/gimp/2.2/plug-ins/plugin-map-style.py +libexec/gimp/2.2/plug-ins/plugin-render-texture.py +libexec/gimp/2.2/plug-ins/plugin-resynth-enlarge.py +libexec/gimp/2.2/plug-ins/plugin-resynth-fill-pattern.py +libexec/gimp/2.2/plug-ins/plugin-resynth-sharpen.py +libexec/gimp/2.2/plug-ins/plugin-uncrop.py +libexec/gimp/2.2/plug-ins/resynthesizer +libexec/gimp/2.2/plug-ins/resynthesizer_gui +share/locale/es/LC_MESSAGES/resynthesizer.mo +%%DATADIR%%/help/en/gimp-help.xml +%%DATADIR%%/help/en/index.html +%%DATADIR%%/help/images/wilber.png +@dirrm %%DATADIR%%/help/images +@dirrm %%DATADIR%%/help/en +@dirrm %%DATADIR%%/help +@dirrm %%DATADIR%%