blob: 2eb411ef2e0a45002f1ac6f36406468d723fcc42 (
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
|
# Created by: Shen Chuan-Hsing
# $FreeBSD$
PORTNAME= fortunetw
PORTVERSION= 1.4
CATEGORIES= chinese
MASTER_SITES= LOCAL/sunpoet
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Classic fortune file in Taiwan (UTF-8)
NO_BUILD= yes
USES= tar:xz
FORTUNE= bsdchat folksong liuyong stephehchow tangshi xiaoxing yijing
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune/
.for file in ${FORTUNE}
${INSTALL_DATA} ${WRKSRC}/${file} ${WRKSRC}/${file}.dat ${STAGEDIR}${PREFIX}/share/games/fortune/
.endfor
.include <bsd.port.mk>
|