blob: 4a5d4e2d4bc7342ff468f023cc839d1fd72c0321 (
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
|
# $NetBSD: Makefile,v 1.2 2000/12/16 13:56:40 wiz Exp $
DISTNAME= mule-2.3
CATEGORIES= editors
MASTER_SITES= ftp://ftp.m17n.org/pub/mule/
MAINTAINER= kei@netbsd.org
HOMEPAGE= http://www.m17n.org/mule/MulePage.en.html
CONFLICTS= emacs-*
.include "../../mk/bsd.prefs.mk"
.if !defined(USE_WNN4) || ${USE_WNN4} == YES
DEPENDS+= ja-FreeWnn-lib-1.10:../../japanese/freewnn-lib
.endif
.if !defined(USE_CANNA) || ${USE_CANNA} == YES
DEPENDS+= Canna-lib-3.5b2:../../japanese/canna-lib
.endif
WRKSRC= ${WRKDIR}/mule
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_GTEXINFO= yes
CONFIGURE_ARGS+= ${MACHINE_ARCH}--netbsd --with-x --with-x-toolkit=lucid
CONFIGURE_ARGS+= --terminal-face --mcpath
.if ${MACHINE_ARCH} != "alpha" && ${MACHINE_ARCH} != "sparc64"
CONFIGURE_ARGS+= --valbits=26
.endif
# Find X11 libraries with xpkgwedge
.if defined(USE_LOCALBASE_FOR_X11)
CONFIGURE_ARGS+= --x-libraries=${X11BASE}/lib --x-includes=${X11BASE}/inc
lude
.endif
.if !defined(USE_WNN4) || ${USE_WNN4} == YES
CONFIGURE_ARGS+= --with-wnn4 --wnn-includes=${LOCALBASE}/include/wnn --wnn-libraries=${LOCALBASE}/lib
.endif
.if !defined(USE_CANNA) || ${USE_CANNA} == YES
CONFIGURE_ARGS+= --with-canna --canna-includes=${LOCALBASE}/include/canna --canna-libraries=${LOCALBASE}/lib
.endif
INFO_FILES= antenews-jp canna-jp cl dired-x egg-jp emacs forms gnus mule \
mule-jp sc vip
MAN1= coco.1 ctags.1 etags.1 m2ps.1 mule.1
post-patch:
@${ECHO_MSG} "===> Applying jumbo patches in info directory"
@${PATCH} ${PATCH_ARGS} < ${FILESDIR}/info.patch
@${RM} -f ${WRKSRC}/info/*.orig
.include "../../mk/bsd.pkg.mk"
|