diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-01-11 02:02:49 +0800 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-01-11 02:02:49 +0800 |
commit | 9b4771d755a214e91e412ada3234aa068006e3dd (patch) | |
tree | b7c08d49d35291868c4587a0f2bcfce436cab8eb /graphics | |
parent | 04ca5caaaae199bd0bba2ed5cfa28558b77d4cd9 (diff) | |
download | freebsd-ports-gnome-9b4771d755a214e91e412ada3234aa068006e3dd.tar.gz freebsd-ports-gnome-9b4771d755a214e91e412ada3234aa068006e3dd.tar.zst freebsd-ports-gnome-9b4771d755a214e91e412ada3234aa068006e3dd.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> |