blob: e01835a2e8498888fa2f6843b87d0486571273f3 (
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
|
# New ports collection makefile for: dhid
# Date created: Sat Aug 21 06:13:59 EDT 1999
# Whom: Oryx Gazella <oryx@ungulate.net>
#
# $FreeBSD$
#
PORTNAME= dhid
PORTVERSION= 3.1
CATEGORIES= net
MASTER_SITES= ftp://ftp.dhis.org/pub/dhis/
MAINTAINER= oryx@ungulate.net
MAN8= dhid.8
post-patch:
@${ECHO} "===> Patching dhid.h"
${PERL} -i -p -e "s^__PREFIX__^${PREFIX}^g" ${WRKSRC}/dhid.h
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/dhid ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/dhid.8 ${PREFIX}/man/man8
${INSTALL} ${COPY} -o root -g wheel -m 600 ${WRKSRC}/dhid.conf ${PREFIX}/etc/dhid.conf.sample
post-install:
@if [ ! -f ${PREFIX}/etc/rc.d/dhid.sh ]; then \
${ECHO} "===> Installing ${PREFIX}/etc/rc.d/dhid.sh startup file."; \
${INSTALL_SCRIPT} -m 751 ${FILESDIR}/dhid.sh ${PREFIX}/etc/rc.d/dhid.sh; \
fi;
@${ECHO} "--------------------------------------------------------------------------"
@${ECHO} "Before dhid can run, you will need to register with a DHIS provider."
@${ECHO} "See http://www.dhis.org/dhis/services/ for a list of providers."
@${ECHO} "Enter the DHIS account information into the ${PREFIX}/etc/dhid.conf file."
@${ECHO} "--------------------------------------------------------------------------"
.include <bsd.port.mk>
|