From owner-svn-ports-head@freebsd.org Mon Feb 19 10:29:44 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12A41F17852; Mon, 19 Feb 2018 10:29:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA6A66C17F; Mon, 19 Feb 2018 10:29:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B55D4194E2; Mon, 19 Feb 2018 10:29:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1JATh95085932; Mon, 19 Feb 2018 10:29:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1JAThOc085931; Mon, 19 Feb 2018 10:29:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802191029.w1JAThOc085931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 19 Feb 2018 10:29:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462292 - head/net-mgmt/ettercap X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/net-mgmt/ettercap X-SVN-Commit-Revision: 462292 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Feb 2018 10:29:44 -0000 Author: sunpoet Date: Mon Feb 19 10:29:43 2018 New Revision: 462292 URL: https://svnweb.freebsd.org/changeset/ports/462292 Log: Use CMAKE_BOOL, CMAKE_ON and CMAKE_OFF Modified: head/net-mgmt/ettercap/Makefile Modified: head/net-mgmt/ettercap/Makefile ============================================================================== --- head/net-mgmt/ettercap/Makefile Mon Feb 19 10:29:34 2018 (r462291) +++ head/net-mgmt/ettercap/Makefile Mon Feb 19 10:29:43 2018 (r462292) @@ -23,12 +23,12 @@ NCURSES_DESC= Ncurses interface PCRE_DESC= Use PCRE in filters SSL_DESC= SSH1 and SSL decryption support -CMAKE_ARGS= -DBUNDLED_LIBS=OFF \ - -DHAVE_DLOPEN=ON \ - -DHAVE_PCAP=${LIBDIR} \ +CMAKE_ARGS= -DHAVE_PCAP=${LIBDIR} \ -DHAVE_RESOLV=${LIBDIR} \ -DINSTALL_SYSCONFDIR=${PREFIX}/etc \ -DMAN_INSTALLDIR=${PREFIX}/man +CMAKE_OFF= BUNDLED_LIBS +CMAKE_ON= HAVE_DLOPEN LDFLAGS+= ${ICONV_LIB} -lnet -lpcap MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes @@ -43,31 +43,23 @@ CPE_VENDOR= ${PORTNAME}_project GH_ACCOUNT= Ettercap USE_GITHUB= yes -DESKTOP_CMAKE_OFF= -DINSTALL_DESKTOP=OFF -DESKTOP_CMAKE_ON= -DINSTALL_DESKTOP=ON +DESKTOP_CMAKE_BOOL= INSTALL_DESKTOP DESKTOP_USES= desktop-file-utils -NCURSES_CMAKE_OFF= -DENABLE_CURSES=OFF -NCURSES_CMAKE_ON= -DENABLE_CURSES=ON +NCURSES_CMAKE_BOOL= ENABLE_CURSES NCURSES_USES= ncurses -GTK2_CMAKE_OFF= -DENABLE_GTK=OFF -GTK2_CMAKE_ON= -DENABLE_GTK=ON +GTK2_CMAKE_BOOL= ENABLE_GTK GTK2_USE= GNOME=gtk20 GTK2_USES= gnome -IPV6_CMAKE_OFF= -DENABLE_IPV6=OFF -IPV6_CMAKE_ON= -DENABLE_IPV6=ON -PCRE_CMAKE_OFF= -DHAVE_PCRE=OFF -PCRE_CMAKE_ON= -DHAVE_PCRE=ON +IPV6_CMAKE_BOOL= ENABLE_IPV6 +PCRE_CMAKE_BOOL= HAVE_PCRE PCRE_LIB_DEPENDS= libpcre.so:devel/pcre PLUGINS_BUILD_DEPENDS= curl>=7.26.0:ftp/curl -PLUGINS_CMAKE_OFF= -DENABLE_PLUGINS=OFF -PLUGINS_CMAKE_ON= -DENABLE_PLUGINS=ON +PLUGINS_CMAKE_BOOL= ENABLE_PLUGINS PLUGINS_LIB_DEPENDS= libcurl.so:ftp/curl -SSL_CMAKE_OFF= -DENABLE_SSL=OFF -SSL_CMAKE_ON= -DENABLE_SSL=ON +SSL_CMAKE_BOOL= ENABLE_SSL SSL_USES= ssl -UTF8_CMAKE_OFF= -DHAVE_UTF8=OFF -UTF8_CMAKE_ON= -DHAVE_UTF8=ON \ - -DHAVE_ICONV=${ICONV_PREFIX} +UTF8_CMAKE_BOOL= HAVE_UTF8 +UTF8_CMAKE_ON= -DHAVE_ICONV=${ICONV_PREFIX} UTF8_USES= iconv post-install: