diff options
author | jschauma <jschauma@pkgsrc.org> | 2004-06-10 20:03:11 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2004-06-10 20:03:11 +0000 |
commit | db2957928f71d8f96d939633b482124d6cb4c0e1 (patch) | |
tree | 1840da82aef1d1b7a3247461ab973aa20b45cc4a /net/ntp4 | |
parent | 1af9e6f766b8ecd36fc39731b4441170abe215b5 (diff) | |
download | pkgsrc-db2957928f71d8f96d939633b482124d6cb4c0e1.tar.gz |
Address PR pkg/24607 by Georg Schwarz to make this build and install under
IRIX:
- add flexibility to PLIST
- add configure arguments to point to openssl if not builtin
- don't use '-print0' to find(1). IRIX' find does not have this capability,
and since we know for a fact that it will not be needed, we can leave it
out in this case.
Diffstat (limited to 'net/ntp4')
-rw-r--r-- | net/ntp4/Makefile | 30 | ||||
-rw-r--r-- | net/ntp4/PLIST | 7 |
2 files changed, 27 insertions, 10 deletions
diff --git a/net/ntp4/Makefile b/net/ntp4/Makefile index 33193d78636..082d4aaf7a4 100644 --- a/net/ntp4/Makefile +++ b/net/ntp4/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2004/05/08 07:37:40 snj Exp $ +# $NetBSD: Makefile,v 1.35 2004/06/10 20:03:11 jschauma Exp $ # DISTNAME= ntp-4.2.0 @@ -27,15 +27,18 @@ ALL_NTP_DOCS= ${DOCDIR}/ntp4 ${EXAMPLESDIR}/ntp4 RCD_SCRIPTS= ntpd ntpdate post-install: - (cd ${WRKSRC} && \ - ${PAX} -rw -pe -s "/html/ntp4/" html ${DOCDIR}; \ - ${PAX} -rw -pe -s "/conf/ntp4/" conf ${EXAMPLESDIR}); \ - ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${ALL_NTP_DOCS}; \ - ${FIND} ${ALL_NTP_DOCS} -type d -print0 | ${XARGS} -0 ${CHMOD} ${PKGDIRMODE}; \ - ${FIND} ${ALL_NTP_DOCS} -type f -print0 | ${XARGS} -0 ${CHMOD} ${SHAREMODE}; + (cd ${WRKSRC} && \ + ${PAX} -rw -pe -s "/html/ntp4/" html ${DOCDIR}; \ + ${PAX} -rw -pe -s "/conf/ntp4/" conf ${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}; .include "../../mk/bsd.prefs.mk" +TIMETRIM= "" +NO_TIMETRIM= "@comment " + .if ${OPSYS} == "NetBSD" # # Use POSIX nanosecond timers when available, but not otherwise. @@ -51,7 +54,20 @@ LOWER_OPSYS_VERSUFFIX= 2 # Don't pick up libwww's -lmd5, until buildlink can be fixed. # CONFIGURE_ENV+= ac_cv_lib_md5_MD5Init=no +.elif ${OPSYS} == "IRIX" +TIMETRIM= "@comment " +NO_TIMETRIM= "" .endif +PLIST_SUBST+= TIMETRIM=${TIMETRIM} NO_TIMETRIM=${NO_TIMETRIM} + .include "../../security/openssl/buildlink3.mk" +.include "../../mk/buildlink3/bsd.builtin.mk" + +.if !empty(USE_BUILTIN.openssl:M[nN][oO]) +CONFIGURE_ARGS+= --with-openssl-incdir=${SSLBASE}/include +CONFIGURE_ARGS+= --with-openssl-libdir=${SSLBASE}/lib +CONFIGURE_ARGS+= --with-crypto=openssl +.endif + .include "../../mk/bsd.pkg.mk" diff --git a/net/ntp4/PLIST b/net/ntp4/PLIST index 0c535f2d8b1..4d98ebef73d 100644 --- a/net/ntp4/PLIST +++ b/net/ntp4/PLIST @@ -1,13 +1,14 @@ -@comment $NetBSD: PLIST,v 1.4 2003/10/24 04:52:26 fredb Exp $ +@comment $NetBSD: PLIST,v 1.5 2004/06/10 20:03:11 jschauma Exp $ bin/ntp-keygen bin/ntp-wait bin/ntpd bin/ntpdate bin/ntpdc bin/ntpq -bin/ntptime +${TIMETRIM}bin/ntptime bin/ntptrace -bin/tickadj +${TIMETRIM}bin/tickadj +${NO_TIMETRIM}bin/timetrim share/doc/html/ntp4/accopt.html share/doc/html/ntp4/assoc.html share/doc/html/ntp4/audio.html |