diff options
author | pav <pav@FreeBSD.org> | 2007-01-11 02:02:49 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-01-11 02:02:49 +0800 |
commit | 353d77945d4f9165c5c9b04339c565aad26c7280 (patch) | |
tree | 7e2f83a3a5f4aeb7e6a3f89a79dcf25f08d0ff82 /graphics | |
parent | 4fb4c06781a05da5d369ea970dc37fad9a5383da (diff) | |
download | freebsd-ports-gnome-353d77945d4f9165c5c9b04339c565aad26c7280.tar.gz freebsd-ports-gnome-353d77945d4f9165c5c9b04339c565aad26c7280.tar.zst freebsd-ports-gnome-353d77945d4f9165c5c9b04339c565aad26c7280.zip |
- Mark BROKEN on FreeBSD 4
Reported by: krismail
- Add missing USE_LDCONFIG
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libiptcdata/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/graphics/libiptcdata/Makefile b/graphics/libiptcdata/Makefile index b0db2df0e51e..0999fa7de1cb 100644 --- a/graphics/libiptcdata/Makefile +++ b/graphics/libiptcdata/Makefile @@ -16,10 +16,17 @@ COMMENT= Library for manipulating IPTC metadata stored in image files USE_GNOME= pkgconfig USE_ICONV= yes +USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-nls +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= does not compile (UINT32_MAX not defined) +.endif + post-patch: @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' ${WRKSRC}/libiptcdata/Makefile.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |