aboutsummaryrefslogtreecommitdiff
path: root/games/scummvm-tools/Makefile
blob: ba952b40a619e0015267a954285ff0b4b087d249 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Created by: Adam Weinberger <adamw@FreeBSD.org>
# $FreeBSD$

PORTNAME=	scummvm-tools
DISTVERSION=	1.6.0
PORTREVISION=	3
CATEGORIES=	games emulators
MASTER_SITES=	SF/scummvm/${PORTNAME}/${DISTVERSION}

MAINTAINER=	lme@FreeBSD.org
COMMENT=	Tools for use with the SCUMMVM game emulator

LICENSE=	GPLv2

RUN_DEPENDS=	scummvm:${PORTSDIR}/games/scummvm
BUILD_DEPENDS=	lame:${PORTSDIR}/audio/lame \
		flac:${PORTSDIR}/audio/flac \
		oggenc:${PORTSDIR}/audio/vorbis-tools \
		oggdec:${PORTSDIR}/audio/vorbis-tools \

LIB_DEPENDS=	libpng15.so:${PORTSDIR}/graphics/png \
		libvorbis.so:${PORTSDIR}/audio/libvorbis

USES=		gmake tar:bzip2
GNU_CONFIGURE=	yes

CONFIGURE_TARGET=

STRIP_FILES=	construct_mohawk create_sjisfnt decine degob dekyra \
		deriven descumm desword2 extract_mohawk gob_loadcalc \
		scummvm-tools-cli

OPTIONS_DEFINE=	WXGTK DOCS
OPTIONS_DEFAULT=	WXGTK

.include <bsd.port.pre.mk>

.if ${PORT_OPTIONS:MWXGTK}
USE_WX=		2.8
WX_COMP=	wx:lib:build
WX_UNICODE=	yes
WX_CONFIG_ARGS=	absolute
GUI_BIN=	tools_gui
PLIST_SUB=	WX=""
STRIP_FILES+=	scummvm-tools
.else
CONFIGURE_ARGS+=	--disable-wxwidgets
PLIST_SUB=	WX="@comment "
.endif

pre-patch:
	@${REINPLACE_CMD} -e 's|wxgtk2-2.8-config|${WX_CONFIG:C/.*\///}|' \
		${WRKSRC}/configure

pre-install:
.for f in ${STRIP_FILES}
	@${STRIP_CMD} ${WRKSRC}/$f
.endfor

post-install:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
	@${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}

.include <bsd.port.post.mk>