freebsd-ports/chinese/wordpress-zh_CN/Makefile
Sunpoet Po-Chuan Hsieh e91efd5e0e - Update to 3.6
Changes:	http://cn.wordpress.org/2013/08/08/wordpress-3-6/
PR:		ports/181143
Submitted by:	Joe Horn <joehorn@gmail.com> (maintainer)
2013-08-08 14:59:01 +00:00

67 lines
1.7 KiB
Makefile

# Created by: Joe Horn <joehorn@gmail.com>
# $FreeBSD$
PORTNAME= wordpress
PORTVERSION= 3.6
CATEGORIES= chinese www
MASTER_SITES= http://cn.wordpress.org/ \
http://mirror.joehorn.idv.tw/wordpress/
PKGNAMESUFFIX= -zh_CN
DISTNAME= ${PORTNAME}-${PORTVERSION}${PKGNAMESUFFIX}
MAINTAINER= joehorn@gmail.com
COMMENT= State-of-the-art semantic personal publishing platform
LICENSE= GPLv2
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_PHP= curl gd mysql pcre tokenizer xml zip
NO_BUILD= yes
WANT_PHP_WEB= yes
PLIST= ${WRKDIR}/pkg-plist
WWWDIR= ${PREFIX}/www/${PORTNAME}${PKGNAMESUFFIX}
PORTDOCS= readme.html
OPTIONS_DEFINE= DOCS
SUB_FILES+= pkg-message
SUB_LISTS+= WWWDIR=${WWWDIR}
pre-everything::
@${ECHO_CMD} "If you want to upgrade, you must read upgrade document."
@${ECHO_CMD} ""
@sleep 1
pre-install:
cd ${WRKSRC} && ${FIND} -s * -type f | \
${SED} -e 's|^|${WWWDIR:S|${PREFIX}/||}/|' > ${PLIST} \
&& ${FIND} -d * -type d | \
${SED} -e 's|^|@dirrm ${WWWDIR:S|${PREFIX}/||}/|' >> ${PLIST} \
&& ${ECHO_CMD} @dirrm ${WWWDIR:S|${PREFIX}/||} >> ${PLIST}
if [ ! -f ${WRKSRC}/wp-config-sample.php ]; then ${CP} \
${WRKSRC}/wp-config.php.sample ${WRKSRC}/wp-config.php; fi
.include <bsd.port.options.mk>
do-install:
@${MKDIR} ${WWWDIR}
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
@${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' \
>> ${TMPPLIST}
@${CHMOD} -R 755 ${WWWDIR}
@${ECHO_CMD} '@exec ${CHMOD} -R 755 ${WWWDIR}' >> ${TMPPLIST}
${CP} -R ${WRKSRC}/ ${WWWDIR}
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/${i}
.endfor
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>