From owner-svn-ports-all@freebsd.org Wed Feb 20 22:10:55 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 0FBCE14DE4E1; Wed, 20 Feb 2019 22:10:55 +0000 (UTC) (envelope-from kai@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 7C94171364; Wed, 20 Feb 2019 22:10:54 +0000 (UTC) (envelope-from kai@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 6E3CFBCDB; Wed, 20 Feb 2019 22:10:54 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1KMAssI036697; Wed, 20 Feb 2019 22:10:54 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1KMAsoW036696; Wed, 20 Feb 2019 22:10:54 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201902202210.x1KMAsoW036696@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 20 Feb 2019 22:10:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493472 - head/misc/xiphos X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/misc/xiphos X-SVN-Commit-Revision: 493472 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7C94171364 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.99)[-0.986,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Wed, 20 Feb 2019 22:10:55 -0000 Author: kai Date: Wed Feb 20 22:10:54 2019 New Revision: 493472 URL: https://svnweb.freebsd.org/changeset/ports/493472 Log: misc/xiphos: Unbreak build * Unbreak build by adding "-ftemplate-depth=1024" to CXXFLAGS * Add missing libraries While I'm here: * Fix license and add path to license file * Add "gnome" to USES because using USE_GNOME alone is deprecated * Pet portlint PR: 232997 Submitted by: Walter Schwarzenfeld Reviewed by: tcberner (mentor) Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D19210 Modified: head/misc/xiphos/Makefile Modified: head/misc/xiphos/Makefile ============================================================================== --- head/misc/xiphos/Makefile Wed Feb 20 22:01:57 2019 (r493471) +++ head/misc/xiphos/Makefile Wed Feb 20 22:10:54 2019 (r493472) @@ -2,31 +2,35 @@ PORTNAME= xiphos PORTVERSION= 3.1.6 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= misc gnome MASTER_SITES= SF/gnomesword/Xiphos/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Bible interface utilizing the sword framework -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= fails to compile: /usr/include/c++/v1/type_traits:1116:29: recursive template instantiation exceeded maximum depth of 25 - BUILD_DEPENDS= ${RUN_DEPENDS} \ docbook2html:textproc/docbook-utils \ gnome-doc-tool:textproc/gnome-doc-utils \ nspr>=4.8:devel/nspr LIB_DEPENDS= libwebkitgtk-3.0.so:www/webkit-gtk3 \ libdbus-glib-1.so:devel/dbus-glib \ - libsword.so:misc/sword + libsword.so:misc/sword \ + libdbus-1.so:devel/dbus \ + libsoup-2.4.so:devel/libsoup \ + libenchant.so:textproc/enchant RUN_DEPENDS= yelp:x11/yelp -USES= gettext pkgconfig waf +USES= gettext gnome pkgconfig waf +USE_GNOME= cairo gtkhtml4 intlhack gtk30 gconf2 libgsf \ + gtk-update-icon-cache + INSTALLS_OMF= yes INSTALLS_ICONS= yes -USE_GNOME= gtkhtml4 intlhack gtk30 gconf2 libgsf \ - gtk-update-icon-cache +CXXFLAGS+= -ftemplate-depth=1024 OPTIONS_DEFINE= DOCS