From owner-freebsd-ports@FreeBSD.ORG Tue Dec 27 15:10:07 2005 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11F0616A41F for ; Tue, 27 Dec 2005 15:10:07 +0000 (GMT) (envelope-from jan@1kdigital.com) Received: from mail.1kdigital.com (coffin.1kdigital.com [194.204.33.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DE4B43D6A for ; Tue, 27 Dec 2005 15:10:00 +0000 (GMT) (envelope-from jan@1kdigital.com) Received: (qmail 77843 invoked by uid 89); 27 Dec 2005 15:11:48 -0000 Received: by simscan 1.1.0 ppid: 77836, pid: 77838, t: 1.9685s scanners: attach: 1.1.0 spam: 3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on coffin.1kdigital.com X-Spam-Level: X-Spam-Status: No, score=-3.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.0 Received: from rohi.1kdigital.com (HELO chipmunk) (jan@1kdigital.com@194.106.125.98) by coffin.1kdigital.com with ESMTPA; 27 Dec 2005 15:11:46 -0000 Message-ID: <006201c60af7$ab124920$0200000a@chipmunk> From: "Jan-Erik Moon" To: "Anton A. Karpov" References: <005501c60a7b$1ea0d5f0$0200000a@chipmunk> <20051227112627.GA1233@laptoxa.toxa.lan> Date: Tue, 27 Dec 2005 17:10:26 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Cc: ports@FreeBSD.org, garga@FreeBSD.org Subject: Re: FreeBSD Port: simscan, qmail ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Dec 2005 15:10:07 -0000 ----- Original Message ----- From: "Anton A. Karpov" To: "Jan-Erik Moon" Cc: ; Sent: Tuesday, December 27, 2005 1:26 PM Subject: Re: FreeBSD Port: simscan, qmail ports > Ok, I'm planning to upgrade simscan to 1.2 but only then it will become > a release. For now, inter7.com page claims that it's just a "new test > version of the upcoming 1.2 release". I don't want to put test versions > into fbsd ports tree :) Sorry, this was my mistake - I thought 1.2 was already a release. I shouldn't make requests in the middle of the night. :) > "--enable-custom-reject" is a cool feature but unfortunately it depends > on qmail port need to be patched with qmail-queue-custom-error.patch. If > garga@ will add this patch into qmail port, simscan port can be compiled with > such option. Yes, I'm aware of that, and it's even more complicated as the custom error patch conflicts with QMAILQUEUE patch. But it's still doable as there is already a working qmail.c file available which contains parts from both patches. Just need to diff that file against the original qmail.c and we have a nice patch file which we could add to the qmail port. A simplified Makefile modification could look something like this: .if defined(WITH_QMAILQUEUE_PATCH) && defined(WITH_CUSTOMERROR_PATCH) PATCHFILES+=qmailqueue_and_custom-error.patch .endif .if defined(WITH_QMAILQUEUE) && !defined(WITH_CUSTOMERROR_PATCH) PATCHFILES+=qmailqueue-patch .endif .if !defined(WITH_CUSTOMERROR_PATCH) && defined(WITH_CUSTOMERROR_PATCH) PATCHFILES+=qmail-queue-custom-error.patch .endif (I'm not familiar with Makefile syntax - isn't there elseif or elsif ?) If there is anything I could do to help, please let me know. :) Jan