mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
4d879c2ef9
PR: ports/152169 Submitted by: Marco Re <laza_bsd@laza.it> Approved by: maintainer(timeout, >30 days)
98 lines
2.5 KiB
Makefile
98 lines
2.5 KiB
Makefile
# New ports collection makefile for: ossec-hids-server
|
|
# Date created: 23 July 2006
|
|
# Whom: Valerio Daelli <valerio.daelli@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ossec-hids
|
|
PORTVERSION= 2.5.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.ossec.net/files/ \
|
|
http://www.ossec.net/files/old/
|
|
PKGNAMESUFFIX= -server
|
|
|
|
MAINTAINER= valerio.daelli@gmail.com
|
|
COMMENT?= A security tool to monitor and check logs and intrusions
|
|
|
|
USE_RC_SUBR= ossec-hids
|
|
|
|
.if defined(WITH_DB)
|
|
USE_MYSQL= yes
|
|
USE_PGSQL= yes
|
|
USE_BDB= yes
|
|
.endif
|
|
|
|
SUB_LIST= PORTNAME=${PORTNAME}
|
|
SUB_FILES= pkg-message
|
|
PLIST_SUB= PORTNAME=${PORTNAME}
|
|
PORTDOCS= BUGS CONFIG CONTRIBUTORS INSTALL LICENSE README
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(CLIENT_ONLY)
|
|
PKGNAMESUFFIX= -client
|
|
CONFLICTS= ossec-hids-server-[0-9]* ossec-hids-local-[0-9]*
|
|
.elif defined(LOCAL_ONLY)
|
|
PKGNAMESUFFIX= -local
|
|
CONFLICTS= ossec-hids-client-[0-9]* ossec-hids-server-[0-9]*
|
|
.else
|
|
CONFLICTS= ossec-hids-client-[0-9]* ossec-hids-local-[0-9]*
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|PREFIX|${PREFIX}/${PORTNAME}|' ${WRKSRC}/src/LOCATION
|
|
@${REINPLACE_CMD} 's|PREFIX|${PREFIX}/${PORTNAME}|' ${WRKSRC}/src/headers/defs.h
|
|
|
|
do-build:
|
|
.if defined(WITH_DB)
|
|
.if defined(CLIENT_ONLY)
|
|
@cd ${WRKSRC}/src;${MAKE} setagent;${MAKE} all;${MAKE} build
|
|
.else
|
|
@cd ${WRKSRC}/src;${MAKE} setdb;${MAKE} all;${MAKE} build
|
|
.endif
|
|
.else
|
|
.if defined(CLIENT_ONLY)
|
|
@cd ${WRKSRC}/src;${MAKE} setagent;${MAKE} all;${MAKE} build
|
|
.else
|
|
@cd ${WRKSRC}/src;${MAKE} all;${MAKE} build
|
|
.endif
|
|
.endif
|
|
|
|
.if defined(CLIENT_ONLY)
|
|
do-install:
|
|
@cd ${WRKSRC}/src; ${MAKE} agent
|
|
.elif defined(LOCAL_ONLY)
|
|
do-install:
|
|
@cd ${WRKSRC}/src; ${MAKE} local
|
|
.else
|
|
do-install:
|
|
@cd ${WRKSRC}/src; ${MAKE} server
|
|
.endif
|
|
|
|
post-install:
|
|
.if defined(CLIENT_ONLY)
|
|
${CP} ${WRKSRC}/etc/ossec-agent.conf ${PREFIX}/${PORTNAME}/etc/ossec.conf.sample
|
|
@if [ ! -f ${PREFIX}/${PORTNAME}/etc/ossec.conf ]; then \
|
|
${CP} ${WRKSRC}/etc/ossec-agent.conf ${PREFIX}/${PORTNAME}/etc/ossec.conf; \
|
|
fi
|
|
.elif defined(LOCAL_ONLY)
|
|
${CP} ${WRKSRC}/etc/ossec-local.conf ${PREFIX}/${PORTNAME}/etc/ossec.conf.sample
|
|
@if [ ! -f ${PREFIX}/${PORTNAME}/etc/ossec.conf ]; then \
|
|
${CP} ${WRKSRC}/etc/ossec-local.conf ${PREFIX}/${PORTNAME}/etc/ossec.conf; \
|
|
fi
|
|
.else
|
|
@if [ ! -f ${PREFIX}/${PORTNAME}/etc/ossec.conf ]; then \
|
|
${CP} ${WRKSRC}/etc/ossec-server.conf ${PREFIX}/${PORTNAME}/etc/ossec.conf; \
|
|
fi
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|