blob: 6c76c1f4c64e626c7705f883f7fd97f43c551ddd (
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
|
# New ports collection makefile for: bass (Beneath a Steel Sky)
# Date created: Tue Sep 2 23:34:32 BST 2003
# Whom: Alex Trull <freebsd.alex@trull.org>
#
# $FreeBSD$
#
PORTNAME= bass
PORTVERSION= 1.2
PORTREVISION= 2
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= scummvm
DISTNAME= bass-cd-1.2
MAINTAINER= ports@FreeBSD.org
COMMENT= Beneath a Steel Sky: a post-apocalyptic futuristic graphical adventure
RUN_DEPENDS= scummvm:${PORTSDIR}/games/scummvm
USE_ZIP= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${DISTNAME}
PKGMESSAGE= ${WRKDIR}/pkg-message
do-install:
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/sky.dnr ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/sky.dsk ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/sky.cpt ${DATADIR}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for docs in readme.txt
@${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
.endfor
.endif
post-install:
@${SED} -e "s:%%DATADIR%%:${DATADIR}:g" pkg-message >${PKGMESSAGE}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|