From owner-svn-ports-all@FreeBSD.ORG Tue Oct 29 05:37:54 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 80D3AB3C; Tue, 29 Oct 2013 05:37:54 +0000 (UTC) (envelope-from delphij@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E9AB2A43; Tue, 29 Oct 2013 05:37:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9T5bs2u011516; Tue, 29 Oct 2013 05:37:54 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9T5br8a011512; Tue, 29 Oct 2013 05:37:53 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201310290537.r9T5br8a011512@svn.freebsd.org> From: Xin LI Date: Tue, 29 Oct 2013 05:37:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331929 - in head/net/dhcpcd: . 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-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Oct 2013 05:37:54 -0000 Author: delphij Date: Tue Oct 29 05:37:53 2013 New Revision: 331929 URL: http://svnweb.freebsd.org/changeset/ports/331929 Log: Update to 5.5.6. PR: ports/175621 Submitted by: John Hein Approved by: maintainer Added: head/net/dhcpcd/files/patch-configure (contents, props changed) head/net/dhcpcd/pkg-plist (contents, props changed) Modified: head/net/dhcpcd/Makefile head/net/dhcpcd/distinfo Modified: head/net/dhcpcd/Makefile ============================================================================== --- head/net/dhcpcd/Makefile Tue Oct 29 02:54:44 2013 (r331928) +++ head/net/dhcpcd/Makefile Tue Oct 29 05:37:53 2013 (r331929) @@ -2,20 +2,23 @@ # $FreeBSD$ PORTNAME= dhcpcd -PORTVERSION= 3.2.3 +PORTVERSION= 5.5.6 CATEGORIES= net -MASTER_SITES= http://roy.marples.name/dhcpcd/ \ - http://critical.ch/distfiles/ \ - http://energy.critical.ch/distfiles/ +MASTER_SITES= http://roy.marples.name/downloads/dhcpcd/ \ + LOCAL/delphij MAINTAINER= roy@marples.name COMMENT= DHCP client +GNU_CONFIGURE= yes USE_BZIP2= yes USE_RC_SUBR= dhcpcd -MAN8= dhcpcd.8 -PLIST_FILES= sbin/dhcpcd - NO_STAGE= yes + +CONFIGURE_ARGS+= --mandir=${PREFIX}/man + +MAN5= dhcpcd.conf.5 +MAN8= dhcpcd.8 dhcpcd-run-hooks.8 + .include Modified: head/net/dhcpcd/distinfo ============================================================================== --- head/net/dhcpcd/distinfo Tue Oct 29 02:54:44 2013 (r331928) +++ head/net/dhcpcd/distinfo Tue Oct 29 05:37:53 2013 (r331929) @@ -1,2 +1,2 @@ -SHA256 (dhcpcd-3.2.3.tar.bz2) = 89d5fc05d7fd643200333116400d8a0eda9adf1c7f2a70e6cbca977c8d3843fe -SIZE (dhcpcd-3.2.3.tar.bz2) = 45030 +SHA256 (dhcpcd-5.5.6.tar.bz2) = 657f10dc7de48cba9f7170b593bf0e11987d06bd12378e3f4cd01b9e99b1e8e7 +SIZE (dhcpcd-5.5.6.tar.bz2) = 78185 Added: head/net/dhcpcd/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/dhcpcd/files/patch-configure Tue Oct 29 05:37:53 2013 (r331929) @@ -0,0 +1,30 @@ +--- ./configure.orig 2012-03-28 03:26:20.000000000 -0700 ++++ ./configure 2013-10-28 22:31:50.000000000 -0700 +@@ -53,7 +53,7 @@ + --includedir) eval INCLUDEDIR="$INCLUDEDIR${INCLUDEDIR:+ }$var";; + --datadir|--infodir) ;; # ignore autotools + --disable-maintainer-mode|--disable-dependency-tracking) ;; +- --help) echo "See the README file for available options"; exit 0;; ++ --help|--version) echo "See the README file for available options"; exit 0;; + *) echo "$0: WARNING: unknown option $opt" >&2;; + esac + done +@@ -101,7 +101,8 @@ + CONFIG_MK=config.mk + + if [ -z "$BUILD" ]; then +- BUILD=`uname -m`-`uname -s | tr '[:upper:]' '[:lower:]'` ++ # autoconf target triplet: cpu-vendor-os (where os = system or kernel-system) ++ BUILD=`uname -m`-unknown-`uname -s | tr '[:upper:]' '[:lower:]'` + fi + if [ -z "$HOST" ]; then + [ -z "$TARGET" ] && TARGET=$BUILD +@@ -124,6 +125,8 @@ + # Derive OS from cpu-manufacturer-os-kernel + CPU=${TARGET%%-*} + REST=${TARGET#*-} ++ VENDOR=${REST%%-*} ++ REST=${REST#*-} + if [ "$CPU" != "$REST" ]; then + MANU=${REST%%-*} + REST=${REST#*-} Added: head/net/dhcpcd/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/dhcpcd/pkg-plist Tue Oct 29 05:37:53 2013 (r331929) @@ -0,0 +1,12 @@ +@comment $FreeBSD$ +etc/dhcpcd.conf +sbin/dhcpcd +libexec/dhcpcd-hooks/50-ypbind +libexec/dhcpcd-hooks/10-mtu +libexec/dhcpcd-hooks/20-resolv.conf +libexec/dhcpcd-hooks/50-ntp.conf +libexec/dhcpcd-hooks/02-dump +libexec/dhcpcd-hooks/30-hostname +libexec/dhcpcd-hooks/01-test +libexec/dhcpcd-hooks/29-lookup-hostname +libexec/dhcpcd-run-hooks