diff options
author | tijl <tijl@FreeBSD.org> | 2014-04-28 00:55:11 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-04-28 00:55:11 +0800 |
commit | cc8bfc3b255f8acead414fb48e812b8048816e20 (patch) | |
tree | 4b415afedd10bcefbeee9660c1ad731ac811531e /sysutils | |
parent | 3e69b5d500b88829a695d834344d7185c1cd5787 (diff) | |
download | freebsd-ports-gnome-cc8bfc3b255f8acead414fb48e812b8048816e20.tar.gz freebsd-ports-gnome-cc8bfc3b255f8acead414fb48e812b8048816e20.tar.zst freebsd-ports-gnome-cc8bfc3b255f8acead414fb48e812b8048816e20.zip |
Fix build after r351936 by adding a dependency on libICE.
PR: ports/189030
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/brasero/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysutils/brasero/Makefile b/sysutils/brasero/Makefile index f9c79fecc00a..a1054f392ae3 100644 --- a/sysutils/brasero/Makefile +++ b/sysutils/brasero/Makefile @@ -23,7 +23,7 @@ RUN_DEPENDS= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools \ CONFLICTS= brasero-3.[0-9]* GNU_CONFIGURE= yes -USE_XORG= sm +USE_XORG= ice sm USES= pathfix gettext shared-mime-info gmake pkgconfig tar:bzip2 \ libtool desktop-file-utils USE_GNOME= intlhack gnomeprefix gnomedocutils @@ -72,5 +72,7 @@ post-patch: @${REINPLACE_CMD} -e 's|" == "|" = "|g' \ ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|/proc/self/fd/0|/dev/fd/0|g' ${WRKSRC}/po/*.po + @${REINPLACE_CMD} -e '/BRASERO_SM_LIBS =/s/$$/ -lICE/' \ + ${WRKSRC}/src/Makefile.in .include <bsd.port.mk> |