diff options
author | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg> | 2008-05-26 02:13:14 +0000 |
commit | 2374ca422f2eb8b46ed600c7bb21740b2865d899 (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /net/ntp4 | |
parent | ef56178a4a7ad8f02178aa72c5c4a4567ade918b (diff) | |
download | pkgsrc-2374ca422f2eb8b46ed600c7bb21740b2865d899.tar.gz |
Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
Diffstat (limited to 'net/ntp4')
-rw-r--r-- | net/ntp4/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ntp4/Makefile b/net/ntp4/Makefile index c52c084bb22..6ab40272684 100644 --- a/net/ntp4/Makefile +++ b/net/ntp4/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.54 2008/04/12 22:43:08 jlam Exp $ +# $NetBSD: Makefile,v 1.55 2008/05/26 02:13:22 joerg Exp $ # DISTNAME= ntp-4.2.0 @@ -16,7 +16,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews CONFLICTS+= openntpd-[0-9]* GNU_CONFIGURE= YES -USE_TOOLS+= perl +USE_TOOLS+= pax perl CONFIGURE_ENV+= PATH_PERL=${PERL5:Q} ac_cv_header_sys_soundcard_h=no @@ -29,8 +29,8 @@ ALL_NTP_DOCS= ${DOCDIR} ${EXAMPLESDIR} RCD_SCRIPTS= ntpd ntpdate post-install: - cd ${WRKSRC}/html && ${PAX} -rw . ${DOCDIR} - cd ${WRKSRC}/conf && ${PAX} -rw . ${EXAMPLESDIR} + cd ${WRKSRC}/html && pax -rw . ${DOCDIR} + cd ${WRKSRC}/conf && pax -rw . ${EXAMPLESDIR} ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${ALL_NTP_DOCS} ${FIND} ${ALL_NTP_DOCS} -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE} ${FIND} ${ALL_NTP_DOCS} -type f -print | ${XARGS} ${CHMOD} ${SHAREMODE} |