blob: f875527c5c2d5b2f7fd2b9541245cb4f13edb3b1 (
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
70
71
72
73
74
75
76
77
|
# $NetBSD: Makefile.common,v 1.17 2021/03/28 10:36:33 hauke Exp $
#
# used by editors/xemacs-current/Makefile
# used by editors/xemacs-current-nox11/Makefile
DISTNAME= xemacs-21.5.34
EMACSVERSION= 21.5-b34
EMACS_DISTNAME= xemacs-${EMACSVERSION}
CATEGORIES= editors
MASTER_SITES= ${MASTER_SITE_XEMACS:=${DISTNAME:C/[.][^.]*$//}/}
MAINTAINER= hauke@NetBSD.org
HOMEPAGE= https://www.xemacs.org/
LICENSE= gnu-gpl-v3
.include "../../mk/bsd.prefs.mk"
PATCHDIR= ${.CURDIR}/../../editors/xemacs-current/patches
DISTINFO_FILE= ${.CURDIR}/../../editors/xemacs-current/distinfo
PLIST_SRC= ${.CURDIR}/../../editors/xemacs-current/PLIST
USE_TOOLS+= gtar makeinfo perl
# The portable dumper creates a dump file with a build ID in its name
GENERATE_PLIST+= ${ECHO} bin/${EMACS_DISTNAME}-`${WRKSRC}/src/xemacs -sd`.dmp ;
# Having the build path in the dumped emacs is not a problem.
CHECK_WRKREF_SKIP+= bin/xemacs*
PRINT_PLIST_AWK+= { gsub(/${EMACS_DISTNAME}/, "$${DISTNAME}"); }
PRINT_PLIST_AWK+= { gsub(/${MACHINE_GNU_PLATFORM}/, "$${MACHINE_GNU_PLATFORM}"); }
PLIST_SUBST+= DISTNAME=${EMACS_DISTNAME}
FILES_SUBST+= DISTNAME=${EMACS_DISTNAME}
MESSAGE_SUBST+= DISTNAME=${EMACS_DISTNAME}
INFO_FILES= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --datadir=${PREFIX}/lib
CONFIGURE_ARGS+= --with-infopath=${PREFIX}/${PKGINFODIR}
CONFIGURE_ARGS+= --with-clash-detection
CONFIGURE_ARGS+= --with-mule
CONFIGURE_ARGS+= --with-zlib
CONFIGURE_ARGS+= --with-bignum=gmp
CONFIGURE_ARGS+= --without-msw
CONFIGURE_ARGS+= --with-pdump
CONFIGURE_ARGS+= --with-system-malloc
CONFIGURE_ARGS+= --with-newgc
CONFIGURE_ARGS+= --with-kkcc
CONFIGURE_ARGS+= --with-postgresql=no
CFLAGS+= -Dunix
INSTALL_MAKE_FLAGS+= TAR=${TOOLS_PATH.gtar}
# Use terminfo on NetBSD-6 and newer.
# We cannot use terminfo.*.mk as XEmacs enforces a link to termcap,
# but this is fine for us.
.if (${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD") && exists(/usr/include/term.h)
CPPFLAGS+= -DTERMINFO
.endif
.if !empty(PKG_OPTIONS:Mx11)
post-extract:
cp ${.CURDIR}/../../editors/xemacs/files/xemacs.desktop ${WRKSRC}/etc/
post-install:
${INSTALL_DATA} ${WRKSRC}/etc/xemacs.desktop \
${DESTDIR}${PREFIX}/share/applications/
.endif
.include "../../databases/gdbm/buildlink3.mk"
.include "../../devel/gmp/buildlink3.mk"
.include "../../mk/oss.buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/termcap.buildlink3.mk"
|