8950108909
Reported by: sbruno
49 lines
1,014 B
Makefile
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>
|