a568ef0024
fix simple typo in xwota Makefile while at it. Approved by: ehaupt (mentor)
37 lines
838 B
Makefile
37 lines
838 B
Makefile
# ports collection makefile for: tlf
|
|
# Date created: 10 July 2004
|
|
# Whom: db
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tlf
|
|
PORTVERSION= 0.9.30
|
|
PORTREVISION= 1
|
|
CATEGORIES= comms hamradio
|
|
MASTER_SITES= http://www.wwns.com/tlf/ \
|
|
http://sharon.esrac.ele.tue.nl/pub/linux/ham/tlf/
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= db@FreeBSD.org
|
|
COMMENT= Amateur Radio curses based logging program
|
|
|
|
USE_AUTOTOOLS= autoconf:259 libtool:15 aclocal:19 automake:19
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \
|
|
--libdir="${LOCALBASE}/lib"
|
|
CONFIGURE_ENV= LDFLAGS="${PTHREAD_LIBS}"
|
|
OPTIONS= HAMLIB "Use hamlib" ON
|
|
|
|
MAN1= tlf.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_HAMLIB)
|
|
LIB_DEPENDS+= hamlib:${PORTSDIR}/comms/hamlib
|
|
CONFIGURE_ARGS+= --enable-hamlib
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-hamlib
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|