svn commit: r384197 - in head/databases/tora: . files
Dmitry Marakasov
amdmi3 at FreeBSD.org
Sat Apr 18 00:00:32 UTC 2015
Author: amdmi3
Date: Sat Apr 18 00:00:31 2015
New Revision: 384197
URL: https://svnweb.freebsd.org/changeset/ports/384197
Log:
- Redo previous fix in a much simpler way, also fix runtime by not mixing different c++ libraries and drop gcc requirement
Suggested by: jbeich
Added:
head/databases/tora/files/patch-src_towaitevents.h (contents, props changed)
Modified:
head/databases/tora/Makefile
Modified: head/databases/tora/Makefile
==============================================================================
--- head/databases/tora/Makefile Fri Apr 17 23:52:55 2015 (r384196)
+++ head/databases/tora/Makefile Sat Apr 18 00:00:31 2015 (r384197)
@@ -3,7 +3,7 @@
PORTNAME= tora
PORTVERSION= 2.1.3
-PORTREVISION= 8
+PORTREVISION= 9
PORTEPOCH= 1
CATEGORIES= databases
MASTER_SITES= SF
@@ -23,7 +23,7 @@ OPTIONS_DEFAULT= PGSQL MYSQL
USE_AUTOTOOLS= aclocal automake autoconf autoheader libtoolize
USE_QT4= gui corelib sql xml network linguist moc_build uic_build rcc_build
-USES= compiler:features gmake libtool makeinfo
+USES= gmake libtool makeinfo
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-pcre=${LOCALBASE}
LDFLAGS+= -L${LOCALBASE}/lib
@@ -31,11 +31,7 @@ INSTALL_TARGET= install-strip
PREFIX2FIX= doc/help/preferences.texi doc/help/preferences.html
-.include <bsd.port.pre.mk>
-
-.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} < 36
-USE_GCC= yes
-.endif
+.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
USES+= makeinfo
@@ -70,4 +66,4 @@ pre-configure:
${REINPLACE_CMD} -e 's|test doc|test|' ${WRKSRC}/Makefile.am
.endif
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
Added: head/databases/tora/files/patch-src_towaitevents.h
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/tora/files/patch-src_towaitevents.h Sat Apr 18 00:00:31 2015 (r384197)
@@ -0,0 +1,10 @@
+--- src/towaitevents.h.orig 2009-10-23 16:19:33 UTC
++++ src/towaitevents.h
+@@ -48,6 +48,7 @@
+ #include <list>
+ #include <map>
+ #include <algorithm>
++#include <ctime>
+
+ #include <QWidget>
+ #include <QString>
More information about the svn-ports-head
mailing list