diff options
author | asami <asami@FreeBSD.org> | 1998-11-14 09:43:39 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-14 09:43:39 +0000 |
commit | 521807d38becba50804a00710cfa1b51c759a4f4 (patch) | |
tree | 26cfeb8a991d32014f9a30277d2ade973f1a937f /security/krb5-17/Makefile | |
parent | f4c70db8f8fed4684d8013755f0d23c5da34733e (diff) | |
download | FreeBSD-ports-521807d38becba50804a00710cfa1b51c759a4f4.zip FreeBSD-ports-521807d38becba50804a00710cfa1b51c759a4f4.tar.gz |
Use bsd.port.{pre,post}.mk to move PORTOBJFORMAT to front, or change
shell loops to make loops. Use EXTRA_PKG_FLAGS to add install scripts
instead of adding it to PKG_FLAGS after bsd.port.mk.
Diffstat (limited to 'security/krb5-17/Makefile')
-rw-r--r-- | security/krb5-17/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/security/krb5-17/Makefile b/security/krb5-17/Makefile index e8c1606..a363b46 100644 --- a/security/krb5-17/Makefile +++ b/security/krb5-17/Makefile @@ -3,7 +3,7 @@ # Date created: 6/5/1998 # Whom: n@nectar.com # -# $Id: Makefile,v 1.6 1998/09/27 11:34:28 markm Exp $ +# $Id: Makefile,v 1.7 1998/11/07 02:33:44 nectar Exp $ # DISTNAME= krb5-1.0.5 @@ -110,6 +110,8 @@ SETUID_EXE= bin/ksu bin/v4rcp CHOWN?= chown SUPERUSER?= root +.include <bsd.port.pre.mk> + do-fetch: @${MKDIR} ${_DISTDIR} @(cd ${_DISTDIR}; \ @@ -192,11 +194,11 @@ post-install: install-info ${PREFIX}/info/${info} ${PREFIX}/info/dir .endfor # fixup packing list (no libs without version numbers in aout case) - @if test "${PORTOBJFORMAT}" = "aout"; then \ - ${ECHO_MSG} "Fixing packing list for a.out"; \ - ${MV} ${TMPPLIST} ${TMPPLIST}.new; \ - ${GREP} -v '\.so$$' ${TMPPLIST}.new > ${TMPPLIST}; \ - ${RM} ${TMPPLIST}.new; \ - fi +.if ${PORTOBJFORMAT} == "aout" + ${ECHO_MSG} "Fixing packing list for a.out" + ${MV} ${TMPPLIST} ${TMPPLIST}.new + ${GREP} -v '\.so$$' ${TMPPLIST}.new > ${TMPPLIST} + ${RM} ${TMPPLIST}.new +.endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |