f1e7eab840
packing-lists was changes in significant ways, and they do not have enough dependencies that pkg_add can detect they changed through their signature. Bump the pkgname, so that pkg_add -r will choose to update them. okay pvalchev@
37 lines
842 B
Makefile
37 lines
842 B
Makefile
# $OpenBSD: Makefile,v 1.11 2005/08/17 16:10:04 espie Exp $
|
|
|
|
COMMENT= "Advanced Intrusion Detection Environment"
|
|
|
|
V= 0.10
|
|
DISTNAME= aide-${V}
|
|
PKGNAME= ${DISTNAME}p0
|
|
CATEGORIES= security
|
|
|
|
BUILD_DEPENDS= ::devel/bison \
|
|
::security/mhash
|
|
|
|
HOMEPAGE= http://www.cs.tut.fi/~rammer/aide.html
|
|
|
|
MAINTAINER= Benoit LECOCQ <blq@arcane-labs.net>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=aide/}
|
|
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --with-mhash
|
|
CONFIGURE_ENV+= YACC="bison -y" \
|
|
CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/aide
|
|
${INSTALL_DATA} ${WRKSRC}/doc/aide.conf ${PREFIX}/share/examples/aide
|
|
|
|
.include <bsd.port.mk>
|