summaryrefslogtreecommitdiffstats
path: root/comms/hamlib/Makefile
blob: 62d91093d43d95144fa9617c48eb0070fc3dbba5 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# New ports collection makefile for:	hamlib
# Date created:			30 April 2003
# Whom:				Sebastian Yepes <esn@x123.info>
#
# $FreeBSD$
#

PORTNAME=	hamlib
PORTVERSION=	1.2.2
CATEGORIES=	comms hamradio
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=	${PORTNAME}
DISTNAME=	${PORTNAME}-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Shared libraries for Amateur Radio Equipment Control Applications

USE_PERL5=	yes
USE_AUTOTOOLS=	libtool:15:inc
USE_GNOME=	pkgconfig gnomehack
INSTALLS_SHLIB=	yes
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib"

MAN1=		rigctl.1 rigmem.1 rigswr.1 rotctl.1
MAN8=		rpc.rigd.8 rpc.rotd.8

.if defined(WITH_PYTHON)
USE_PYTHON=	yes
.endif

.include <bsd.port.pre.mk>

.if defined(WITH_XML)
USE_GNOME+=	libxml2
PLIST_SUB+=	XML=""
.else
CONFIGURE_ARGS+=	--disable-xmltest
PLIST_SUB+=	XML="@comment "
.endif

.if defined(WITH_TCL)
LIB_DEPENDS+=	tcl84.1:${PORTSDIR}/lang/tcl84
CONFIGURE_ARGS+=	--with-tcl=${LOCALBASE}/lib/tcl8.4 --with-tcl-binding
PLIST_SUB+=	TCL=""
.else
CONFIGURE_ARGS+=	--without-tcl-binding
PLIST_SUB+=	TCL="@comment "
.endif

.if defined(WITH_PYTHON)
BUILD_DEPENDS+=		swig1.3:${PORTSDIR}/devel/swig13
CONFIGURE_ARGS+=	--with-python-binding
PLIST_SUB+=	PYTHON=""
.else
CONFIGURE_ARGS+=	--without-python-binding
PLIST_SUB+=	PYTHON="@comment "
.endif

.if defined(WITH_RIGMATRIX)
LIB_DEPENDS+=	gd.4:${PORTSDIR}/graphics/gd
CONFIGURE_ARGS+=	--with-rigmatrix
PLIST_SUB+=	RIGMATRIX=""
.else
CONFIGURE_ARGS+=	--without-with-rigmatrix
PLIST_SUB+=	RIGMATRIX="@comment "
.endif

.if defined(WITH_GNURADIO)
CONFIGURE_ARGS+=	--with-gnuradio
PLIST_SUB+=	GNURADIO=""
.else
CONFIGURE_ARGS+=	--without-gnuradio
LIST_SUB+=	GNURADIO="@comment "
.endif

pre-everything::
.if !defined(WITH_TCL) || !defined(WITH_PYTHON) || !defined(WITH_RIGMATRIX)
	@${ECHO_MSG} "You can specify the following command lines:"
	@${ECHO_MSG} ""
.endif
.if !defined(WITH_XML)
	@${ECHO_MSG} "WITH_XML=yes		for XML support"
.endif
.if !defined(WITH_TCL)
	@${ECHO_MSG} "WITH_TCL=yes		for TCL Binding support"
.endif
.if !defined(WITH_PYTHON)
	@${ECHO_MSG} "WITH_PYTHON=yes		for PYTHON Binding support"
.endif
.if !defined(WITH_RIGMATRIX)
	@${ECHO_MSG} "WITH_RIGMATRIX=yes	for RigMatrix support"
.endif
#.if !defined(WITH_GNURADIO)
#	@${ECHO_MSG} "WITH_GNURADIO=yes		for GNURadio support"
#.endif
	@${ECHO_MSG} ""

.include <bsd.port.post.mk>
OpenPOWER on IntegriCloud