diff options
author | markm <markm@FreeBSD.org> | 2005-05-19 02:33:56 +0800 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2005-05-19 02:33:56 +0800 |
commit | 71b45e6221971212721c2ae40e41e8b09ba38fc3 (patch) | |
tree | e3bfc0973468b33eb58b000c07d271f67507f0f4 /graphics | |
parent | e9fb51fd62768c5bf402f40f410a3616e6d42fd7 (diff) | |
download | freebsd-ports-gnome-71b45e6221971212721c2ae40e41e8b09ba38fc3.tar.gz freebsd-ports-gnome-71b45e6221971212721c2ae40e41e8b09ba38fc3.tar.zst freebsd-ports-gnome-71b45e6221971212721c2ae40e41e8b09ba38fc3.zip |
More attempts to fix an elusive missing dependancy.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gimp-ufraw/Makefile | 4 | ||||
-rw-r--r-- | graphics/gimp-ufraw/files/patch-Makefile | 26 | ||||
-rw-r--r-- | graphics/ufraw/Makefile | 4 | ||||
-rw-r--r-- | graphics/ufraw/files/patch-Makefile | 26 |
4 files changed, 54 insertions, 6 deletions
diff --git a/graphics/gimp-ufraw/Makefile b/graphics/gimp-ufraw/Makefile index fd64c71d8ae6..dcabb8a0f1ba 100644 --- a/graphics/gimp-ufraw/Makefile +++ b/graphics/gimp-ufraw/Makefile @@ -17,11 +17,9 @@ RUN_DEPENDS= gimp:${PORTSDIR}/graphics/gimp LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ tiff.4:${PORTSDIR}/graphics/tiff -BROKEN= Missing dependency - USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= gnomehack intltool intlhack gtk20 libartlgpl2 +USE_GNOME= glib20 gnomehack intltool intlhack gtk20 libartlgpl2 WANT_GNOME= yes ALL_TARGET= build INSTALL_TARGET= install-admin diff --git a/graphics/gimp-ufraw/files/patch-Makefile b/graphics/gimp-ufraw/files/patch-Makefile new file mode 100644 index 000000000000..9a5f5a0deadc --- /dev/null +++ b/graphics/gimp-ufraw/files/patch-Makefile @@ -0,0 +1,26 @@ +--- ./Makefile.orig Tue Apr 19 23:53:14 2005 ++++ ./Makefile Tue Apr 19 23:56:49 2005 +@@ -17,7 +17,7 @@ + OBJECTS := $(filter-out dcraw.o,$(OBJECTS)) + endif + CC = gcc +-CFLAGS += -std=gnu99 -DUFRAW_VERSION='"$(VER)"' ++CFLAGS += -std=gnu99 -DUFRAW_VERSION='"$(VER)"' -I/usr/local/include + # To check that deprecated features are not used: + #CFLAGS += -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED + LDFLAGS += -llcms +@@ -91,12 +91,12 @@ + ifdef UFRAW_NO_JPEG + CFLAGS += -DNO_JPEG + else +- LDFLAGS += -ljpeg ++ LDFLAGS += -L/usr/local/lib -ljpeg + endif + ifdef UFRAW_NO_TIFF + CFLAGS += -DNO_TIFF + else +- LDFLAGS += -ltiff ++ LDFLAGS += -L/usr/local/lib -ltiff + endif + ifdef UFRAW_NO_ZLIB + CFLAGS += -DNO_ZLIB diff --git a/graphics/ufraw/Makefile b/graphics/ufraw/Makefile index fd64c71d8ae6..dcabb8a0f1ba 100644 --- a/graphics/ufraw/Makefile +++ b/graphics/ufraw/Makefile @@ -17,11 +17,9 @@ RUN_DEPENDS= gimp:${PORTSDIR}/graphics/gimp LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ tiff.4:${PORTSDIR}/graphics/tiff -BROKEN= Missing dependency - USE_X_PREFIX= yes USE_GMAKE= yes -USE_GNOME= gnomehack intltool intlhack gtk20 libartlgpl2 +USE_GNOME= glib20 gnomehack intltool intlhack gtk20 libartlgpl2 WANT_GNOME= yes ALL_TARGET= build INSTALL_TARGET= install-admin diff --git a/graphics/ufraw/files/patch-Makefile b/graphics/ufraw/files/patch-Makefile new file mode 100644 index 000000000000..9a5f5a0deadc --- /dev/null +++ b/graphics/ufraw/files/patch-Makefile @@ -0,0 +1,26 @@ +--- ./Makefile.orig Tue Apr 19 23:53:14 2005 ++++ ./Makefile Tue Apr 19 23:56:49 2005 +@@ -17,7 +17,7 @@ + OBJECTS := $(filter-out dcraw.o,$(OBJECTS)) + endif + CC = gcc +-CFLAGS += -std=gnu99 -DUFRAW_VERSION='"$(VER)"' ++CFLAGS += -std=gnu99 -DUFRAW_VERSION='"$(VER)"' -I/usr/local/include + # To check that deprecated features are not used: + #CFLAGS += -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED + LDFLAGS += -llcms +@@ -91,12 +91,12 @@ + ifdef UFRAW_NO_JPEG + CFLAGS += -DNO_JPEG + else +- LDFLAGS += -ljpeg ++ LDFLAGS += -L/usr/local/lib -ljpeg + endif + ifdef UFRAW_NO_TIFF + CFLAGS += -DNO_TIFF + else +- LDFLAGS += -ltiff ++ LDFLAGS += -L/usr/local/lib -ltiff + endif + ifdef UFRAW_NO_ZLIB + CFLAGS += -DNO_ZLIB |