mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
39 lines
885 B
Makefile
39 lines
885 B
Makefile
# ports collection makefile for: tlf
|
|
# Date created: 10 July 2004
|
|
# Whom: db
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tlf
|
|
PORTVERSION= 0.9.31
|
|
CATEGORIES= comms hamradio
|
|
MASTER_SITES= http://sharon.esrac.ele.tue.nl/pub/linux/ham/tlf/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= db
|
|
DISTNAME= tlf-0.9.31-2
|
|
|
|
MAINTAINER= db@FreeBSD.org
|
|
COMMENT= Amateur Radio curses based logging program
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
USE_AUTOTOOLS= autoconf:262 libtool:22 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>
|