mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 07:19:16 -04:00
The ng_car netgraph module is a "Committed Access Rate" iplementation for netgraph. It provides an easy way to use a network interface at a rate below its specification. It uses a token bucket algorithm to measure and classify the network packets flowing through it. PR: 87098 Submitted by: Nuno Antunes <nuno.antunes@gmail.com>
16 lines
268 B
Text
16 lines
268 B
Text
--- Makefile.orig Mon Sep 26 22:18:41 2005
|
|
+++ Makefile Thu Oct 6 22:30:52 2005
|
|
@@ -2,7 +2,13 @@
|
|
SRCS= ng_car.c
|
|
|
|
MAN= ng_car.4
|
|
+MANDIR= ${PREFIX}/man/man
|
|
|
|
#CFLAGS+= -g
|
|
|
|
.include <bsd.kmod.mk>
|
|
+.include <bsd.man.mk>
|
|
+
|
|
+all: _manpages
|
|
+
|
|
+install: _maninstall
|