diff options
author | jlam <jlam@pkgsrc.org> | 2002-06-30 03:47:53 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-06-30 03:47:53 +0000 |
commit | d895983c631450f2f88778a5a797ac4eee3b4752 (patch) | |
tree | 5438bf970982ed835f329f099aebe3a51589a751 /net/ipa/Makefile | |
parent | 34c33b1c1d14b80a1949c173555f26416a446d57 (diff) | |
download | pkgsrc-d895983c631450f2f88778a5a797ac4eee3b4752.tar.gz |
Update net/ipa to 1.2.7. Changes from version 1.2.5 include a
- Honor PKG_SYSCONFDIR and use bsd.pkg.install.mk to handle config files
and rc.d scripts.
- Memory access fixes.
- Now '{', '}', '#' and ';' characters are not allowed for naming
rules and limits.
*** SECURITY UPDATE ***
Removed SUID bit from ipastat(8) due to security problems (and don't
even try to set it back). Admins who use the "db_owner" parameter
*and* use some safe user/group, *and* didn't forget to set the same
safe user/group for the ipastat(8) program, as it was said in the
SECURITY NOTE on the ipastat(8) manual page, should not worry a lot.
Admins who ignored that SECURITY NOTE should double check the security
of their systems and change all passwords, secrets keys, etc. if you
think that somebody cracked your systems by ipastat(8).
Diffstat (limited to 'net/ipa/Makefile')
-rw-r--r-- | net/ipa/Makefile | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/net/ipa/Makefile b/net/ipa/Makefile index 1e9eb4fabe2..bcdfc47825a 100644 --- a/net/ipa/Makefile +++ b/net/ipa/Makefile @@ -1,18 +1,31 @@ -# $NetBSD: Makefile,v 1.2 2002/04/15 10:51:53 martti Exp $ +# $NetBSD: Makefile,v 1.3 2002/06/30 03:47:53 jlam Exp $ -DISTNAME= ipa-1.2.5 -CATEGORIES= net sysutils -MASTER_SITES= http://www.simon.org.ua/ipa/ +DISTNAME= ipa-1.2.7 +CATEGORIES= net sysutils +MASTER_SITES= http://www.simon.org.ua/ipa/ \ + http://www.mirrors.wiretapped.net/security/network-monitoring/ipa/ -MAINTAINER= simon@simon.org.ua -HOMEPAGE= http://www.simon.org.ua/ipa/ -COMMENT= IP accounting software +MAINTAINER= simon@simon.org.ua +HOMEPAGE= http://www.simon.org.ua/ipa/ +COMMENT= IP accounting software RESTRICTED= "Needs to be built uniquely for each host" NO_BIN_ON_FTP= ${RESTRICTED} NO_BIN_ON_CDROM= ${RESTRICTED} NO_PACKAGE= ${RESTRICTED} +USE_BUILDLINK_ONLY= # defined ALL_TARGET= NetBSD +CFLAGS+= -DCFGFILE=\\\"${PKG_SYSCONFDIR}/ipa.conf\\\" + +CONF_FILES_PERMS= ${PREFIX}/share/examples/ipa/ipa.conf.default \ + ${PKG_SYSCONFDIR}/ipa.conf \ + ${ROOT_USER} ${ROOT_GROUP} 0400 +RCD_SCRIPTS= ipa + +pre-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ipa + +.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |