1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Correct a number of ports that anger the tempermental Make Spirits

by using C comments instead of make(1) constructs.

And as long as I'm here, fix a command misspelling in vm-pop3d.

As prompted by:	kris
This commit is contained in:
Adam Weinberger 2005-04-22 01:49:57 +00:00
parent 3d7ba6e4fd
commit adbfb8d78b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=133895
6 changed files with 6 additions and 6 deletions

View File

@ -128,7 +128,7 @@ do-install:
@${MKDIR} ${PREFIX}/lib/${PORTNAME}/doc/manuals
@${LN} -sf ${DOCSDIR}/html \
${PREFIX}/lib/${PORTNAME}/doc/manuals/html
.endif /* NOPORTDOCS */
.endif # NOPORTDOCS
# Binary installation
@${MKDIR} ${PREFIX}/lib/${PORTNAME}/bin/pc-linux_elf
@${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh ${PREFIX}/bin/${PORTNAME}

View File

@ -132,7 +132,7 @@ do-install:
@${MKDIR} ${PREFIX}/lib/understand_c/doc/manuals
@${LN} -sf ${PREFIX}/share/doc/understand_c/html \
${PREFIX}/lib/understand_c/doc/manuals/html
.endif /* NOPORTDOCS */
.endif # NOPORTDOCS
# Binary installation
@${MKDIR} ${PREFIX}/lib/understand_c/bin/pc-linux_elf
@${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh ${PREFIX}/bin/understand_c

View File

@ -127,7 +127,7 @@ do-install:
@${MKDIR} ${PREFIX}/lib/${PORTNAME}/doc/manuals
@${LN} -sf ${DOCSDIR}/html \
${PREFIX}/lib/${PORTNAME}/doc/manuals/html
.endif /* NOPORTDOCS */
.endif # NOPORTDOCS
# Binary installation
@${MKDIR} ${PREFIX}/lib/${PORTNAME}/bin/pc-linux_elf
@${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh ${PREFIX}/bin/${PORTNAME}

View File

@ -21,7 +21,7 @@ GNU_CONFIGURE= yes
.if defined(WITH_IPVIRTUAL)
CONFIGURE_ARGS+= --enable-ip-based-virtual --enable-virtual
.elsif defined(WITH_VIRTUAL)
.elif defined(WITH_VIRTUAL)
CONFIGURE_ARGS+= --enable-virtual
.endif

View File

@ -324,7 +324,7 @@ pre-everything::
.if !defined(WITH_AVIFILE)
@${ECHO_MSG}
@${ECHO_MSG} "You can enable avifile-dependent modules by defining WITH_AVIFILE."
.endif(WITH_AVIFILE)
.endif #WITH_AVIFILE
.if !defined(WITH_QUICKTIME)
@${ECHO_MSG}
@${ECHO_MSG} "You can enable openquicktime-dependent modules by defining WITH_QUICKTIME."

View File

@ -83,6 +83,6 @@ do-install:
.ifndef (NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR}
.endif /* NOPORTDOCS */
.endif # NOPORTDOCS
.include <bsd.port.mk>