display PKGMESSAGE correctly.

This commit is contained in:
FUJISHIMA Satsuki 2001-06-12 16:08:20 +00:00
parent dcc16cbe5b
commit 394b2db0bd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=43910
2 changed files with 16 additions and 8 deletions

View File

@ -168,11 +168,15 @@ pre-install:
${MKDIR} ${PREFIX}/lib/X11/kernel
.endif
post-install:
strip ${PREFIX}/bin/XFree86
post-build:
@${RM} ${PKGMESSAGE}
.if ${BuildXF86DRM} == "YES"
@(cd ${.CURDIR}; ${CAT} pkg-message pkg-message-drm > ${PKGMESSAGE})
@${SED} -e s,/usr/X11R6,${PREFIX}, ${PKGMESSAGE}
@${CAT} ${.CURDIR}/pkg-message-drm > ${PKGMESSAGE}
.endif
@${CAT} ${.CURDIR}/pkg-message >> ${PKGMESSAGE}
post-install:
@${SED} -e s,/usr/X11R6,${PREFIX}, ${PKGMESSAGE}
strip ${PREFIX}/bin/XFree86
.include <bsd.port.post.mk>

View File

@ -168,11 +168,15 @@ pre-install:
${MKDIR} ${PREFIX}/lib/X11/kernel
.endif
post-install:
strip ${PREFIX}/bin/XFree86
post-build:
@${RM} ${PKGMESSAGE}
.if ${BuildXF86DRM} == "YES"
@(cd ${.CURDIR}; ${CAT} pkg-message pkg-message-drm > ${PKGMESSAGE})
@${SED} -e s,/usr/X11R6,${PREFIX}, ${PKGMESSAGE}
@${CAT} ${.CURDIR}/pkg-message-drm > ${PKGMESSAGE}
.endif
@${CAT} ${.CURDIR}/pkg-message >> ${PKGMESSAGE}
post-install:
@${SED} -e s,/usr/X11R6,${PREFIX}, ${PKGMESSAGE}
strip ${PREFIX}/bin/XFree86
.include <bsd.port.post.mk>