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

Fix broken pkg-plist: when changing the pkg-plist into a dynamically

created one to catch up with whatever files doxygen might install
today in rev 1.18, I didn't notice the MAN1-defined man pages were
no longer included into the pkg-plist now.

This has now been repaired.
This commit is contained in:
Joerg Wunsch 2006-09-24 14:28:19 +00:00
parent 2c3ec3ddff
commit 6821cc5cf2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=173711

View File

@ -22,10 +22,6 @@ BUILD_DEPENDS= ${LOCALBASE}/avr/include/avr/io.h:${PORTSDIR}/devel/avr-libc \
doxygen:${PORTSDIR}/devel/doxygen \
latex:${PORTSDIR}/print/teTeX
BROKEN= Incomplete pkg-plist
DEPRECATED= ${BROKEN}
EXPIRATION_DATE=2006-12-01
#USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
@ -44,6 +40,9 @@ do-install:
${SED} -e 's|^\.|share/doc/simulavr/internals_html|' \
>> ${TMPPLIST})
${CAT} ${PLIST} >> ${TMPPLIST}
@for man in ${__MANPAGES}; do \
${ECHO_CMD} $${man} >> ${TMPPLIST}; \
done
(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} install)
.include <bsd.port.pre.mk>