diff options
author | miwi <miwi@FreeBSD.org> | 2013-03-06 01:07:43 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2013-03-06 01:07:43 +0800 |
commit | b5e88d7789bddf1e308d47c8c5b81b8d3f0c31d7 (patch) | |
tree | 268d74f9d8738f78b0c895672044611aa6343387 /net/echoping | |
parent | 4c148339a17778393b116c6e7051a9bc484e786a (diff) | |
download | freebsd-ports-gnome-b5e88d7789bddf1e308d47c8c5b81b8d3f0c31d7.tar.gz freebsd-ports-gnome-b5e88d7789bddf1e308d47c8c5b81b8d3f0c31d7.tar.zst freebsd-ports-gnome-b5e88d7789bddf1e308d47c8c5b81b8d3f0c31d7.zip |
- Convert to OptionsNG
- Trim header
Reviewed by: beat, bapt, kwm
Diffstat (limited to 'net/echoping')
-rw-r--r-- | net/echoping/Makefile | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/net/echoping/Makefile b/net/echoping/Makefile index 8ecd2a0011c7..1fd3251878ec 100644 --- a/net/echoping/Makefile +++ b/net/echoping/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: echoping -# Date created: 13 April 1997 -# Whom: peter -# +# Created by: peter # $FreeBSD$ -# PORTNAME= echoping PORTVERSION= 6.0.0 @@ -20,22 +16,19 @@ LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-http --enable-icp --enable-smtp --with-ssl \ - --enable-ttcp --enable-tos --with-libidn=${LOCALBASE} + --enable-ttcp --enable-tos --with-libidn=${LOCALBASE} \ + --enable-plugin="${PING_PLUGINS}" PING_PLUGINS= dns random whois MAN1= echoping.1 echoping_dns.1 echoping_random.1 echoping_whois.1 -OPTIONS= LDAP "Enable LDAP plug-in" on \ - PGSQL "Enable PostgreSQL plug-in" off +OPTIONS_DEFINE= LDAP PGSQL +OPTIONS_DEFAULT= LDAP -.include <bsd.port.pre.mk> - -.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" -BROKEN= Does not link on ia64 or powerpc -.endif +.include <bsd.port.options.mk> -.if defined(WITH_LDAP) +.if ${PORT_OPTIONS:MLDAP} USE_OPENLDAP= yes MAN1+= echoping_ldap.1 PING_PLUGINS+= ldap @@ -44,7 +37,7 @@ PLIST_SUB= WITH_LDAP="" PLIST_SUB= WITH_LDAP="@comment " .endif -.if defined(WITH_PGSQL) +.if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes MAN1+= echoping_postgresql.1 PING_PLUGINS+= postgresql @@ -53,7 +46,11 @@ PLIST_SUB+= WITH_PGSQL="" PLIST_SUB+= WITH_PGSQL="@comment " .endif -CONFIGURE_ARGS+=--enable-plugin="${PING_PLUGINS}" +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" +BROKEN= Does not link on ia64 or powerpc +.endif post-patch: @${FIND} ${WRKSRC} -name configure | ${XARGS} ${REINPLACE_CMD} -e 's|echo aout|echo elf|' |