From owner-svn-ports-all@FreeBSD.ORG Tue Nov 19 13:26:32 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2763CCF7; Tue, 19 Nov 2013 13:26:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 175742033; Tue, 19 Nov 2013 13:26:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rAJDQVML017408; Tue, 19 Nov 2013 13:26:31 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rAJDQVKE017407; Tue, 19 Nov 2013 13:26:31 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201311191326.rAJDQVKE017407@svn.freebsd.org> From: Pietro Cerutti Date: Tue, 19 Nov 2013 13:26:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334316 - head/ftp/wzdftpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Nov 2013 13:26:32 -0000 Author: gahr Date: Tue Nov 19 13:26:31 2013 New Revision: 334316 URL: http://svnweb.freebsd.org/changeset/ports/334316 Log: - Convert to USES=tcl - Convert to new LIB_DEPENDS format Modified: head/ftp/wzdftpd/Makefile Modified: head/ftp/wzdftpd/Makefile ============================================================================== --- head/ftp/wzdftpd/Makefile Tue Nov 19 13:18:09 2013 (r334315) +++ head/ftp/wzdftpd/Makefile Tue Nov 19 13:26:31 2013 (r334316) @@ -45,9 +45,8 @@ CONFIGURE_ARGS+= --disable-utf8 .endif .if ${PORT_OPTIONS:MTCL} -USE_TCL_BUILD= yes -USE_TCL= yes -CONFIGURE_ARGS+= --with-tcl=${TCL_LIBDIR} +USES+= tcl +CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} PLIST_SUB+= TCL="" .else PLIST_SUB+= TCL="@comment " @@ -60,7 +59,7 @@ CONFIGURE_ARGS+= --disable-openssl .endif .if ${PORT_OPTIONS:MGNUTLS} -LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls .else CONFIGURE_ARGS+= --disable-gnutls .endif @@ -111,13 +110,13 @@ PLIST_SUB+= ZEROCONF="@comment " .endif .if ${PORT_OPTIONS:MAVAHI} -LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus \ - avahi-core:${PORTSDIR}/net/avahi-app +LIB_DEPENDS+= libdbus-1.so:${PORTSDIR}/devel/dbus \ + libavahi-core.so:${PORTSDIR}/net/avahi-app CONFIGURE_ARGS+= --with-zeroconf --enable-avahi .endif .if ${PORT_OPTIONS:MHOWL} -LIB_DEPENDS+= howl:${PORTSDIR}/net/howl +LIB_DEPENDS+= libhowl.so:${PORTSDIR}/net/howl CPPFLAGS+= -I${LOCALBASE}/include/howl CONFIGURE_ARGS+= --with-zeroconf --enable-howl .endif