From owner-svn-ports-head@freebsd.org Wed Sep 4 19:05:23 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A17A3CA6D2; Wed, 4 Sep 2019 19:05:23 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46NtYv3nFMz3Gp0; Wed, 4 Sep 2019 19:05:23 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 653352014F; Wed, 4 Sep 2019 19:05:23 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x84J5Nqg012209; Wed, 4 Sep 2019 19:05:23 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x84J5MR8012205; Wed, 4 Sep 2019 19:05:22 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201909041905.x84J5MR8012205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 4 Sep 2019 19:05:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511146 - in head/net/vde2: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/net/vde2: . files X-SVN-Commit-Revision: 511146 X-SVN-Commit-Repository: ports 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.29 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, 04 Sep 2019 19:05:23 -0000 Author: pi Date: Wed Sep 4 19:05:22 2019 New Revision: 511146 URL: https://svnweb.freebsd.org/changeset/ports/511146 Log: net/vde2: fix build error: use of undeclared identifier 'BIOCSHDRCMPLT' - fix build - change WWW to github - pet portlint PR: 229525 Reported by: O. Hartmann Submitted by: Walter Schwarzenfeld Added: head/net/vde2/files/patch-src_vde__pcapplug.c (contents, props changed) Modified: head/net/vde2/Makefile head/net/vde2/files/patch-src__dpipe.c head/net/vde2/pkg-descr Modified: head/net/vde2/Makefile ============================================================================== --- head/net/vde2/Makefile Wed Sep 4 18:22:03 2019 (r511145) +++ head/net/vde2/Makefile Wed Sep 4 19:05:22 2019 (r511146) @@ -3,7 +3,7 @@ PORTNAME= vde2 PORTVERSION= 2.3.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MASTER_SITES= SF/vde/${PORTNAME}/${PORTVERSION} @@ -13,13 +13,15 @@ COMMENT= User-mode virtual ethernet infrastructure LICENSE= BSD3CLAUSE GPLv2 LGPL21 LICENSE_COMB= multi -CONFLICTS= vde-[0-9]* +LIB_DEPENDS= libpcap.so:net/libpcap +USES= gmake libtool pathfix shebangfix ssl +USE_LDCONFIG= yes + +CONFLICTS= vde-[0-9]* GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= gmake libtool pathfix shebangfix SHEBANG_FILES= src/lib/python/VdePlug.py -USE_LDCONFIG= yes MAKE_ENV= V=1 MAKE_JOBS_UNSAFE=yes @@ -28,7 +30,7 @@ OPTIONS_DEFAULT= PYTHON OPTIONS_SUB= yes PYTHON_CONFIGURE_OFF= --disable-python -PYTHON_USES= python +PYTHON_USES= python gettext-runtime PYTHON_CPPFLAGS= -I${LOCALBASE}/include PYTHON_LDFLAGS= -L${LOCALBASE}/lib Modified: head/net/vde2/files/patch-src__dpipe.c ============================================================================== --- head/net/vde2/files/patch-src__dpipe.c Wed Sep 4 18:22:03 2019 (r511145) +++ head/net/vde2/files/patch-src__dpipe.c Wed Sep 4 19:05:22 2019 (r511146) @@ -1,6 +1,6 @@ ---- src/dpipe.c.orig 2011-11-24 01:41:18.000000000 +0900 -+++ src/dpipe.c 2011-11-28 03:05:11.000000000 +0900 -@@ -201,7 +201,7 @@ +--- src/dpipe.c.orig 2011-11-23 16:41:18 UTC ++++ src/dpipe.c +@@ -201,7 +201,7 @@ int main(int argc, char *argv[]) if (daemonize != 0) daemon(0,0); Added: head/net/vde2/files/patch-src_vde__pcapplug.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/vde2/files/patch-src_vde__pcapplug.c Wed Sep 4 19:05:22 2019 (r511146) @@ -0,0 +1,10 @@ +--- src/vde_pcapplug.c.orig 2011-11-23 16:41:18 UTC ++++ src/vde_pcapplug.c +@@ -24,6 +24,7 @@ + #include + #include + #include ++#include + #include + #include + #include Modified: head/net/vde2/pkg-descr ============================================================================== --- head/net/vde2/pkg-descr Wed Sep 4 18:22:03 2019 (r511145) +++ head/net/vde2/pkg-descr Wed Sep 4 19:05:22 2019 (r511146) @@ -4,4 +4,4 @@ multiple qemu instances together in a shared virtual n tunneling over the Internet. Physical hosts can be joined to the virtual network by means of the tap(4) driver. -WWW: http://vde.sourceforge.net/ +WWW: https://github.com/virtualsquare/vde-2