diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1998-01-31 20:59:30 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1998-01-31 20:59:30 +0000 |
commit | 2633fbf5a1d7f1ec9a092d1acfca95efc9362886 (patch) | |
tree | 59f2cfe5d51b92bc0f82706b45f814d841796ca3 /Mk/bsd.port.mk | |
parent | b128ae736e34370eb5fef0f3da0f93a2eb829117 (diff) | |
download | ports-2633fbf5a1d7f1ec9a092d1acfca95efc9362886.tar.gz ports-2633fbf5a1d7f1ec9a092d1acfca95efc9362886.zip |
Notes
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 2fae7aa64166..ac153cfd92ef 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1,7 +1,7 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 # -# $Id: bsd.port.mk,v 1.267 1997/11/20 05:33:56 asami Exp $ +# $Id: bsd.port.mk,v 1.268 1998/01/02 10:37:14 asami Exp $ # $NetBSD: $ # # bsd.port.mk - 940820 Jordan K. Hubbard. @@ -675,7 +675,11 @@ MAINTAINER?= ports@FreeBSD.ORG # shouldn't match "[a-z]*"), see the target "delete-package-links" below. PKGREPOSITORYSUBDIR?= All PKGREPOSITORY?= ${PACKAGES}/${PKGREPOSITORYSUBDIR} +.if exists(${PACKAGES}) PKGFILE?= ${PKGREPOSITORY}/${PKGNAME}${PKG_SUFX} +.else +PKGFILE?= ${.CURDIR}/${PKGNAME}${PKG_SUFX} +.endif # The "latest version" link -- ${PKGNAME} minus everthing after the last '-' PKGLATESTREPOSITORY?= ${PACKAGES}/Latest @@ -1151,7 +1155,7 @@ _PORT_USE: .USE .if !defined(NO_PKG_REGISTER) && !defined(FORCE_PKG_REGISTER) @if [ -d ${PKG_DBDIR}/${PKGNAME} ]; then \ ${ECHO_MSG} "===> ${PKGNAME} is already installed - perhaps an older version?"; \ - ${ECHO_MSG} " If so, you may wish to \`\`pkg_delete ${PKGNAME}'' and install"; \ + ${ECHO_MSG} " If so, you may wish to \`\`make deinstall'' and install"; \ ${ECHO_MSG} " this port again by \`\`make reinstall'' to upgrade it properly."; \ ${ECHO_MSG} " If you really wish to overwrite the old port of ${PKGNAME}"; \ ${ECHO_MSG} " without deleting it first, set the variable \"FORCE_PKG_REGISTER\""; \ |