From owner-svn-ports-all@freebsd.org Sun May 12 09:31:34 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD6CE15925FF; Sun, 12 May 2019 09:31:34 +0000 (UTC) (envelope-from amdmi3@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 519998FBAD; Sun, 12 May 2019 09:31:34 +0000 (UTC) (envelope-from amdmi3@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 2B99428B14; Sun, 12 May 2019 09:31:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4C9VXC6087810; Sun, 12 May 2019 09:31:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4C9VXwR087808; Sun, 12 May 2019 09:31:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201905120931.x4C9VXwR087808@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 12 May 2019 09:31:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501369 - head/net/boinc-client X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/net/boinc-client X-SVN-Commit-Revision: 501369 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 519998FBAD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 May 2019 09:31:34 -0000 Author: amdmi3 Date: Sun May 12 09:31:33 2019 New Revision: 501369 URL: https://svnweb.freebsd.org/changeset/ports/501369 Log: - Add missing USES - Fix conditional USE_XORG - Switch to options helpers - Update WWW Approved by: portmgr blanket Modified: head/net/boinc-client/Makefile head/net/boinc-client/pkg-descr Modified: head/net/boinc-client/Makefile ============================================================================== --- head/net/boinc-client/Makefile Sun May 12 09:01:34 2019 (r501368) +++ head/net/boinc-client/Makefile Sun May 12 09:31:33 2019 (r501369) @@ -64,6 +64,7 @@ MANAGER_LIB_DEPENDS= libnotify.so:devel/libnotify \ MANAGER_CONFIGURE_ON= --with-sqlite3-prefix=${LOCALBASE} MANAGER_CONFIGURE_OFF= --with-wx-config=false --without-x MANAGER_CONFIGURE_ENABLE=manager +MANAGER_USES= gnome MANAGER_USE= GNOME=cairo,gdkpixbuf2,glib20,gtk20,pango \ XORG=xcb,x11,xext,xscrnsaver WX=3.0 @@ -76,10 +77,9 @@ CLIENT_USE= RC_SUBR=boinc-client LINUX_CONFIGURE_ON= --with-boinc-alt-platform=i686-pc-linux-gnu LINUX_USES= linux -X11_USES= jpeg -X11_USE= GL=glut XORG=xmu,xi -X11_USE_XORG+= x11 xscrnsaver -X11_CONFIGURE_OFF= ax_cv_check_glut_libglut=no +X11_USES= jpeg gl +X11_USE= GL=glut XORG=x11,xscrnsaver,xmu,xi +X11_CONFIGURE_OFF= --without-x ax_cv_check_glut_libglut=no .include @@ -102,10 +102,6 @@ SUB_LIST+= OPTION_USER="true" SUB_LIST+= OPTION_USER="" .endif -.if ${PORT_OPTIONS:NX11} -CONFIGURE_ARGS+= --without-x -.endif - post-patch: @${REINPLACE_CMD} -e 's|@PREFIX@|${PREFIX}|' \ ${WRKSRC}/client/hostinfo_unix.cpp @@ -122,9 +118,9 @@ post-patch: ${WRKSRC}/zip/zip/z_fileio.c ${WRKSRC}/zip/zip/z_globals.c \ ${WRKSRC}/zip/zip/zip.c ${WRKSRC}/zip/zip/zipfile.c \ ${WRKSRC}/zip/zip/zipup.c -.if ${PORT_OPTIONS:NX11} + +post-patch-X11-off: @${REINPLACE_CMD} -e 's|enable_xss="yes"|enable_xss="no"|' ${WRKSRC}/configure.ac -.endif post-install: .for name in config.h project_specific_defines.h api/reduce.h \ Modified: head/net/boinc-client/pkg-descr ============================================================================== --- head/net/boinc-client/pkg-descr Sun May 12 09:01:34 2019 (r501368) +++ head/net/boinc-client/pkg-descr Sun May 12 09:31:33 2019 (r501369) @@ -2,4 +2,4 @@ BOINC is a software platform for distributed computing computer resources. This port contains BOINC API, libraries, client and manager GUI. -WWW: http://boinc.berkeley.edu/ +WWW: https://boinc.berkeley.edu/