blob: 6c0009b83d60d658454a2a17fc95c7133764f970 (
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
|
# New ports collection makefile for: hobbit-client
# Date created: 24 Jan 2008
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= hobbit
PORTVERSION= 4.2.0
PORTREVISION= 1
CATEGORIES= net-mgmt www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= hobbitmon
PKGNAMESUFFIX= -client${PKGNAMESUFFIX2}
MAINTAINER= dinoex@FreeBSD.org
COMMENT= System for monitoring servers and networks - Client
# Options
BBUSER?= hobbit
BBHOSTIP?= 127.0.0.1
USE_GMAKE= yes
CONFIGURE_ENV= MAKE=gmake
MAKE_ENV+= BBUSER="${BBUSER}"
MAKE_ENV+= BBHOSTIP="${BBHOSTIP}"
USE_RC_SUBR= hobbit-client.sh
PLIST_SUB+= BBUSER="${BBUSER}"
CONFIG_FILES= clientlaunch.cfg hobbitclient.cfg localclient.cfg
# Configure script is interactive
do-configure:
${CP} ${FILESDIR}/Makefile ${WRKSRC}/
pre-install:
if ! pw groupshow ${BBUSER}; then pw groupadd ${BBUSER} -g 280; fi
if ! pw usershow ${BBUSER}; then pw useradd ${BBUSER} -g ${BBUSER} -u 280 \
-h - -d ${NONEXISTENT} -s /usr/sbin/nologin -c "Hobbit Monitor"; fi
post-install:
.for i in ${CONFIG_FILES}
${CP} -np ${WWWDIR}/client/etc/${i}-dist \
${WWWDIR}/client/etc/${i}
.endfor
.include <bsd.port.mk>
|