[Bug 193134] [NEW PORT] www/seafile: Framework for writing networked applications

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Mon Nov 3 06:42:41 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193134

--- Comment #18 from John Marino <marino at FreeBSD.org> ---
okay, "@${MKDIR} -m 0755" needs to be just "@${MKDIR}"

"${INSTALL} -m 0755 ${WRKSRC}/doc/seafile-tutorial.doc"  (for example)
this is wrong too.
first, it's installing this as executable.
secondly, you need to use an install macro, e.g.

${INSTALL_PROGRAM}
${INSTALL_DATA}
${INSTALL_MAN}
${INSTALL_SCRIPT}

used INSTALL_DATA for non-executable, INSTALL_PROGRAM for executables that can
be stripped, INSTALL_SCRIPT for executables that can't be stripped (e.g. bourne
shell scripts)

search /usr/ports/Mk/bsd.port.mk for documentation about these commands if you
need more info.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list