From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Apr 28 16:50:06 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 90BC1FFF for ; Mon, 28 Apr 2014 16:50:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 5D9B414FE for ; Mon, 28 Apr 2014 16:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3SGo04F006358 for ; Mon, 28 Apr 2014 16:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3SGo0pK006357; Mon, 28 Apr 2014 16:50:00 GMT (envelope-from gnats) Resent-Date: Mon, 28 Apr 2014 16:50:00 GMT Resent-Message-Id: <201404281650.s3SGo0pK006357@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, Olli Hauer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1D96B85 for ; Mon, 28 Apr 2014 16:43:51 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 5AD6D1482 for ; Mon, 28 Apr 2014 16:43:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3SGhp1K005946 for ; Mon, 28 Apr 2014 16:43:51 GMT (envelope-from ohauer@freefall.freebsd.org) Received: (from ohauer@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3SGhjFK005944; Mon, 28 Apr 2014 16:43:45 GMT (envelope-from ohauer) Message-Id: <201404281643.s3SGhjFK005944@freefall.freebsd.org> Date: Mon, 28 Apr 2014 16:43:45 GMT From: Olli Hauer To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/189080: [patch] mail/dovecot-antispam add stage support Cc: dsh@wizard.volgograd.ru X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Apr 2014 16:50:06 -0000 >Number: 189080 >Category: ports >Synopsis: [patch] mail/dovecot-antispam add stage support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Apr 28 16:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Olli Hauer >Release: >Organization: >Environment: >Description: - add stage support - strip build logs: https://redports.org/buildarchive/20140428155500-18394/ commit together with mail/dovecot PR: ports/188868 >How-To-Repeat: >Fix: --- dovecot-antispam.diff begins here --- Index: dovecot-antispam/Makefile =================================================================== --- dovecot-antispam/Makefile (revision 352507) +++ dovecot-antispam/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= dovecot-antispam PORTVERSION= 1.3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= mail MASTER_SITES= http://johannes.sipsolutions.net/download/dovecot-antispam/ \ @@ -12,6 +12,8 @@ MAINTAINER= dsh@wizard.volgograd.ru COMMENT= Dovecot plugin to train dspam about spam or false positives +LICENSE= GPLv2 + BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/mail/dovecot:configure RUN_DEPENDS= dovecot>=1.1.2:${PORTSDIR}/mail/dovecot @@ -28,7 +30,6 @@ DEBUG_DESC= Turn on debug information (syslog) DEBUG_VERBOSE_DESC= Turn on verbose debug -NO_STAGE= yes .include do-configure: @@ -49,11 +50,10 @@ ${ECHO} "PLUGINNAME=antispam" >> ${WRKSRC}/.config do-install: - ${INSTALL_DATA} ${WRKSRC}/lib90_antispam_plugin.so \ - ${PREFIX}/lib/dovecot/imap/ + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/dovecot/imap + ${INSTALL_DATA} -s ${WRKSRC}/lib90_antispam_plugin.so \ + ${STAGEDIR}${PREFIX}/lib/dovecot/imap/ ${INSTALL_MAN} ${WRKSRC}/antispam.7 \ - ${MANPREFIX}/man/man7/dovecot-antispam.7 + ${STAGEDIR}${MANPREFIX}/man/man7/dovecot-antispam.7 - @${CAT} ${PKGMESSAGE} - .include Index: dovecot-antispam/pkg-plist =================================================================== --- dovecot-antispam/pkg-plist (revision 352507) +++ dovecot-antispam/pkg-plist (working copy) @@ -1,3 +1,2 @@ lib/dovecot/imap/lib90_antispam_plugin.so -@dirrmtry lib/dovecot/imap -@dirrmtry lib/dovecot +man/man7/dovecot-antispam.7.gz --- dovecot-antispam.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: