summaryrefslogtreecommitdiff
path: root/security/krb5-appl
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1998-11-14 09:43:39 +0000
committerSatoshi Asami <asami@FreeBSD.org>1998-11-14 09:43:39 +0000
commit96bc8048c3217bb231f2f30eadeb628134b557f5 (patch)
treec75d5bd5a6faba5d6ec73da367e4bfe5b0d4285d /security/krb5-appl
parentChecksum changed.... (diff)
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.
Notes
Notes: svn path=/head/; revision=14512
Diffstat (limited to 'security/krb5-appl')
-rw-r--r--security/krb5-appl/Makefile18
1 files changed, 10 insertions, 8 deletions
diff --git a/security/krb5-appl/Makefile b/security/krb5-appl/Makefile
index e8c16064d25d..a363b461dd32 100644
--- a/security/krb5-appl/Makefile
+++ b/security/krb5-appl/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>