blob: 970da03aff1f99a504dfca2d75bde932171419f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# New ports collection makefile for: wordpress
# Date created: 2006-06-03
# Whom: Martin Wilke <miwi@FreeBSD.org>
# (based on wordpress by Elvis Chiang)
#
# $FreeBSD$
#
PORTNAME= wordpress
PORTVERSION= 3.2.1
CATEGORIES= german www
MASTER_SITES= http://static.wordpress-deutschland.org/de-edition/
PKGNAMESUFFIX= -de
DISTNAME= ${PORTNAME}_${PORTVERSION:S|.||g}${PKGNAMESUFFIX}
MAINTAINER= miwi@FreeBSD.org
COMMENT= A state-of-the-art semantic personal publishing platform
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/license.txt
USE_ZIP= yes
NO_BUILD= yes
USE_PHP= gd mysql pcre tokenizer xml zip
WANT_PHP_WEB= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
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>
|