Attempt to fix handling of this Makefile on portsmon.

While here, fix an obvious typo in post-install messages.

Hat:		portmgr
This commit is contained in:
Mark Linimon 2010-07-26 13:03:19 +00:00
parent cd32ba84b9
commit c7989c12e0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=258278

View file

@ -64,10 +64,6 @@ CONFIGURE_ENV+= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
USE_LDCONFIG= yes
CPPFLAGS+= -I${PREFIX}/include
.if ${OSVERSION} < 700000
IGNORE= freeswitch is only supported on FreeBSD 7 or newer
.endif
FREESWITCH_USER= freeswitch
FREESWITCH_GROUP= ${FREESWITCH_USER}
@ -275,6 +271,12 @@ post-install:
@${ECHO_MSG} "This port chown -R various directories ${FREESWITCH_USER}:${FREESWITCH_GROUP} "
@${ECHO_MSG} "this is for port security . in the event something should stop working."
@${ECHO_MSG} "Please take the time to check chownership of the dir's"
@${ECHO_MSG} "${VARBASE}/db/${PORTNAME} ${VARBASE}/log/${PORTNAME} ${VARBAE}/${PORTNAME} ${PREFIX}/etc/${PORTNAME}"
@${ECHO_MSG} "${VARBASE}/db/${PORTNAME} ${VARBASE}/log/${PORTNAME} ${VARBASE}/${PORTNAME} ${PREFIX}/etc/${PORTNAME}"
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 700000
IGNORE= freeswitch is only supported on FreeBSD 7 or newer
.endif
.include <bsd.port.post.mk>