From owner-svn-ports-head@freebsd.org Sat Oct 3 18:04:54 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31F2AA0F8F9; Sat, 3 Oct 2015 18:04:54 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.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 090B41915; Sat, 3 Oct 2015 18:04:54 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t93I4rIx040100; Sat, 3 Oct 2015 18:04:53 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t93I4rVa040098; Sat, 3 Oct 2015 18:04:53 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201510031804.t93I4rVa040098@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 3 Oct 2015 18:04:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398550 - in head/mail/squirrelmail: . 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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Oct 2015 18:04:54 -0000 Author: adamw Date: Sat Oct 3 18:04:52 2015 New Revision: 398550 URL: https://svnweb.freebsd.org/changeset/ports/398550 Log: ispell isn't available in FreeBSD and hasn't been for quite some time. Change references to ispell into aspell, which is readily available. PR: 202980 Submitted by: mcdouga9@egr.msu.edu Added: head/mail/squirrelmail/files/patch-plugins__squirrelspell__sqspell_config.php (contents, props changed) Modified: head/mail/squirrelmail/Makefile Modified: head/mail/squirrelmail/Makefile ============================================================================== --- head/mail/squirrelmail/Makefile Sat Oct 3 17:52:07 2015 (r398549) +++ head/mail/squirrelmail/Makefile Sat Oct 3 18:04:52 2015 (r398550) @@ -3,7 +3,7 @@ PORTNAME= squirrelmail PORTVERSION= 20150324 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail www MASTER_SITES= LOCAL/adamw/squirrelmail DISTNAME= ${PORTNAME}-${PORTVERSION}_0200-SVN.stable @@ -52,7 +52,7 @@ DATABASE_RUN_DEPENDS= ${LOCALBASE}/share LDAP_USE= PHP=ldap post-patch: - @${REINPLACE_CMD} -e 's|ispell|${LOCALBASE}/bin/ispell|g' \ + @${REINPLACE_CMD} -e 's|ispell|${LOCALBASE}/bin/aspell|g' \ ${WRKSRC}/plugins/squirrelspell/sqspell_config.php @${REINPLACE_CMD} -e 's|/usr/bin/fortune|/usr/games/fortune|g' \ ${WRKSRC}/plugins/fortune/fortune_functions.php Added: head/mail/squirrelmail/files/patch-plugins__squirrelspell__sqspell_config.php ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/squirrelmail/files/patch-plugins__squirrelspell__sqspell_config.php Sat Oct 3 18:04:52 2015 (r398550) @@ -0,0 +1,12 @@ +--- plugins/squirrelspell/sqspell_config.php.orig 2015-10-03 17:59:19 UTC ++++ plugins/squirrelspell/sqspell_config.php +@@ -22,9 +22,6 @@ sqgetGlobalVar('username', $username, SQ + * + * $SQSPELL_APP = array( 'English' => 'ispell -a', + * 'Spanish' => 'ispell -d spanish -a' ); +- * You can replace ispell with aspell keeping the same commandline: +- * $SQSPELL_APP = array( 'English' => 'aspell -a', +- * 'Spanish' => 'aspell -d spanish -a' ); + */ + $SQSPELL_APP = array('English' => 'ispell -a', + 'Spanish' => 'ispell -d spanish -a');