Date: Sun, 6 Nov 2016 01:06:47 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425458 - in head/graphics/libetonyek01: . files Message-ID: <201611060106.uA616lZe079225@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Sun Nov 6 01:06:47 2016 New Revision: 425458 URL: https://svnweb.freebsd.org/changeset/ports/425458 Log: Add missing LIB_DEPENDS Regen patches using make makepatch Pointyhat to: bapt Submitted by: jrm Differential Revision: https://reviews.freebsd.org/D8452 Added: head/graphics/libetonyek01/files/patch-configure.ac (contents, props changed) Deleted: head/graphics/libetonyek01/files/patch-mdds1.2 Modified: head/graphics/libetonyek01/Makefile Modified: head/graphics/libetonyek01/Makefile ============================================================================== --- head/graphics/libetonyek01/Makefile Sat Nov 5 23:36:21 2016 (r425457) +++ head/graphics/libetonyek01/Makefile Sun Nov 6 01:06:47 2016 (r425458) @@ -17,6 +17,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/mdds ${LOCALBASE}/include/glm/glm.hpp:math/glm LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ librevenge-0.0.so:textproc/librevenge \ + liblangtag.so:devel/liblangtag \ libxml2.so:textproc/libxml2 OPTIONS_DEFINE= TEST Added: head/graphics/libetonyek01/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libetonyek01/files/patch-configure.ac Sun Nov 6 01:06:47 2016 (r425458) @@ -0,0 +1,33 @@ +--- configure.ac.orig 2016-01-12 18:21:19 UTC ++++ configure.ac +@@ -24,8 +24,8 @@ AC_LANG([C++]) + # Configure options + # ================= + AC_ARG_WITH([mdds], +- AS_HELP_STRING([--with-mdds=1.0|0.x], [Specify which version of mdds to use (1.0 is the default)]), +- [], [with_mdds="1.0"]) ++ AS_HELP_STRING([--with-mdds=1.2|0.x], [Specify which version of mdds to use (1.2 is the default)]), ++ [], [with_mdds="1.2"]) + + # =========================== + # Find required base packages +@@ -47,7 +47,7 @@ AC_PROG_SED + + AM_MISSING_PROG([GPERF], [gperf]) + +-AS_IF([test "$with_mdds" = "1.0"], [AX_CXX_COMPILE_STDCXX_11([noext])]) ++AS_IF([test "$with_mdds" = "1.2"], [AX_CXX_COMPILE_STDCXX_11([noext])]) + + # =============== + # Find librevenge +@@ -138,8 +138,8 @@ AC_SUBST([GLM_CFLAGS]) + # ========= + # Find mdds + # ========= +-AS_IF([test "$with_mdds" = "1.0"], [ +- PKG_CHECK_MODULES([MDDS], [mdds-1.0]) ++AS_IF([test "$with_mdds" = "1.2"], [ ++ PKG_CHECK_MODULES([MDDS], [mdds-1.2]) + ], [ + PKG_CHECK_MODULES([MDDS], [mdds]) + AC_MSG_CHECKING([checking if mdds::flat_segment_tree can store values of any type])
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611060106.uA616lZe079225>