jca 4d26b8efab Import gnu TeXmacs, a LaTeX editor.
From Ray Lai, input from and ok sthen@

cat pkg/DESCR:
GNU TeXmacs is a free wysiwyw (what you see is what you want) editing
platform with special features for scientists. The software aims
to provide a unified and user friendly framework for editing
structured documents with different types of content (text, graphics,
mathematics, interactive content, etc.). The rendering engine uses
high-quality typesetting algorithms so as to produce professionally
looking documents, which can either be printed out or presented
from a laptop.
2016-04-05 23:30:46 +00:00

21 lines
815 B
Plaintext

$OpenBSD: patch-aclocal_m4,v 1.1.1.1 2016/04/05 23:30:54 jca Exp $
--- aclocal.m4.orig Sat Aug 22 17:55:02 2015
+++ aclocal.m4 Fri Feb 19 01:41:57 2016
@@ -127,10 +127,13 @@ then AT_WITH_QT
# MacOS specific: (FIXME! shouldn't we be using qmake -query everywhere?)
QT_FRAMEWORKS_PATH=`$QMAKE -query QT_INSTALL_LIBS`
QT_PLUGINS_PATH=`$QMAKE -query QT_INSTALL_PLUGINS`
- if [[[ $QT_CFLAGS =~ mmacosx-version-min= ]]]
- then MACOSX_DEPLOYMENT_TARGET="${QT_CFLAGS#*mmacosx-version-min=}"
+ case "$QT_CFLAGS" in
+ *mmacosx-version-min=*)
+ MACOSX_DEPLOYMENT_TARGET="${QT_CFLAGS#*mmacosx-version-min=}"
MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET%% *}
- fi
+ ;;
+ *) ;;
+ esac
AC_SUBST(MACOSX_DEPLOYMENT_TARGET)
else
#windows part