blob: 9c40fa4cb0a7e9da26100a91318adb33b37e1e67 (
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
|
# Created by: Toru YANO <toru@s-fine.co.jp>
# $FreeBSD$
PORTNAME= xmulti
PORTVERSION= 2.00b4
PORTREVISION= 3
CATEGORIES= games
MASTER_SITES= http://www.denpa.org/~go/xmulti/
DISTFILES= xmul200b4.tgz
MAINTAINER= toru@tenchi.ne.jp
COMMENT= X11 mascot based on gal-game "To Heart"
WRKSRC= ${WRKDIR}/xmulti200beta4
USES= imake
USE_XORG= x11 xext xaw xmu xt xpm sm ice
MAN1= xmaid.1
NO_MANCOMPRESS= yes
DOCSDIR= ${PREFIX}/share/doc/ja/{PORTNAME}
NO_STAGE= yes
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
.for i in MODULE.jp README.jp STYLESHEET.jp XMULTI.jp
${INSTALL_MAN} ${WRKSRC}/$i ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|