blob: f687c23d81ccaedcbb92503dc993a0dca0f4938a (
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
45
46
47
48
|
# $NetBSD: Makefile,v 1.31 2009/03/22 16:39:14 hasso Exp $
DISTNAME= openttd-0.6.3-source
PKGNAME= ${DISTNAME:S/-source//}
CATEGORIES= games x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=openttd/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.openttd.com/
COMMENT= Open source clone of Transport Tycoon Deluxe
EXTRACT_SUFX= .tar.bz2
HAS_CONFIGURE= yes
USE_LANGUAGES+= c c++
USE_DIRS+= xdg-1.1
USE_TOOLS+= gmake pkg-config
# Setting the below results in binaries looking in ${DESTDIR} for datafiles
# CONFIGURE_ARGS+= --prefix-dir=${DESTDIR}${PREFIX}
# PKG_DESTDIR_SUPPORT= user-destdir
CONFIGURE_ARGS+= --prefix-dir=${PREFIX}
CONFIGURE_ARGS+= --binary-dir=bin
CONFIGURE_ARGS+= --data-dir=share/openttd
CONFIGURE_ARGS+= --man-dir=${PKGMANDIR}/man6
.include "../../mk/bsd.prefs.mk"
.if (${OPSYS} == "DragonFly")
CONFIGURE_ARGS+= --os=FREEBSD
.endif
# disable custom assert for Mac OS X (XXX: still needed?)
CFLAGS+= -DNDEBUG=1
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
BUILD_TARGET= bundle
post-install:
rm -rf ${FAKEHOMEDIR}/.openttd
.include "options.mk"
.include "../../fonts/fontconfig/buildlink3.mk"
.include "../../graphics/freetype2/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../../devel/SDL/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|