aboutsummaryrefslogtreecommitdiff
path: root/editors/texmacs/Makefile
blob: d0da0a0a8d49b167f7bf70d7fd919b2c16200e12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Created by: Geoffrey Mainland <mainland@apeiron.net>

PORTNAME=	texmacs
PORTVERSION=	1.99.4
PORTREVISION=	5
CATEGORIES=	editors print
MASTER_SITES=	http://www.texmacs.org/Download/ftp/tmftp/source/
DISTNAME=	TeXmacs-${PORTVERSION}-src

MAINTAINER=	bofhs@FreeBSD.org
COMMENT=	WYSIWYG scientific text editor

LICENSE=	GPLv3
LICENSE_FILE=	${WRKSRC}/LICENSE

BROKEN_FreeBSD_13=	assigning to 'bool' from incompatible type 'nullptr_t'
BROKEN_FreeBSD_14=	assigning to 'bool' from incompatible type 'nullptr_t'

LIB_DEPENDS=	libltdl.so:devel/libltdl \
		libguile.so:lang/guile1 \
		libgmp.so:math/gmp
RUN_DEPENDS=	fig2dev:print/transfig

BROKEN_armv6=		fails to compile: call to min is ambiguous
BROKEN_armv7=		fails to compile: call to min is ambiguous

USES=		cpe desktop-file-utils gmake iconv localbase pkgconfig python \
		shared-mime-info shebangfix xorg
USE_TEX=	tex:run dvipsk:run
USE_XORG=	xext
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--enable-optimize="${CXXFLAGS}" --disable-qt
MAKE_ARGS=	CP="${CP} -R -f"
ALL_TARGET=	${PORTNAME:tu}

SHEBANG_FILES=	plugins/asymptote/bin/* plugins/dratex/bin/* \
		plugins/eukleides/bin/* plugins/feynmf/bin/* \
		plugins/mupad/bin/* plugins/texgraph/bin/* \
		plugins/xypic/bin/* \
		plugins/python/bin/tm_python plugins/sage/bin/tm_sage \
		plugins/mathematica/bin/realpath.py

DATADIR=	${PREFIX}/share/TeXmacs

OPTIONS_DEFINE=	ASPELL FREETYPE GHOSTSCRIPT IMLIB2 PDF SQLITE
OPTIONS_DEFAULT=ASPELL FREETYPE GHOSTSCRIPT IMLIB2 PDF SQLITE
OPTIONS_SUB=	yes

ASPELL_RUN_DEPENDS=	aspell:textproc/aspell
FREETYPE_LIB_DEPENDS=	libfreetype.so:print/freetype2
FREETYPE_CONFIGURE_ENABLE=	freetype
FREETYPE_CONFIGURE_ENV_OFF=	FREETYPE_CFLAGS=" " FREETYPE_LDFLAGS=" " \
				ac_cv_header_ft2build_h=no
GHOSTSCRIPT_USES=	ghostscript:x11
GHOSTSCRIPT_CONFIGURE_ON=	--with-gs=yes
GHOSTSCRIPT_CONFIGURE_OFF=	--with-gs=no
IMLIB2_LIB_DEPENDS=	libImlib2.so:graphics/imlib2
IMLIB2_CONFIGURE_WITH=	imlib2
PDF_CONFIGURE_ENABLE=	pdf-renderer
PDF_LDFLAGS=		-lz
PDF_IMPLIES=		FREETYPE GHOSTSCRIPT
SQLITE_USES=		sqlite
SQLITE_CONFIGURE_ON=	--with-sqlite3

post-patch:
	@${REINPLACE_CMD} -e \
		'/SVNREV\//s|^|#| ; \
		 s|LIBS="-liconv"|LIBS="-liconv $$LIBS"| ; \
		 s|/-liconv}|}| ; \
		 s|"-Wl,-rpath,"|""| ; \
		 s|\[\[ |[ |g ; \
		 s| \]\]| ]|g ; \
		 s|== no|= no| ; \
		 s|$${QT_PLUGINS_LIST/,/ }|${QT_PLUGINS_LIST}|' \
		${WRKSRC}/configure
	@${REINPLACE_CMD} -e \
		 '/require/s|"python"|"${PYTHON_CMD:T}"|' \
		${WRKSRC}/plugins/python/progs/init-python.scm
	@${REINPLACE_CMD} -e \
		 's|int tab=.*)|int tab)|' \
		${WRKSRC}/src/Kernel/Types/tree.hpp
	@${REINPLACE_CMD} -e \
		 's|int dpi=.*)|int dpi)|' \
		${WRKSRC}/src/Typeset/boxes.hpp

post-install:
	@${FIND} ${STAGEDIR}${DATADIR} -name "._*" -delete
	@${FIND} ${STAGEDIR}${DATADIR} -name "*.bak" -delete
.for f in realpath texmacs.bin tm_axiom tm_graphviz tm_maple_5 tm_r tm_shell
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/libexec/TeXmacs/bin/${f}
.endfor

.include <bsd.port.mk>