blob: 5234496be58fbffc83bb09c9c9c587e3380778eb (
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
35
36
37
38
39
40
41
42
43
|
# New ports collection makefile for: Utility "mapchan" of SCO Unix
# Date created: 17 February 2004
# Whom: Konstantin Reznichenko <kot@premierbank.dp.ua>
#
# $FreeBSD$
#
PORTNAME= mapchan
PORTVERSION= 2.0
CATEGORIES= sysutils converters
MASTER_SITES= http://www.iceb.vc.ukrtel.net/download/
MAINTAINER= bsam@FreeBSD.org
COMMENT= Implementation of the utility "mapchan" from SCO Unix
USE_BZIP2= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
MAKE_ENV= MAPDIR=${PREFIX}/etc/${PORTNAME}
ETCDAT= *.map default.sample
MAN8= mapchan.8
PORTDOCS= README
post-extract:
@${CP} ${WRKSRC}/doc/mapchan.F ${WRKSRC}/doc/mapchan.8
post-patch:
@${FIND} ${WRKSRC} -name '*.orig' | ${XARGS} ${RM}
@${CP} ${WRKSRC}/examples/default ${WRKSRC}/examples/default.sample
@${REINPLACE_CMD} -e "s|/usr/local|${PREFIX}|" ${WRKSRC}/mapchan.c
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/mapchan.8 ${MANPREFIX}/man/man8
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>
|