mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
36 lines
905 B
Makefile
36 lines
905 B
Makefile
# Created by: Yen-Ming Lee <leeym@leeym.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bsdsar
|
|
PORTVERSION= 1.10
|
|
PORTREVISION= 2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.googlebit.com/bsdsar/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= System Activity Reporter for FreeBSD
|
|
|
|
DEPRECATED= No more upstream, no more public distfiles
|
|
EXPIRATION_DATE= 2013-02-27
|
|
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
.for file in bsdsar bsdsar_gather
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/bsdsar.conf ${PREFIX}/etc/bsdsar.conf.sample
|
|
.if !exists(${PREFIX}/etc/bsdsar.conf)
|
|
${CP} ${PREFIX}/etc/bsdsar.conf.sample ${PREFIX}/etc/bsdsar.conf
|
|
.endif
|
|
${SETENV} PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for file in CHANGELOG README
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|