From owner-svn-ports-branches@freebsd.org Thu Jul 6 01:47:52 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 996B3D98FAC; Thu, 6 Jul 2017 01:47:52 +0000 (UTC) (envelope-from junovitch@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 mx1.freebsd.org (Postfix) with ESMTPS id 65E3479FEA; Thu, 6 Jul 2017 01:47:52 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v661lpRQ022497; Thu, 6 Jul 2017 01:47:51 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v661lpDb022496; Thu, 6 Jul 2017 01:47:51 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201707060147.v661lpDb022496@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 6 Jul 2017 01:47:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445120 - in branches/2017Q3/games/flightgear: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: junovitch X-SVN-Commit-Paths: in branches/2017Q3/games/flightgear: . files X-SVN-Commit-Revision: 445120 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Jul 2017 01:47:52 -0000 Author: junovitch Date: Thu Jul 6 01:47:51 2017 New Revision: 445120 URL: https://svnweb.freebsd.org/changeset/ports/445120 Log: MFH: r444932 Add missing dependency to libudev Reported by: Markus Barenhoff Approved by: ports-secteam (with hat) Added: branches/2017Q3/games/flightgear/files/patch-INPUT-CMakeLists.txt - copied unchanged from r444932, head/games/flightgear/files/patch-INPUT-CMakeLists.txt Modified: branches/2017Q3/games/flightgear/Makefile Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/games/flightgear/Makefile ============================================================================== --- branches/2017Q3/games/flightgear/Makefile Thu Jul 6 01:43:36 2017 (r445119) +++ branches/2017Q3/games/flightgear/Makefile Thu Jul 6 01:47:51 2017 (r445120) @@ -3,7 +3,7 @@ PORTNAME= flightgear PORTVERSION= 2017.1.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= SF/flightgear/release-${PORTVERSION:R} @@ -19,7 +19,8 @@ LIB_DEPENDS= libpng.so:graphics/png \ libosg.so:graphics/osg \ libspeex.so:audio/speex \ libspeexdsp.so:audio/speexdsp \ - libcurl.so:ftp/curl + libcurl.so:ftp/curl \ + libudev.so:devel/libudev-devd BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \ ${LOCALBASE}/lib/libSimGearCore.a:devel/simgear RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \ Copied: branches/2017Q3/games/flightgear/files/patch-INPUT-CMakeLists.txt (from r444932, head/games/flightgear/files/patch-INPUT-CMakeLists.txt) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q3/games/flightgear/files/patch-INPUT-CMakeLists.txt Thu Jul 6 01:47:51 2017 (r445120, copy of r444932, head/games/flightgear/files/patch-INPUT-CMakeLists.txt) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2017-06-30 11:44:05.757902000 +0200 ++++ CMakeLists.txt 2017-06-30 11:49:07.188128000 +0200 +@@ -226,7 +226,7 @@ + if(EVENT_INPUT) + if(APPLE) + add_definitions(-DWITH_EVENTINPUT) +- elseif(CMAKE_SYSTEM_NAME MATCHES "Linux") ++ elseif(CMAKE_SYSTEM_NAME MATCHES "Linux|FreeBSD") + if(NOT UDEV_FOUND) + message(WARNING "UDev not found, event input is disabled!") + set(EVENT_INPUT 0)