From owner-svn-ports-head@FreeBSD.ORG Thu Oct 31 15:11:11 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org 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 ESMTP id AF472C12; Thu, 31 Oct 2013 15:11:11 +0000 (UTC) (envelope-from bapt@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9D82725E3; Thu, 31 Oct 2013 15:11:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VFBBgT038656; Thu, 31 Oct 2013 15:11:11 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VFBBea038655; Thu, 31 Oct 2013 15:11:11 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201310311511.r9VFBBea038655@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 31 Oct 2013 15:11:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332249 - head/textproc/hunspell 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.14 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: Thu, 31 Oct 2013 15:11:11 -0000 Author: bapt Date: Thu Oct 31 15:11:11 2013 New Revision: 332249 URL: http://svnweb.freebsd.org/changeset/ports/332249 Log: Fix trying to ranlib a readonly file (thank automake used without libtool) Fix shebang of ispellaff2myspell Add run dependency on perl Strip final binaries Bump portrevision Modified: head/textproc/hunspell/Makefile Modified: head/textproc/hunspell/Makefile ============================================================================== --- head/textproc/hunspell/Makefile Thu Oct 31 15:02:49 2013 (r332248) +++ head/textproc/hunspell/Makefile Thu Oct 31 15:11:11 2013 (r332249) @@ -3,7 +3,7 @@ PORTNAME= hunspell PORTVERSION= 1.3.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/Hunspell/${PORTVERSION} DIST_SUBDIR= ${PORTNAME} @@ -16,10 +16,18 @@ LICENSE_COMB= dual CONFIGURE_ARGS= --disable-nls ${ICONV_CONFIGURE_ARG} --with-readline --with-ui GNU_CONFIGURE= yes -USES= pathfix iconv ncurses readline +USES= pathfix iconv ncurses readline shebangfix perl5 +SHEBANG_FILES= src/tools/ispellaff2myspell USE_LDCONFIG= yes +USE_PERL5= run post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/src/tools/hunspell.cxx +post-configure: + @${REINPLACE_CMD} -e 's|444|644|g' ${WRKSRC}/src/parsers/Makefile + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libhunspell-1.3.so.0 + .include