Summary: | [PATCH] games/stockfish: Fix build with clang | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Guido Falsi <madpilot> | ||||
Component: | Individual Port(s) | Assignee: | Guido Falsi <madpilot> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | CC: | execve | ||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Guido Falsi
![]() ![]() Responsible Changed From-To: freebsd-ports-bugs->miwi miwi@ wants this submitter's PRs (via the GNATS Auto Assign Tool) State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool) Maintainer of games/stockfish, Please note that PR ports/181616 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/181616 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org Responsible Changed From-To: miwi->madpilot I'll take it. State Changed From-To: feedback->closed Committed. Thanks! Author: madpilot Date: Mon Sep 16 17:37:14 2013 New Revision: 327425 URL: http://svnweb.freebsd.org/changeset/ports/327425 Log: - Fix build with clang - Make it respect PREFIX - While here, USES=gmake PR: ports/181616 Submitted by: Me Approved by: Maintainer timeout Modified: head/games/stockfish/Makefile Modified: head/games/stockfish/Makefile ============================================================================== --- head/games/stockfish/Makefile Mon Sep 16 17:29:09 2013 (r327424) +++ head/games/stockfish/Makefile Mon Sep 16 17:37:14 2013 (r327425) @@ -19,7 +19,7 @@ LICENSE= GPLv3 USE_ZIP= yes WRKSRC= ${WRKDIR}/${DISTNAME}/src -USE_GMAKE= yes +USES= gmake MYARCH= ${ARCH} BOOKDIR= . PORTDOCS= Readme.txt polyglot.ini @@ -69,6 +69,13 @@ ALL_TARGET= ${TGTBLD} ARCH=${MYARCH} COM BROKEN= Does not compile on ia64, powerpc, or sparc64 .endif +.if exists(/usr/bin/clang) && ${OSVERSION} > 1000024 +MYCC= clang +.endif + +post-patch: + @${REINPLACE_CMD} -e "s/^PREFIX =/PREFIX ?=/" ${WRKSRC}/Makefile + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/stockfish ${PREFIX}/bin/stockfish _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" |