1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/www/wordpress-mu/Makefile
Foxfair Hu df39be037f PR: 81142
Submitted by:	maintainer
* Update www/WordPress-MU to version 2005.05.08
2005-05-17 13:16:33 +00:00

53 lines
1.3 KiB
Makefile

# New ports collection makefile for: wordpress-mu
# Date created: 2004-12-19
# Whom: Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>
#
# $FreeBSD$
#
PORTNAME= wordpress-mu
PORTVERSION= 2005.05.08
CATEGORIES= www
MASTER_SITES= http://blogs.linux.ie/download/wpmu/ \
http://mu.wordpress.org/nightly-builds/
DISTNAME= wpmu-${PORTVERSION:S/./-/g}
MAINTAINER= tjs@cdpa.nsysu.edu.tw
COMMENT= Multi-user version of the famous WordPress blogging application
WRKSRC= ${WRKDIR}/${DISTNAME}
USE_PHP= mysql pcre xml
PHP4_PORT?= www/mod_php4
NO_BUILD= yes
WANT_PHP_WEB= yes
WORDPRESSMU?= www/data/wordpress-mu
PLIST_SUB+= WORDPRESSMU=${WORDPRESSMU}
PLIST= ${WRKDIR}/pkg-plist
PORTDOCS= license.txt readme.html
do-install:
@${MKDIR} ${PREFIX}/${WORDPRESSMU}
@${CHOWN} www:www ${PREFIX}/${WORDPRESSMU}
@${CHMOD} 755 ${PREFIX}/${WORDPRESSMU}
@${CP} -R ${WRKSRC}/ ${PREFIX}/${WORDPRESSMU}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/wp-inst/${i} ${DOCSDIR}
.endfor
.endif
pre-install:
cd ${WRKSRC} && ${FIND} -s * -type f | \
${SED} -e 's|^|${WORDPRESSMU}/|' > ${PLIST} \
&& ${FIND} -d * -type d | \
${SED} -e 's|^|@dirrm ${WORDPRESSMU}/|' >> ${PLIST} \
&& ${ECHO_CMD} @dirrm ${WORDPRESSMU} >> ${PLIST}
post-install:
${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>