aboutsummaryrefslogtreecommitdiffstats
path: root/www/abyssws/Makefile
blob: e5b7e86bfdd4006edb2db1f219b331a3df8a0488 (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
# New ports collection makefile for:    abyssws
# Date created:             26 August 2007
# Whom:                 Daniel Voisine <voisined@wit.edu>
#
# $FreeBSD$
#

PORTNAME=   abyssws
PORTVERSION=    2.5
PORTREVISION=   1
CATEGORIES= www
MASTER_SITES=   http://www.aprelium.com/data/
DISTNAME=   abwsx1-freebsd
EXTRACT_SUFX=   .tgz

MAINTAINER= voisined@wit.edu
COMMENT=    Abyss Web Server is a compact and easy to use web server

WRKSRC=     ${WRKDIR}/abyssws
ONLY_FOR_ARCHS= i386
NO_BUILD=   yes
PKGDEINSTALL=   ${PKGINSTALL}

USE_RC_SUBR=    abyssws.sh

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 600000
IGNORE=     is for FreeBSD 6.x and newer
.endif

.if ${OSVERSION} >= 700043
LIB_DEPENDS+=   c.6:${PORTSDIR}/misc/compat6x
.endif

pre-install:
    @${SETENV} PKG_PREFIX=${PREFIX} \
        ${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL
    @if [ -f ${WRKSRC}/htdocs/index.html ]; then \
        ${MV} -f ${WRKSRC}/htdocs/index.html \
        ${WRKSRC}/htdocs/index.html-dist ; \
    fi

do-install:
    @${INSTALL} -d ${PREFIX}/lib/abyssws
    ${TAR} -C ${WRKSRC} -cf - . | ${TAR} -C ${PREFIX}/lib/abyssws -xf -
    @ ${CHOWN} -R abyssws:abyssws ${PREFIX}/lib/abyssws/
    @${ECHO_CMD} '@exec ${CHOWN} -R abyssws:abyssws \
        ${PREFIX}/lib/abyssws' >> ${TMPPLIST}

post-install:
    @if [ ! -f ${PREFIX}/lib/abyssws/htdocs/index.html ]; then \
        ${CP} -p ${PREFIX}/lib/abyssws/htdocs/index.html-dist \
        ${PREFIX}/lib/abyssws/htdocs/index.html ; \
    fi
    @${SETENV} PKG_PREFIX=${PREFIX} \
        ${SH} ${PKGINSTALL} ${PORTNAME} POST-INSTALL

post-deinstall:
    @${SETENV} PKG_PREFIX=${PREFIX} \
        ${SH} ${PKGDEINSTALL} ${PORTNAME} POST-DEINSTALL

.include <bsd.port.post.mk>