blob: 85f3e9b03da2abcc0d60889b8b2bbc321e2448fc (
plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
|
# $FreeBSD$
# Created by: Adam Weinberger <adamw@FreeBSD.org>
PORTNAME= baikal
PORTVERSION= 0.2.4
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://baikal-server.com/get/
DISTNAME= ${PORTNAME}-regular-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= adamw@FreeBSD.org
COMMENT= Lightweight CalDAV/CardDAV server
USE_PHP= ctype filter xml pdo_sqlite session mbstring dom
WRKSRC= ${WRKDIR}/${PORTNAME}-regular
NO_BUILD= yes
PLIST_SUB+= CALDB="${WWWDIR}/Specific/db/db.sqlite"
SUB_LIST+= CALDB="${WWWDIR}/Specific/db/db.sqlite"
SUB_FILES= pkg-install pkg-message
PORTDOCS= *
PORTEXAMPLES= *
.include <bsd.port.options.mk>
post-patch:
${FIND} ${WRKSRC} -type f -not -name '*.php' -exec ${CHMOD} ${SHAREMODE} {} \;
${FIND} ${WRKSRC} -type f -name '*.php' -exec ${CHMOD} ${BINMODE} {} \;
${FIND} ${WRKSRC} -type d -exec ${CHMOD} 0755 {} \;
${MV} ${WRKSRC}/Specific/db/db.sqlite \
${WRKSRC}/Specific/db/db.sqlite-dist
${CHMOD} 644 ${WRKSRC}/Specific/db/db.sqlite-dist
# I can't decide whether to include this file or forbid it.
# ${ECHO_CMD} "platypus" > ${WRKSRC}/Specific/ENABLE_INSTALL
${RM} ${WRKSRC}/Specific/ENABLE_INSTALL
${REINPLACE_CMD} -e 's,/var/www/dav.mydomain.com,${WWWDIR},g' \
${WRKSRC}/Specific/virtualhosts/baikal.*
do-install:
${MKDIR} ${WWWDIR}
.for DIR in Core html
cd ${WRKSRC} && ${FIND} ${DIR} | \
${CPIO} -pdmu -R ${BINOWN}:${BINGRP} --quiet ${WWWDIR}
.endfor
cd ${WRKSRC} && ${FIND} Specific -not -path '*/virtualhosts*' | \
${CPIO} -pdmu -R ${WWWOWN}:${WWWGRP} --quiet ${WWWDIR}
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR} ${EXAMPLESDIR}
.for f in INSTALL.md LICENSE.txt README.md TROUBLESHOOTING.md
${INSTALL_DATA} ${WRKSRC}/$f ${DOCSDIR}
.endfor
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
.for f in apache2 nginx
${INSTALL_DATA} ${WRKSRC}/Specific/virtualhosts/baikal.$f ${EXAMPLESDIR}
.endfor
.endif
post-install:
@${SH} ${PKGINSTALL} POST-INSTALL
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|