blob: 2bffbb4710acdc2e37a67754c1483669bcca864a (
plain)
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
|
# Created by: db
# $FreeBSD$
PORTNAME= wwl
PORTVERSION= 1.3
CATEGORIES= comms hamradio astro geography
MASTER_SITES= http://www.db.net/downloads/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= db
DISTNAME= ${PORTNAME}+db-${PORTVERSION}
MAINTAINER= db@FreeBSD.org
COMMENT= Calculates distance (qrb) used in Amateur Radio
CONFLICTS= locator*
PORTDOCS= INSTALL
PLIST_FILES= bin/wwl bin/locator
MAN1= wwl.1
NO_STAGE= yes
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/wwl ${PREFIX}/bin
${RM} -f ${PREFIX}/bin/locator
${LN} ${PREFIX}/bin/wwl ${PREFIX}/bin/locator
${INSTALL_DATA} ${WRKSRC}/wwl.1 ${MANPREFIX}/man/man1
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCSDIR}
.endif
.include <bsd.port.mk>
|