diff options
author | kwm <kwm@FreeBSD.org> | 2015-02-11 17:20:20 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2015-02-11 17:20:20 +0800 |
commit | 3f791541c68b01300dd5fdd0873a15ea80e9ddc8 (patch) | |
tree | af4e17ff9b9c1e13252e73b3ca4552ca09e77fb0 /databases | |
parent | 42539ac521b773db91790dff16cd5e2e9fdba288 (diff) | |
download | freebsd-ports-gnome-3f791541c68b01300dd5fdd0873a15ea80e9ddc8.tar.gz freebsd-ports-gnome-3f791541c68b01300dd5fdd0873a15ea80e9ddc8.tar.zst freebsd-ports-gnome-3f791541c68b01300dd5fdd0873a15ea80e9ddc8.zip |
Make glom pass configure on FreeBSD versions without libarchive.pc in base.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/glom/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/databases/glom/Makefile b/databases/glom/Makefile index c6bc21ca2f92..76c72292c98d 100644 --- a/databases/glom/Makefile +++ b/databases/glom/Makefile @@ -42,6 +42,10 @@ INSTALLS_ICONS= yes #PLIST_SUB+= VERSION=${PORTVERSION:R} PLIST_SUB+= VERSION=1.26 +.if ! exists(/usr/libdata/pkgconfig/libarchive.pc) +LIB_DEPENDS+= libarchive.so.13:${PORTSDIR}/archivers/libarchive +.endif + post-patch: @${REINPLACE_CMD} -e 's|-update-mime-database|true|g' \ ${WRKSRC}/Makefile.in |