aboutsummaryrefslogtreecommitdiffstats
path: root/www/fhttpd/Makefile
blob: fe297573e67e7f33c1f99a99f15373ea8ed953ca (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
# New ports collection makefile for:    fhttpd
# Version required: 0.4.2
# Date created:     21 Dec 1999
# Whom:         Will Andrews <andrews@technologist.com>
#
# $FreeBSD$
#

DISTNAME=   fhttpd-0.4.2
CATEGORIES= www
MASTER_SITES=   ftp://ftp.fhttpd.org/

MAINTAINER= andrews@technologist.com

LOGFILE=    share/fhttpd/fhttpd.log
PLIST_SUB+= LOGFILE=${LOGFILE}

post-extract:
    @${CP} ${FILESDIR}/fhttpd.sh ${WRKSRC}

pre-patch:
    (cd ${WRKSRC} && ${TAR} xf http-root.tar)

pre-install:
    ${RM} -rf ${WRKSRC}/http-root/pub/dummy_directory
    ${PERL} -pi -e "s:/usr/local:${PREFIX}:g" ${WRKSRC}/fhttpd.sh
    ${PERL} -pi -e "s:%%LOGFILE%%:${PREFIX}/${LOGFILE}:g" ${WRKSRC}/fhttpd.sh
    ${PERL} -pi -e "s:/usr/local:${PREFIX}:g" ${WRKSRC}/http-root/root-fhttpd.conf
    ${PERL} -pi -e "s:%%LOGFILE%%:${PREFIX}/${LOGFILE}:g" ${WRKSRC}/http-root/root-fhttpd.conf

do-install:
    ${MKDIR} ${PREFIX}/etc/rc.d
    ${INSTALL_SCRIPT} ${WRKSRC}/fhttpd.sh ${PREFIX}/etc/rc.d
.for PROG in fhttpd fhttpd-file fhttpd-log
    ${INSTALL_PROGRAM} ${WRKSRC}/${PROG} ${PREFIX}/sbin
.endfor
    ${INSTALL_DATA} ${WRKSRC}/http-root/root-fhttpd.conf ${PREFIX}/etc/fhttpd.conf
    ${MKDIR} ${PREFIX}/share/fhttpd/bin
    ${INSTALL_SCRIPT} ${WRKSRC}/http-root/bin/* ${PREFIX}/share/fhttpd/bin
    ${MKDIR} ${PREFIX}/share/fhttpd/cgi-bin
    ${INSTALL_SCRIPT} ${WRKSRC}/http-root/cgi-bin/f* ${PREFIX}/share/fhttpd/cgi-bin
    ${INSTALL_DATA} ${WRKSRC}/http-root/cgi-bin/.index.html ${PREFIX}/share/fhttpd/cgi-bin
    ${MKDIR} ${PREFIX}/share/fhttpd/incoming
.for DIR in icons private pub
    ${MKDIR} ${PREFIX}/share/fhttpd/${DIR}
    ${INSTALL_DATA} ${WRKSRC}/http-root/${DIR}/* ${PREFIX}/share/fhttpd/${DIR}/
.endfor
.for DIR in private pub
    ${INSTALL_DATA} ${WRKSRC}/http-root/${DIR}/.[fhi]* ${PREFIX}/share/fhttpd/${DIR}/
.endfor
.for FILE in index.html noaccess.html
    ${INSTALL_DATA} ${WRKSRC}/http-root/${FILE} ${PREFIX}/share/fhttpd/
.endfor

post-install:
    ${TOUCH} ${PREFIX}/${LOGFILE}

.include <bsd.port.mk>