blob: ffa61eded6fe4e25493b46a0791c2ec4a65c5a1f (
plain) (
blame)
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
|
# New ports collection makefile for: Mew (for xemacs)
# Version required: 1.92.4
# Date created: 17 January 1998
# Whom: Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp>
#
# $Id$
#
PKGNAME?= mew-xemacs-1.92.4
LANGUAGE?=
XEMACS= yes
DIRENTRY= "* Mew:: Messaging in the Emacs World (English)."
INFOFILE= mew.info
.if (${LANGUAGE} == "Chinese")
.endif
.if (${LANGUAGE} == "Japanese")
DIRENTRY+= "* Mew.jis:: Messaging in the Emacs World (Japanese)."
INFOFILE+= mew.jis.info
.endif
.if (${LANGUAGE} == "Korean")
.endif
.if (${LANGUAGE} == "Russian")
.endif
.if (${LANGUAGE} == "Vietnamese")
.endif
post-install::
.for f in mew.info mew.info-1 mew.info-2 mew.info-3
@ln -sf ${PREFIX}/info/${f} ${INFODIR}/${f}
.endfor
.include "${.CURDIR}/../../mail/mew-common/Makefile"
|