blob: 73188024f905b4cf9a0110a3a59906b06e3b92a1 (
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
39
40
41
42
43
44
45
46
47
48
49
50
|
# New ports collection makefile for: scummvm
# Date created: Tue Sep 2 23:34:32 BST 2003
# Whom: Alex Trull <alexander@trull.com>
#
# $FreeBSD$
#
PORTNAME= scummvm
PORTVERSION= 0.5.1
CATEGORIES= games emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= alexander@trull.com
COMMENT= Free implementation of LucasArts S.C.U.M.M. interpreter
LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12 \
mad.1:${PORTSDIR}/audio/mad
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_PERL= yes
USE_REINPLACE= yes
MAN6= scummvm.6
pre-patch:
@${FIND} -E ${WRKSRC} -type f -iregex ".*\.(cpp|h|txt)" \
-exec ${PERL} -pi -ne 's!\r\n!\n!' {} 1>/dev/null 2>&1 \;
@${REINPLACE_CMD} -e 's|\r\n|\n|' ${WRKSRC}/Makefile
@${REINPLACE_CMD} -e 's@sdl-config@sdl11-config@g' \
${WRKSRC}/backends/sdl/build.rules
post-configure:
@${REINPLACE_CMD} -e 's@:= -g -O@+= ${CFLAGS}@' \
${WRKSRC}/Makefile
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/scummvm ${PREFIX}/bin
@${INSTALL_MAN} ${WRKSRC}/scummvm.6 ${PREFIX}/man/man6
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for docs in README
@${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|