blob: 0cc6a2331de042d11e05e750c23e749d055f8379 (
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
|
# New ports collection makefile for: flyspray
# Date created: 2003.08.28
# Whom: Nick Hilliard <nick@foobar.org>
#
# $FreeBSD$
#
PORTNAME= flyspray
PORTVERSION= 0.9.4
CATEGORIES= devel
MASTER_SITES= http://flyspray.rocks.cc/files/
MAINTAINER= nick@foobar.org
COMMENT= A simple, easy-to-use web based bug tracking system
.if defined(WITH_APACHE2)
RUN_DEPENDS+= ${LOCALBASE}/libexec/apache2/libphp4.so:${PORTSDIR}/www/mod_php4
.else
RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4
.endif
NO_BUILD= yes
DOC_FILES= AUTHORS BUGS CHANGELOG COPYING INSTALL README TODO UPGRADING flyspray-${PORTVERSION}.sql
do-install:
${MKDIR} ${PREFIX}/share/${PORTNAME}
${CHMOD} 755 ${PREFIX}/share/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/config.inc.php ${PREFIX}/share/${PORTNAME}/config.inc.php-dist
cd ${WRKSRC} && \
tar cf - favicon.ico functions.inc.php functions.js header.php index.php lang scripts themes | \
(cd ${PREFIX}/share/${PORTNAME} && tar -xf -)
${LN} -s /var/db/${PORTNAME}/attachments ${PREFIX}/share/${PORTNAME}/attachments
${MKDIR} /var/db/${PORTNAME}/attachments
${CHMOD} 750 /var/db/${PORTNAME}/attachments
${CHOWN} www:www /var/db/${PORTNAME}/attachments
post-install: install-doc
@${CAT} ${PKGMESSAGE}
install-doc:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|