diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-05-02 14:34:29 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-05-02 14:34:29 +0000 |
commit | b39095cedbce5aa16b893bbeb51f7402ab9241d5 (patch) | |
tree | 93076953cc32883497075e55b99dd4519bdc069a /net | |
parent | 93472d5f97134d09e4e23576a98a60f291622ccb (diff) |
Please bmake(1) as well as make(1)
Notes
Notes:
svn path=/head/; revision=317123
Diffstat (limited to 'net')
-rw-r--r-- | net/cvsupchk/Makefile | 10 | ||||
-rw-r--r-- | net/net-http/Makefile | 13 |
2 files changed, 7 insertions, 16 deletions
diff --git a/net/cvsupchk/Makefile b/net/cvsupchk/Makefile index 8c957f8403c2..57707a0b4ce0 100644 --- a/net/cvsupchk/Makefile +++ b/net/cvsupchk/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: cvsupchk -# Date created: 07 Nov 2005 -# Whom: matthias.andree@gmx.de -# +# Created by: matthias.andree@gmx.de # $FreeBSD$ -# PORTNAME= cvsupchk PORTVERSION= 19990209 @@ -25,7 +21,7 @@ NO_BUILD= yes .include <bsd.port.pre.mk> -src!= cd ${PORTSDIR}/net/cvsup-without-gui && make -V WRKSRC +src!= ${MAKE} -C ${PORTSDIR}/net/cvsup-without-gui -V WRKSRC do-extract: ${MKDIR} ${WRKSRC} @@ -34,7 +30,7 @@ do-extract: do-install: ${MKDIR} ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/cvsupchk ${PREFIX}/bin/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${src}/contrib/cvsupchk/README ${DOCSDIR}/ .endif diff --git a/net/net-http/Makefile b/net/net-http/Makefile index e44e402a62ab..8be451cdd013 100644 --- a/net/net-http/Makefile +++ b/net/net-http/Makefile @@ -1,10 +1,5 @@ -# ex:ts=8 -# New ports collection makefile for: net-http -# Date created: May 15, 2001 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD$ -# PORTNAME= net-http PORTVERSION= 0.3.1 @@ -22,12 +17,12 @@ GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/${PORTNAME} NO_BUILD= yes -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> -GUILE_VER!= (cd ${PORTSDIR}/lang/guile && make -V GUILE_VER) +GUILE_VER!= ${MAKE} -C ${PORTSDIR}/lang/guile -V GUILE_VER PLIST_SUB= GUILE_VER="${GUILE_VER}" do-install: ${CP} -R ${WRKSRC}/net/ ${LOCALBASE}/share/guile/${GUILE_VER}/net/ -.include <bsd.port.post.mk> +.include <bsd.port.mk> |