summaryrefslogtreecommitdiff
path: root/devel/bmake/Makefile
diff options
context:
space:
mode:
authorsjg <sjg@pkgsrc.org>2004-05-11 18:28:32 +0000
committersjg <sjg@pkgsrc.org>2004-05-11 18:28:32 +0000
commitc598d8d5188e9288c8a7527d18a478b3b194a46f (patch)
tree40d46ea5501dedba7c7e9931013e858e5f20fed8 /devel/bmake/Makefile
parent896c25fffec3062314064d7ac1af3a42f1ef79b6 (diff)
downloadpkgsrc-c598d8d5188e9288c8a7527d18a478b3b194a46f.tar.gz
Update bmake to 20040511 which syncs with -current (and 2.0).
We now use bmake/boot-strap for simpler building. New location for distfile. Changes to bmake include: o allow quoted strings on lhs of conditionals o issue warning when extra .else is seen o print line numer when errors encountered during parsing from string. o posix fixes - remove '-e' from compat mode - add support for '+' command-line prefix. o fix for handling '--' on command-line.
Diffstat (limited to 'devel/bmake/Makefile')
-rw-r--r--devel/bmake/Makefile21
1 files changed, 11 insertions, 10 deletions
diff --git a/devel/bmake/Makefile b/devel/bmake/Makefile
index ef47903f8b6..735589634ab 100644
--- a/devel/bmake/Makefile
+++ b/devel/bmake/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.19 2004/02/21 00:15:44 sjg Exp $
+# $NetBSD: Makefile,v 1.20 2004/05/11 18:28:32 sjg Exp $
#
-DISTNAME= bmake-20040220
+DISTNAME= bmake-20040511
CATEGORIES= devel
-MASTER_SITES= ftp://ftp.NetBSD.org/pub/incoming/sjg/
+MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/sjg/
MAINTAINER= sjg@NetBSD.org
HOMEPAGE= http://www.crufty.net/help/sjg/bmake.html
@@ -11,19 +11,20 @@ COMMENT= Portable (autoconf) version of NetBSD 'make' utility
DEPENDS+= mk-files>=20030714:../../devel/mk-files
-ONLY_FOR_PLATFORM= NetBSD-*-*
-
WRKSRC= ${WRKDIR}/bmake
+
makesyspath=${PREFIX}/share/mk:/usr/share/mk:/usr/local/share/mk:/opt/share/mk
-GNU_CONFIGURE= yes
+GNU_CONFIGURE= no
CONFIGURE_ARGS+= --with-default-sys-path=${makesyspath}
+do-configure:
+
do-build:
- cd ${WRKSRC} && MAKESYSPATH=${makesyspath} make -f makefile.boot bootstrap
+ cd ${WRKDIR} && ./bmake/boot-strap -q -o ${OPSYS} ${CONFIGURE_ARGS}
do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/bmake ${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/bmake.cat1 ${PREFIX}/man/cat1/bmake.0
- ${INSTALL_MAN} ${WRKSRC}/bmake.1 ${PREFIX}/man/man1
+ ${INSTALL_PROGRAM} ${WRKDIR}/${OPSYS}/bmake ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKDIR}/${OPSYS}/bmake.cat1 ${PREFIX}/man/cat1/bmake.0
+ ${INSTALL_MAN} ${WRKDIR}/${OPSYS}/bmake.1 ${PREFIX}/man/man1
.include "../../mk/bsd.pkg.mk"