blob: d6520c266dd84ba314f6eb38df19c7220501bb8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: sarah
# Date created: 10 Jan 2000
# Whom: Matthew Pounsett <mattp@conundrum.com>
#
# $FreeBSD$
#
PORTNAME= sarah
PORTVERSION= 0.4b
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.conundrum.com/pub/sarah/
MAINTAINER= mattp@conundrum.com
USE_PERL5= yes
NO_BUILD= yes
MAN1= sarah.1
do-configure:
@${PERL} -pi.orig -e "s|/usr/local|${PREFIX}|" ${WRKSRC}/sarah
do-install:
cd ${WRKSRC} && \
${INSTALL_SCRIPT} sarah ${PREFIX}/bin && \
${INSTALL_DATA} sarah.conf.sample ${PREFIX}/etc && \
${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1
.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>
|