summaryrefslogtreecommitdiff
path: root/games/velena/Makefile
blob: ce63e6b4f7ba44271757678e6afbf7817eba44d0 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# $NetBSD: Makefile,v 1.17 2020/04/25 21:49:38 rillig Exp $
#

DISTNAME=	veleng10
PKGNAME=	velena-1.0
PKGREVISION=	4
CATEGORIES=	games
MASTER_SITES=	http://www.ce.unipr.it/~gbe/
EXTRACT_SUFX=	.zip

MAINTAINER=	pkgsrc-users@NetBSD.org
HOMEPAGE=	http://www.ce.unipr.it/~gbe/
COMMENT=	Perfect-play engine for connect four
LICENSE=	velena-license

RESTRICTED=		You must not charge a fee for this software nor for any derived work in which this software is included.
NO_BIN_ON_CDROM=	${RESTRICTED}
NO_SRC_ON_CDROM=	${RESTRICTED}

# These platforms cannot build 32-on-64 binaries.
NOT_FOR_PLATFORM+=	*-*-alpha
NOT_FOR_PLATFORM+=	DragonFly-*-x86_64

EXTRACT_OPTS_ZIP=	-LLaqo
WRKSRC=			${WRKDIR}
MAKE_FILE=		makefile
AUTO_MKDIRS=		yes

SUBST_CLASSES+=		path
SUBST_STAGE.path=	pre-configure
SUBST_FILES.path=	connect4.h
SUBST_SED.path=		-e 's,"white_ob.cn4","${PREFIX}/share/velena/white_ob.cn4",'

SUBST_CLASSES+=		ansi-c
SUBST_STAGE.ansi-c=	pre-configure
SUBST_FILES.ansi-c=	*.c
SUBST_SED.ansi-c=	-e 's,<malloc\.h>,<stdlib.h>,'

SUBST_CLASSES+=		cflags
SUBST_STAGE.cflags=	pre-configure
SUBST_FILES.cflags=	makefile
SUBST_SED.cflags=	-e s,^CFLAGS.*,,

.include "../../mk/bsd.prefs.mk"

# Velena isn't 64bit-safe, which results in a "fatal error" for some
# board positions.
#
# Try for example "c170", which works with -m32 and fails without.
#
.for P in ${LP64PLATFORMS}
.  if ${MACHINE_PLATFORM:M${P}}
CFLAGS+=		-m32
LDFLAGS+=		-m32
.  endif
.endfor

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/veleng ${DESTDIR}${PREFIX}/bin/velena
	${INSTALL_DATA} ${WRKSRC}/readme ${DESTDIR}${PREFIX}/share/doc/velena/README
	${INSTALL_DATA} ${WRKSRC}/white_ob.cn4 ${DESTDIR}${PREFIX}/share/velena/.

.include "../../mk/bsd.pkg.mk"