mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
31 lines
728 B
Makefile
31 lines
728 B
Makefile
# Created by: Frederic Culot <frederic@culot.org>
|
|
|
|
PORTNAME= fortune-mod-zarathoustra
|
|
PORTVERSION= 20100905
|
|
CATEGORIES= french
|
|
MASTER_SITES= LOCAL/culot
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Compilation of quotes from Nietzsche's Thus spoke Zarathustra
|
|
|
|
LICENSE= NONE
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
.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
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${STRCMD} zarathoustra
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune
|
|
${INSTALL_DATA} ${WRKSRC}/zarathoustra* ${STAGEDIR}${PREFIX}/share/games/fortune
|
|
|
|
.include <bsd.port.mk>
|