Index: branches/2015Q3/net/dhcprelay/Makefile =================================================================== --- branches/2015Q3/net/dhcprelay/Makefile (revision 392383) +++ branches/2015Q3/net/dhcprelay/Makefile (revision 392384) @@ -1,21 +1,21 @@ # Created by: Edwin Groothuis (edwin@mavetju.org) # $FreeBSD$ PORTNAME= dhcprelay PORTVERSION= 1.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MASTER_SITES= http://www.mavetju.org/download/ MAINTAINER= edwin@mavetju.org COMMENT= Lightweight DHCP Relay Agent with GIF tunnel support LIB_DEPENDS= libdnet.so:${PORTSDIR}/net/libdnet PLIST_FILES= bin/dhcprelay USE_RC_SUBR= ${PORTNAME} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/dhcprelay ${STAGEDIR}${PREFIX}/bin .include Index: branches/2015Q3/net/dhcprelay/files/patch-Makefile =================================================================== --- branches/2015Q3/net/dhcprelay/files/patch-Makefile (revision 392383) +++ branches/2015Q3/net/dhcprelay/files/patch-Makefile (revision 392384) @@ -1,15 +1,15 @@ ---- Makefile.orig Tue Nov 15 18:25:30 2005 -+++ Makefile Tue Nov 15 18:25:59 2005 +--- Makefile.orig 2006-03-21 02:46:28 UTC ++++ Makefile @@ -1,8 +1,10 @@ +all: dhcprelay + dhcprelay: dhcprelay.o - gcc -g -o $@ -Wall -L/usr/local/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 $< + ${CC} -g -c -o $@ -Wall -I${LOCALBASE}/include $< clean: rm -f dhcprelay.o dhcprelay dhcprelay.core Index: branches/2015Q3/net/dhcprelay/files/patch-dhcprelay.c =================================================================== --- branches/2015Q3/net/dhcprelay/files/patch-dhcprelay.c (nonexistent) +++ branches/2015Q3/net/dhcprelay/files/patch-dhcprelay.c (revision 392384) @@ -0,0 +1,11 @@ +--- dhcprelay.c.orig 2006-03-21 02:46:28 UTC ++++ dhcprelay.c +@@ -186,7 +186,7 @@ void pcap_callback(u_char *user, const s + printf(" %d",eh->ether_type); + } + // check for IPv4 packets +- if (eh->ether_type!=8) { ++ if (eh->ether_type != htons(0x800)) { + if (DEBUG>1) printf("\n"); + return; + } Property changes on: branches/2015Q3/net/dhcprelay/files/patch-dhcprelay.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2015Q3 =================================================================== --- branches/2015Q3 (revision 392383) +++ branches/2015Q3 (revision 392384) Property changes on: branches/2015Q3 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r392296