freebsd-ports/net/echoping/Makefile
Tijl Coosemans 8950108909 Port uses sqrt(3) so link with libm
Reported by:	sbruno
2014-09-22 14:48:01 +00:00

49 lines
1,014 B
Makefile

# Created by: peter
# $FreeBSD$
PORTNAME= echoping
PORTVERSION= 6.0.2
PORTREVISION= 3
CATEGORIES= net ipv6
MASTER_SITES= SF
MAINTAINER= sumikawa@FreeBSD.org
COMMENT= Ping-like program that uses TCP and/or HTTP
LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt \
libidn.so:${PORTSDIR}/dns/libidn
USES= libtool
USE_OPENSSL= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-http --enable-icp --enable-smtp --with-ssl \
--enable-ttcp --enable-tos --with-libidn=${LOCALBASE} \
--enable-plugin="${PING_PLUGINS}"
PING_PLUGINS= dns random whois
OPTIONS_DEFINE= LDAP PGSQL
OPTIONS_DEFAULT= LDAP
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MLDAP}
USE_OPENLDAP= yes
PING_PLUGINS+= ldap
PLIST_SUB= WITH_LDAP=""
.else
PLIST_SUB= WITH_LDAP="@comment "
.endif
.if ${PORT_OPTIONS:MPGSQL}
USE_PGSQL= yes
PING_PLUGINS+= postgresql
PLIST_SUB+= WITH_PGSQL=""
.else
PLIST_SUB+= WITH_PGSQL="@comment "
.endif
post-patch:
@${REINPLACE_CMD} '/^echoping_LDADD =/s/$$/ -lm/' ${WRKSRC}/Makefile.in
.include <bsd.port.mk>