Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Apr 2015 09:53:25 -1000
From:      Adam McDougall <mcdouga9@egr.msu.edu>
To:        freebsd-ports@freebsd.org
Subject:   Re: How to set unsupported port build options in make.conf with poudriere?
Message-ID:  <5537FC35.8080401@egr.msu.edu>
In-Reply-To: <20150422175004.GA48667@risu.swcp.com>
References:  <20150422175004.GA48667@risu.swcp.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On 4/22/2015 7:50 AM, Mark Costlow wrote:
> I'm using poudriere on FreeBSD 10.1.  I need to set --enable-drac when
> building mail/milter-greylist.  There is no corresponding option in
> the milter-greylist port.  In the past, I used portconf to achieve this:
>
> mail/milter-greylist: CONFIGURE_ARGS+=--enable-drac
>
> In the new post-portconf world, I tried this in
> /usr/local/etc/poudriere.d/build-make.conf:
>
> milter-greylist_SET="CONFIGURE_ARGS+=--enable-drac"
>
>
Try:
.if ${.CURDIR:M*/mail/milter-greylist}
CONFIGURE_ARGS+=        --enable-drac
.endif

_SET and _UNSET are only for toggling options, an example would be:
mail_spamassassin_SET=DCC DKIM RAZOR PYZOR RELAY_COUNTRY SPF_QUERY



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?5537FC35.8080401>