mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
116 lines
2.3 KiB
Makefile
116 lines
2.3 KiB
Makefile
# New ports collection makefile for: upclient
|
|
# Date created: 20 Aug 1999
|
|
# Whom: Kelly Yancey <kbyanc@posi.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= upclient
|
|
PORTVERSION= 5.0.b7
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://uptimes.wonko.com/files/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
|
|
|
|
MAINTAINER= cyrille.lefevre@laposte.net
|
|
COMMENT= The Uptimes project client
|
|
|
|
# Global variables
|
|
#
|
|
|
|
LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext
|
|
|
|
USE_REINPLACE= yes
|
|
ALL_TARGET= bsd
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
|
|
MSG_FILE= ${PKGDIR}/pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
MAN8= upclient.8
|
|
|
|
# Local variables
|
|
#
|
|
|
|
DOC_FILES= AUTHORS COPYING FAQ HISTORY INSTALL README TODO
|
|
DOC_FILES+= doc/UptimesProtocol5
|
|
DOC_FILES+= HISTORY-BETA
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Post-extract
|
|
#
|
|
|
|
post-extract: rename-doc
|
|
|
|
rename-doc:
|
|
@${MV} ${WRKSRC}/doc/"Uptimes Protocol 5" ${WRKSRC}/doc/UptimesProtocol5
|
|
|
|
# Post-patch
|
|
#
|
|
|
|
post-patch: patch-prefix patch-pkgmessage
|
|
|
|
patch-prefix:
|
|
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \
|
|
-e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
${WRKSRC}/scripts/upchk ${WRKSRC}/scripts/clientchk \
|
|
${WRKSRC}/src/Makefile
|
|
|
|
patch-pkgmessage:
|
|
@${SED} 's|%%PREFIX%%|${PREFIX}|g' ${MSG_FILE} > ${PKGMESSAGE}
|
|
|
|
# Install
|
|
#
|
|
|
|
do-install: install-program install-man install-sample install-script \
|
|
install-locale
|
|
|
|
install-program:
|
|
@${INSTALL_PROGRAM} -g kmem -m 2555 ${WRKSRC}/src/products/upclient \
|
|
${PREFIX}/sbin
|
|
|
|
install-man:
|
|
@${INSTALL_MAN} ${WRKSRC}/src/products/upclient.8 \
|
|
${MAN8PREFIX}/man/man8
|
|
|
|
install-sample:
|
|
@${INSTALL_DATA} -g kmem -m 640 ${WRKSRC}/src/products/upclient.conf \
|
|
${PREFIX}/etc/upclient.conf.sample
|
|
|
|
install-script:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/scripts/upchk ${WRKSRC}/scripts/clientchk \
|
|
${PREFIX}/sbin
|
|
|
|
install-locale:
|
|
@cd ${WRKSRC}/src; ${MAKE} install-locales
|
|
|
|
# Post-install
|
|
#
|
|
|
|
post-install: install-conf install-startup install-doc display-message
|
|
|
|
install-conf:
|
|
.if !exists(${PREFIX}/etc/upclient.conf)
|
|
@${CP} -p ${PREFIX}/etc/upclient.conf.sample \
|
|
${PREFIX}/etc/upclient.conf
|
|
.endif
|
|
|
|
install-startup:
|
|
@${INSTALL_SCRIPT} ${FILESDIR}/upclient.sh \
|
|
${PREFIX}/etc/rc.d/upclient.sh
|
|
|
|
install-doc:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOC_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
display-message:
|
|
@${ECHO_MSG}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO_MSG}
|
|
|
|
.include <bsd.port.post.mk>
|