blob: ab07061068e36f1cac9e3c70e4bf0e5886e65f23 (
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
|
# New ports collection makefile for: wikindx
# Date created: 23 Dec 2005
# Whom: babak@farrokhi.net
#
# $FreeBSD$
#
PORTNAME= wikindx
PORTVERSION= 3.6
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= wikindx
DISTNAME= ${PORTNAME}${PORTVERSION:S/./_/g}
MAINTAINER= farrokhi@FreeBSD.org
COMMENT= Bibliographic and quotations/notes management system
USE_PHP= session mysql xml
NO_BUILD= YES
WRKSRC= ${WRKDIR}/wikindx3
WWWDIR?= www/wikindx
ROOTFILES= config.php index.php rss.php
ROOTDIRS= attachments core docs files languages modules \
papers styles templates update
DOCFILES= CHANGELOG CUSTOMIZATION DISCLAIMER INSTALL \
LICENSE README README_RSS UPDATEWIKINDX
pre-install:
@${ECHO} ${WWWDIR}
do-install:
-${MKDIR} ${PREFIX}/${WWWDIR}
(cd ${WRKSRC} && ${CP} ${ROOTFILES} ${PREFIX}/${WWWDIR}/ )
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${WWWDIR}
.for i in ${ROOTDIRS}
@(cd ${WRKSRC} && ${CP} -R ${i} ${PREFIX}/${WWWDIR}/ )
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for i in ${DOCFILES}
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/${i}
.endfor
.endif
.include <bsd.port.mk>
|