aboutsummaryrefslogtreecommitdiffstats
path: root/net/nic/Makefile
blob: 181b328883a4664eb2aaf17d9ad3b984d355a1a8 (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
70
71
72
73
74
75
76
# Ports collection makefile for:  Nic
# Date created:           Sun Dec 30, 2001
# Whom:               Thierry Thomas (<thierry@pompo.net>)
#
# $FreeBSD$
#

PORTNAME=   nic
PORTVERSION=    0.0.2.011230
PORTREVISION=   1
CATEGORIES= net www
MASTER_SITES=   http://pompo.net/horde/nic/

MAINTAINER= thierry@FreeBSD.org
COMMENT=    Nic is a set of small web-based network applications

RUN_DEPENDS=    ${LOCALBASE}/www/horde/index.php:${PORTSDIR}/www/horde

IGNORE=     is not compatible with Horde 3 - to be refreshed

NO_BUILD=   yes

USE_REINPLACE=  yes

REINPLACE_ARGS= -i.beforeNic
DOCS=       LICENSE README docs/CHANGES docs/CREDITS docs/INSTALL
CONFFILE=   conf.php html.php menu.php
SUB_DIRS=   config graphics lib templates

LHORDEDIR?= www/horde
LNICDIR?=   ${LHORDEDIR}/nic

PLIST_SUB=  HORDEDIR=${LHORDEDIR} NICDIR=${LNICDIR}

HORDEDIR=   ${PREFIX}/${LHORDEDIR}
NICDIR=     ${PREFIX}/${LNICDIR}
CONFDIR=    ${NICDIR}/config

HORDE_INC=  ${LOCALBASE}/etc/horde

do-install:
    @${MKDIR}  ${NICDIR}
.for REP in ${SUB_DIRS}
    @${CP} -Rp ${WRKSRC}/${REP} ${NICDIR}
.endfor
    @${CP} -p  ${WRKSRC}/*.php ${NICDIR}
.for FILE in ${CONFFILE}
    @if [ ! -f ${CONFDIR}/${FILE} ]; then \
      ${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
    fi
.endfor
    @${CHOWN} -R www:www ${NICDIR}
    @${CHMOD} -R o-rwx ${CONFDIR}
    @${CP} -p ${FILESDIR}/httpd.conf.nic ${HORDE_INC}
    @${REINPLACE_CMD} -e "s:/home/httpd/html/horde/nic:${NICDIR}:g" \
        ${HORDE_INC}/httpd.conf.nic
    @${RM} ${HORDE_INC}/httpd.conf.nic.beforeNic
    @${REINPLACE_CMD} -e "s://UNCOMMENTWHENINSTNIC::" \
        ${HORDEDIR}/config/registry.php
    @${CP} -p ${HORDEDIR}/config/registry.php \
        ${HORDEDIR}/config/registry.php.afterNic
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for FILE in ${DOCS}
    @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
.endfor
    @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
.endif

post-install:
    @${ECHO_MSG}
    @${CAT} ${PKGMESSAGE} | \
        ${SED} -e "s:%%NICDIR%%:${NICDIR}:g;s:%%CONFDIR%%:${CONFDIR}:g"
    @${ECHO_MSG}

.include <bsd.port.mk>