diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2006-03-21 02:48:21 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2006-03-21 02:48:21 +0000 |
commit | 7c8f360e111c0d42c34cb16cf1e809e8d8dd8f6f (patch) | |
tree | 0eb4ec982ed2cd181522d4ae0df4e836827622c1 /net/dhcprelay | |
parent | f7b0a9d37736e3d472db7eb063b5e16ff9d2ab71 (diff) | |
download | ports-7c8f360e111c0d42c34cb16cf1e809e8d8dd8f6f.tar.gz ports-7c8f360e111c0d42c34cb16cf1e809e8d8dd8f6f.zip |
Notes
Diffstat (limited to 'net/dhcprelay')
-rw-r--r-- | net/dhcprelay/Makefile | 4 | ||||
-rw-r--r-- | net/dhcprelay/distinfo | 6 | ||||
-rw-r--r-- | net/dhcprelay/files/dhcprelay.sh.in | 4 | ||||
-rw-r--r-- | net/dhcprelay/files/patch-Makefile | 4 | ||||
-rw-r--r-- | net/dhcprelay/pkg-descr | 2 |
5 files changed, 9 insertions, 11 deletions
diff --git a/net/dhcprelay/Makefile b/net/dhcprelay/Makefile index d9e62b9a83af..36f17e255a3b 100644 --- a/net/dhcprelay/Makefile +++ b/net/dhcprelay/Makefile @@ -6,12 +6,12 @@ # PORTNAME= dhcprelay -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= net MASTER_SITES= http://www.mavetju.org/download/ MAINTAINER= edwin@mavetju.org -COMMENT= Light weight DHCP Relay Agent with GIF tunnel support +COMMENT= Lightweight DHCP Relay Agent with GIF tunnel support LIB_DEPENDS= dnet.1:${PORTSDIR}/net/libdnet diff --git a/net/dhcprelay/distinfo b/net/dhcprelay/distinfo index 9840e2794503..3a4d2efc4992 100644 --- a/net/dhcprelay/distinfo +++ b/net/dhcprelay/distinfo @@ -1,3 +1,3 @@ -MD5 (dhcprelay-1.1.tar.gz) = 586019d11a59d9014ab9bd2670925422 -SHA256 (dhcprelay-1.1.tar.gz) = e24c303616f31e9baf8a4198fe2e75d780912e62276384ab63963941ac8e07a8 -SIZE (dhcprelay-1.1.tar.gz) = 4870 +MD5 (dhcprelay-1.2.tar.gz) = 876b29f47e733aa8ba393600a05ddac0 +SHA256 (dhcprelay-1.2.tar.gz) = 031485e4e426de163dd377ee65ca0665441a821b72a635f8a6a52bdb88886d24 +SIZE (dhcprelay-1.2.tar.gz) = 4476 diff --git a/net/dhcprelay/files/dhcprelay.sh.in b/net/dhcprelay/files/dhcprelay.sh.in index f42a94a356b1..421389007473 100644 --- a/net/dhcprelay/files/dhcprelay.sh.in +++ b/net/dhcprelay/files/dhcprelay.sh.in @@ -1,6 +1,6 @@ #! /bin/sh # -# $FreeBSD: /tmp/pcvs/ports/net/dhcprelay/files/Attic/dhcprelay.sh.in,v 1.2 2006-02-20 20:47:22 dougb Exp $ +# $FreeBSD: /tmp/pcvs/ports/net/dhcprelay/files/Attic/dhcprelay.sh.in,v 1.3 2006-03-21 02:48:21 edwin Exp $ # # PROVIDE: dhcprelay # REQUIRE: DAEMON @@ -17,7 +17,7 @@ dhcprelay_ifaces=${dhcprelay_ifaces:-} # ethernet interface(s) dhcprelay_precmd () { - rc_flags="${rc_flags} ${dhcprelay_ifaces} ${dhcprelay_servers}" + rc_flags="${rc_flags} ${dhcprelay_ifaces} ${dhcprelay_server}" } . %%RC_SUBR%% diff --git a/net/dhcprelay/files/patch-Makefile b/net/dhcprelay/files/patch-Makefile index 386be9f2f16b..14b83df39d2c 100644 --- a/net/dhcprelay/files/patch-Makefile +++ b/net/dhcprelay/files/patch-Makefile @@ -5,11 +5,11 @@ + dhcprelay: dhcprelay.o - gcc -g -o $@ -Wall -L/usr/local/lib -lpcap -ldnet $> -+ gcc -g -o $@ -Wall -L${LOCALBASE}/lib -lpcap -ldnet $> ++ ${CC} -g -o $@ -Wall -L${LOCALBASE}/lib -lpcap -ldnet $> dhcprelay.o: dhcprelay.c - gcc -g -c -o $@ -Wall -I/usr/local/include $< -+ gcc -g -c -o $@ -Wall -I${LOCALBASE}/include $< ++ ${CC} -g -c -o $@ -Wall -I${LOCALBASE}/include $< clean: rm -f dhcprelay.o dhcprelay dhcprelay.core diff --git a/net/dhcprelay/pkg-descr b/net/dhcprelay/pkg-descr index 653e39194a82..7e63934635be 100644 --- a/net/dhcprelay/pkg-descr +++ b/net/dhcprelay/pkg-descr @@ -23,7 +23,5 @@ Why not the ISC DHCP Relay Agent? which VPN back to the central network), the answers are not picked up by the RA. - This RA does use a unicast socket for returning answers. - WWW: http://www.mavetju.org/networking/ Author: Edwin Groothuis <edwin@mavetju.org> |