blob: 71cd6daebfae2bdd84fbfdc9d646c56c44330c2f (
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
78
79
80
81
82
83
84
85
86
87
88
|
# $NetBSD: Makefile,v 1.23 2012/06/18 08:19:42 dholland Exp $
PKGNAME?= ${DISTNAME}
COMMENT?= GNU editing macros (editor)
DISTNAME= emacs-22.3
PKGREVISION= 18
CATEGORIES= editors
MASTER_SITES= ${MASTER_SITE_GNU:=emacs/}
MAINTAINER= markd@NetBSD.org
HOMEPAGE= http://www.gnu.org/software/emacs/emacs.html
LICENSE= gnu-gpl-v3
CONFLICTS+= elisp-manual-[0-9]*
CONFLICTS+= emacs-[0-9]*
CONFLICTS+= emacs-nox11-[0-9]*
CONFLICTS+= mule-[0-9]*
PKG_DESTDIR_SUPPORT= user-destdir
USE_TOOLS+= gmake gzip mktemp:run perl:run pkg-config
GNU_CONFIGURE= yes
INFO_FILES= yes
SETGIDGAME= yes
.include "options.mk"
MAKEFLAGS+= EMACSLOADPATH=${WRKSRC}/lisp
CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q}
CONFIGURE_ENV+= GAMEOWN=${GAMEOWN:Q}
BUILD_DEFS+= VARBASE
BUILD_DEFS+= GAMEDATAMODE
# build PATH in the dumped emacs is not a problem
CHECK_WRKREF_SKIP+= bin/emacs
CHECK_WRKREF_SKIP+= bin/emacs-[0-9]*
REPLACE_PERL= lib-src/grep-changelog
SUBST_CLASSES+= test_equal
SUBST_STAGE.test_equal= pre-configure
SUBST_MESSAGE.test_equal= Fixing bashisms in test(1) usage.
SUBST_FILES.test_equal= mac/make-package
SUBST_SED.test_equal= -e 's/ == / = /g'
MAKE_DIRS_PERMS+= ${VARBASE}/games/emacs \
${GAMES_USER} ${GAMES_GROUP} ${GAMEDIRMODE:Q}
CONF_FILES_PERMS+= /dev/null ${VARBASE}/games/emacs/snake-scores \
${GAMES_USER} ${GAMES_GROUP} ${GAMEDATAMODE:Q}
CONF_FILES_PERMS+= /dev/null ${VARBASE}/games/emacs/tetris-scores \
${GAMES_USER} ${GAMES_GROUP} ${GAMEDATAMODE:Q}
SPECIAL_PERMS+= libexec/emacs/${PKGVERSION_NOREV}/${MACHINE_GNU_PLATFORM}/update-game-score ${SETGID_GAMES_PERMS}
.if (${OPSYS} == "DragonFly") && exists(/usr/lib/crtn.o)
CPPFLAGS+= -DDFLY_CRT_USRLIB
.endif
.include "../../mk/compiler.mk"
# "emacs" uses the C pre-processor to generate makefiles. The C pre-processor
# of newer GCC version is designed to break this by purpose. We work around
# that using the traditional mode to generate makefiles.
.if !empty(CC_VERSION:Mgcc-[4-9].*)
CPP+= -P
CONFIGURE_ENV+= CPP=${CPP:Q}
.endif
post-extract:
cp ${FILESDIR}/site-init.el ${WRKSRC}/lisp
cp ${FILESDIR}/dragonfly.h ${WRKSRC}/src/s
${CHMOD} -R go-w ${WRKSRC}
# These dirs are installed by tar-copy and can sometimes come out mode
# 754, which if PKG_DEVELOPER is set causes the build to fail.
post-install:
.for file in leim leim/ja-dic leim/quail
${CHMOD} 755 ${DESTDIR}${PREFIX}/share/emacs/${PKGVERSION_NOREV}/${file}
.endfor
.include "../../mk/oss.buildlink3.mk"
.include "../../mk/termcap.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|