mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
2a9b6215f6
Cwdaemon is a small daemon which uses the pc parallel or serial port and a simple transistor switch to output morse code to a transmitter from a text message sent to it via the udp internet protocol. PR: ports/74772 Submitted by: Diane Bruce <db AT db.net>
32 lines
614 B
Makefile
32 lines
614 B
Makefile
# ports collection makefile for: cwdaemon
|
|
# Date created: 17 Mar 2005
|
|
# Whom: Diane Bruce <db@db.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cwdaemon
|
|
PORTVERSION= 0.9.2
|
|
CATEGORIES= comms
|
|
MASTER_SITES= http://pg4i.mattsnetwork.co.uk/download/
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= db@db.net
|
|
COMMENT= Amateur Radio cw (morse code) keyer daemon
|
|
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-exec
|
|
|
|
CONFIGURE_ARGS= --datadir=${PREFIX}/share/doc
|
|
MAN8= cwdaemon.8
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
cd ${WRKSRC}; ${MAKE} install-data
|
|
.else
|
|
cd ${WRKSRC}; ${MAKE} install-man
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|