diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-02-18 13:25:56 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-02-18 13:25:56 +0000 |
commit | 642e1edab4be301cd718fb57cfa080bc623ee910 (patch) | |
tree | 2e63ee60677b68759fc0dc5133cf56b2500c97c9 /russian | |
parent | d3744436b852e5e02ad29add2c60fd63c4698466 (diff) | |
download | freebsd-ports-642e1edab4be301cd718fb57cfa080bc623ee910.zip |
- Stage support
Diffstat (limited to 'russian')
-rw-r--r-- | russian/wordpress/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/russian/wordpress/Makefile b/russian/wordpress/Makefile index 7ae799a74480..aed6a467e38f 100644 --- a/russian/wordpress/Makefile +++ b/russian/wordpress/Makefile @@ -27,7 +27,6 @@ PORTDOCS= license.txt readme.html OPTIONS_DEFINE= DOCS -NO_STAGE= yes pre-everything:: @${ECHO_CMD} "If you want to upgrade, you must read upgrade document." @${ECHO_CMD} "" @@ -43,15 +42,12 @@ pre-install: .include <bsd.port.options.mk> do-install: - ${INSTALL} -d -g ${WWWGRP} -m 755 -o ${WWWOWN} ${WWWDIR}/ - ${CP} -R ${WRKSRC}/ ${WWWDIR}/ -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR}/ - cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ -.endif + ${INSTALL} -d -g ${WWWGRP} -m 755 -o ${WWWOWN} ${STAGEDIR}${WWWDIR}/ + ${CP} -R ${WRKSRC}/ ${STAGEDIR}${WWWDIR}/ + ${MKDIR} ${STAGEDIR}${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ post-install: @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${CAT} ${PKGMESSAGE} .include <bsd.port.mk> |