Update ipa to 2.0.2.
Patch provided by MAINTAINER, Andrey Simonenko in PR 35323.
ipa-2.0.2 released
Changes:
* If a system does not have LOG_PERROR flag for syslog(3) (this
is a non-standard flag), then "ipa -d" did not output log
messages to stderr.
* Now the configure script checks vsyslog() function, which is
not mentioned in SUSv3.
* Added checks for int32_t, uint32_t, int64_t and uint64_t
to configure.
* autoconf 2.59 -> 2.61, automake 1.9.6 -> 1.10.
* Now autoheader is used for generating src/config.in.h.
* New options for configure: --enable-gcc-more-warns,
--disable-gcc-warns.
* It was not possibly to correctly redefine SYM_PREFIX macro
variable, added relevant description to INSTALL.
* If positive counter of some rule is overflowed, then
statistics was incorrectly updated in databases.
* Initialization of descriptors in ipa was incorrect if
stdin, stdout and stderr were closed.
* Usage of include_files parameter in ipastat.conf caused fake
log messages about memory leak.
* Values in limit, expire, restart and threshold parameters
could not be written with spaces, corrected.
* In the configure script --enable-FEATURE and --disable-FEATURE
disabled FEATURE.
2007-01-03 13:31:00 +01:00
|
|
|
# $NetBSD: Makefile,v 1.2 2007/01/03 12:31:00 obache Exp $
|
2006-10-18 13:45:22 +02:00
|
|
|
#
|
|
|
|
|
Update ipa to 2.0.2.
Patch provided by MAINTAINER, Andrey Simonenko in PR 35323.
ipa-2.0.2 released
Changes:
* If a system does not have LOG_PERROR flag for syslog(3) (this
is a non-standard flag), then "ipa -d" did not output log
messages to stderr.
* Now the configure script checks vsyslog() function, which is
not mentioned in SUSv3.
* Added checks for int32_t, uint32_t, int64_t and uint64_t
to configure.
* autoconf 2.59 -> 2.61, automake 1.9.6 -> 1.10.
* Now autoheader is used for generating src/config.in.h.
* New options for configure: --enable-gcc-more-warns,
--disable-gcc-warns.
* It was not possibly to correctly redefine SYM_PREFIX macro
variable, added relevant description to INSTALL.
* If positive counter of some rule is overflowed, then
statistics was incorrectly updated in databases.
* Initialization of descriptors in ipa was incorrect if
stdin, stdout and stderr were closed.
* Usage of include_files parameter in ipastat.conf caused fake
log messages about memory leak.
* Values in limit, expire, restart and threshold parameters
could not be written with spaces, corrected.
* In the configure script --enable-FEATURE and --disable-FEATURE
disabled FEATURE.
2007-01-03 13:31:00 +01:00
|
|
|
DISTNAME= ipa-2.0.2
|
2006-10-18 13:45:22 +02:00
|
|
|
CATEGORIES= sysutils
|
|
|
|
MASTER_SITES= http://ipa-system.sourceforge.net/ \
|
|
|
|
http://www.mirrors.wiretapped.net/security/network-monitoring/ipa/ \
|
|
|
|
ftp://ftp.mirrors.wiretapped.net/pub/security/network-monitoring/ipa/
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
|
|
|
|
MAINTAINER= simon@comsys.ntu-kpi.kiev.ua
|
|
|
|
HOMEPAGE= http://ipa-system.sourceforge.net/
|
|
|
|
COMMENT= Pluggable accounting system
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
|
|
|
RCD_SCRIPTS= ipa
|
|
|
|
|
|
|
|
.if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly"
|
|
|
|
RCD_SCRIPT_SRC.ipa= ${FILESDIR}/ipa.sh
|
|
|
|
.else
|
|
|
|
RCD_SCRIPT_SRC.ipa= ${WRKSRC}/etc/ipa.sh.sample
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
|
|
|
|
.include "options.mk"
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
cd ${WRKSRC}/src && ${MAKE} install
|
|
|
|
cd ${WRKSRC}/man && ${MAKE} install-am
|
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|