blob: 32d46cef69826cc8d0d552e0796796648e28b95c (
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
|
PORTNAME= fortune-mod-freebsd-classic
DISTVERSION= g20171128
CATEGORIES= misc
MAINTAINER= jdc@koitsu.org
COMMENT= Classic FreeBSD fortunes (including offensives)
# LICENSE is intentionally unset. Some fortune files, such as
# gerrold.limerick, are copyright the author but used with permission.
# Others have no license defined in them. I get the impression many
# are Public Domain or possibly BSD4CLAUSE -- consider fortune was
# originally written by Ken Arnold at UC Berkeley; the FreeBSD
# fortune import was from 4.4BSD-Lite circa 1995.
USE_GITHUB= yes
GH_ACCOUNT= koitsu
GH_TAGNAME= b029e87
NO_ARCH= yes
SRCF= fortunes fortunes-o gerrold.limerick limerick murphy murphy-o startrek zippy
PLIST_FILES= ${SRCF:S|^|share/games/fortune/|} ${SRCF:S|^|share/games/fortune/|:S|$|.dat|}
.if exists(/usr/games/strfile)
_STRFILE= /usr/games/strfile
.elif exists(/usr/bin/strfile)
_STRFILE= /usr/bin/strfile
.else
IGNORE= needs strfile command. Please install games distribution of base system
.endif
do-build:
.for f in ${SRCF}
@${_STRFILE} -Cs ${WRKSRC}/datfiles/${f} ${WRKSRC}/datfiles/${f}.dat
.endfor
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune
.for f in ${SRCF}
${INSTALL_DATA} ${WRKSRC}/datfiles/${f} ${WRKSRC}/datfiles/${f}.dat ${STAGEDIR}${PREFIX}/share/games/fortune
.endfor
.include <bsd.port.mk>
|