aboutsummaryrefslogtreecommitdiffstats
path: root/misc/callid/Makefile
blob: be45e6fbce49883cd9475f84b36054f513f8182b (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
# New ports collection makefile for:   callid
# Date created:        19 February 2004
# Whom:                M. Possamai
#
# $FreeBSD$
#

PORTNAME=   callid
PORTVERSION=    1.2
PORTREVISION=   1
CATEGORIES= misc
MASTER_SITES=   http://www.xs4all.nl/~possamai/callid/

MAINTAINER= ports@FreeBSD.org
COMMENT=    Utility to log incoming calls using ISDN and output to mysql/php

USE_MYSQL=  yes
USE_PERL5=  yes
USE_PHP=    yes
WANT_PHP_WEB=   yes

NO_BUILD=   yes

PORTDOCS=   CHANGES README TODO make-db.mysql

RUN_DEPENDS+=   ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI

pre-everything::
    @${ECHO} ""
    @${ECHO} "You have to configure PHP with MYSQL support."
    @${ECHO} ""
    @${ECHO} "If you have already compiled PHP without MYSQL,"
    @${ECHO} "press CTRL+C now and rebuild it before installing callid."
    @${ECHO} ""

do-install:
    @${MKDIR} ${PREFIX}/www/callid
    @${INSTALL_DATA} ${WRKSRC}/src/*.php ${PREFIX}/www/callid
    @${INSTALL_DATA} ${WRKSRC}/src/*.html ${PREFIX}/www/callid
    @${MKDIR} ${PREFIX}/www/callid/images
    @${INSTALL_DATA} ${WRKSRC}/src/images/*.jpg ${PREFIX}/www/callid/images
    @${INSTALL_DATA} -m 550 ${WRKSRC}/sbin/call-logd ${PREFIX}/sbin
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
    @${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
.endfor
.endif

post-install:
    @if [ ! -f ${PREFIX}/etc/rc.d/callid.sh ]; then \
        ${ECHO} "Installing ${PREFIX}/etc/rc.d/callid.sh startup file."; \
        ${INSTALL_SCRIPT} -m 751 ${WRKSRC}/etc/rc.d/callid.sh ${PREFIX}/etc/rc.d/callid.sh; \
    fi

.include <bsd.port.mk>