From owner-svn-ports-all@freebsd.org Tue Jan 2 01:18:41 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8BE57EA72CD; Tue, 2 Jan 2018 01:18:41 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 564F866EE9; Tue, 2 Jan 2018 01:18:41 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w021IeLe055414; Tue, 2 Jan 2018 01:18:40 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w021IeRK055413; Tue, 2 Jan 2018 01:18:40 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201801020118.w021IeRK055413@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Tue, 2 Jan 2018 01:18:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457828 - head/security/ossec-hids-server X-SVN-Group: ports-head X-SVN-Commit-Author: brd X-SVN-Commit-Paths: head/security/ossec-hids-server X-SVN-Commit-Revision: 457828 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Jan 2018 01:18:41 -0000 Author: brd Date: Tue Jan 2 01:18:40 2018 New Revision: 457828 URL: https://svnweb.freebsd.org/changeset/ports/457828 Log: Fix database support in ossec-hids-local and pass maintainer to submitter PR: 221269 Submitted by: Dominik Lisiak Modified: head/security/ossec-hids-server/Makefile Modified: head/security/ossec-hids-server/Makefile ============================================================================== --- head/security/ossec-hids-server/Makefile Tue Jan 2 00:59:15 2018 (r457827) +++ head/security/ossec-hids-server/Makefile Tue Jan 2 01:18:40 2018 (r457828) @@ -4,11 +4,11 @@ PORTNAME= ossec-hids PORTVERSION= 2.8.3 DISTVERSIONPREFIX= v -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= security PKGNAMESUFFIX= -server -MAINTAINER= brd@FreeBSD.org +MAINTAINER= dominik.lisiak@bemsoft.pl COMMENT?= Security tool to monitor and check logs and intrusions USE_GITHUB= yes @@ -96,7 +96,7 @@ do-build: .if defined(CLIENT_ONLY) @cd ${WRKSRC}/src;${MAKE} setagent;${MAKE} all;${MAKE} build .elif defined(LOCAL_ONLY) - @cd ${WRKSRC}/src;${MAKE} setlocal;${MAKE} all;${MAKE} build + @cd ${WRKSRC}/src;${MAKE} setlocal;${MAKE} setdb;${MAKE} all;${MAKE} build .else @cd ${WRKSRC}/src;${MAKE} setdb;${MAKE} all;${MAKE} build .endif