blob: 5cf39c5d89804cbeeef31ecbee7d844314cb4f7a (
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
|
# $NetBSD: Makefile,v 1.10 2005/12/09 09:37:32 joerg Exp $
#
DISTNAME= p11-2.10a
CATEGORIES= emulators
MASTER_SITES= ftp://ftp.fokus.gmd.de/pub/cats/usr/harti/p11/
MAINTAINER= tech-pkg@NetBSD.org
COMMENT= PDP11 emulator
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-begemot=${PREFIX:Q}
USE_LIBTOOL= yes
USE_TOOLS+= gmake
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "DragonFly"
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=
.include "../../devel/libbegemot/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|