blob: 465ee23391b90f75648d33f0bf7e74adefca3c56 (
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
|
# $NetBSD: Makefile,v 1.42 1999/03/10 08:42:14 tron Exp $
# FreeBSD Id: Makefile,v 1.1.1.1 1997/09/03 19:27:57 gj Exp
#
DISTNAME= xemacs-20.4
CATEGORIES= editors
MASTER_SITES= ftp://ftp.xemacs.org/pub/xemacs/xemacs-20.4/ \
ftp://ftp.mpi-sb.mpg.de/pub/gnu/mirror/ftp.xemacs.org/xemacs-20.4/ \
ftp://ftp.usyd.edu.au/pub/Xemacs/xemacs-20.4/ \
ftp://ftp.lab.kdd.co.jp/xemacs/xemacs-20.4/ \
ftp://ftp.th-darmstadt.de/pub/editors/xemacs/xemacs-20.4/ \
ftp://SunSITE.sut.ac.jp/pub/archives/xemacs/xemacs-20.4/ \
ftp://ftp.miranova.com/pub/xemacs/ \
ftp://ftp.gw.com/mirrors/pub/unix/xemacs/xemacs-20.4/
DISTFILES= xemacs-20.4.tar.gz xemacs-20.4-info.tar.gz
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.xemacs.org/
DEPENDS+= xpm-3.4k:../../graphics/xpm
DEPENDS+= jpeg-6b:../../graphics/jpeg
DEPENDS+= Xaw3d-1.5:../../x11/Xaw3d
DEPENDS+= png-1.0.3:../../graphics/png
DEPENDS+= gdbm-1.7.3:../../databases/gdbm
NOT_FOR_ARCHS= alpha mips #fails purespace dumping
HAS_CONFIGURE= yes
.include "../../mk/bsd.prefs.mk"
WITH_DIALOGS= --with-dialogs=athena3d
WITH_SOUND=
.if defined(USE_MULE)
WITH_MULE= --with-mule
DISTFILES+= xemacs-20.4-mule.tar.gz
REALPLIST= PLIST.mule
.else
REALPLIST= PLIST.nomule
.endif
.if defined(USE_XFACE)
WITH_XFACE= --with-xface
DEPENDS+= faces-1.6.1:../../mail/faces
.else
WITH_XFACE= --with-xface=no
.endif
CONFIGURE_ARGS+=${MACHINE_GNU_ARCH}--netbsd --prefix=${PREFIX} \
--site-includes=${PREFIX}/include \
--infopath="${PREFIX}/info:${X11BASE}/info:/usr/local/info" \
--site-libraries=${PREFIX}/lib \
--sitelispdir="${PREFIX}/lib/xemacs/site-lisp \
${PREFIX}/share/xemacs/site-lisp" -with-ncurses=no \
--with-session=yes \
${WITH_MULE} ${WITH_DIALOGS} ${WITH_XFACE} ${WITH_SOUND}
MAKE_ENV+= INSTALL_MAN="${INSTALL_MAN}" INSTALL_SCRIPT="${INSTALL_SCRIPT}"
PLIST_SRC= ${WRKDIR}/PLIST.tmp
pre-configure:
@${ECHO} "To compile in the MULE features, set the environment variable USE_MULE."
@${ECHO} "To compile in the support for xface, set the environment variable USE_XFACE."
pre-install:
${RM} -f ${WRKSRC}/etc/ctags.1.orig
@(if [ "X${MANZ}" != X"" ]; then \
GZSUFFIX=.gz; \
fi; \
${SED} -e 's|@.GZ@|'$$GZSUFFIX'|g' ${PKGDIR}/${REALPLIST} \
> ${PLIST_SRC})
post-install:
chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/${DISTNAME}
.for file in xemacs-b2m xemacs-ctags xemacs-etags gnuclient xemacs-20.4
strip ${PREFIX}/bin/${file}
.endfor
@if [ "X${MANZ}" != X"" ]; then \
${WRKSRC}/lib-src/gzip-el.sh ${PREFIX}/lib/xemacs-20.4; \
fi
.include "../../mk/bsd.pkg.mk"
|