From owner-svn-ports-all@FreeBSD.ORG Sat Jul 5 19:18:41 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBBB0281; Sat, 5 Jul 2014 19:18:41 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8DF82509; Sat, 5 Jul 2014 19:18:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s65JIfeF019266; Sat, 5 Jul 2014 19:18:41 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s65JIfVY019265; Sat, 5 Jul 2014 19:18:41 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201407051918.s65JIfVY019265@svn.freebsd.org> From: John Marino Date: Sat, 5 Jul 2014 19:18:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r360806 - head/irc/ircproxy 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.18 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: Sat, 05 Jul 2014 19:18:41 -0000 Author: marino Date: Sat Jul 5 19:18:41 2014 New Revision: 360806 URL: http://svnweb.freebsd.org/changeset/ports/360806 QAT: https://qat.redports.org/buildarchive/r360806/ Log: irc/ircproxy: modernize and explicit linking with libcrypto (dports) * new LIB_DEPENDS format * use option configure * convert USE_BZIP2 Modified: head/irc/ircproxy/Makefile Modified: head/irc/ircproxy/Makefile ============================================================================== --- head/irc/ircproxy/Makefile Sat Jul 5 19:17:41 2014 (r360805) +++ head/irc/ircproxy/Makefile Sat Jul 5 19:18:41 2014 (r360806) @@ -12,11 +12,11 @@ COMMENT= IRC proxy/bouncer daemon LICENSE= GPLv3 -LIB_DEPENDS= cares:${PORTSDIR}/dns/c-ares +LIB_DEPENDS= libcares.so:${PORTSDIR}/dns/c-ares -USE_BZIP2= yes +USES= tar:bzip2 GNU_CONFIGURE= yes -LDFLAGS+= -L${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib -lcrypto CFLAGS+= -I${LOCALBASE}/include USERS= ircproxyd @@ -30,28 +30,15 @@ OPTIONS_DEFAULT= SSL MEMDEBUG FDDEBUG MEMDEBUG_DESC= Enable memory debugging FDDEBUG_DESC= Enable file descriptor debugging +MEMDEBUG_CONFIGURE_ENABLE= memdebug +FDDEBUG_CONFIGURE_ENABLE= fddebug +IPV6_CONFIGURE_ENABLE= ipv6 +SSL_CONFIGURE_ENABLE= ssl + .include .if ${PORT_OPTIONS:MSSL} USE_OPENSSL= yes -.else -CONFIGURE_ARGS+= --disable-ssl -.endif - -.if ! ${PORT_OPTIONS:MIPV6} -CONFIGURE_ARGS+= --disable-ipv6 -.endif - -.if ${PORT_OPTIONS:MMEMDEBUG} -CONFIGURE_ARGS+= --enable-memdebug -.else -CONFIGURE_ARGS+= --disable-memdebug -.endif - -.if ${PORT_OPTIONS:MFDDEBUG} -CONFIGURE_ARGS+= --enable-fddebug -.else -CONFIGURE_ARGS+= --disable-fddebug .endif post-patch: