241b722760
Add $OpenBSD$ to p5-SNMP-Info/Makefile (ok kili@, simon@)
55 lines
1.7 KiB
Makefile
55 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.34 2007/09/15 22:36:56 merdely Exp $
|
|
|
|
COMMENT-main= network time protocol implementation
|
|
COMMENT-doc= network time protocol documentation
|
|
|
|
NTP_VERSION= 4.2.0a
|
|
DISTNAME= ntp-stable-${NTP_VERSION}-20050303
|
|
PKGNAME-main= ntp-${NTP_VERSION}p3
|
|
PKGNAME-doc= ntp-doc-${NTP_VERSION}p1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/snapshots/ntp-stable/2005/03/ \
|
|
ftp://ftp.udel.edu/pub/ntp/ntp4/snapshots/ntp-stable/2005/03/ \
|
|
ftp://ftp.cs.umn.edu/ftp00/ftp.udel.edu/pub/ntp/ntp4/snapshots/ntp-stable/2005/03/
|
|
|
|
HOMEPAGE= http://www.ntp.org/
|
|
|
|
MAINTAINER= Dan Harnett <danh@openbsd.org>
|
|
|
|
# modified ISC license. However, some files include different
|
|
# copyrights.
|
|
#
|
|
PERMIT_PACKAGE_CDROM= No
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= No
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MULTI_PACKAGES= -main -doc
|
|
|
|
PKG_ARCH-doc= *
|
|
WANTLIB-main= c crypto curses kvm m readline
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
AUTOCONF_VERSION= 2.58
|
|
CONFIGURE_STYLE= autoconf
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS} -DHAVE_IPV6"
|
|
CONFIGURE_ARGS+= --bindir='${PREFIX}/sbin' \
|
|
--enable-accurate-adjtime --disable-IRIG \
|
|
--enable-parse-clocks \
|
|
--with-openssl-libdir=/usr/lib \
|
|
--with-openssl-incdir=/usr/include \
|
|
--with-crypto=openssl
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ntp
|
|
@cd ${WRKSRC}/html && pax -rw * ${PREFIX}/share/doc/ntp
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ntp
|
|
@cd ${WRKSRC}/conf && pax -rw * ${PREFIX}/share/examples/ntp
|
|
@sed -e s#!!PREFIX!!#${TRUEPREFIX}#g \
|
|
-e s#!!SYSCONFDIR!!#${SYSCONFDIR}#g \
|
|
${FILESDIR}/README.OpenBSD > ${WRKBUILD}/README.OpenBSD
|
|
${INSTALL_DATA} ${WRKBUILD}/README.OpenBSD \
|
|
${PREFIX}/share/examples/ntp/
|
|
|
|
.include <bsd.port.mk>
|