From owner-svn-ports-head@freebsd.org Thu Aug 18 01:00:52 2016 Return-Path: Delivered-To: svn-ports-head@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 9EF60BBD13B; Thu, 18 Aug 2016 01:00:52 +0000 (UTC) (envelope-from kevlo@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 6F32716DB; Thu, 18 Aug 2016 01:00:52 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7I10pXk005258; Thu, 18 Aug 2016 01:00:51 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7I10pH6005257; Thu, 18 Aug 2016 01:00:51 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201608180100.u7I10pH6005257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Thu, 18 Aug 2016 01:00:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420377 - in head/sysutils/freefilesync: . 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.22 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: Thu, 18 Aug 2016 01:00:52 -0000 Author: kevlo Date: Thu Aug 18 01:00:51 2016 New Revision: 420377 URL: https://svnweb.freebsd.org/changeset/ports/420377 Log: Fix BROKEN for < 10.3. While here drop maintainership. PR: 211943 Submitted by: amdmi3 Deleted: head/sysutils/freefilesync/files/patch-zen_file__access.cpp Modified: head/sysutils/freefilesync/Makefile Modified: head/sysutils/freefilesync/Makefile ============================================================================== --- head/sysutils/freefilesync/Makefile Thu Aug 18 00:41:25 2016 (r420376) +++ head/sysutils/freefilesync/Makefile Thu Aug 18 01:00:51 2016 (r420377) @@ -1,3 +1,4 @@ +# Created by: Kevin Lo # $FreeBSD$ PORTNAME= freefilesync @@ -7,14 +8,12 @@ MASTER_SITES= http://www.freefilesync.or http://www.freefilesync.org/archive/ DISTNAME= FreeFileSync_${PORTVERSION}_Source -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Backup software to synchronize files and folders LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_FreeBSD_9= does not build on FreeBSD < 10.x - BUILD_DEPENDS= ${LOCALBASE}/include/zenxml/xml.h:textproc/zenxml LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libnotify.so:devel/libnotify @@ -29,6 +28,12 @@ USES= compiler:c++14-lang dos2unix gmak USE_LDCONFIG= yes USE_WX= 3.0+ +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1003000 +BROKEN= does not build on FreeBSD < 10.3 (lack of futimens(2)) +.endif + post-patch: @${REINPLACE_CMD} -e 's/wx-config/$${WX_CONFIG:T}/' \ -e 's,g++,$${CXX},' ${WRKSRC}/Makefile @@ -38,4 +43,4 @@ post-patch: @${REINPLACE_CMD} -e 's|CLOCK_MONOTONIC_RAW|CLOCK_MONOTONIC|' \ ${WRKDIR}/zen/tick_count.h -.include +.include