diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-19 11:04:13 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-19 11:04:13 +0000 |
commit | f899c758a653ca8ff2f8a63aafcb2519a0b524ed (patch) | |
tree | be6eebf3e77ddf9fcf383081091d8b8b336dd71c /audio | |
parent | Update devel/erlang-gpb to version 3.23.1. (diff) |
When there is a do-install target, do not use a post-install target, do
everything at once. Sometime, rename post-install into a options helper
target.
I did not fix ports that were such a mess that I could not figure out
what they really wanted to do. I also did not change ports that had
some version of an auto-plist code in post-install, for the same reason.
With hat: portmgr
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=418767
Diffstat (limited to 'audio')
-rw-r--r-- | audio/baresip/Makefile | 2 | ||||
-rw-r--r-- | audio/id3ren/Makefile | 2 | ||||
-rw-r--r-- | audio/mma/Makefile | 1 | ||||
-rw-r--r-- | audio/teamspeak3-server/Makefile | 3 |
4 files changed, 2 insertions, 6 deletions
diff --git a/audio/baresip/Makefile b/audio/baresip/Makefile index b2e5bdeb7b47..6c12eb6c4fd4 100644 --- a/audio/baresip/Makefile +++ b/audio/baresip/Makefile @@ -113,8 +113,6 @@ do-install: ${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/share/* ${STAGEDIR}${DATADIR} -# Install modules and add to plist -post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/modules for m in $$(${SETENV} ${MAKE_ENV} ${MAKE_CMD} -sC ${WRKSRC} ${MAKE_ARGS} showmodules); \ do ${INSTALL_LIB} ${WRKSRC}/$$m.so \ diff --git a/audio/id3ren/Makefile b/audio/id3ren/Makefile index 60759de53829..65bbd4a96e08 100644 --- a/audio/id3ren/Makefile +++ b/audio/id3ren/Makefile @@ -30,7 +30,7 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1.gz \ ${STAGEDIR}${PREFIX}/man/man1/ -post-install: +post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} diff --git a/audio/mma/Makefile b/audio/mma/Makefile index 37a3b0c712e6..3ffa32731fbe 100644 --- a/audio/mma/Makefile +++ b/audio/mma/Makefile @@ -58,7 +58,6 @@ do-install: ${COPYTREE_SHARE} . ${STAGEDIR}${MANPREFIX}/man/man1/ "! -name mma-libdoc.8" && \ ${INSTALL_MAN} mma-libdoc.8 ${STAGEDIR}${MANPREFIX}/man/man8/) -post-install: # update mma library (mma -g) to use ${DATADIR} path @(cd ${STAGEDIR}${DATADIR} && \ ${PYTHON_CMD} ${WRKDIR}/mma_g.py) diff --git a/audio/teamspeak3-server/Makefile b/audio/teamspeak3-server/Makefile index ee84420c07d8..845ebc5502db 100644 --- a/audio/teamspeak3-server/Makefile +++ b/audio/teamspeak3-server/Makefile @@ -87,9 +87,8 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/doc/${DOCFILE} ${STAGEDIR}${DOCSDIR} . endfor -post-install: ${INSTALL} -d ${STAGEDIR}${DBDIR} ${INSTALL} -d ${STAGEDIR}${LOGDIR} - @${MKDIR} ${STAGEDIR}${ETCDIR} + ${INSTALL} -d ${STAGEDIR}${ETCDIR} .include <bsd.port.mk> |