driesm
Developer
Hello guys,
I've been working on a port recently but I'm having some issues.
Porbably because of my inexperience with ports.
I have the latter in the Makefile:
This creates the stagedir perfectly by issuing
Altough when installing the port on the system by issuing
I've been working on a port recently but I'm having some issues.
Porbably because of my inexperience with ports.
I have the latter in the Makefile:
Code:
obvious things
do-install:
${MKDIR} ${STAGEDIR}${WWWDIR}
cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}
post-install:
# Make PHP files executable
${FIND} ${STAGEDIR}${WWWDIR} -name '*.php' -exec ${CHMOD} +x {} \;
# Make WWW group owner of files
${CHOWN} -R :${WWWGRP} ${STAGEDIR}${WWWDIR}
# Make WWW user and group owner of writable directories
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/logs
This creates the stagedir perfectly by issuing
make stage
with correct permissions and such of the installed files. Altough when installing the port on the system by issuing
make install
nothing gets installed.