diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-08-29 22:27:20 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-08-29 22:27:20 +0800 |
commit | 7b5c7c58394c24fff941bf1d9e1d09875b537f44 (patch) | |
tree | 65dc1a0925e54741be4806568d95583a583968ec /multimedia | |
parent | a950a5a92eb244de995598f9abdcb23d7e4da6e2 (diff) | |
download | freebsd-ports-gnome-7b5c7c58394c24fff941bf1d9e1d09875b537f44.tar.gz freebsd-ports-gnome-7b5c7c58394c24fff941bf1d9e1d09875b537f44.tar.zst freebsd-ports-gnome-7b5c7c58394c24fff941bf1d9e1d09875b537f44.zip |
- Use IGNORE when PACKAGE_BUILDING; keep pre-fetch as it is creating
the directory to fetch to for the user.
With hat: portmgr
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/sms1xxx-kmod/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/multimedia/sms1xxx-kmod/Makefile b/multimedia/sms1xxx-kmod/Makefile index 83f856c7320c..c78d1b4e989a 100644 --- a/multimedia/sms1xxx-kmod/Makefile +++ b/multimedia/sms1xxx-kmod/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: sms1xxx-kmod -# Date created: 10 February 2010 -# Whom: Ganael Laplanche <ganael.laplanche@martymac.org> -# +# Created by: Ganael Laplanche <ganael.laplanche@martymac.org> # $FreeBSD$ -# PORTNAME= sms1xxx PORTVERSION= 20120113 @@ -110,12 +106,16 @@ DISTFILE_INSTRUCTIONS+= \ PLIST_SUB+= PL_NOVA="@comment " .endif -pre-fetch: .if defined(DISTFILE_INSTRUCTIONS) +.if defined(PACKAGE_BUILDING) +IGNORE= requires manual fetch +.else +pre-fetch: @${MKDIR} ${DISTDIR}/${DIST_SUBDIR} @${PRINTF} "${DISTFILE_INSTRUCTIONS}" @exit 1 .endif +.endif post-patch: @${REINPLACE_CMD} -e 's|SUBDIR=|SUBDIR= ${BUILD_FWS}|' \ |