Date: Fri, 9 Aug 2019 17:23:30 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508459 - head/sysutils/crate Message-ID: <201908091723.x79HNUuX031644@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Aug 9 17:23:29 2019 New Revision: 508459 URL: https://svnweb.freebsd.org/changeset/ports/508459 Log: sysutils/crate: Improve the BROKEN statements; Add emulators to CATEGORIES The BROKEN statement now is triggered by the presence of the STL's 'filesystem' feature instead of the system version. Submitted by: jbeich (patch for BROKEN statements) Modified: head/sysutils/crate/Makefile Modified: head/sysutils/crate/Makefile ============================================================================== --- head/sysutils/crate/Makefile Fri Aug 9 16:59:52 2019 (r508458) +++ head/sysutils/crate/Makefile Fri Aug 9 17:23:29 2019 (r508459) @@ -2,7 +2,7 @@ PORTNAME= crate DISTVERSION= 0.1.1 -CATEGORIES= sysutils +CATEGORIES= sysutils emulators MAINTAINER= yuri@FreeBSD.org COMMENT= Containerizer for FreeBSD (alpha-software, expect bugs) @@ -10,9 +10,8 @@ COMMENT= Containerizer for FreeBSD (alpha-software, ex LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_FreeBSD_11= STL feature 'filesystem' isn't available on 11 -.if defined(PACKAGE_BUILDING) -BROKEN_FreeBSD_12= STL feature 'filesystem' isn't available in 12.0-RELEASE-p7 +.if exists(/usr/include/c++/v1) && !exists(/usr/include/c++/v1/filesystem) +BROKEN= STL feature 'filesystem' isn't available # ' .endif BUILD_DEPENDS= rang>0:devel/rang
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908091723.x79HNUuX031644>