Import parpd, a Proxy ARP Daemon.

This commit is contained in:
Roy Marples 2008-10-07 21:12:14 +00:00 committed by Thomas Klausner
parent 1206f9616f
commit a227fd701a
5 changed files with 51 additions and 0 deletions

2
parpd/DESCR Normal file
View file

@ -0,0 +1,2 @@
An implementation of the Proxy ARP Daemon sepcified in RFC1027.
It's very small and bloat free.

22
parpd/Makefile Normal file
View file

@ -0,0 +1,22 @@
# $NetBSD: Makefile,v 1.1 2008/10/07 21:12:14 rsmarples Exp $
#
DISTNAME= parpd-1.0
CATEGORIES= net
MASTER_SITES= ftp://roy.marples.name/pub/parpd/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= roy@marples.name
HOMEPAGE= http://roy.marples.name/projects/parpd/
COMMENT= RFC1027 compliant Proxy ARP Daemon
PKG_DESTDIR_SUPPORT= user-destdir
USE_LANGUAGES= c99
EGDIR= ${PREFIX}/share/examples
MAKE_ENV+= MANDIR=${PREFIX}/${PKGMANDIR}/man
INSTALL_MAKE_FLAGS+= SYSCONFDIR=${EGDIR}
RCD_SCRIPTS+= parpd
.include "../../mk/bsd.pkg.mk"

5
parpd/PLIST Normal file
View file

@ -0,0 +1,5 @@
@comment $NetBSD: PLIST,v 1.1 2008/10/07 21:12:14 rsmarples Exp $
man/man5/parpd.conf.5
man/man8/parpd.8
sbin/parpd
share/examples/rc.d/parpd

5
parpd/distinfo Normal file
View file

@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.1 2008/10/07 21:12:14 rsmarples Exp $
SHA1 (parpd-1.0.tar.bz2) = 2ee3b72538183075f95c00fb378548e8b4f7008e
RMD160 (parpd-1.0.tar.bz2) = 9cb6e273a938ee423aa161630b0143c22f3390d6
Size (parpd-1.0.tar.bz2) = 11567 bytes

17
parpd/files/parpd.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/sh
#
# $NetBSD: parpd.sh,v 1.1 2008/10/07 21:12:14 rsmarples Exp $
#
# PROVIDE: parpd
# REQUIRE: DAEMON
$_rc_subr_loaded . /etc/rc.subr
name="parpd"
rcvar=$name
command="@PREFIX@/sbin/${name}"
required_files="/etc/${name}.conf"
load_rc_config $name
run_rc_command "$1"