From owner-svn-ports-all@FreeBSD.ORG Mon Jan 5 12:35:09 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84F115AE; Mon, 5 Jan 2015 12:35:09 +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 70F2B66E8C; Mon, 5 Jan 2015 12:35:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t05CZ9lK093284; Mon, 5 Jan 2015 12:35:09 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t05CZ9SY093282; Mon, 5 Jan 2015 12:35:09 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201501051235.t05CZ9SY093282@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 5 Jan 2015 12:35:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376295 - in head/mail/spamassassin: . files 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-1 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: Mon, 05 Jan 2015 12:35:09 -0000 Author: marino Date: Mon Jan 5 12:35:08 2015 New Revision: 376295 URL: https://svnweb.freebsd.org/changeset/ports/376295 QAT: https://qat.redports.org/buildarchive/r376295/ Log: mail/spamassassin: Add perl command_interpret to rc script spamd is a perl script, so defining command_interpreter is required for proper rc.d functioning. Modified: head/mail/spamassassin/Makefile head/mail/spamassassin/files/sa-spamd.in Modified: head/mail/spamassassin/Makefile ============================================================================== --- head/mail/spamassassin/Makefile Mon Jan 5 11:58:23 2015 (r376294) +++ head/mail/spamassassin/Makefile Mon Jan 5 12:35:08 2015 (r376295) @@ -3,7 +3,7 @@ PORTNAME= spamassassin PORTVERSION= 3.4.0 -PORTREVISION?= 15 # also bump japanese/spamassassin +PORTREVISION?= 16 # also bump japanese/spamassassin CATEGORIES?= mail perl5 MASTER_SITES= ${MASTER_SITE_APACHE:S/$/:apache/} ${MASTER_SITE_PERL_CPAN:S/$/:cpan/} MASTER_SITE_SUBDIR= spamassassin/source/:apache Mail/:cpan Modified: head/mail/spamassassin/files/sa-spamd.in ============================================================================== --- head/mail/spamassassin/files/sa-spamd.in Mon Jan 5 11:58:23 2015 (r376294) +++ head/mail/spamassassin/files/sa-spamd.in Mon Jan 5 12:35:08 2015 (r376295) @@ -43,6 +43,7 @@ restart_precmd="precmd" pidfile=${spamd_pidfile:-"/var/run/${name}/${name}.pid"} command=%%PREFIX%%/bin/${name} command_args="-d -r ${pidfile}" +command_interpreter="%%PREFIX%%/bin/perl" required_dirs="%%PREFIX%%/share/spamassassin" precmd()