From owner-freebsd-ports@FreeBSD.ORG Wed Jun 12 10:52:35 2013 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 440BCBBD; Wed, 12 Jun 2013 10:52:35 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from icp-osb-irony-out6.external.iinet.net.au (icp-osb-irony-out6.external.iinet.net.au [203.59.1.222]) by mx1.freebsd.org (Postfix) with ESMTP id 8FC991143; Wed, 12 Jun 2013 10:52:34 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AkAFAEVSuFE6BuUC/2dsb2JhbABZgwm8UIMCfxZ0gmQ/KBQ0BRiIUbodj0MdgmlhA5c/hg02iwCDISo X-IronPort-AV: E=Sophos;i="4.87,851,1363104000"; d="scan'208";a="121699462" Received: from unknown (HELO smtp.phoenix) ([58.6.229.2]) by icp-osb-irony-out6.iinet.net.au with ESMTP; 12 Jun 2013 18:52:27 +0800 Received: by smtp.phoenix (Postfix, from userid 1001) id B1758C72; Wed, 12 Jun 2013 20:52:26 +1000 (EST) Date: Wed, 12 Jun 2013 20:52:26 +1000 From: andrew clarke To: freebsd-ports@freebsd.org Subject: net/tcpflow Message-ID: <20130612105226.GA21217@ozzmosis.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: antoine@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jun 2013 10:52:35 -0000 Maybe it would be useful to have a "make config" option to disable cairo in the net/tcpflow port? The Cairo dependency pulls in about twenty X11 libraries that I'd prefer not to install on my server. This was my quick & dirty Makefile hack to disable Cairo: --- Makefile.orig 2013-06-12 04:41:45.000000000 +1000 +++ Makefile 2013-06-12 20:37:32.283320340 +1000 @@ -12,7 +12,7 @@ LICENSE= GPLv3 BUILD_DEPENDS= ${LOCALBASE}/include/boost/icl/interval.hpp:${PORTSDIR}/devel/boost-libs -LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo +#LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include Thanks, Regards Andrew