forked from Lainports/freebsd-ports
1. Some improvements for ipa(8) were implemented, as a result ipa(8) now uses less CPU time when works with many rules and with many limits. 2. Fixed incorrectly rounded Kbytes, Mbytes, Gbytes and Tbytes in output of ipastat(8). 3. Fixed some minor bugs in ipa(8). PR: 48668 Submitted by: Andrey Simonenko <simon@comsys.ntu-kpi.kiev.ua>
37 lines
1.2 KiB
Text
37 lines
1.2 KiB
Text
--- Makefile.orig Thu Feb 20 09:06:58 2003
|
|
+++ Makefile Mon Feb 24 23:43:33 2003
|
|
@@ -38,7 +38,7 @@
|
|
# -Ox - optimize;
|
|
# -g - produce debugging information.
|
|
#
|
|
-CFLAGS= -Wall -O1 -g
|
|
+#CFLAGS= -Wall -O1 -g
|
|
|
|
#
|
|
# PREFIX - prefix for all below listed paths
|
|
@@ -81,10 +81,10 @@
|
|
#
|
|
# INSTALL_* variables
|
|
#
|
|
-INSTALL_MAN= ${INSTALL} -c -g wheel -o root -m 0444
|
|
-INSTALL_DATA= ${INSTALL} -c -g wheel -o root -m 0444
|
|
-INSTALL_PROGRAM= ${INSTALL} -c -g wheel -o root -m 0555
|
|
-INSTALL_SCRIPT= ${INSTALL} -c -g wheel -o root -m 0500
|
|
+INSTALL_MAN= ${BSD_INSTALL_MAN}
|
|
+INSTALL_DATA= ${BSD_INSTALL_DATA}
|
|
+INSTALL_PROGRAM= ${BSD_INSTALL_PROGRAM}
|
|
+INSTALL_SCRIPT= ${BSD_INSTALL_SCRIPT}
|
|
INSTALL_MAN_DIR= ${INSTALL} -d -m 0555 -g wheel -o root
|
|
INSTALL_DATA_DIR= ${INSTALL} -d -m 0555 -g wheel -o root
|
|
|
|
@@ -218,8 +218,10 @@
|
|
.endif
|
|
${INSTALL_MAN} man/ru_RU.KOI8-R/ipa.5 man/ru_RU.KOI8-R/ipa.conf.5 ${DST_MAN_DIR}/ru_RU.KOI8-R/man5
|
|
${INSTALL_MAN} man/ru_RU.KOI8-R/ipa.8 man/ru_RU.KOI8-R/ipastat.8 ${DST_MAN_DIR}/ru_RU.KOI8-R/man8
|
|
+.if !defined(NOPORTDOCS)
|
|
${INSTALL_DATA_DIR} ${DST_EXAMPLE_DIR}
|
|
${INSTALL_DATA} examples/* ${DST_EXAMPLE_DIR}
|
|
+.endif
|
|
.if exists(${DST_RC_DIR})
|
|
${INSTALL_SCRIPT} etc/ipa.sh.sample ${DST_RC_DIR}
|
|
.else
|