diff options
author | oliver <oliver@FreeBSD.org> | 2003-07-11 20:11:11 +0000 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2003-07-11 20:11:11 +0000 |
commit | 6784a4e348cc0873d58cf7d61803026f5586d123 (patch) | |
tree | 2456c84d2d107d6ee5dd3edefd21ee02ea3594a4 /security/osiris/Makefile | |
parent | ff174328aec154cba4a5d3efa80558e1c62a4a34 (diff) | |
download | FreeBSD-ports-6784a4e348cc0873d58cf7d61803026f5586d123.zip FreeBSD-ports-6784a4e348cc0873d58cf7d61803026f5586d123.tar.gz |
Add osiris 1.5.2,
file integrity checking, with GDBM and MySQL
support.
PR: 50026
Submitted by: Nicolas Jombart <ecu@ipv42.net>
Diffstat (limited to 'security/osiris/Makefile')
-rw-r--r-- | security/osiris/Makefile | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/security/osiris/Makefile b/security/osiris/Makefile new file mode 100644 index 0000000..3df095c --- /dev/null +++ b/security/osiris/Makefile @@ -0,0 +1,51 @@ +# New ports collection Makefile for: osiris +# Date created: 10, February 2003 +# Whom: Nicolas Jombart <ecu@ipv42.net> +# +# $FreeBSD$ +# + +PORTNAME= osiris +PORTVERSION= 1.5.2 +CATEGORIES= security +MASTER_SITES= http://osiris.shmoo.com/data/ + +MAINTAINER= ecu@ipv42.net +COMMENT= File integrity checking, with GDBM and MySQL support + +.if defined(WITH_MYSQL) +LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} \ + --enable-module=mysql +.else +LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm +CONFIGURE_ARGS+= --with-gdbm=${LOCALBASE} \ + --with-module-lib=${LOCALBASE}/lib \ + --with-module-includes=${LOCALBASE}/include +.endif + +NO_CDROM= This software can not be sold. + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes + +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} + +MAN1= osiris.1 scale.1 + +pre-configure: + @${ECHO_MSG} "" + @${ECHO_MSG} "Set WITH_MYSQL to get MySQL support." + @${ECHO_MSG} "" + +post-install: + ${INSTALL_DATA} ${WRKSRC}/configs/osiris-freebsd-4.4.conf \ + ${PREFIX}/etc/osiris.conf-sample +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for f in docs/manual.html docs/manual.txt + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |