mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
535b2cd3cf
PR: 215557 Submitted by: A.J. "Fonz" van Werven (maintainer)
34 lines
819 B
Makefile
34 lines
819 B
Makefile
# Created by: stolz@i2.informatik.rwth-aachen.de
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fortune-mod-futurama
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 4
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.netmeister.org/apps/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Compilation of quotes from the TV series "Futurama"
|
|
|
|
USES= tar:bzip2
|
|
SUB_FILES= pkg-message
|
|
|
|
PLIST_FILES= share/games/fortune/futurama share/games/fortune/futurama.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:
|
|
@${STRFILE} ${WRKSRC}/futurama
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/games/fortune
|
|
${INSTALL_DATA} ${WRKSRC}/futurama* ${STAGEDIR}${PREFIX}/share/games/fortune
|
|
|
|
.include <bsd.port.mk>
|