diff options
author | marcus <marcus@FreeBSD.org> | 2004-03-19 03:14:55 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-03-19 03:14:55 +0000 |
commit | 19046464e6aa97d38de4338eefb5cc975ad79618 (patch) | |
tree | a71c95a2df9a12ad6d2bda144fa6c68ba562d66d /www/firefox15 | |
parent | c383b1d678d3e9b179db88d45af55df35221293e (diff) | |
download | FreeBSD-ports-19046464e6aa97d38de4338eefb5cc975ad79618.zip FreeBSD-ports-19046464e6aa97d38de4338eefb5cc975ad79618.tar.gz |
Borrow from the OpenLDAP ports, and refuse to build if bind has been
installed with PORT_REPLACES_BASE_BIND defined.
PR: 61756
Obtained from: OpenLDAP ports
Diffstat (limited to 'www/firefox15')
-rw-r--r-- | www/firefox15/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/www/firefox15/Makefile b/www/firefox15/Makefile index db55808..d78db4f 100644 --- a/www/firefox15/Makefile +++ b/www/firefox15/Makefile @@ -126,6 +126,12 @@ post-patch: < ${WRKSRC}/${ii}/all.js.bak > ${WRKSRC}/${ii}/all.js .endfor +pre-configure: + @if [ -n "`${PKG_INFO} -xI '^bind[0-9]*-base-[0-9]'`" ]; then \ + ${ECHO_CMD} "${PKGNAME}: bind installed with PORT_REPLACES_BASE_BIND causes build problems."; \ + ${FALSE}; \ + fi + pre-install: # Overview: the program installs itself in FAKEDIR, then a list is made of the # files and directories in there. This is the PLIST (packing list) for the |