diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-08-31 09:51:02 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-08-31 09:51:02 +0800 |
commit | 5f5e698e023c9c1f60998f91f71131fdae298bc5 (patch) | |
tree | 37f1d7f8ef86ff5e79518ef512924f87d7bf811d /databases | |
parent | eb86d7e748ad1a056e903a36fed3e940f79e04a0 (diff) | |
download | freebsd-ports-gnome-5f5e698e023c9c1f60998f91f71131fdae298bc5.tar.gz freebsd-ports-gnome-5f5e698e023c9c1f60998f91f71131fdae298bc5.tar.zst freebsd-ports-gnome-5f5e698e023c9c1f60998f91f71131fdae298bc5.zip |
- IGNORE when PACKAGE_BUILDING as these require manual fetch
With hat: portmgr
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> |