From owner-svn-ports-all@FreeBSD.ORG Thu Dec 5 17:53:23 2013 Return-Path: Delivered-To: svn-ports-all@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 F325386B; Thu, 5 Dec 2013 17:53:22 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D3C751F82; Thu, 5 Dec 2013 17:53:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rB5HrMf0010134; Thu, 5 Dec 2013 17:53:22 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rB5HrMZD010116; Thu, 5 Dec 2013 17:53:22 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201312051753.rB5HrMZD010116@svn.freebsd.org> From: Antoine Brodin Date: Thu, 5 Dec 2013 17:53:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335676 - head/sysutils/javaservicewrapper 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.17 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: Thu, 05 Dec 2013 17:53:23 -0000 Author: antoine Date: Thu Dec 5 17:53:21 2013 New Revision: 335676 URL: http://svnweb.freebsd.org/changeset/ports/335676 Log: - Update to 3.5.21 - Fix build on 10/head after iconv changes - Stage support PR: ports/184093 Submitted by: Mike Jakubik (maintainer) Modified: head/sysutils/javaservicewrapper/Makefile head/sysutils/javaservicewrapper/distinfo head/sysutils/javaservicewrapper/pkg-plist Modified: head/sysutils/javaservicewrapper/Makefile ============================================================================== --- head/sysutils/javaservicewrapper/Makefile Thu Dec 5 17:18:40 2013 (r335675) +++ head/sysutils/javaservicewrapper/Makefile Thu Dec 5 17:53:21 2013 (r335676) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= javaservicewrapper -PORTVERSION= 3.5.7 +PORTVERSION= 3.5.21 CATEGORIES= sysutils java MASTER_SITES= http://wrapper.tanukisoftware.com/download/${PORTVERSION}/ DISTNAME= wrapper_${PORTVERSION}_src @@ -14,12 +14,13 @@ ONLY_FOR_ARCHS= i386 amd64 USE_JAVA= 1.4+ USE_ANT= yes -USE_GMAKE= yes +USES= gmake iconv DATADIR= ${PREFIX}/lib/${PORTNAME} -NO_STAGE= yes -.include +OPTIONS_DEFINE= DOCS + +.include .if (${ARCH} == amd64) MAKE_ARGS+= -Dbits=64 @@ -28,18 +29,20 @@ MAKE_ARGS+= -Dbits=32 .endif post-patch: - @${REINPLACE_CMD} -e 's|gcc|${CC} ${CFLAGS} -fPIC|' \ + @${REINPLACE_CMD} -e 's|gcc|${CC} ${CFLAGS}| ; \ + s|/usr/local|${ICONV_PREFIX}|g ; \ + s|-liconv|${ICONV_LIB}|' \ ${WRKSRC}/src/c/Makefile-freebsd-x86-32.gmake \ ${WRKSRC}/src/c/Makefile-freebsd-x86-64.gmake do-install: - ${MKDIR} ${DATADIR} - cd ${WRKSRC} && ${CP} -rp bin conf lib test ${DATADIR} - ${STRIP_CMD} ${DATADIR}/bin/wrapper - ${LN} -sf ${DATADIR}/bin/wrapper ${PREFIX}/bin/${PORTNAME} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${CP} -r ${WRKSRC}/doc/* ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DATADIR} + cd ${WRKSRC} && ${CP} -rp bin conf lib test ${STAGEDIR}${DATADIR} + ${STRIP_CMD} ${STAGEDIR}${DATADIR}/bin/wrapper + ${LN} -sf ${DATADIR}/bin/wrapper ${STAGEDIR}${PREFIX}/bin/${PORTNAME} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR} .endif -.include +.include Modified: head/sysutils/javaservicewrapper/distinfo ============================================================================== --- head/sysutils/javaservicewrapper/distinfo Thu Dec 5 17:18:40 2013 (r335675) +++ head/sysutils/javaservicewrapper/distinfo Thu Dec 5 17:53:21 2013 (r335676) @@ -1,2 +1,2 @@ -SHA256 (wrapper_3.5.7_src.tar.gz) = 1090d4314d9ef5544013f14488b983a18b8612f9d12490d2a45fa9c61fb44d5a -SIZE (wrapper_3.5.7_src.tar.gz) = 465189 +SHA256 (wrapper_3.5.21_src.tar.gz) = 4b7cf9b280cba7c8161d03af3e8fdf003ce6622092e7d50eaf32ffce13c5b43a +SIZE (wrapper_3.5.21_src.tar.gz) = 538978 Modified: head/sysutils/javaservicewrapper/pkg-plist ============================================================================== --- head/sysutils/javaservicewrapper/pkg-plist Thu Dec 5 17:18:40 2013 (r335675) +++ head/sysutils/javaservicewrapper/pkg-plist Thu Dec 5 17:53:21 2013 (r335676) @@ -9,28 +9,70 @@ bin/javaservicewrapper %%DATADIR%%/lib/wrappertest.jar %%DATADIR%%/lib/wrappertest2.jar %%DATADIR%%/lib/wrapperdemo.jar +%%DATADIR%%/test/additionalparameterfile-01-empty +%%DATADIR%%/test/additionalparameterfile-01-empty.conf +%%DATADIR%%/test/additionalparameterfile-01-empty.param +%%DATADIR%%/test/additionalparameterfile-02-1line +%%DATADIR%%/test/additionalparameterfile-02-1line.conf +%%DATADIR%%/test/additionalparameterfile-02-1line.param +%%DATADIR%%/test/additionalparameterfile-03-stripq-false +%%DATADIR%%/test/additionalparameterfile-03-stripq-false.conf +%%DATADIR%%/test/additionalparameterfile-03-stripq-false.param +%%DATADIR%%/test/additionalparameterfile-04-stripq-true +%%DATADIR%%/test/additionalparameterfile-04-stripq-true.conf +%%DATADIR%%/test/additionalparameterfile-04-stripq-true.param +%%DATADIR%%/test/additionalparameterfile-05-encoding +%%DATADIR%%/test/additionalparameterfile-05-encoding.conf +%%DATADIR%%/test/additionalparameterfile-05-encoding.param +%%DATADIR%%/test/additionalparameterfile-06-multilines +%%DATADIR%%/test/additionalparameterfile-06-multilines.conf +%%DATADIR%%/test/additionalparameterfile-06-multilines.param %%DATADIR%%/test/backgroundthreads %%DATADIR%%/test/backgroundthreads.conf %%DATADIR%%/test/daemonthreads %%DATADIR%%/test/daemonthreads.conf +%%DATADIR%%/test/defaultstripquotes-01-none +%%DATADIR%%/test/defaultstripquotes-01-none.conf +%%DATADIR%%/test/defaultstripquotes-02-true +%%DATADIR%%/test/defaultstripquotes-02-true.conf +%%DATADIR%%/test/defaultstripquotes-03-false +%%DATADIR%%/test/defaultstripquotes-03-false.conf +%%DATADIR%%/test/delayediorestarter +%%DATADIR%%/test/delayediorestarter.conf %%DATADIR%%/test/envvars %%DATADIR%%/test/envvars.conf %%DATADIR%%/test/executablejar %%DATADIR%%/test/executablejar.conf %%DATADIR%%/test/executablejarcp -%%DATADIR%%/test/executablejarinitfail.conf %%DATADIR%%/test/executablejarcp.conf %%DATADIR%%/test/executablejarinitfail +%%DATADIR%%/test/executablejarinitfail.conf %%DATADIR%%/test/filter %%DATADIR%%/test/filter.conf +%%DATADIR%%/test/growinglogoutput +%%DATADIR%%/test/growinglogoutput.conf +%%DATADIR%%/test/hugelogoutput +%%DATADIR%%/test/hugelogoutput.conf +%%DATADIR%%/test/loadedgcoutput +%%DATADIR%%/test/loadedgcoutput.conf +%%DATADIR%%/test/loadedlogoutput +%%DATADIR%%/test/loadedlogoutput.conf +%%DATADIR%%/test/loadedsplitoutput +%%DATADIR%%/test/loadedsplitoutput.conf %%DATADIR%%/test/loadedwrapperlistener %%DATADIR%%/test/loadedwrapperlistener.conf %%DATADIR%%/test/logoutput %%DATADIR%%/test/logoutput.conf +%%DATADIR%%/test/logstdoutstderr +%%DATADIR%%/test/logstdoutstderr.conf +%%DATADIR%%/test/logstdoutstderrdetached +%%DATADIR%%/test/logstdoutstderrdetached.conf %%DATADIR%%/test/longrunningbackgroundthreads %%DATADIR%%/test/longrunningbackgroundthreads.conf %%DATADIR%%/test/memory %%DATADIR%%/test/memory.conf +%%DATADIR%%/test/nestedwrapperlistener +%%DATADIR%%/test/nestedwrapperlistener.conf %%DATADIR%%/test/noreturn %%DATADIR%%/test/noreturn.conf %%DATADIR%%/test/onexit @@ -39,6 +81,12 @@ bin/javaservicewrapper %%DATADIR%%/test/outputloader.conf %%DATADIR%%/test/percentoutput %%DATADIR%%/test/percentoutput.conf +%%DATADIR%%/test/performance +%%DATADIR%%/test/performance.conf +%%DATADIR%%/test/performancestartstop +%%DATADIR%%/test/performancestartstop.conf +%%DATADIR%%/test/postshutdowngc +%%DATADIR%%/test/postshutdowngc.conf %%DATADIR%%/test/quickcomplete %%DATADIR%%/test/quickcomplete.conf %%DATADIR%%/test/restarter @@ -47,6 +95,10 @@ bin/javaservicewrapper %%DATADIR%%/test/shutdownhook.conf %%DATADIR%%/test/shutdownlock %%DATADIR%%/test/shutdownlock.conf +%%DATADIR%%/test/simplewrapperlistener +%%DATADIR%%/test/simplewrapperlistener.conf +%%DATADIR%%/test/slowstop +%%DATADIR%%/test/slowstop.conf %%DATADIR%%/test/stopwhilestarting %%DATADIR%%/test/stopwhilestarting.conf %%DATADIR%%/test/stopwhilestartingforcestop @@ -54,10 +106,8 @@ bin/javaservicewrapper %%DATADIR%%/test/systemproperty %%DATADIR%%/test/systemproperty.conf %%DATADIR%%/test/template.conf -%%DATADIR%%/test/nestedwrapperlistener -%%DATADIR%%/test/nestedwrapperlistener.conf -%%DATADIR%%/test/simplewrapperlistener -%%DATADIR%%/test/simplewrapperlistener.conf +%%DATADIR%%/test/timedlogoutput +%%DATADIR%%/test/timedlogoutput.conf %%PORTDOCS%%%%DOCSDIR%%/index.html %%PORTDOCS%%%%DOCSDIR%%/revisions.txt %%PORTDOCS%%%%DOCSDIR%%/wrapper-community-license-1.1.txt