svn commit: r493472 - head/misc/xiphos
Kai Knoblich
kai at FreeBSD.org
Wed Feb 20 22:10:55 UTC 2019
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 <w.schwarzenfeld at utanet.at>
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 at 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
More information about the svn-ports-all
mailing list