Page MenuHomeFreeBSD

Create option target helpers.
ClosedPublic

Authored by mat on Jun 29 2015, 3:54 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Oct 7, 11:27 PM
Unknown Object (File)
Mon, Oct 6, 3:00 AM
Unknown Object (File)
Mon, Sep 29, 2:39 AM
Unknown Object (File)
Sat, Sep 27, 2:24 PM
Unknown Object (File)
Wed, Sep 24, 8:13 AM
Unknown Object (File)
Aug 14 2025, 9:04 PM
Unknown Object (File)
Aug 1 2025, 2:11 AM
Unknown Object (File)
Jul 30 2025, 10:13 AM
Subscribers
None

Details

Reviewers
None
Group Reviewers
portmgr
Commits
rP391051: Introduce target option helpers.
Summary

It will permit replacing:

  .include <bsd.port.options.mk>
  
  post-patch:
	  ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
		  ${WRKSRC}/Configure ${WRKSRC}/hints/freebsd.sh
  .if ${PORT_OPTIONS:MPTHREAD}
	  ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|-lpthread|g;' \
		  ${WRKSRC}/hints/freebsd.sh
  .else
	  ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%||g;' \
		  ${WRKSRC}/hints/freebsd.sh
  .endif

with:

  post-patch:
	  ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
		  ${WRKSRC}/Configure ${WRKSRC}/hints/freebsd.sh
  post-patch-PTHREAD-on:
	  ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|-lpthread|g;' \
		  ${WRKSRC}/hints/freebsd.sh
  post-patch-PTHREAD-off:
	  ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%||g;' \
		  ${WRKSRC}/hints/freebsd.sh

so that there's even less need to .include bsd.port.options.mk.

Diff Detail

Repository
rP FreeBSD ports repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

mat retitled this revision from to Create option target helpers..
mat updated this object.
mat edited the test plan for this revision. (Show Details)
mat added a reviewer: portmgr.
mat edited edge metadata.

Looks like pre-stage-*-o{n,ff} were forgotten there. Also there is no pre-stage target.

This revision was automatically updated to reflect the committed changes.