summaryrefslogtreecommitdiff
path: root/emulators/p11/Makefile
blob: aefd1c123b994caff2c65c5564aaa05cfa4065f9 (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
# $NetBSD: Makefile,v 1.20 2014/01/03 04:30:26 dholland Exp $
#

DISTNAME=	p11-2.10i
CATEGORIES=	emulators
MASTER_SITES=	http://people.freebsd.org/~harti/p11/
EXTRACT_SUFX=	.tar.bz2

MAINTAINER=	packages@grumpf.hope-2000.org
COMMENT=	PDP11 emulator

GNU_CONFIGURE=		yes
CONFIGURE_ARGS+=	--with-begemot=${PREFIX:Q}
USE_LIBTOOL=		yes
USE_TOOLS+=		gmake

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

PLIST_VARS+=		bpf tap tun

# bfp, tap, and tun tests taken from p11 configure script
.if exists(/dev/bpf0)
PLIST.bpf=		yes
.endif
.if exists(/dev/tap0) || exists(/dev/net/tun)
PLIST.tap=		yes
.endif
.if exists(/dev/tun) || exists(/dev/tun0) || exists(/dev/net/tun)
PLIST.tun=		yes
.endif

# Force the bpf, tun, and tap epp backends to be built on DragonFly and fbsd.
.if ${OPSYS} == "DragonFly" || ${OPSYS} == "FreeBSD"
PLIST.tap=		yes
PLIST.tun=		yes
CONFIGURE_ENV+=		ac_cv_epp_bpf=yes ac_cv_epp_tun=yes ac_cv_epp_tap=yes
.endif

# override MAKEFLAGS in the build and install stages
do-build:
	cd ${WRKSRC} && ${GMAKE} ${BUILD_TARGET} MAKEFLAGS=

do-install:
	cd ${WRKSRC} && ${GMAKE} ${INSTALL_TARGET} MAKEFLAGS= DESTDIR=${DESTDIR}

.include "../../devel/libbegemot/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"