Patch provided by maintainer, Andrey Simonenko in PR 36692. Changes: * Now IPA can be used on Cygwin (previously it only could be built). * If SYM_PREFIX is defined, then ipa and ipastat try to lookup symbols in modules with SYM_PREFIX, if this attempt failed, then they try to lookup symbols without prefix. * Use closefrom() system call if the system supports it. * During startup ipa could unlink locked PID-file, that was locked by another ipa process. * WCOREDUMP macro is not mentioned in SUSv3 (#ifdef it).
32 lines
812 B
Makefile
32 lines
812 B
Makefile
# $NetBSD: Makefile,v 1.5 2007/07/26 12:21:40 obache Exp $
|
|
#
|
|
|
|
DISTNAME= ipa-2.0.4
|
|
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}
|
|
CONFIGURE_ARGS+= --with-mandir-ru=ru
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|