diff options
author | edwin <edwin@FreeBSD.org> | 2002-12-20 21:04:06 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-12-20 21:04:06 +0800 |
commit | 2aba018ca45bd229b33ba35acb78d62e2c13181c (patch) | |
tree | 7ac31e3f9402f18e40da2629eaaa7f2686b5903d /security/saint | |
parent | 353f68dddac3a140a505da8e217011a54e092f1a (diff) | |
download | freebsd-ports-gnome-2aba018ca45bd229b33ba35acb78d62e2c13181c.tar.gz freebsd-ports-gnome-2aba018ca45bd229b33ba35acb78d62e2c13181c.tar.zst freebsd-ports-gnome-2aba018ca45bd229b33ba35acb78d62e2c13181c.zip |
Give a warning regarding the fact that the source can't be fetched
anymore.
PR: ports/45509
Submitted by: Mark Linimon <linimon@lonesome.com>
Diffstat (limited to 'security/saint')
-rw-r--r-- | security/saint/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/security/saint/Makefile b/security/saint/Makefile index e1de1503eabc..67fa409292c0 100644 --- a/security/saint/Makefile +++ b/security/saint/Makefile @@ -22,6 +22,12 @@ GNU_CONFIGURE= yes MAKE_ENV= "LIBS=-lrpcsvc" "XFLAGS=-g -O2 -DSTDC_HEADERS=1 -DGETGROUPS_T=gid_t -DSYS_ERRLIST_DECLARED=1 " "RPCGEN=/usr/bin/rpcgen" INSTALL_TARGET= all +.include <bsd.port.pre.mk> + +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +IGNORE= The source (${DISTFILES}is not available anymore. If you still have a copy, copy it to ${DISTDIR} and run make again. See http://www.wwdsi.com/products/download.html for more details regarding the next versions of Saint. +.endif + pre-install: ${MKDIR} ${PREFIX}/saint ${TAR} --directory ${WRKSRC} -cf - . --exclude src --exclude Makefile --exclude Makefile.in --exclude old --exclude config.cache --exclude config.log --exclude config.status --exclude configure --exclude configure.in --exclude install-sh --exclude saint.1 | \ @@ -34,4 +40,4 @@ do-install: post-install: ${RM} -rf ${PREFIX}/saint/include/ASM-i386 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |