diff options
author | agc <agc@pkgsrc.org> | 2001-05-25 12:41:14 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-05-25 12:41:14 +0000 |
commit | 70f396c3cde9a653bdbaa94d3e9dc10cd20556c8 (patch) | |
tree | af2bb7fc75b8172e71ee4dbead3385a5b2298bfc /devel/bmake/Makefile | |
parent | 6e310623022396c680bc44ca6cc129651aeb099b (diff) | |
download | pkgsrc-70f396c3cde9a653bdbaa94d3e9dc10cd20556c8.tar.gz |
Initial import of bmake-3.1.6 into the packages collection.
This is NetBSD's make(1) utility, with a configure script and
supporting replacements for various NetBSD library routines, ported to
other Operating Systems by Simon Gerraty. Solaris, SunOS, HP-UX,
Linux and AIX are amongst the operating systems supported.
Diffstat (limited to 'devel/bmake/Makefile')
-rw-r--r-- | devel/bmake/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/devel/bmake/Makefile b/devel/bmake/Makefile new file mode 100644 index 00000000000..5f36027a78b --- /dev/null +++ b/devel/bmake/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/05/25 12:41:14 agc Exp $ +# + +DISTNAME= bmake-3.1.6 +CATEGORIES= devel +MASTER_SITES= ftp://ftp.netbsd.org/pub/incoming/sjg/ + +MAINTAINER= sjg@netbsd.org +HOMEPAGE= http://www.quick.com.au/help/sjg/bmake.html +COMMENT= NetBSD version of 'make' utility + +DEPENDS+= mk-files-1.2.2:../../devel/mk-files + +WRKSRC= ${WRKDIR}/bmake + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= \ + --with-default-sys-path=${PREFIX}/share/mk:/usr/share/mk:/usr/local/share/mk:/opt/share/mk + +do-build: + cd ${WRKSRC}; make -f makefile.boot bootstrap; ./bmake -f Makefile; ./bmake -f Makefile bmake.1 + +do-install: + ${BSD_INSTALL_PROGRAM} ${WRKSRC}/bmake ${PREFIX}/bin + ${BSD_INSTALL_MAN} ${WRKSRC}/bmake.cat1 ${PREFIX}/man/cat1/bmake.0 + ${BSD_INSTALL_MAN} ${WRKSRC}/bmake.1 ${PREFIX}/man/man1 + +.include "../../mk/bsd.pkg.mk" |