diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-02-28 13:59:13 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-02-28 13:59:13 +0800 |
commit | 70be714c619aa0c8d6189e0d14385bd55ccaf1b0 (patch) | |
tree | c5aa2c7d133d66c056d6bd37080ef16865d6c536 | |
parent | cabc4bca99381c4954b5ce16136f99c17c2f8b05 (diff) | |
download | marcuscom-ports-70be714c619aa0c8d6189e0d14385bd55ccaf1b0.tar marcuscom-ports-70be714c619aa0c8d6189e0d14385bd55ccaf1b0.tar.gz marcuscom-ports-70be714c619aa0c8d6189e0d14385bd55ccaf1b0.tar.bz2 marcuscom-ports-70be714c619aa0c8d6189e0d14385bd55ccaf1b0.tar.lz marcuscom-ports-70be714c619aa0c8d6189e0d14385bd55ccaf1b0.tar.xz marcuscom-ports-70be714c619aa0c8d6189e0d14385bd55ccaf1b0.tar.zst marcuscom-ports-70be714c619aa0c8d6189e0d14385bd55ccaf1b0.zip |
Do not attend to build if ${LOCALBASE}/include/mapi.h exists, so mark it as
IGNORE. Current, devel/libytnef will installing ${LOCALBASE}/include/mapi.h
that has caused evolution-exchange to not able to build. The real solution is
to have move from include/*.h to include/libytnef/*.h to protect their
commonly named header file better.
PR: ports/109199
Reported by: Jukka A. Ukkonen <jau@iki.fi>
Dicsussed with: marcus
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8440 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | mail/evolution-exchange/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/evolution-exchange/Makefile b/mail/evolution-exchange/Makefile index dfd09e7fe..6779b438a 100644 --- a/mail/evolution-exchange/Makefile +++ b/mail/evolution-exchange/Makefile @@ -3,7 +3,7 @@ # Whom: Adam Weinberger, based off kiesel's ximian-exchange port # # $FreeBSD$ -# $MCom: ports/mail/evolution-exchange/Makefile,v 1.80 2007/02/13 07:38:49 marcus Exp $ +# $MCom: ports/mail/evolution-exchange/Makefile,v 1.81 2007/02/27 06:46:50 marcus Exp $ # PORTNAME= evolution-exchange @@ -59,6 +59,10 @@ CONFIGURE_ARGS+= --with-krb5=${LOCALBASE} CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC" .endif +.if exists(${LOCALBASE}/include/mapi.h) +IGNORE= does not build with ${LOCALBASE}/include/mapi.h exists in system, run pkg_info -W ${LOCALBASE}/include/mapi.h to find the offending port and uninstall it, then install ${PORTNAME} and reinstall port +.endif + post-patch: @${REINPLACE_CMD} -e 's|EVOLUTION_API_VERSION=2.8|EVOLUTION_API_VERSION=2.10| ; \ s|EDS_BASE_VERSION=1.8|EDS_BASE_VERSION=1.10| ; \ |