aboutsummaryrefslogtreecommitdiff
path: root/misc/fortuneit/Makefile
blob: 4e6ee5c3dff8377ac7a7d858d5e68952c1172389 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Created by: gmarco@giovannelli.it
# $FreeBSD$

PORTNAME=	fortuneit
PORTVERSION=	1.99
CATEGORIES=	misc
MASTER_SITES=	http://utenti.gufi.org/~gmarco/files/distfiles/
DISTNAME=	fortune-it-${PORTVERSION}

MAINTAINER=	gmarco@gufi.org
COMMENT=	Funny fortune file in Italian

.if exists(/usr/games/strfile)
STRCMD=		/usr/games/strfile
.elif exists(/usr/bin/strfile)
STRCMD=		/usr/bin/strfile
.else
IGNORE=		needs strfile command. Please install games distribution of base system
.endif

FORTUNEFILES=	adams banner computer definizioni formiche italia itatrek \
		jackfr leggi luke luttazzi norm paolotedeschi zuse \
		computer-o definizioni-o film-o italia-o jackfr-o leggi-o \
		luttazzi-o obsc-o zuse-o

do-build:
.for f in ${FORTUNEFILES}
	${STRCMD} ${WRKSRC}/testi/${f}
.endfor

do-install:
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune
.for f in ${FORTUNEFILES}
	${INSTALL_DATA} ${WRKSRC}/testi/${f}* \
		${STAGEDIR}${PREFIX}/share/games/fortune
.endfor

.include <bsd.port.mk>