mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
38 lines
837 B
Makefile
38 lines
837 B
Makefile
# New ports collection makefile for: sarah
|
|
# Date created: 10 Jan 2000
|
|
# Whom: Matthew Pounsett <mattp@conundrum.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sarah
|
|
PORTVERSION= 0.3b
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.conundrum.com/pub/sarah/
|
|
|
|
MAINTAINER= mattp@conundrum.com
|
|
|
|
MAN1= sarah.1
|
|
USE_PERL5= yes
|
|
NO_BUILD= yes
|
|
|
|
do-configure:
|
|
@${PERL} -pi.orig -e "s|/usr/local|${PREFIX}|" ${WRKSRC}/sarah
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_SCRIPT} sarah ${PREFIX}/bin
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} sarah.conf.sample ${PREFIX}/etc
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/sarah
|
|
${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/sarah
|
|
${INSTALL_MAN} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/sarah
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|