From owner-svn-ports-all@FreeBSD.ORG Thu Apr 18 09:45:11 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 49AA3DDE; Thu, 18 Apr 2013 09:45:11 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 3B421915; Thu, 18 Apr 2013 09:45:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3I9jBLN094303; Thu, 18 Apr 2013 09:45:11 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3I9jBjR094302; Thu, 18 Apr 2013 09:45:11 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201304180945.r3I9jBjR094302@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 18 Apr 2013 09:45:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r316033 - head/net/httping 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.14 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: Thu, 18 Apr 2013 09:45:11 -0000 Author: ehaupt Date: Thu Apr 18 09:45:10 2013 New Revision: 316033 URL: http://svnweb.freebsd.org/changeset/ports/316033 Log: - Make fftw3 support optional from NCURSES support - Add an option to expicitly disable SSL support - Now that fftw3 support is optional and off by default turn on NCURSES support by default Feature safe: yes Modified: head/net/httping/Makefile Modified: head/net/httping/Makefile ============================================================================== --- head/net/httping/Makefile Thu Apr 18 09:44:29 2013 (r316032) +++ head/net/httping/Makefile Thu Apr 18 09:45:10 2013 (r316033) @@ -3,6 +3,7 @@ PORTNAME= httping PORTVERSION= 2.2.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://www.vanheusden.com/httping/ \ CRITICAL @@ -17,17 +18,31 @@ MAKE_JOBS_SAFE= yes MAN1= httping.1 PLIST_FILES= bin/httping -OPTIONS_DEFINE= NCURSES +OPTIONS_DEFINE= NCURSES FFTW SSL -NCURSES_DESC= ncurses support +OPTIONS_DEFAULT=NCURSES SSL .include .if ${PORT_OPTIONS:MNCURSES} -LIB_DEPENDS+= fftw3:${PORTSDIR}/math/fftw3 -MAKE_ENV+= SSL=yes NC=yes FW=yes +MAKE_ENV+= NC=yes CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +.else +MAKE_ENV+= NC=no +.endif + +.if ${PORT_OPTIONS:MFFTW} +MAKE_ENV+= FW=yes +LIB_DEPENDS+= fftw3:${PORTSDIR}/math/fftw3 +.else +MAKE_ENV+= FW=no +.endif + +.if ${PORT_OPTIONS:MSSL} +MAKE_ENV+= SSL=yes +.else +MAKE_ENV+= SSL=no .endif do-install: