blob: 2001f006ae18782832d623678cc724737ae86b04 (
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
|
# $NetBSD: Makefile,v 1.8 2001/02/16 15:11:00 wiz Exp $
DISTNAME= xboard-4.2.2
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_GNU:=xboard/} \
http://www.research.compaq.com/SRC/personal/mann/xboard/
MAINTAINER= simonb@NetBSD.ORG
HOMEPAGE= http://www.research.compaq.com/SRC/personal/mann/xboard.html
COMMENT= graphical frontend for GNU Chess, Crafty, ICS or e-mail chess
BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf
USE_PERL5= # defined
USE_X11= # defined
USE_XAW= # defined
USE_XPM= # defined
INFO_FILES= xboard.info
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --enable-xpm
CONFIGURE_ARGS+= --enable-zippy # interface to ICS
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
CPPFLAGS+= -I${X11PREFIX}/include
.include "../../mk/bsd.prefs.mk"
.if defined(XAW_TYPE) && (${XAW_TYPE} == "3d" || ${XAW_TYPE} == "xpm")
CONFIGURE_ARGS+= --with-Xaw3d
.endif
pre-configure:
cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf
.include "../../mk/bsd.pkg.mk"
|