blob: 18cfcb0ea1170573c1a12cba4e176ef920a89388 (
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
|
# $NetBSD: Makefile,v 1.6 2001/02/06 03:16:57 fredb Exp $
#
DISTNAME= xboard-4.1.0
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_GNU:=xboard/}
MAINTAINER= simonb@NetBSD.ORG
HOMEPAGE= http://www.research.compaq.com/SRC/personal/mann/xboard.html
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"
|