diff options
Diffstat (limited to 'databases')
-rw-r--r-- | databases/datamodeler/Makefile | 12 | ||||
-rw-r--r-- | databases/msql/Makefile | 6 |
2 files changed, 11 insertions, 7 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 <bsd.port.post.mk> |