blob: c4c37d9bd03041828dd700460a72d086d0ad03a8 (
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
|
# ports collection makefile for: wwl
# Date created: 1 July 2005
# Whom: 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
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>
|