From owner-svn-ports-head@FreeBSD.ORG Wed May 14 18:29:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00C05FF1; Wed, 14 May 2014 18:29:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E1BC02BEE; Wed, 14 May 2014 18:29:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4EITQGT076001; Wed, 14 May 2014 18:29:26 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4EITQVq075997; Wed, 14 May 2014 18:29:26 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201405141829.s4EITQVq075997@svn.freebsd.org> From: Renato Botelho Date: Wed, 14 May 2014 18:29:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354083 - in head/devel/libpdel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 May 2014 18:29:27 -0000 Author: garga Date: Wed May 14 18:29:25 2014 New Revision: 354083 URL: http://svnweb.freebsd.org/changeset/ports/354083 QAT: https://qat.redports.org/buildarchive/r354083/ Log: . Fix build with recent current after removal of RTM_OLDADD and RTM_OLDDEL . Modernize LIB_DEPENDS syntax . Do not require root for staging . Bump PORTREVISION because of LIB_DEPENDS change PR: ports/189069 Approved by: maintainer timeout (> 2 weeks) Added: head/devel/libpdel/files/patch-Makefile (contents, props changed) head/devel/libpdel/files/patch-net__route_msg.c (contents, props changed) Modified: head/devel/libpdel/Makefile head/devel/libpdel/files/patch-arp Modified: head/devel/libpdel/Makefile ============================================================================== --- head/devel/libpdel/Makefile Wed May 14 17:56:47 2014 (r354082) +++ head/devel/libpdel/Makefile Wed May 14 18:29:25 2014 (r354083) @@ -3,14 +3,14 @@ PORTNAME= libpdel PORTVERSION= 0.5.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel net www MASTER_SITES= LOCAL/archie MAINTAINER= mav@alkar.net COMMENT= Packet Design multi-purpose C library for embedded applications -LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 +LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 MAKE_ENV= WITHOUT_PROFILE=yes __MAKE_CONF=/dev/null SRCCONF=/dev/null USE_LDCONFIG= yes Added: head/devel/libpdel/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpdel/files/patch-Makefile Wed May 14 18:29:25 2014 (r354083) @@ -0,0 +1,14 @@ +--- Makefile.orig 2014-04-26 19:31:00.000000000 -0300 ++++ Makefile 2014-04-26 19:31:40.000000000 -0300 +@@ -2,6 +2,11 @@ + + LIB= pdel + ++BINOWN!= /usr/bin/id -n -u ++BINGRP!= /usr/bin/id -n -g ++SHAREOWN= ${BINOWN} ++SHAREGRP= ${BINGRP} ++ + SUBDIRS= config http io net ppp structs sys tmpl util + + VERSION!= grep -w PDEL_VERSION_STRING ${.CURDIR}/version.h \ Modified: head/devel/libpdel/files/patch-arp ============================================================================== --- head/devel/libpdel/files/patch-arp Wed May 14 17:56:47 2014 (r354082) +++ head/devel/libpdel/files/patch-arp Wed May 14 18:29:25 2014 (r354083) @@ -16,7 +16,7 @@ struct route_flag { const char *name; -@@ -92,15 +98,21 @@ static const struct route_flag route_fla +@@ -92,15 +98,23 @@ static const struct route_flag route_fla FLAG(DYNAMIC), FLAG(MODIFIED), FLAG(DONE), @@ -31,7 +31,9 @@ FLAG(BLACKHOLE), FLAG(PROTO2), FLAG(PROTO1), ++#ifdef RTF_PRCLONING FLAG(PRCLONING), ++#endif +#ifdef RTF_WASCLONED FLAG(WASCLONED), +#endif Added: head/devel/libpdel/files/patch-net__route_msg.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpdel/files/patch-net__route_msg.c Wed May 14 18:29:25 2014 (r354083) @@ -0,0 +1,15 @@ +--- net/route_msg.c.orig 2014-04-26 19:28:21.000000000 -0300 ++++ net/route_msg.c 2014-04-26 19:28:57.000000000 -0300 +@@ -608,8 +608,12 @@ + case RTM_REDIRECT: typestr = "REDIRECT"; break; + case RTM_MISS: typestr = "MISS"; break; + case RTM_LOCK: typestr = "LOCK"; break; ++#ifdef RTM_OLDADD + case RTM_OLDADD: typestr = "OLDADD"; break; ++#endif ++#ifdef RTM_OLDDEL + case RTM_OLDDEL: typestr = "OLDDEL"; break; ++#endif + case RTM_RESOLVE: typestr = "RESOLVE"; break; + case RTM_NEWADDR: typestr = "NEWADDR"; break; + case RTM_DELADDR: typestr = "DELADDR"; break;