diff options
author | hsu <hsu@FreeBSD.org> | 1998-07-11 02:40:50 +0000 |
---|---|---|
committer | hsu <hsu@FreeBSD.org> | 1998-07-11 02:40:50 +0000 |
commit | 29ab67881a15d5706ebc107edca7ba901dc6f458 (patch) | |
tree | d94f1e0653c853a9b45df4470ec3e47b943ab80a /devel/jam/Makefile | |
parent | 3c18aaf9d2e4b2d446ac875ce46c56b1324dc3dc (diff) | |
download | FreeBSD-ports-29ab67881a15d5706ebc107edca7ba901dc6f458.zip FreeBSD-ports-29ab67881a15d5706ebc107edca7ba901dc6f458.tar.gz |
Import Jam/MR, a build utility like make(1).
Diffstat (limited to 'devel/jam/Makefile')
-rw-r--r-- | devel/jam/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/jam/Makefile b/devel/jam/Makefile new file mode 100644 index 0000000..4ec4f15 --- /dev/null +++ b/devel/jam/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: jam +# Version required: 2.2 +# Date created: 10 July 1998 +# Whom: Jeffrey Hsu <hsu@freebsd.org> +# +# $Id$ +# + +DISTNAME= jam-2.2 +CATEGORIES= devel +MASTER_SITES= ftp://ftp.perforce.com/pub/jam/ + +MAINTAINER= hsu@freebsd.org + +HTML_DOCS_DIR= ${PREFIX}/share/doc/jam +HTML_DOCS= Jam.html Jambase.html Jamfile.html Jamlang.html + +do-install: + (cd ${WRKSRC}; \ + bin.freebsdx86/jam install; \ + ${MKDIR} ${HTML_DOCS_DIR}; \ + ${INSTALL_MAN} ${HTML_DOCS} ${HTML_DOCS_DIR}) + +.include <bsd.port.mk> |