From owner-svn-ports-head@FreeBSD.ORG Sat Aug 9 16:01:10 2014 Return-Path: Delivered-To: svn-ports-head@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 2CCC1A57 for ; Sat, 9 Aug 2014 16:01:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 029E82A0C for ; Sat, 9 Aug 2014 16:01:10 +0000 (UTC) Received: from tijl (uid 1230) (envelope-from tijl@FreeBSD.org) id 2ccc by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sat, 09 Aug 2014 16:01:09 +0000 From: Tijl Coosemans Date: Sat, 9 Aug 2014 16:01:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364452 - head/japanese/mecab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e645c5.2ccc.3027e4fd@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 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, 09 Aug 2014 16:01:10 -0000 Author: tijl Date: Sat Aug 9 16:01:09 2014 New Revision: 364452 URL: http://svnweb.freebsd.org/changeset/ports/364452 QAT: https://qat.redports.org/buildarchive/r364452/ Log: - Replace libtool BUILD_DEPENDS with USE_AUTOTOOLS=libtoolize - Replace STRIP_CMD with INSTALL_TARGET=install-strip - Remove PTHREAD_CFLAGS and PTHREAD_LIBS - Add --copy --force to AUTOMAKE_ARGS so all existing scripts are updated Modified: head/japanese/mecab/Makefile Modified: head/japanese/mecab/Makefile ============================================================================== --- head/japanese/mecab/Makefile Sat Aug 9 15:54:11 2014 (r364451) +++ head/japanese/mecab/Makefile Sat Aug 9 16:01:09 2014 (r364452) @@ -13,26 +13,24 @@ COMMENT= Yet Another Part-of-Speech and LICENSE= BSD3CLAUSE GPLv2 LGPL21 LICENSE_COMB= multi -BUILD_DEPENDS= ${LOCALBASE}/share/aclocal/libtool.m4:${PORTSDIR}/devel/libtool -USE_AUTOTOOLS= autoconf autoheader automake aclocal +GNU_CONFIGURE= yes +CONFIGURE_ARGS= ac_cv_lib_stdcpp_main=no +INSTALL_TARGET= install-strip USES= iconv gettext:build libtool perl5 +USE_AUTOTOOLS= autoconf autoheader automake aclocal libtoolize +AUTOMAKE_ARGS= --add-missing --copy --force USE_PERL5= build -GNU_CONFIGURE= yes USE_LDCONFIG= yes -CONFIGURE_ENV+= ac_cv_lib_stdcpp_main=no - -CPPFLAGS+= ${PTHREAD_CFLAGS} -I ${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -AUTOMAKE_ARGS= --add-missing +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib PORTDOCS= AUTHORS README *.html OPTIONS_DEFINE= DOCS post-patch: - ${REINPLACE_CMD} -e 's/-lpthread/${PTHREAD_LIBS}/g' \ - -e 's/-O3/${CFLAGS}/' ${WRKSRC}/${CONFIGURE_SCRIPT}.in + ${REINPLACE_CMD} -e 's/-O3/${CFLAGS}/' ${WRKSRC}/${CONFIGURE_SCRIPT}.in ${REINPLACE_CMD} -e 's/conf_DATA = mecabrc/conf_DATA = mecabrc.dist/' ${WRKSRC}/Makefile.am post-configure: @@ -45,6 +43,5 @@ post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:N*.html:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmecab.so .include