diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-07 07:57:51 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-01-07 07:57:51 +0000 |
commit | dde12a2e746a3e065ccd6c4fa7abd4474d84cbc2 (patch) | |
tree | 57a4a378f16ea4640118695f02265dbda9beafaf | |
parent | 3b0c1b16dd2ccdb2d1739897f0a4684f68376e0b (diff) | |
download | ports-dde12a2e746a3e065ccd6c4fa7abd4474d84cbc2.tar.gz ports-dde12a2e746a3e065ccd6c4fa7abd4474d84cbc2.zip |
Notes
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/samhain-client/Makefile | 26 | ||||
-rw-r--r-- | security/samhain-server/Makefile | 25 |
3 files changed, 52 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index b3388b1b8c4d..7783b1c66099 100644 --- a/security/Makefile +++ b/security/Makefile @@ -531,6 +531,7 @@ SUBDIR += samba-vscan SUBDIR += samhain SUBDIR += samhain-client + SUBDIR += samhain-server SUBDIR += sancp SUBDIR += sasp SUBDIR += scanlogd diff --git a/security/samhain-client/Makefile b/security/samhain-client/Makefile new file mode 100644 index 000000000000..d48669609e50 --- /dev/null +++ b/security/samhain-client/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: samhain-client +# Date created: 2005-10-31 +# Whom: David Thiel +# +# $FreeBSD$ +# +# +# This port recognizes the following non-boolean tunables: +# +# WITH_LOG_SERVER, WITH_ALT_LOG_SERVER. When "WITH_CLIENT" is defined, +# these specify what server the client will fetch configuration +# and database files from. This can also be defined at runtime. +# + +PKGNAMESUFFIX= -client + +COMMENT= Client daemon for the Samhain IDS + +WITH_CLIENT= yes +NOPORTDOCS= yes + +MASTERDIR= ${.CURDIR}/../../security/samhain + +CONFLICTS= samhain-2* + +.include "${MASTERDIR}/Makefile" diff --git a/security/samhain-server/Makefile b/security/samhain-server/Makefile new file mode 100644 index 000000000000..eea2213bcae4 --- /dev/null +++ b/security/samhain-server/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: samhain-server +# Date created: 2005-10-31 +# Whom: David Thiel +# +# $FreeBSD$ +# + +# This port recognizes the following non-boolean tunables: +# +# WITH_RUNAS_USER: +# Whe building with "WITH_SERVER" defined, the username of the +# account Yule will run as. Defaults to "yule". If using +# WITH_GPG, ensure that this user exists and has a pgp +# keypair before installing. + + +PKGNAMESUFFIX= -server + +COMMENT= Log server for the Samhain IDS + +WITH_SERVER= yes + +MASTERDIR= ${.CURDIR}/../../security/samhain + +.include "${MASTERDIR}/Makefile" |