blob: 08a4bf0e6fbc88236a65a73409fda49fed86371d (
plain)
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
|
# $NetBSD: Makefile,v 1.40 2020/06/21 09:34:59 rillig Exp $
DISTNAME= openjade-1.3.2
PKGREVISION= 17
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=openjade/}
MAINTAINER= kogule@mars.dti.ne.jp
HOMEPAGE= http://openjade.sourceforge.net/
COMMENT= SGML/XML parser toolkit and DSSSL engine, successor to "jade"
LICENSE= mit
MAKE_JOBS_SAFE= no
USE_LANGUAGES= c c++03
USE_LIBTOOL= yes
USE_TOOLS+= gmake perl
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --datadir=${OPENJADE_DATA_DIR}
CONFIGURE_ARGS+= --enable-default-catalog=${OPENJADE_DATA_DIR}/catalog
CONFIGURE_ARGS+= --enable-spincludedir=${BUILDLINK_PREFIX.opensp}/include/OpenSP
CONFIGURE_ARGS+= --enable-splibdir=${BUILDLINK_PREFIX.opensp}/lib
CONFIGURE_ENV+= CXXFLAGS=${CFLAGS:M*:Q}
SGML_CATALOGS= ${PREFIX}/share/sgml/openjade/catalog
OPENJADE_DATA_DIR= ${PREFIX}/share/sgml/openjade
OPENJADE_DOC_DIR= ${PREFIX}/share/doc/openjade
AUTO_MKDIRS= yes
INSTALL_TARGET= install install-man
# openjade has incorrect code:
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69534#c9
#
# Because of code in openjade that does not conform to standards, some
# versions of gcc produce an openjade binary that segfaults. Examples
# are building postgresql95-docs (gcc version ?) and building the
# pkgsrc guide (gcc 7 and 8 on NetBSD/amd).
#
# Bug report about openjade built with gcc crashing for postgresql
# https://bugzilla.redhat.com/show_bug.cgi?id=1306162
#
# Work around the openjade bug by asking gcc not to eliminate the dead
# stores that openjade relies on.
#
# Similar problems are seen with clang, so also mark the variable as
# volatile.
#
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mgcc)
CFLAGS+= -fno-tree-dse
.elif !empty(PKGSRC_COMPILER:Mclang)
CFLAGS+= -fno-delete-null-pointer-checks
.endif
post-install:
${INSTALL_DATA} ${WRKSRC}/dsssl/* ${DESTDIR}${OPENJADE_DATA_DIR}
${INSTALL_DATA} ${WRKSRC}/pubtext/* ${DESTDIR}${OPENJADE_DATA_DIR}/pubtext
${INSTALL_DATA} ${WRKSRC}/doc/*.htm ${DESTDIR}${OPENJADE_DOC_DIR}/doc
${INSTALL_DATA} ${WRKSRC}/jadedoc/copying.txt ${DESTDIR}${OPENJADE_DOC_DIR}/jadedoc
${INSTALL_DATA} ${WRKSRC}/jadedoc/*.htm ${DESTDIR}${OPENJADE_DOC_DIR}/jadedoc
${INSTALL_DATA} ${WRKSRC}/jadedoc/images/* ${DESTDIR}${OPENJADE_DOC_DIR}/jadedoc/images
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../textproc/opensp/buildlink3.mk"
.include "../../textproc/xmlcatmgr/catalogs.mk"
.include "../../mk/bsd.pkg.mk"
|