diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-06-19 21:51:35 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-06-19 21:51:35 +0000 |
commit | 5aacdde06aa8b94b9b0492d2745ba7d4c1405898 (patch) | |
tree | 31c96da3a73b003fed63a6eb0730d7f92ecde655 /Mk | |
parent | 5c69ef11858d72bc0694e6b64c5e99e12519705c (diff) |
Show notice when a package is installed and flagged as automatic by pkgng
PR: ports/168909
Submitted by: "Bryan Drewery" <bryan@shatow.net>
Notes
Notes:
svn path=/head/; revision=299662
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.pkgng.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mk/bsd.pkgng.mk b/Mk/bsd.pkgng.mk index c6795cd7f5f0..863927dfc92c 100644 --- a/Mk/bsd.pkgng.mk +++ b/Mk/bsd.pkgng.mk @@ -30,7 +30,11 @@ ACTUAL-PACKAGE-DEPENDS?= \ .if !target(fake-pkg) fake-pkg: .if !defined(NO_PKG_REGISTER) +.if defined(INSTALLS_DEPENDS) + @${ECHO_MSG} "===> Registering installation for ${PKGNAME} as automatic" +.else @${ECHO_MSG} "===> Registering installation for ${PKGNAME}" +.endif @${MKDIR} ${METADIR} @${ECHO_CMD} "name: ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}" > ${MANIFESTF} @${ECHO_CMD} "version: ${PKGVERSION}" >> ${MANIFESTF} |