blob: de0a69a78a845748d565f33cfac14d167d606f96 (
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
|
# Created by: SASAKI Shunsuke <ele@pop17.odn.ne.jp>
# $FreeBSD$
PORTNAME= ne
PORTVERSION= 3.05
CATEGORIES= japanese editors
MASTER_SITES= http://hp.vector.co.jp/authors/VA018758/archive/
MAINTAINER= ele@pop17.odn.ne.jp
COMMENT= A VZ like full-screen text editor with Japanese support
WRKSRC= ${WRKDIR}/ne
GNU_CONFIGURE= yes
MAN1= ne.1
MANLANG= ja
DOCS= BUGS.jp CHANGES.jp HISTORY.jp INSTALL.jp README.jp TODO.jp
MAKE_ENV= LANG=${MANLANG}
NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "powerpc"
BROKEN= Does not compile on amd64 or powerpc
.endif
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/ne
.for i in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/ne
.endfor
.endif
.include <bsd.port.post.mk>
|