summaryrefslogtreecommitdiff
path: root/editors/emacs20/Makefile
blob: 01cd10cdc338ccb1fc25c60b854e57e279ce5e34 (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
# $NetBSD: Makefile,v 1.4 2003/06/02 01:20:10 jschauma Exp $

DISTNAME=	emacs-20.7
PKGREVISION=	2
CATEGORIES=	editors
MASTER_SITES=	${MASTER_SITE_GNU:=emacs/} \
		${MASTER_SITE_LOCAL}
DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \
		${DISTNAME}-mule-4.1b-elc${EXTRACT_SUFX}

# Mule enhancement (back port) patch by Satoshi Yatagawa
PATCH_SITES=		http://www.teu.ac.jp/nsit/~yatagawa/comp/emacs/
PATCHFILES=		emacs-20.7-mule-4.1b.patch
# XIM fix patch by Seiichiro Inoue
PATCH_SITES+=		http://home.catv.ne.jp/pp/ginoue/software/emacs-xim/
PATCHFILES+=		emacs20-xim-20000713.diff
PATCH_DIST_STRIP=	-p1

MAINTAINER=	tech-pkg@netbsd.org
HOMEPAGE=	http://www.gnu.org/software/emacs/emacs.html
COMMENT=	GNU editing macros (editor)

CONFLICTS=	mule-[0-9]*

USE_BUILDLINK2=	yes
GNU_CONFIGURE=	yes
USE_GMAKE=	yes
USE_LIBTOOL=	yes
GNU_ARCH.mipsbe= mips

BUILD_DEFS+=	USE_INET6 EMACS_USE_POP

.include "../../mk/bsd.prefs.mk"

EMACS_USE_POP?=	yes
.if (defined(EMACS_USE_POP) && \
    (${EMACS_USE_POP} == yes || ${EMACS_USE_POP} == YES))
CONFIGURE_ARGS+=--with-pop
.endif

.if defined(EMACS_USE_X)
BUILD_DEFS+=		EMACS_USE_X EMACS_USE_X_TOOLKIT
USE_X11=		yes
CONFIGURE_ARGS+=	--with-x=yes
.if defined(EMACS_USE_X_TOOLKIT)
CONFIGURE_ARGS+=	--with-x-toolkit=${EMACS_USE_X_TOOLKIT}
.if ${EMACS_USE_X_TOOLKIT} == "lucid" || ${EMACS_USE_X_TOOLKIT} == "athena"
.include "../../mk/xaw.buildlink2.mk"
.elif ${EMACS_USE_X_TOOLKIT} == "motif"
.include "../../mk/motif.buildlink2.mk"
.endif
.endif
.else
CONFIGURE_ARGS+=	--with-x=no
.endif	# EMACS_USE_X

.if defined(USE_INET6) && ${USE_INET6} == YES
CONFIGURE_ARGS+=--with-ipv6
.else
CONFIGURE_ARGS+=--without-ipv6
.endif
MAKE_ENV+=	INSTALL_STRIP=${_STRIPFLAG_INSTALL}
INFO_FILES=	emacs vip viper forms gnus mh-e cl sc dired-x ediff \
		    ccmode message widget reftex forms

INSTALL_PROGRAM=${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}

pre-install:
	@${FIND} ${WRKSRC} -type f -name "*.orig" | ${XARGS} ${RM} -f

post-install:
	${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/emacs

.include "../../mk/texinfo.mk"
.include "../../mk/bsd.pkg.mk"