mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
69 lines
1.7 KiB
Makefile
69 lines
1.7 KiB
Makefile
# Created by: Joe Horn <joehorn@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wordpress
|
|
PORTVERSION= 3.6.1
|
|
CATEGORIES= chinese www
|
|
MASTER_SITES= http://tw.wordpress.org/ \
|
|
http://mirror.joehorn.idv.tw/wordpress/
|
|
PKGNAMESUFFIX= -zh_TW
|
|
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}
|
|
|
|
NO_STAGE= yes
|
|
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>
|