mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
e26a2c2450
- Take maintainership Changes: - Convert to UTF-8 - Prepare *.dat
24 lines
530 B
Makefile
24 lines
530 B
Makefile
# 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>
|