blob: 067d21ed8bb78b2098a72c36736abf7eec29ad03 (
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
38
39
40
41
42
43
44
45
46
|
# New ports collection makefile for: fortunetw
# Date created: 10 Mar 2001
# Whom: Shen Chuan-Hsing
#
# $FreeBSD$
#
PORTNAME= fortunetw
PORTVERSION= 1.1
CATEGORIES= chinese
MASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/statue/fortunetw/
DISTNAME= zh-fortunetw-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A very classic fortune file in Taiwan
NO_BUILD= yes
STRCMD= /usr/games/strfile
do-install:
@${MKDIR} ${PREFIX}/share/games/fortune
@${INSTALL_DATA} ${WRKSRC}/liuyong ${PREFIX}/share/games/fortune
@${INSTALL_DATA} ${WRKSRC}/tangshi ${PREFIX}/share/games/fortune
@${INSTALL_DATA} ${WRKSRC}/yijing ${PREFIX}/share/games/fortune
pre-install:
.if !exists(${STRCMD})
@${ECHO_MSG} "Please install the games distribution"
@exit 1
.endif
post-install:
@${STRCMD} ${PREFIX}/share/games/fortune/liuyong
@${STRCMD} ${PREFIX}/share/games/fortune/tangshi
@${STRCMD} ${PREFIX}/share/games/fortune/yijing
@${ECHO_MSG} ""
@${ECHO_MSG} "Usage:"
@${ECHO_MSG} "/usr/games/fortune ${PREFIX}/share/games/fortune/liuyong"
@${ECHO_MSG} "or"
@${ECHO_MSG} "/usr/games/fortune ${PREFIX}/share/games/fortune/tangshi"
@${ECHO_MSG} "or"
@${ECHO_MSG} "/usr/games/fortune ${PREFIX}/share/games/fortune/yijing"
@${ECHO_MSG} ""
.include <bsd.port.mk>
|