blob: 5fbb14bb272c39a55a824fc9058f83f49726db73 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# New ports collection makefile for: flyspray
# Date created: 2003.08.28
# Whom: Nick Hilliard <nick@foobar.org>
#
# $FreeBSD$
#
PORTNAME= flyspray
PORTVERSION= 0.9.7
CATEGORIES= devel
MASTER_SITES= http://flyspray.rocks.cc/files/
MAINTAINER= nick@foobar.org
COMMENT= A simple, easy-to-use web based bug tracking system
RUN_DEPENDS= ${LOCALBASE}/share/adodb/adodb.inc.php:${PORTSDIR}/databases/adodb
USE_REINPLACE= yes
USE_PHP= mysql pcre session
WANT_PHP_WEB= yes
NO_BUILD= yes
DBDIR= /var/db
DOC_FILES= AUTHORS.txt BUGS.txt CHANGELOG.txt INSTALL.txt README.txt \
TODO.txt UPGRADING.txt README.FreeBSD \
licences/ADOdb.licence.txt \
licences/Flyspray.licence.txt \
licences/NuvolaIcons.licence.txt \
licences/jsCalendar.licence.txt \
licences/phpMarkdown.licence.txt
FLYSPRAY_FILES= favicon.ico header.php includes index.php lang scripts sql themes
PKGMESSAGE= ${WRKSRC}/pkg-message
post-patch:
@${CP} ${PKGDIR}/files/README.FreeBSD ${WRKSRC}/docs/
@${REINPLACE_CMD} -e "s|realpath('../')|'${PREFIX}/share'|g" \
${WRKSRC}/sql/install-${PORTVERSION}.php
@${RM} ${WRKSRC}/sql/install-${PORTVERSION}.php.bak
do-install:
@${MKDIR} ${PREFIX}/share/${PORTNAME}
${CHMOD} 755 ${PREFIX}/share/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/header.php ${PREFIX}/share/${PORTNAME}/header.php-dist
cd ${WRKSRC} && \
tar cf - ${FLYSPRAY_FILES} | \
(cd ${PREFIX}/share/${PORTNAME} && tar -xf -)
${LN} -s ${DBDIR}/${PORTNAME}/attachments ${PREFIX}/share/${PORTNAME}/attachments
@${MKDIR} ${DBDIR}/${PORTNAME}/attachments
${CHMOD} 750 ${DBDIR}/${PORTNAME}/attachments
${CHOWN} ${WWWOWN}:${WWWGRP} ${DBDIR}/${PORTNAME}/attachments
${CHOWN} ${WWWOWN}:${WWWGRP} ${PREFIX}/share/${PORTNAME}
post-install: install-doc
@${SED} -e 's|%%DOCSDIR%%|${DOCSDIR}|g' pkg-message > ${PKGMESSAGE}
@${CAT} ${PKGMESSAGE}
install-doc:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/docs/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|