From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 8 13:30:16 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0724016A41C for ; Wed, 8 Jun 2005 13:30:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CA5043D55 for ; Wed, 8 Jun 2005 13:30:15 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j58DUFN0089855 for ; Wed, 8 Jun 2005 13:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j58DUFhp089854; Wed, 8 Jun 2005 13:30:15 GMT (envelope-from gnats) Resent-Date: Wed, 8 Jun 2005 13:30:15 GMT Resent-Message-Id: <200506081330.j58DUFhp089854@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hajovsky Juraj Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A678316A41C for ; Wed, 8 Jun 2005 13:23:31 +0000 (GMT) (envelope-from xhajov00@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.10.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0578643D4C for ; Wed, 8 Jun 2005 13:23:29 +0000 (GMT) (envelope-from xhajov00@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (envelope-from xhajov00@eva.fit.vutbr.cz) (8.13.4/8.13.3) with ESMTP id j58DNQYK062644 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Wed, 8 Jun 2005 15:23:26 +0200 (CEST) Received: (from xhajov00@localhost) by eva.fit.vutbr.cz (8.13.4/8.13.3/Submit) id j58DNQc7062643; Wed, 8 Jun 2005 15:23:26 +0200 (CEST) Message-Id: <200506081323.j58DNQc7062643@eva.fit.vutbr.cz> Date: Wed, 8 Jun 2005 15:23:26 +0200 (CEST) From: Hajovsky Juraj To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/82031: Update port: net/micq add new knobs X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Hajovsky Juraj List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jun 2005 13:30:16 -0000 >Number: 82031 >Category: ports >Synopsis: Update port: net/micq add new knobs >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 08 13:30:15 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Hajovsky Juraj >Release: FreeBSD 4.11-STABLE i386 >Organization: >Environment: System: FreeBSD eva.fit.vutbr.cz 4.11-STABLE FreeBSD 4.11-STABLE #9: Sat Jan 15 07:22:51 CET 2005 root@tereza.fit.vutbr.cz:/home/src/sys/sys-49/compile/EVA i386 >Description: add new knobs: WITHOUT_P2P WITHOUT_SSL WITHOUT_TCL WITHOUT_REMOTE >How-To-Repeat: >Fix: --- micq-5.0.4_1.diff begins here --- diff -ruN /usr/ports/net/micq/Makefile micq/Makefile --- /usr/ports/net/micq/Makefile Wed Jun 8 01:48:46 2005 +++ micq/Makefile Wed Jun 8 15:04:02 2005 @@ -4,9 +4,29 @@ # # $FreeBSD: ports/net/micq/Makefile,v 1.49 2005/06/07 21:56:50 krion Exp $ # +# Interface Knobs: +# +# WITHOUT_LIBICONV=yes +# do not use iconv() at all +# +# WITHOUT_UTF8=yes +# disable UTF8 support +# +# WITHOUT_P2P=yes +# disable peer to peer connections (implies WITHOUT_SSL) +# +# WITHOUT_SSL=yes +# disable SSL encryption +# +# WITHOUT_TCL=yes +# disable Tcl scripting +# +# WITHOUT_REMOTE=yes +# disable remote control FIFO PORTNAME= micq PORTVERSION= 0.5.0.4 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://micq.org/source/ \ http://micq.alpha345.com/source/ \ @@ -36,6 +56,22 @@ .if defined(WITHOUT_UTF8) CONFIGURE_ARGS+= --disable-utf8 +.endif + +.if defined(WITHOUT_P2P) +CONFIGURE_ARGS+= --disable-peer2peer +.endif + +.if defined(WITHOUT_P2P) || defined(WITHOUT_SSL) +CONFIGURE_ARGS+= --disable-ssl +.endif + +.if defined(WITHOUT_TCL) +CONFIGURE_ARGS+= --disable-tcl +.endif + +.if defined(WITHOUT_REMOTE) +CONFIGURE_ARGS+= --disable-remote .endif post-install: --- micq-5.0.4_1.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: