Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 May 2019 05:51:42 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501156 - head/graphics/gimp-beautify-plugin/files
Message-ID:  <201905100551.x4A5pgex043918@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Fri May 10 05:51:42 2019
New Revision: 501156
URL: https://svnweb.freebsd.org/changeset/ports/501156

Log:
  graphics/gimp-beautify-plugin: Unbreak build after r501005
  
  /bin/sh: /usr/local/bin//usr/local/bin/gimptool-2.0: not found
  beautify.c:18:10: fatal error: libgimp/gimp.h: No such file or directory
   #include <libgimp/gimp.h>
            ^~~~~~~~~~~~~~~~
  
  http://beefy6.nyi.freebsd.org/data/120amd64-default/501065/logs/errors/gimp-beautify-plugin-2012.08.12.00_8.log

Modified:
  head/graphics/gimp-beautify-plugin/files/patch-Makefile

Modified: head/graphics/gimp-beautify-plugin/files/patch-Makefile
==============================================================================
--- head/graphics/gimp-beautify-plugin/files/patch-Makefile	Fri May 10 05:50:49 2019	(r501155)
+++ head/graphics/gimp-beautify-plugin/files/patch-Makefile	Fri May 10 05:51:42 2019	(r501156)
@@ -1,25 +1,21 @@
 --- Makefile.orig	2012-08-12 09:23:45 UTC
 +++ Makefile
-@@ -13,17 +13,16 @@
+@@ -13,7 +13,6 @@
  # You should have received a copy of the GNU General Public License
  # along with this program.  If not, see <http://www.gnu.org/licenses/>.
  
 -CC = gcc
  
--GIMPTOOL = gimptool-2.0
-+GIMPTOOL = /usr/local/bin/gimptool-2.0
+ GIMPTOOL = gimptool-2.0
  
- GIMP_LIBS = `$(GIMPTOOL) --libs`
+@@ -21,7 +20,7 @@ GIMP_LIBS = `$(GIMPTOOL) --libs`
  GIMP_CFLAGS = `$(GIMPTOOL) --cflags`
  
  LIBS = $(GIMP_LIBS) -lm
 -CFLAGS = $(GIMP_CFLAGS)
 +CFLAGS += $(GIMP_CFLAGS)
  
--GDK_PIXBUF_CSOURCE = gdk-pixbuf-csource
-+GDK_PIXBUF_CSOURCE = /usr/local/bin/gdk-pixbuf-csource
- 
- all: beautify skin-whitening simple-border border
+ GDK_PIXBUF_CSOURCE = gdk-pixbuf-csource
  
 @@ -71,7 +70,7 @@ useruninstall:
  	$(GIMPTOOL) --uninstall-bin texture-border



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905100551.x4A5pgex043918>