mirror of
https://git.freebsd.org/ports.git
synced 2025-05-16 01:01:49 -04:00
/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
55 lines
1.7 KiB
Text
55 lines
1.7 KiB
Text
--- Makefile.orig 2012-08-12 09:23:45 UTC
|
|
+++ Makefile
|
|
@@ -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
|
|
|
|
@@ -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
|
|
|
|
@@ -71,7 +70,7 @@ useruninstall:
|
|
$(GIMPTOOL) --uninstall-bin texture-border
|
|
|
|
beautify: beautify.o beautify-effect.o
|
|
- $(CC) -o $@ $^ $(LIBS)
|
|
+ $(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
|
|
|
|
beautify.o: beautify.c
|
|
$(CC) $(CFLAGS) -c beautify.c -o beautify.o
|
|
@@ -83,7 +82,7 @@ beautify-textures.h: beautify-textures.list
|
|
$(GDK_PIXBUF_CSOURCE) --raw --build-list `cat beautify-textures.list` > $(@F)
|
|
|
|
skin-whitening: skin-whitening.o skin-whitening-effect.o
|
|
- $(CC) -o $@ $^ $(LIBS)
|
|
+ $(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
|
|
|
|
skin-whitening.o: skin-whitening.c skin-whitening-images.h
|
|
$(CC) $(CFLAGS) -c skin-whitening.c -o skin-whitening.o
|
|
@@ -95,7 +94,7 @@ skin-whitening-effect.o: skin-whitening-effect.c skin-
|
|
$(CC) $(CFLAGS) -c skin-whitening-effect.c -o skin-whitening-effect.o
|
|
|
|
simple-border: simple-border.o
|
|
- $(CC) -o $@ $^ $(LIBS)
|
|
+ $(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
|
|
|
|
simple-border.o: simple-border.c simple-border-textures.h
|
|
$(CC) $(CFLAGS) -c simple-border.c -o simple-border.o
|
|
@@ -104,7 +103,7 @@ simple-border-textures.h: simple-border-textures.list
|
|
$(GDK_PIXBUF_CSOURCE) --raw --build-list `cat simple-border-textures.list` > $(@F)
|
|
|
|
border: border.o
|
|
- $(CC) -o $@ $^ $(LIBS)
|
|
+ $(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
|
|
|
|
border.o: border.c border-textures.h
|
|
$(CC) $(CFLAGS) -c border.c -o border.o
|