Date: Mon, 1 Feb 2016 14:29:16 +0000 (UTC) From: Dmitry Sivachenko <demon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407720 - head/net/clusterit Message-ID: <201602011429.u11ETGrT007754@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: demon Date: Mon Feb 1 14:29:16 2016 New Revision: 407720 URL: https://svnweb.freebsd.org/changeset/ports/407720 Log: Fix package without X11; Make X11 off by default: software it very useful w/o x11, so do not pull huge deps by default. PR: 206819 Submitted by: timp87@gmail.com Modified: head/net/clusterit/Makefile head/net/clusterit/pkg-plist Modified: head/net/clusterit/Makefile ============================================================================== --- head/net/clusterit/Makefile Mon Feb 1 14:21:42 2016 (r407719) +++ head/net/clusterit/Makefile Mon Feb 1 14:29:16 2016 (r407720) @@ -9,10 +9,11 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= demon@FreeBSD.org COMMENT= Collection of clustering tools +LICENSE= BSD2CLAUSE + GNU_CONFIGURE= yes OPTIONS_DEFINE= X11 -OPTIONS_DEFAULT=X11 OPTIONS_SUB= yes X11_USE= XORG=x11 @@ -20,7 +21,7 @@ X11_USE= XORG=x11 .include <bsd.port.options.mk> post-patch: -.if empty(PORT_OPTIONS:MX11) +.if !$(PORT_OPTIONS:MX11) ${REINPLACE_CMD} -E 's,^(SUBDIRS) = .*,\1 = barrier dsh jsd pcp dtop tools,' ${WRKSRC}/Makefile.in .endif Modified: head/net/clusterit/pkg-plist ============================================================================== --- head/net/clusterit/pkg-plist Mon Feb 1 14:21:42 2016 (r407719) +++ head/net/clusterit/pkg-plist Mon Feb 1 14:29:16 2016 (r407720) @@ -26,5 +26,5 @@ man/man1/pdf.1.gz man/man1/prm.1.gz man/man1/rseq.1.gz man/man1/run.1.gz -man/man1/dvt.1.gz -man/man1/rvt.1.gz +%%X11%%man/man1/dvt.1.gz +%%X11%%man/man1/rvt.1.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602011429.u11ETGrT007754>