blob: ee85c118a9062ec8969267559073d666a457a989 (
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
|
# ports collection makefile for: locator
# Date created: 30 June 2005
# Whom: db
#
# $FreeBSD$
#
PORTNAME= locator
PORTVERSION= 0.1
CATEGORIES= comms astro
MASTER_SITES= ${MASTER_SITE_SUNSITE:=apps/ham/}
MAINTAINER= db@db.net
COMMENT= Grid square calculator program used in Amateur Radio and GPS work
PORTDOCS= README
PLIST_FILES= bin/locator
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/locator ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
@${ECHO} ""
@${ECHO} "locator README installed in ${DOCSDIR}"
@${ECHO} ""
.endif
.include <bsd.port.mk>
|