From 5f5e698e023c9c1f60998f91f71131fdae298bc5 Mon Sep 17 00:00:00 2001 From: bdrewery Date: Sat, 31 Aug 2013 01:51:02 +0000 Subject: - IGNORE when PACKAGE_BUILDING as these require manual fetch With hat: portmgr --- databases/datamodeler/Makefile | 12 ++++++------ databases/msql/Makefile | 6 +++++- net/vmware-vsphere-cli/Makefile | 12 ++++++------ security/truecrypt/Makefile | 6 +++++- 4 files changed, 22 insertions(+), 14 deletions(-) diff --git a/databases/datamodeler/Makefile b/databases/datamodeler/Makefile index bb70625225df..3448f42d837a 100644 --- a/databases/datamodeler/Makefile +++ b/databases/datamodeler/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: datamodeler -# Date created: 22 October 2011 -# Whom: jjuanino@gmail.com -# +# Created by: jjuanino@gmail.com # $FreeBSD$ -# PORTNAME= datamodeler PORTVERSION= 3.1.0.700 @@ -57,11 +53,15 @@ DISTFILE_INSTRUCTIONS += into ${DISTDIR}/${DIST_SUBDIR}/ \n DISTFILE_INSTRUCTIONS += and then restart this installation\n\n .endif -pre-fetch: .if defined(DISTFILE_INSTRUCTIONS) +.if defined(PACKAGE_BUILDING) +IGNORE= requires manual fetch +.else +pre-fetch: @${PRINTF} "${DISTFILE_INSTRUCTIONS}" @exit 1 .endif +.endif SUB_FILES= ${PORTNAME}.script.sh SUB_LIST= JAVA_HOME=${JAVA_HOME} diff --git a/databases/msql/Makefile b/databases/msql/Makefile index f4f542da99df..4fc117af598c 100644 --- a/databases/msql/Makefile +++ b/databases/msql/Makefile @@ -77,10 +77,14 @@ and place it in ${DISTDIR}.\n\ The distribution requires registration prior to use.\n\n .endif -pre-fetch: .if defined(DISTFILE_INSTRUCTIONS) +.if defined(PACKAGE_BUILDING) +IGNORE= requires manual fetch +.else +pre-fetch: @${PRINTF} "${DISTFILE_INSTRUCTIONS}" @exit 1 .endif +.endif .include diff --git a/net/vmware-vsphere-cli/Makefile b/net/vmware-vsphere-cli/Makefile index 056fec6037dd..feca24bf6a0b 100644 --- a/net/vmware-vsphere-cli/Makefile +++ b/net/vmware-vsphere-cli/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: vmware-vsphere-cli -# Date created: 2011-07-07 -# Whom: rpsfa@rit.edu -# +# Created by: rpsfa@rit.edu # $FreeBSD$ -# PORTNAME= vmware-vsphere-cli PORTVERSION= 5.1.0 @@ -49,11 +45,15 @@ After the download has completed, please place ${DISTNAME}${EXTRACT_SUFX} in\n\ ${DISTDIR}, then restart the build.\n\n .endif -pre-fetch: .if defined(DISTFILE_INSTRUCTIONS) +.if defined(PACKAGE_BUILDING) +IGNORE= requires manual fetch +.else +pre-fetch: @${PRINTF} "${DISTFILE_INSTRUCTIONS}" @exit 1 .endif +.endif post-extract: @${MV} ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}-distrib ${WRKSRC} diff --git a/security/truecrypt/Makefile b/security/truecrypt/Makefile index a0b035bd28a3..e59ce4afc425 100644 --- a/security/truecrypt/Makefile +++ b/security/truecrypt/Makefile @@ -63,11 +63,15 @@ Place the downloaded file into ${DISTDIR} and rename it to ${TC_SRCFILE}\n\n\ Then, please restart the build.\n\n .endif -pre-fetch: .if defined(DISTFILE_INSTRUCTIONS) +.if defined(PACKAGE_BUILDING) +IGNORE= requires manual fetch +.else +pre-fetch: @${PRINTF} "${DISTFILE_INSTRUCTIONS}" @exit 1 .endif +.endif do-build: @${MKDIR} ${WRKDIR}/rsa -- cgit