Date: Mon, 27 May 2013 16:06:02 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319266 - head/mail/xf-spf Message-ID: <201305271606.r4RG62Tx058345@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Mon May 27 16:06:02 2013 New Revision: 319266 URL: http://svnweb.freebsd.org/changeset/ports/319266 Log: Fix build on HEAD by adding USE_GCC=any (uses nested functions) Modified: head/mail/xf-spf/Makefile Modified: head/mail/xf-spf/Makefile ============================================================================== --- head/mail/xf-spf/Makefile Mon May 27 16:04:02 2013 (r319265) +++ head/mail/xf-spf/Makefile Mon May 27 16:06:02 2013 (r319266) @@ -14,6 +14,7 @@ LIB_DEPENDS+= spf2.3:${PORTSDIR}/mail/li USES= qmail USE_BZIP2= yes +USE_GCC= any SUB_FILES= pkg-message SUB_LIST= QMAIL_PREFIX=${QMAIL_PREFIX} @@ -21,13 +22,13 @@ PLIST_SUB= QMAIL_PREFIX=${QMAIL_PREFIX} PORTDOCS= README TODO CHANGELOG COPYRIGHT -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif @${CAT} ${PKGMESSAGE} -.include <bsd.port.post.mk> +.include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305271606.r4RG62Tx058345>