8566977db0
- Update CONFLICTS_INSTALL Changes: http://ja.wordpress.org/2012/01/04/wordpress-3-3-1/ PR: ports/163811 Submitted by: Takefu <takefu@airport.fm> (maintainer)
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# New ports collection makefile for: wordpress
|
|
# Date created: 2011-09-20
|
|
# Whom: Takefu
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wordpress
|
|
PORTVERSION= 3.3.1
|
|
CATEGORIES= japanese www
|
|
MASTER_SITES= http://ja.wordpress.org/
|
|
PKGNAMESUFFIX= -ja
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}${PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= takefu@airport.fm
|
|
COMMENT= A state-of-the-art semantic personal publishing platform
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/license.txt
|
|
|
|
CONFLICTS_INSTALL= wordpress-3.* de-wordpress-de-3.* ru-wordpress-ru-3.*
|
|
|
|
NO_BUILD= yes
|
|
USE_PHP= curl gd mysql pcre tokenizer xml zip
|
|
WANT_PHP_WEB= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
SUB_FILES= pkg-message
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
PORTDOCS= license.txt readme.html
|
|
|
|
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%%/|'; \
|
|
${FIND} -d . -type d | ${SED} -e 's|^\.|@dirrm %%WWWDIR%%|') > ${PLIST}
|
|
if [ ! -f ${WRKSRC}/wp-config-sample.php ]; then ${CP} \
|
|
${WRKSRC}/wp-config.php.sample ${WRKSRC}/wp-config.php; fi
|
|
|
|
do-install:
|
|
${INSTALL} -d -g ${WWWGRP} -m 755 -o ${WWWOWN} ${WWWDIR}/
|
|
${CP} -R ${WRKSRC}/ ${WWWDIR}/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|