Date: Fri, 03 Nov 2017 14:52:30 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 223397] [NEW PORT] audio/yoshimi Message-ID: <bug-223397-13-f0OyDoKhlM@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-223397-13@https.bugs.freebsd.org/bugzilla/> References: <bug-223397-13@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223397 --- Comment #2 from bcomputerguy <owen94012@gmail.com> --- +MAKE_JOBS_UNSAFE=3D yes Why is this set? Initially there was some trouble building with with multithreading, upstread made some changes in A *BSD branch and merged it back in to mainline. +.include <bsd.port.pre.mk> ... +.include <bsd.port.post.mk> This isn't necessary here. Just use .include <bsd.port.mk> at the end. I have that in there because the manual gets installed into share/man/man1 = as yoshimi.1 and portlint complains that I should gzip that file and install i= t in /man directory, that's why I added the post-install code below. +post-install: + @(mv ${STAGEDIR}${PREFIX}/share/man/man1/yoshimi.1 ${STAGEDIR}${PREFIX}/share/man/yoshimi.1 && \ + ${RM} -rf ${STAGEDIR}${PREFIX}/share/man/man1 && \ + ${GZIP_CMD} ${STAGEDIR}${PREFIX}/share/man/yoshimi.1); that means that I should also add: @(${MV} ${DATADIR}/yoshimi-user-manual.pdf ${STAGE}${PREFIX}${DOCSDIR}/yoshimi-user-manual.pdf) to the post install section. If not please advise how to proceed with these changes. --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-223397-13-f0OyDoKhlM>