mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
More attempts to fix an elusive missing dependancy.
This commit is contained in:
parent
7bda937f26
commit
b07de78621
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=135568
4 changed files with 54 additions and 6 deletions
|
@ -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
|
||||
|
|
26
graphics/gimp-ufraw/files/patch-Makefile
Normal file
26
graphics/gimp-ufraw/files/patch-Makefile
Normal file
|
@ -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
|
|
@ -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
|
||||
|
|
26
graphics/ufraw/files/patch-Makefile
Normal file
26
graphics/ufraw/files/patch-Makefile
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue