mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-18 17:00:49 +01:00
Add 2 new targets to facilitate some things I'm thinking about.
1. package-name Simply echos the associated package name for a port (if any). 2. package-depends Shows all package names on which this port depends.
This commit is contained in:
parent
c4fb365962
commit
489c51e631
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7711
@ -3,7 +3,7 @@
|
||||
# bsd.port.mk - 940820 Jordan K. Hubbard.
|
||||
# This file is in the public domain.
|
||||
#
|
||||
# $Id: bsd.port.mk,v 1.133 1995/04/09 09:59:42 asami Exp $
|
||||
# $Id: bsd.port.mk,v 1.134 1995/04/09 10:24:09 jkh Exp $
|
||||
#
|
||||
# Please view me with 4 column tabs!
|
||||
|
||||
@ -416,6 +416,26 @@ ${INSTALL_COOKIE}:
|
||||
@${TOUCH} ${TOUCH_FLAGS} ${INSTALL_COOKIE}
|
||||
.endif
|
||||
|
||||
# package-name and package-depends are internal targets and really
|
||||
# shouldn't be touched by anybody but the release engineers.
|
||||
|
||||
# Nobody should want to override this unless PKGNAME is simply bogus.
|
||||
.if !target(package-name)
|
||||
package-name:
|
||||
.if !defined(NO_PACKAGE)
|
||||
@echo ${PKGNAME}
|
||||
.endif
|
||||
.endif
|
||||
|
||||
# Show (recursively) all the packages this package depends on.
|
||||
.if !target(package-depends)
|
||||
package-depends:
|
||||
@for i in ${EXEC_DEPENDS} ${LIB_DEPENDS}; do \
|
||||
dir=`echo $$i | sed -e 's/.*://'`; \
|
||||
(cd $$dir ; ${MAKE} package-name package-depends); \
|
||||
done
|
||||
.endif
|
||||
|
||||
.if !target(pre-package)
|
||||
pre-package:
|
||||
@${DO_NADA}
|
||||
|
Loading…
Reference in New Issue
Block a user