diff options
author | will <will@FreeBSD.org> | 2001-03-31 11:12:56 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-03-31 11:12:56 +0800 |
commit | 2559658b55c7cfdb321f750126f9e057e80792a7 (patch) | |
tree | 091970f8cfb174a1c4d272d42256ff36b6267752 | |
parent | f03565378bb7874b523f03ad38c44095c9d2ae17 (diff) | |
download | freebsd-ports-graphics-2559658b55c7cfdb321f750126f9e057e80792a7.tar.gz freebsd-ports-graphics-2559658b55c7cfdb321f750126f9e057e80792a7.tar.zst freebsd-ports-graphics-2559658b55c7cfdb321f750126f9e057e80792a7.zip |
Add ddc 1.0, a program to control your DHCP daemon a la apachectl.
PR: 25479
Submitted by: Edwin Groothuis (edwin@mavetju.org)
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/ddc/Makefile | 17 | ||||
-rw-r--r-- | net/ddc/distinfo | 1 | ||||
-rw-r--r-- | net/ddc/files/patch-ddc | 15 | ||||
-rw-r--r-- | net/ddc/files/patch-ddc.8 | 18 | ||||
-rw-r--r-- | net/ddc/pkg-comment | 1 | ||||
-rw-r--r-- | net/ddc/pkg-descr | 7 | ||||
-rw-r--r-- | net/ddc/pkg-plist | 1 |
8 files changed, 61 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index f7ce825db48..28de9173786 100644 --- a/net/Makefile +++ b/net/Makefile @@ -57,6 +57,7 @@ SUBDIR += cvsupit SUBDIR += dante SUBDIR += datapipe + SUBDIR += ddc SUBDIR += ddup SUBDIR += delegate SUBDIR += despoof diff --git a/net/ddc/Makefile b/net/ddc/Makefile new file mode 100644 index 00000000000..652742cfc81 --- /dev/null +++ b/net/ddc/Makefile @@ -0,0 +1,17 @@ +# New ports collection makefile for: ddc +# Date created: 1 March 2001 +# Whom: Edwin Groothuis (edwin@mavetju.org) +# +# $FreeBSD$ +# + +PORTNAME= ddc +PORTVERSION= 1.0 +CATEGORIES= net +MASTER_SITES= http://www.mavetju.org/download/ + +MAINTAINER= edwin@mavetju.org + +MAN8= ddc.8 + +.include <bsd.port.mk> diff --git a/net/ddc/distinfo b/net/ddc/distinfo new file mode 100644 index 00000000000..37ec4aa507e --- /dev/null +++ b/net/ddc/distinfo @@ -0,0 +1 @@ +MD5 (ddc-1.0.tar.gz) = f1443abebca6290403b7b2e2fa18e3cf diff --git a/net/ddc/files/patch-ddc b/net/ddc/files/patch-ddc new file mode 100644 index 00000000000..a0eb8914c54 --- /dev/null +++ b/net/ddc/files/patch-ddc @@ -0,0 +1,15 @@ +--- ddc Mon Dec 18 15:27:48 2000 ++++ ddc Thu Mar 1 22:44:38 2001 +@@ -5,10 +5,10 @@ + # + # global variables, you might have to change them! + # +-DHCPD=/usr/sbin/dhcpd ++DHCPD=/usr/local/sbin/dhcpd + PIDFILE=/var/run/dhcpd.pid + LF=/var/db/dhcpd.leases +-CF=/etc/dhcpd.conf ++CF=/usr/local/etc/dhcpd.conf + #OPTIONS="-q -p 90 fxp0" + # + # diff --git a/net/ddc/files/patch-ddc.8 b/net/ddc/files/patch-ddc.8 new file mode 100644 index 00000000000..cf3f1e6894b --- /dev/null +++ b/net/ddc/files/patch-ddc.8 @@ -0,0 +1,18 @@ +--- ddc.8 Thu Mar 1 18:31:47 2001 ++++ ddc.8 Thu Mar 1 22:47:52 2001 +@@ -53,13 +53,13 @@ + + .Sh FILES + .Bl -tag -width /var/db/dhcpd.leases -compact +-.It Pa /usr/sbin/dhcpd ++.It Pa /usr/local/sbin/dhcpd + Executable of the DHCPD. + .It Pa /var/run/dhcpd.pid + Process id of the DHCP daemon. + .It Pa /var/db/dhcpd.leases + DHCPD client lease database +-.It Pa /etc/dhcpd.conf ++.It Pa /usr/local/etc/dhcpd.conf + Configuration file of the DHCP daemon. + .El + diff --git a/net/ddc/pkg-comment b/net/ddc/pkg-comment new file mode 100644 index 00000000000..c5e338a48ba --- /dev/null +++ b/net/ddc/pkg-comment @@ -0,0 +1 @@ +Control your DHCP daemon a la apachectl diff --git a/net/ddc/pkg-descr b/net/ddc/pkg-descr new file mode 100644 index 00000000000..456cd578132 --- /dev/null +++ b/net/ddc/pkg-descr @@ -0,0 +1,7 @@ +This command allows the system administrator to control the operation +of the DHCP daemon. + +WWW: http://www.mavetju.org/unix/general.phtml + +- Edwin Groothuis +edwin@mavetju.org diff --git a/net/ddc/pkg-plist b/net/ddc/pkg-plist new file mode 100644 index 00000000000..a6375e42403 --- /dev/null +++ b/net/ddc/pkg-plist @@ -0,0 +1 @@ +bin/ddc |