From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 00:57:30 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 531B010F; Sun, 28 Oct 2012 00:57:30 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 349A68FC0A; Sun, 28 Oct 2012 00:57:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9S0vUOB095394; Sun, 28 Oct 2012 00:57:30 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S0vTx3095392; Sun, 28 Oct 2012 00:57:29 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201210280057.q9S0vTx3095392@svn.freebsd.org> From: Joe Marcus Clarke Date: Sun, 28 Oct 2012 00:57:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306535 - head/net/netatalk3 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.14 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: Sun, 28 Oct 2012 00:57:30 -0000 Author: marcus Date: Sun Oct 28 00:57:29 2012 New Revision: 306535 URL: http://svn.freebsd.org/changeset/ports/306535 Log: Add a knob to control Kerberos support. Feature safe: yes Modified: head/net/netatalk3/Makefile Modified: head/net/netatalk3/Makefile ============================================================================== --- head/net/netatalk3/Makefile Sat Oct 27 22:59:25 2012 (r306534) +++ head/net/netatalk3/Makefile Sun Oct 28 00:57:29 2012 (r306535) @@ -44,7 +44,8 @@ OPTIONS= PAM "Enable PAM support" off \ KRB5 "Enable Kerberos V UAM" off \ ZEROCONF "Enable Zeroconf (Bonjour) support" on \ LDAP "Enable LDAP support" off \ - SENDFILE "Enable sendfile support" off + SENDFILE "Enable sendfile support" off \ + KERBEROS "Enable Kerberos support" on MAN1= ad.1 afpldaptest.1 afppasswd.1 apple_dump.1 asip-status.pl.1 \ dbd.1 macusers.1 \ @@ -63,6 +64,12 @@ PLIST_SUB+= NETATALKKRB5="" PLIST_SUB+= NETATALKKRB5="@comment " .endif +.if defined (WITH_KERBEROS) +CONFIGURE_ARGS+= --with-kerberos +.else +CONFIGURE_ARGS+= --without-kerberos +.endif + .if defined(WITH_PAM) CONFIGURE_ARGS+= --with-pam PLIST_SUB+= NETATALKPAM="" From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 02:11:29 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C3F2B711; Sun, 28 Oct 2012 02:11:29 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A7C708FC08; Sun, 28 Oct 2012 02:11:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9S2BTJF006825; Sun, 28 Oct 2012 02:11:29 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S2BTOW006821; Sun, 28 Oct 2012 02:11:29 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210280211.q9S2BTOW006821@svn.freebsd.org> From: Jung-uk Kim Date: Sun, 28 Oct 2012 02:11:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306536 - in head/java/javavmwrapper: . 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.14 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: Sun, 28 Oct 2012 02:11:29 -0000 Author: jkim Date: Sun Oct 28 02:11:29 2012 New Revision: 306536 URL: http://svn.freebsd.org/changeset/ports/306536 Log: - Ignore bootstrap-openjdk when we automatically register existing JVMs. - Make sure to destroy all symlinks pointing to ${PREFIX}/bin/javavm and ${PREFIX}/etc/javavms when we deinstall the package. Reviewed by: glewis (maintainer) Feature safe: yes Modified: head/java/javavmwrapper/Makefile head/java/javavmwrapper/files/pkg-install.in head/java/javavmwrapper/pkg-deinstall Modified: head/java/javavmwrapper/Makefile ============================================================================== --- head/java/javavmwrapper/Makefile Sun Oct 28 00:57:29 2012 (r306535) +++ head/java/javavmwrapper/Makefile Sun Oct 28 02:11:29 2012 (r306536) @@ -1,14 +1,11 @@ -# New ports collection makefile for: javavmwrapper -# Date created: 10 June 2000 -# Whom: Maxim Sobolev -# +# Created by: Maxim Sobolev # $FreeBSD$ # # This port is self contained in the src directory. -# PORTNAME= javavmwrapper PORTVERSION= 2.4 +PORTREVISION= 1 CATEGORIES= java MASTER_SITES= # none DISTFILES= # none @@ -53,10 +50,10 @@ do-configure: do-install: ${INSTALL_SCRIPT} ${WRKDIR}/classpath.sh ${PREFIX}/bin/classpath ${INSTALL_SCRIPT} ${WRKDIR}/javavmwrapper.sh ${PREFIX}/bin/javavm - ${LN} -sf ${PREFIX}/bin/javavm ${PREFIX}/bin/registervm - ${LN} -sf ${PREFIX}/bin/javavm ${PREFIX}/bin/unregistervm ${LN} -sf ${PREFIX}/bin/javavm ${PREFIX}/bin/checkvms ${LN} -sf ${PREFIX}/bin/javavm ${PREFIX}/bin/manvm + ${LN} -sf ${PREFIX}/bin/javavm ${PREFIX}/bin/registervm + ${LN} -sf ${PREFIX}/bin/javavm ${PREFIX}/bin/unregistervm .for _man in checkvms.1 javavm.1 manvm.1 registervm.1 ${INSTALL_MAN} ${WRKDIR}/${_man} ${MAN1PREFIX}/man/man1 .endfor Modified: head/java/javavmwrapper/files/pkg-install.in ============================================================================== --- head/java/javavmwrapper/files/pkg-install.in Sun Oct 28 00:57:29 2012 (r306535) +++ head/java/javavmwrapper/files/pkg-install.in Sun Oct 28 02:11:29 2012 (r306536) @@ -21,9 +21,14 @@ else fi # Ensure all JDKs and JREs are installed -for jvm in "${LOCALBASE}"/*jdk* "${LOCALBASE}"/*jre*; do - if [ -x "${jvm}/bin/java" ]; then - "${PKG_PREFIX}"/bin/registervm "${jvm}/bin/java" > /dev/null 2>&1 +_excl_dirs='bootstrap-openjdk' +_find_expr='-depth 2 -regex .*/bin/java' +for dir in ${_excl_dirs}; do + _find_expr="${_find_expr} ! -regex ${dir}/bin/java" +done +for jvm in `cd "${LOCALBASE}" && find *jdk* *jre* ${_find_expr}`; do + if [ -x "${LOCALBASE}/${jvm}" ]; then + "${PKG_PREFIX}"/bin/registervm "${LOCALBASE}/${jvm}" > /dev/null 2>&1 fi done Modified: head/java/javavmwrapper/pkg-deinstall ============================================================================== --- head/java/javavmwrapper/pkg-deinstall Sun Oct 28 00:57:29 2012 (r306535) +++ head/java/javavmwrapper/pkg-deinstall Sun Oct 28 02:11:29 2012 (r306536) @@ -21,6 +21,11 @@ if [ -f "${OPTION_CONF}" -a -f "${OPTION fi fi +# Destroy the symbolic links that were created for every executable for a VM. +find -L ${PKG_PREFIX}/bin -samefile ${PKG_PREFIX}/bin/javavm \ + \! -name checkvms \! -name javavm \! -name manvm \ + \! -name registervm \! -name unregistervm | xargs rm -f + # The configuration file CONF="${PKG_PREFIX}/etc/javavms" @@ -35,23 +40,7 @@ if [ ! -r "${CONF}" ]; then exit 1 fi -# Destroy the symbolic links that were created for every executable for a VM. -cat "${CONF}" | \ -( -while read JAVAVM; do - VM=`echo "${JAVAVM}" | sed -E 's|[[:space:]]*#.*||' 2>/dev/null` - JAVA_HOME=`dirname "${VM}"` - JAVA_HOME=`dirname "${JAVA_HOME}"` - for exe in "${JAVA_HOME}"/bin/* "${JAVA_HOME}"/jre/bin/*; do - exe=`basename "${exe}"` - if [ -L "${PKG_PREFIX}/bin/${exe}" -a \ - "`ls -ld "${PKG_PREFIX}/bin/${exe}" 2>/dev/null | \ - awk '/->/{print $NF;exit 0}END{exit 1}'`" = \ - "${PKG_PREFIX}/bin/javavm" ]; then - rm "${PKG_PREFIX}/bin/${exe}" - fi - done; -done; -) +# Remove the configuration file. +rm -f "${CONF}" exit 0 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 04:03:07 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CA445AB; Sun, 28 Oct 2012 04:03:07 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1F26C8FC08; Sun, 28 Oct 2012 04:03:07 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9S436ou024488; Sun, 28 Oct 2012 04:03:06 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S436V5024483; Sun, 28 Oct 2012 04:03:06 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210280403.q9S436V5024483@svn.freebsd.org> From: Bryan Drewery Date: Sun, 28 Oct 2012 04:03:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306537 - in head/sysutils: beadm beadm-devel 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.14 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: Sun, 28 Oct 2012 04:03:07 -0000 Author: bdrewery Date: Sun Oct 28 04:03:06 2012 New Revision: 306537 URL: http://svn.freebsd.org/changeset/ports/306537 Log: - Update beadm to 0.8.3 Changes: * list: Implement -H option to not show headers * Bugfixes with umount/activate Feature safe: yes Modified: head/sysutils/beadm-devel/Makefile head/sysutils/beadm-devel/distinfo head/sysutils/beadm/Makefile head/sysutils/beadm/distinfo Modified: head/sysutils/beadm-devel/Makefile ============================================================================== --- head/sysutils/beadm-devel/Makefile Sun Oct 28 02:11:29 2012 (r306536) +++ head/sysutils/beadm-devel/Makefile Sun Oct 28 04:03:06 2012 (r306537) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= beadm -PORTVERSION= 0.8.99.20120924 +PORTVERSION= 0.8.99.20121027 CATEGORIES= sysutils PKGNAMESUFFIX= -devel @@ -12,7 +12,7 @@ LICENSE= BSD USE_GITHUB= yes GH_ACCOUNT= vermaden -GH_COMMIT= aefe8c9 +GH_COMMIT= 6b7ff2a GH_TAGNAME= ${GH_COMMIT} NO_BUILD= YES Modified: head/sysutils/beadm-devel/distinfo ============================================================================== --- head/sysutils/beadm-devel/distinfo Sun Oct 28 02:11:29 2012 (r306536) +++ head/sysutils/beadm-devel/distinfo Sun Oct 28 04:03:06 2012 (r306537) @@ -1,2 +1,2 @@ -SHA256 (beadm-0.8.99.20120924.tar.gz) = 885b779bb1b98a6a416c3f790787325d011af165456581630da511d6b1d147f8 -SIZE (beadm-0.8.99.20120924.tar.gz) = 13846 +SHA256 (beadm-0.8.99.20121027.tar.gz) = 3a5d67b2bb7abc48d26356f5bfe4e0bb73f4b1eaf0e661ec6ef037921666abb3 +SIZE (beadm-0.8.99.20121027.tar.gz) = 13985 Modified: head/sysutils/beadm/Makefile ============================================================================== --- head/sysutils/beadm/Makefile Sun Oct 28 02:11:29 2012 (r306536) +++ head/sysutils/beadm/Makefile Sun Oct 28 04:03:06 2012 (r306537) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= beadm -PORTVERSION= 0.8.2 +PORTVERSION= 0.8.3 CATEGORIES= sysutils MASTER_SITES= SF/beadm/dist/ @@ -12,7 +12,7 @@ LICENSE= BSD USE_GITHUB= yes GH_ACCOUNT= vermaden -GH_COMMIT= 598331e +GH_COMMIT= c5bab02 NO_BUILD= YES Modified: head/sysutils/beadm/distinfo ============================================================================== --- head/sysutils/beadm/distinfo Sun Oct 28 02:11:29 2012 (r306536) +++ head/sysutils/beadm/distinfo Sun Oct 28 04:03:06 2012 (r306537) @@ -1,2 +1,2 @@ -SHA256 (beadm-0.8.2.tar.gz) = 29ebea37335b12e640e5c8fde02a3dafee6b2e401293fbb824994c75fe1be8f5 -SIZE (beadm-0.8.2.tar.gz) = 13851 +SHA256 (beadm-0.8.3.tar.gz) = 85d2a8ab365b9d4ae92b2db1e74163c06302c5a1ee4166c616f41fc915ff5b1e +SIZE (beadm-0.8.3.tar.gz) = 13988 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 05:04:34 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 20FD0ACF; Sun, 28 Oct 2012 05:04:34 +0000 (UTC) (envelope-from jpaetzel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 043C58FC08; Sun, 28 Oct 2012 05:04:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9S54XrD033687; Sun, 28 Oct 2012 05:04:33 GMT (envelope-from jpaetzel@svn.freebsd.org) Received: (from jpaetzel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S54XoA033684; Sun, 28 Oct 2012 05:04:33 GMT (envelope-from jpaetzel@svn.freebsd.org) Message-Id: <201210280504.q9S54XoA033684@svn.freebsd.org> From: Josh Paetzel Date: Sun, 28 Oct 2012 05:04:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306538 - head/databases/py-cql 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.14 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: Sun, 28 Oct 2012 05:04:34 -0000 Author: jpaetzel Date: Sun Oct 28 05:04:33 2012 New Revision: 306538 URL: http://svn.freebsd.org/changeset/ports/306538 Log: Update to 1.0.10 PR: ports/173143 Submitted by: Radim Kolar Feature safe: yes Modified: head/databases/py-cql/Makefile head/databases/py-cql/distinfo Modified: head/databases/py-cql/Makefile ============================================================================== --- head/databases/py-cql/Makefile Sun Oct 28 04:03:06 2012 (r306537) +++ head/databases/py-cql/Makefile Sun Oct 28 05:04:33 2012 (r306538) @@ -6,7 +6,7 @@ # PORTNAME= cql -PORTVERSION= 1.0.6 +PORTVERSION= 1.0.10 CATEGORIES= databases python MASTER_SITES= http://cassandra-dbapi2.apache-extras.org.codespot.com/files/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-cql/distinfo ============================================================================== --- head/databases/py-cql/distinfo Sun Oct 28 04:03:06 2012 (r306537) +++ head/databases/py-cql/distinfo Sun Oct 28 05:04:33 2012 (r306538) @@ -1,2 +1,2 @@ -SHA256 (cql-1.0.6.tar.gz) = eedc4198bdadfee99ff37c1f0f8f438422b92345502d4294868ab2ceecf4bef8 -SIZE (cql-1.0.6.tar.gz) = 43740 +SHA256 (cql-1.0.10.tar.gz) = 7c26007485444a011e66b64342396de030b100c373f63d8cede61daf9f2c5af4 +SIZE (cql-1.0.10.tar.gz) = 57050 \ No newline at end of file From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 06:41:48 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C50D72A1; Sun, 28 Oct 2012 06:41:48 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 915708FC08; Sun, 28 Oct 2012 06:41:48 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9S6fmbW048281; Sun, 28 Oct 2012 06:41:48 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S6fmPH048279; Sun, 28 Oct 2012 06:41:48 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210280641.q9S6fmPH048279@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Sun, 28 Oct 2012 06:41:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306539 - head/audio/lmms 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.14 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: Sun, 28 Oct 2012 06:41:49 -0000 Author: rm Date: Sun Oct 28 06:41:48 2012 New Revision: 306539 URL: http://svn.freebsd.org/changeset/ports/306539 Log: - convert to optionsng - remove shared lib versions (portlint warning) - trim Makefile header - remove indefinite article from COMMENT PR: 173022 Submitted by: rm (myself) Approved by: Rodrigo OSORIO (maintainer) Feature safe: yes Modified: head/audio/lmms/Makefile Modified: head/audio/lmms/Makefile ============================================================================== --- head/audio/lmms/Makefile Sun Oct 28 05:04:33 2012 (r306538) +++ head/audio/lmms/Makefile Sun Oct 28 06:41:48 2012 (r306539) @@ -1,9 +1,5 @@ -# New ports collection makefile for: lmms -# Date created: 04 Dec 2006 -# Whom: Jean-Yves Lefort -# +# Created by: Jean-Yves Lefort # $FreeBSD$ -# PORTNAME= lmms PORTVERSION= 0.4.13 @@ -13,16 +9,16 @@ CATEGORIES= audio MASTER_SITES= SF MAINTAINER= rodrigo@bebik.net -COMMENT= An all-in-one sequencer, drum machine, sampler, and more +COMMENT= All-in-one sequencer, drum machine, sampler, and more LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/include/ladspa.h:${PORTSDIR}/audio/ladspa -LIB_DEPENDS= FLAC.10:${PORTSDIR}/audio/flac \ - fluidsynth.1:${PORTSDIR}/audio/fluidsynth \ - samplerate.1:${PORTSDIR}/audio/libsamplerate \ - sndfile.1:${PORTSDIR}/audio/libsndfile \ - vorbis.4:${PORTSDIR}/audio/libvorbis \ +LIB_DEPENDS= FLAC:${PORTSDIR}/audio/flac \ + fluidsynth:${PORTSDIR}/audio/fluidsynth \ + samplerate:${PORTSDIR}/audio/libsamplerate \ + sndfile:${PORTSDIR}/audio/libsndfile \ + vorbis:${PORTSDIR}/audio/libvorbis \ fftw3:${PORTSDIR}/math/fftw3 \ fftw3f:${PORTSDIR}/math/fftw3-float RUN_DEPENDS= ${LOCALBASE}/share/ladspa/rdf/caps.rdf:${PORTSDIR}/audio/caps-plugins \ @@ -31,9 +27,7 @@ RUN_DEPENDS= ${LOCALBASE}/share/ladspa/r ${LOCALBASE}/share/ladspa/rdf/tap-plugins.rdf:${PORTSDIR}/audio/tap-plugins \ update-mime-database:${PORTSDIR}/misc/shared-mime-info -OPTIONS= JACK "Enable JACK support" OFF \ - PULSEAUDIO "Enable PulseAudio support" OFF \ - SDL "Enable SDL support" OFF +OPTIONS_DEFINE= JACK PULSEAUDIO SDL USE_LDCONFIG= yes USE_PKGCONFIG= build @@ -60,19 +54,19 @@ USE_DOS2UNIX= plugins/midi_import/portsm .include -.if defined(WITH_JACK) -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack +.if ${PORT_OPTIONS:MJACK} +LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack .else CMAKE_ARGS+= -DWANT_JACK:BOOL=OFF .endif -.if defined(WITH_PULSEAUDIO) -LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio +.if ${PORT_OPTIONS:MPULSEAUDIO} +LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio .else CMAKE_ARGS+= -DWANT_PULSEAUDIO:BOOL=OFF .endif -.if defined(WITH_SDL) +.if ${PORT_OPTIONS:MSDL} USE_SDL= sdl .else CMAKE_ARGS+= -DWANT_SDL:BOOL=OFF From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 08:39:18 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 487368AD; Sun, 28 Oct 2012 08:39:18 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2450C8FC0C; Sun, 28 Oct 2012 08:39:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9S8dHe4065922; Sun, 28 Oct 2012 08:39:17 GMT (envelope-from osa@svn.freebsd.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S8dHVM065915; Sun, 28 Oct 2012 08:39:17 GMT (envelope-from osa@svn.freebsd.org) Message-Id: <201210280839.q9S8dHVM065915@svn.freebsd.org> From: "Sergey A. Osokin" Date: Sun, 28 Oct 2012 08:39:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306540 - in head/databases/redis: . 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.14 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: Sun, 28 Oct 2012 08:39:18 -0000 Author: osa Date: Sun Oct 28 08:39:17 2012 New Revision: 306540 URL: http://svn.freebsd.org/changeset/ports/306540 Log: Update from 2.4.17 to latest stable version 2.6.2. Feature safe: yes Added: head/databases/redis/files/patch-deps::Makefile (contents, props changed) Deleted: head/databases/redis/files/patch-deps::linenoise::Makefile head/databases/redis/files/patch-src::redis.c Modified: head/databases/redis/Makefile head/databases/redis/distinfo head/databases/redis/files/patch-deps::hiredis::Makefile head/databases/redis/files/patch-src::Makefile head/databases/redis/files/redis.in Modified: head/databases/redis/Makefile ============================================================================== --- head/databases/redis/Makefile Sun Oct 28 06:41:48 2012 (r306539) +++ head/databases/redis/Makefile Sun Oct 28 08:39:17 2012 (r306540) @@ -1,12 +1,8 @@ -# New ports collection makefile for: redis -# Date created: 03 Jul 2009 -# Whom: Sergey Skvortsov -# +# Created by: Sergey Skvortsov # $FreeBSD$ -# PORTNAME= redis -PORTVERSION= 2.4.17 +DISTVERSION= 2.6.2 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE @@ -17,6 +13,15 @@ LICENSE= BSD LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo +OPTIONS_DEFINE= TESTS +TESTS_DESC= Install lang/tcl for redis unit tests + +.include + +.if ${PORT_OPTIONS:MTESTS} +USE_TCL_BUILD= yes +.endif + CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lm -lexecinfo @@ -63,4 +68,9 @@ post-install: [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} .endfor +test: build + @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl + +regression-test: test + .include Modified: head/databases/redis/distinfo ============================================================================== --- head/databases/redis/distinfo Sun Oct 28 06:41:48 2012 (r306539) +++ head/databases/redis/distinfo Sun Oct 28 08:39:17 2012 (r306540) @@ -1,2 +1,2 @@ -SHA256 (redis-2.4.17.tar.gz) = 3fae7c47ef84886ff65073593c91586bb675babaf702eb6f3b37855ab3066ebd -SIZE (redis-2.4.17.tar.gz) = 656155 +SHA256 (redis-2.6.2.tar.gz) = b3b2e74ec8a13337e5e17cc24b0fecf5d612d6a0835d99bd1e337b391f20a46d +SIZE (redis-2.6.2.tar.gz) = 1000600 Added: head/databases/redis/files/patch-deps::Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/redis/files/patch-deps::Makefile Sun Oct 28 08:39:17 2012 (r306540) @@ -0,0 +1,17 @@ +--- deps/Makefile.orig 2012-07-02 04:18:07.000000000 +0400 ++++ deps/Makefile 2012-07-02 04:18:56.000000000 +0400 +@@ -58,12 +58,12 @@ + LUA_CFLAGS= -D__C99FEATURES__=1 + endif + +-LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS) ++LUA_CFLAGS+= -Wall -DLUA_ANSI $(CFLAGS) + LUA_LDFLAGS+= $(LDFLAGS) + + lua: .make-prerequisites + @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) +- cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" ++ cd lua/src && $(MAKE) all CC="$(CC)" CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" + + .PHONY: lua + Modified: head/databases/redis/files/patch-deps::hiredis::Makefile ============================================================================== --- head/databases/redis/files/patch-deps::hiredis::Makefile Sun Oct 28 06:41:48 2012 (r306539) +++ head/databases/redis/files/patch-deps::hiredis::Makefile Sun Oct 28 08:39:17 2012 (r306540) @@ -20,8 +20,8 @@ endif +ifeq ($(uname_S),FreeBSD) + CFLAGS?=$(CFLAGS) -+ CCLINK?=$(PTHREAD_LIBS) -+ LDFLAGS?=$(LDFLAGS) ++ CCLINK?=-pthread ++ LDFLAGS?=-L. -Wl,-rpath,. + DYLIBNAME?=libhiredis.so + DYLIB_MAKE_CMD?=$(CC) -o ${DYLIBNAME} ${OBJ} + STLIBNAME?=libhiredis.a Modified: head/databases/redis/files/patch-src::Makefile ============================================================================== --- head/databases/redis/files/patch-src::Makefile Sun Oct 28 06:41:48 2012 (r306539) +++ head/databases/redis/files/patch-src::Makefile Sun Oct 28 08:39:17 2012 (r306540) @@ -1,24 +1,21 @@ ---- src/Makefile.orig 2012-05-28 11:14:39.000000000 +0400 -+++ src/Makefile 2012-05-28 11:15:45.000000000 +0400 -@@ -28,6 +28,9 @@ - CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6 - CCLINK?=-ldl -lnsl -lsocket -lm -lpthread - DEBUG?=-g -ggdb +--- src/Makefile.orig 2012-08-01 14:06:03.000000000 +0400 ++++ src/Makefile 2012-08-02 22:24:01.000000000 +0400 +@@ -50,6 +50,9 @@ + FINAL_LDFLAGS= $(LDFLAGS) $(REDIS_LDFLAGS) -g -ggdb + FINAL_LIBS= -ldl -lnsl -lsocket -lm -lpthread + DEBUG= -g -ggdb +else ifeq ($(uname_S),FreeBSD) -+ CFLAGS?= $(CFLAGS) -+ CCLINK?= $(LDFLAGS) ++ FINAL_CFLAGS?= $(CFLAGS) $(REDIS_CFLAGS) -I${PREFIX}/include ++ FINAL_LDFLAGS= $(LDFLAGS) else - CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF) - CCLINK?=-lm -pthread -@@ -52,9 +55,9 @@ - ALLOC_FLAGS=-DUSE_JEMALLOC -I../deps/jemalloc/include - endif - --CCOPT= $(CFLAGS) $(ARCH) $(PROF) -+CCOPT= $(CFLAGS) $(PROF) + FINAL_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS) + FINAL_LDFLAGS= $(LDFLAGS) $(REDIS_LDFLAGS) -g -rdynamic -ggdb +@@ -79,7 +82,7 @@ + REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS) + REDIS_LD=$(QUIET_LINK)$(CC) $(FINAL_LDFLAGS) -PREFIX?=/usr/local -+PREFIX:= ${PREFIX} ++PREFIX:=${PREFIX} INSTALL_BIN= $(PREFIX)/bin INSTALL= cp -pf Modified: head/databases/redis/files/redis.in ============================================================================== --- head/databases/redis/files/redis.in Sun Oct 28 06:41:48 2012 (r306539) +++ head/databases/redis/files/redis.in Sun Oct 28 08:39:17 2012 (r306540) @@ -16,7 +16,7 @@ . /etc/rc.subr name="redis" -rcvar=redis_enable +rcvar=`set_rcvar` extra_commands="reload" From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 08:45:52 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB99E9D9; Sun, 28 Oct 2012 08:45:52 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id B3B148FC08; Sun, 28 Oct 2012 08:45:51 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1697061bkc.13 for ; Sun, 28 Oct 2012 01:45:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=sEyqXBabeeyLITn0w6PkXVxmzHJ6HNhUW0DZI2Y9gFs=; b=zO3yGdPbfs/VxDK6B2jgrFnKABBUV1reOrGvDCg9+Wq4u/P/5wDYh+4yJlXyi/jjjN eb2+5DdwPEi+255VieYf89B/P8qaerf2ICiTChkihGEDzO6Ax3hEIWMpyr2ZU7skzhA+ iX3lXYADU8PhrHnxWJiHKaAg4kEcJSyfgTK+9sDYXAnG/4+1NhXw68jKZBm4+TuBhNAS DeO5hVcp7fK4yRm3EPy//J2M2sJ8OQms9oMQ91FzdRSqvbFXRQD/5otJoOnEf6frLEd8 uM1NYfnxIlcQUGEZ2qxZbirS3vdUlmH5yQQXOu8x1WrOa5I9hQP2DU1QWYpkcMYQUR/r d0eQ== Received: by 10.204.4.200 with SMTP id 8mr8668373bks.81.1351413950356; Sun, 28 Oct 2012 01:45:50 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Sun, 28 Oct 2012 01:45:19 -0700 (PDT) In-Reply-To: <201210280839.q9S8dHVM065915@svn.freebsd.org> References: <201210280839.q9S8dHVM065915@svn.freebsd.org> From: Chris Rees Date: Sun, 28 Oct 2012 08:45:19 +0000 X-Google-Sender-Auth: eamUOIGy789k-A9L3pGTGYLZqvU Message-ID: Subject: Re: svn commit: r306540 - in head/databases/redis: . files To: "Sergey A. Osokin" Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 28 Oct 2012 08:45:53 -0000 On 28 October 2012 08:39, Sergey A. Osokin wrote: > XXX Ports RC script present > Author: osa > Date: Sun Oct 28 08:39:17 2012 > New Revision: 306540 > URL: http://svn.freebsd.org/changeset/ports/306540 > > Log: > Update from 2.4.17 to latest stable version 2.6.2. > > Feature safe: yes > > Added: > head/databases/redis/files/patch-deps::Makefile (contents, props changed) > Deleted: > head/databases/redis/files/patch-deps::linenoise::Makefile > head/databases/redis/files/patch-src::redis.c > Modified: > head/databases/redis/Makefile > head/databases/redis/distinfo > head/databases/redis/files/patch-deps::hiredis::Makefile > head/databases/redis/files/patch-src::Makefile > head/databases/redis/files/redis.in > > Modified: head/databases/redis/Makefile > ============================================================================== > --- head/databases/redis/Makefile Sun Oct 28 06:41:48 2012 (r306539) > +++ head/databases/redis/Makefile Sun Oct 28 08:39:17 2012 (r306540) > @@ -1,12 +1,8 @@ > -# New ports collection makefile for: redis > -# Date created: 03 Jul 2009 > -# Whom: Sergey Skvortsov > -# > +# Created by: Sergey Skvortsov > # $FreeBSD$ > -# > > PORTNAME= redis > -PORTVERSION= 2.4.17 > +DISTVERSION= 2.6.2 > CATEGORIES= databases > MASTER_SITES= GOOGLE_CODE > > @@ -17,6 +13,15 @@ LICENSE= BSD > > LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo > > +OPTIONS_DEFINE= TESTS > +TESTS_DESC= Install lang/tcl for redis unit tests > + > +.include > + > +.if ${PORT_OPTIONS:MTESTS} > +USE_TCL_BUILD= yes > +.endif > + > CFLAGS+= -I${LOCALBASE}/include > LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lm -lexecinfo > > @@ -63,4 +68,9 @@ post-install: > [ -d ${d} ] || ${MKDIR} ${d} && ${CHOWN} ${USERS}:${GROUPS} ${d} > .endfor > > +test: build > + @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl > + > +regression-test: test > + > .include > > Modified: head/databases/redis/distinfo > ============================================================================== > --- head/databases/redis/distinfo Sun Oct 28 06:41:48 2012 (r306539) > +++ head/databases/redis/distinfo Sun Oct 28 08:39:17 2012 (r306540) > @@ -1,2 +1,2 @@ > -SHA256 (redis-2.4.17.tar.gz) = 3fae7c47ef84886ff65073593c91586bb675babaf702eb6f3b37855ab3066ebd > -SIZE (redis-2.4.17.tar.gz) = 656155 > +SHA256 (redis-2.6.2.tar.gz) = b3b2e74ec8a13337e5e17cc24b0fecf5d612d6a0835d99bd1e337b391f20a46d > +SIZE (redis-2.6.2.tar.gz) = 1000600 > > Added: head/databases/redis/files/patch-deps::Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/databases/redis/files/patch-deps::Makefile Sun Oct 28 08:39:17 2012 (r306540) > @@ -0,0 +1,17 @@ > +--- deps/Makefile.orig 2012-07-02 04:18:07.000000000 +0400 > ++++ deps/Makefile 2012-07-02 04:18:56.000000000 +0400 > +@@ -58,12 +58,12 @@ > + LUA_CFLAGS= -D__C99FEATURES__=1 > + endif > + > +-LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS) > ++LUA_CFLAGS+= -Wall -DLUA_ANSI $(CFLAGS) > + LUA_LDFLAGS+= $(LDFLAGS) > + > + lua: .make-prerequisites > + @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) > +- cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" > ++ cd lua/src && $(MAKE) all CC="$(CC)" CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" > + > + .PHONY: lua > + > > Modified: head/databases/redis/files/patch-deps::hiredis::Makefile > ============================================================================== > --- head/databases/redis/files/patch-deps::hiredis::Makefile Sun Oct 28 06:41:48 2012 (r306539) > +++ head/databases/redis/files/patch-deps::hiredis::Makefile Sun Oct 28 08:39:17 2012 (r306540) > @@ -20,8 +20,8 @@ > endif > +ifeq ($(uname_S),FreeBSD) > + CFLAGS?=$(CFLAGS) > -+ CCLINK?=$(PTHREAD_LIBS) > -+ LDFLAGS?=$(LDFLAGS) > ++ CCLINK?=-pthread > ++ LDFLAGS?=-L. -Wl,-rpath,. > + DYLIBNAME?=libhiredis.so > + DYLIB_MAKE_CMD?=$(CC) -o ${DYLIBNAME} ${OBJ} > + STLIBNAME?=libhiredis.a > > Modified: head/databases/redis/files/patch-src::Makefile > ============================================================================== > --- head/databases/redis/files/patch-src::Makefile Sun Oct 28 06:41:48 2012 (r306539) > +++ head/databases/redis/files/patch-src::Makefile Sun Oct 28 08:39:17 2012 (r306540) > @@ -1,24 +1,21 @@ > ---- src/Makefile.orig 2012-05-28 11:14:39.000000000 +0400 > -+++ src/Makefile 2012-05-28 11:15:45.000000000 +0400 > -@@ -28,6 +28,9 @@ > - CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W -D__EXTENSIONS__ -D_XPG6 > - CCLINK?=-ldl -lnsl -lsocket -lm -lpthread > - DEBUG?=-g -ggdb > +--- src/Makefile.orig 2012-08-01 14:06:03.000000000 +0400 > ++++ src/Makefile 2012-08-02 22:24:01.000000000 +0400 > +@@ -50,6 +50,9 @@ > + FINAL_LDFLAGS= $(LDFLAGS) $(REDIS_LDFLAGS) -g -ggdb > + FINAL_LIBS= -ldl -lnsl -lsocket -lm -lpthread > + DEBUG= -g -ggdb > +else ifeq ($(uname_S),FreeBSD) > -+ CFLAGS?= $(CFLAGS) > -+ CCLINK?= $(LDFLAGS) > ++ FINAL_CFLAGS?= $(CFLAGS) $(REDIS_CFLAGS) -I${PREFIX}/include > ++ FINAL_LDFLAGS= $(LDFLAGS) > else > - CFLAGS?=-std=c99 -pedantic $(OPTIMIZATION) -Wall -W $(ARCH) $(PROF) > - CCLINK?=-lm -pthread > -@@ -52,9 +55,9 @@ > - ALLOC_FLAGS=-DUSE_JEMALLOC -I../deps/jemalloc/include > - endif > - > --CCOPT= $(CFLAGS) $(ARCH) $(PROF) > -+CCOPT= $(CFLAGS) $(PROF) > + FINAL_CFLAGS= $(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS) > + FINAL_LDFLAGS= $(LDFLAGS) $(REDIS_LDFLAGS) -g -rdynamic -ggdb > +@@ -79,7 +82,7 @@ > + REDIS_CC=$(QUIET_CC)$(CC) $(FINAL_CFLAGS) > + REDIS_LD=$(QUIET_LINK)$(CC) $(FINAL_LDFLAGS) > > -PREFIX?=/usr/local > -+PREFIX:= ${PREFIX} > ++PREFIX:=${PREFIX} > INSTALL_BIN= $(PREFIX)/bin > INSTALL= cp -pf > > > Modified: head/databases/redis/files/redis.in > ============================================================================== > --- head/databases/redis/files/redis.in Sun Oct 28 06:41:48 2012 (r306539) > +++ head/databases/redis/files/redis.in Sun Oct 28 08:39:17 2012 (r306540) > @@ -16,7 +16,7 @@ > . /etc/rc.subr > > name="redis" > -rcvar=redis_enable > +rcvar=`set_rcvar` Please revert this change to the RC script-- you have broken redis on HEAD. http://svnweb.freebsd.org/base/head/etc/rc.subr?r1=230007&r2=230103 Chris From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 09:09:19 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BFA723D6; Sun, 28 Oct 2012 09:09:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A620F8FC18; Sun, 28 Oct 2012 09:09:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9S99JJX070490; Sun, 28 Oct 2012 09:09:19 GMT (envelope-from edwin@svn.freebsd.org) Received: (from edwin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S99JQU070487; Sun, 28 Oct 2012 09:09:19 GMT (envelope-from edwin@svn.freebsd.org) Message-Id: <201210280909.q9S99JQU070487@svn.freebsd.org> From: Edwin Groothuis Date: Sun, 28 Oct 2012 09:09:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306541 - head/misc/zoneinfo 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.14 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: Sun, 28 Oct 2012 09:09:19 -0000 Author: edwin Date: Sun Oct 28 09:09:19 2012 New Revision: 306541 URL: http://svn.freebsd.org/changeset/ports/306541 Log: Update to tzdata2012h: - Bahia no longer has DST. - Tocantins has DST. - Israel has new DST rules next year. - Jordan stays on DST this winter. Feature safe: yes Modified: head/misc/zoneinfo/Makefile head/misc/zoneinfo/distinfo Modified: head/misc/zoneinfo/Makefile ============================================================================== --- head/misc/zoneinfo/Makefile Sun Oct 28 08:39:17 2012 (r306540) +++ head/misc/zoneinfo/Makefile Sun Oct 28 09:09:19 2012 (r306541) @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= zoneinfo -DISTVERSION= 2012g +DISTVERSION= 2012h CATEGORIES= misc MASTER_SITES= ftp://ftp.iana.org/tz/releases/ \ ftp://munnari.oz.au/pub/ Modified: head/misc/zoneinfo/distinfo ============================================================================== --- head/misc/zoneinfo/distinfo Sun Oct 28 08:39:17 2012 (r306540) +++ head/misc/zoneinfo/distinfo Sun Oct 28 09:09:19 2012 (r306541) @@ -1,2 +1,2 @@ -SHA256 (tzdata2012g.tar.gz) = 9a82e74f798d69c18b48e0128c46b6ea10132d9495cbcc4105e7483150a85bac -SIZE (tzdata2012g.tar.gz) = 213055 +SHA256 (tzdata2012h.tar.gz) = 65e53218eff4f71f8e7eaa0ae52aecec79e0ba186bd5badc27c099118d4cd065 +SIZE (tzdata2012h.tar.gz) = 213675 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 10:03:04 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4EA7A382; Sun, 28 Oct 2012 10:03:04 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 369108FC08; Sun, 28 Oct 2012 10:03:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SA34Ng079311; Sun, 28 Oct 2012 10:03:04 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SA33Lq079307; Sun, 28 Oct 2012 10:03:03 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210281003.q9SA33Lq079307@svn.freebsd.org> From: Guido Falsi Date: Sun, 28 Oct 2012 10:03:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306542 - head/net/istgt 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.14 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: Sun, 28 Oct 2012 10:03:04 -0000 Author: madpilot Date: Sun Oct 28 10:03:03 2012 New Revision: 306542 URL: http://svn.freebsd.org/changeset/ports/306542 Log: - Update to 20121028 - Update COMMENT - While here, trim Makefile headers PR: ports/173145 Submitted by: Daisuke Aoyama (maintainer) Feature safe: yes Modified: head/net/istgt/Makefile head/net/istgt/distinfo (contents, props changed) Modified: head/net/istgt/Makefile ============================================================================== --- head/net/istgt/Makefile Sun Oct 28 09:09:19 2012 (r306541) +++ head/net/istgt/Makefile Sun Oct 28 10:03:03 2012 (r306542) @@ -1,18 +1,13 @@ -# New ports collection makefile for: istgt -# Date created: 2009-02-23 -# Whom: Daisuke Aoyama -# +# Created by: Daisuke Aoyama # $FreeBSD$ -# PORTNAME= istgt -PORTVERSION= 20120901 -PORTREVISION= 1 +PORTVERSION= 20121028 CATEGORIES= net MASTER_SITES= http://www.peach.ne.jp/archives/istgt/ MAINTAINER= aoyama@peach.ne.jp -COMMENT= iSCSI target for Debian/NetBSD/FreeBSD +COMMENT= iSCSI target for openSUSE/Debian/NetBSD/FreeBSD SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message Modified: head/net/istgt/distinfo ============================================================================== --- head/net/istgt/distinfo Sun Oct 28 09:09:19 2012 (r306541) +++ head/net/istgt/distinfo Sun Oct 28 10:03:03 2012 (r306542) @@ -1,2 +1,2 @@ -SHA256 (istgt-20120901.tar.gz) = 5adbf9e90c403fa866ca1915bc5b698499a83769007095b3f7a730156a5e405b -SIZE (istgt-20120901.tar.gz) = 273247 +SHA256 (istgt-20121028.tar.gz) = 2daa454767ca4b731c1eac10f095515119a09f3586fbbf1af70d344da6a7a4dc +SIZE (istgt-20121028.tar.gz) = 274102 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 10:32:56 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AD17B99F; Sun, 28 Oct 2012 10:32:56 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id A7B838FC08; Sun, 28 Oct 2012 10:32:54 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1708263bkc.13 for ; Sun, 28 Oct 2012 03:32:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=LZ6tafIVE7++rpHgc7uEXmXm7+eYcTahsttcvX6yLm8=; b=dDw8w+IiPTNyOJgCqXkXHzkhiGmHrXjW6FuqRodXHGH1vzrtDJ78me6x+hf4f9dO5M J5MwEYxL266tQwJWccKcy8gEOgm0JxJKqTLy6R6ZwTrJOlEO8mQ34XF6lddQkkr449ns iS+6GJuTTh4/ABDgLAM7GTt715s+/gkdkn17z6JJrVKCPoHB8UZPiDlmZntQMxCJkqSA aS1ijqfGy2TrwVCf6Nz4mDQC7D/278rMaSEK5stU4X0wN8TJRhL6AXrriIcFFGuY3cHV 5U2TAlzLDCH67Ja8ehibYDHeBJaADSanl5rS8TmIOUZxhnPm8vkzCFsVltVRknVQajGP lv/w== Received: by 10.205.137.7 with SMTP id im7mr8244482bkc.25.1351420373290; Sun, 28 Oct 2012 03:32:53 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Sun, 28 Oct 2012 03:32:22 -0700 (PDT) In-Reply-To: References: <201210131835.q9DIZJaQ081278@svn.freebsd.org> From: Chris Rees Date: Sun, 28 Oct 2012 10:32:22 +0000 X-Google-Sender-Auth: vC5Decc60mI5QCQi18Wwq4RnJ4M Message-ID: Subject: Re: svn commit: r305846 - head/security/amavisd-new/files To: Gabor Kovesdan Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 28 Oct 2012 10:32:56 -0000 On 14 October 2012 14:22, Chris Rees wrote: > On 13 October 2012 19:35, Gabor Kovesdan wrote: >> XXX Ports RC script present >> Author: gabor >> Date: Sat Oct 13 18:35:19 2012 >> New Revision: 305846 >> URL: http://svn.freebsd.org/changeset/ports/305846 >> >> Log: >> - Fix mistakenly expanded variable substitution >> >> Noticed by: zeising >> Feature safe: yes > > These rc scripts can be simplified a fair amount, though I'm afraid I > don't think I can test these sufficiently rigoroursly to label it > "tested". > > Please take a look! > > Chris > > [1] http://www.bayofrum.net/~crees/patches/amavisd-rc-script.diff I've added an explanation at the top of the script. Mind if I commit? Chris From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 10:55:58 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E823CEB3; Sun, 28 Oct 2012 10:55:58 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B3E9E8FC08; Sun, 28 Oct 2012 10:55:58 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SAtwUa089291; Sun, 28 Oct 2012 10:55:58 GMT (envelope-from lth@svn.freebsd.org) Received: (from lth@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SAtwPU089288; Sun, 28 Oct 2012 10:55:58 GMT (envelope-from lth@svn.freebsd.org) Message-Id: <201210281055.q9SAtwPU089288@svn.freebsd.org> From: Lars Thegler Date: Sun, 28 Oct 2012 10:55:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306543 - head/www/p5-POE-Component-Server-SimpleHTTP 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.14 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: Sun, 28 Oct 2012 10:55:59 -0000 Author: lth Date: Sun Oct 28 10:55:58 2012 New Revision: 306543 URL: http://svn.freebsd.org/changeset/ports/306543 Log: - update to 2.16 - convert to optionsng Feature safe: yes Modified: head/www/p5-POE-Component-Server-SimpleHTTP/Makefile head/www/p5-POE-Component-Server-SimpleHTTP/distinfo Modified: head/www/p5-POE-Component-Server-SimpleHTTP/Makefile ============================================================================== --- head/www/p5-POE-Component-Server-SimpleHTTP/Makefile Sun Oct 28 10:03:03 2012 (r306542) +++ head/www/p5-POE-Component-Server-SimpleHTTP/Makefile Sun Oct 28 10:55:58 2012 (r306543) @@ -6,7 +6,7 @@ # PORTNAME= POE-Component-Server-SimpleHTTP -PORTVERSION= 2.14 +PORTVERSION= 2.16 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -29,12 +29,14 @@ MAN3= POE::Component::Server::SimpleHTT POE::Component::Server::SimpleHTTP::Connection.3 \ POE::Component::Server::SimpleHTTP::Response.3 -OPTIONS= SSL "SSL support (POE::Component::SSLify)" on \ +OPTIONS_DEFINE= SSL +SSL_DESC= SSL support (POE::Component::SSLify) +OPTIONS_DEFAULT= SSL -.include +.include -.ifdef(WITH_SSL) +.if ${PORT_OPTIONS:MSSL} BUILD_DEPENDS+= p5-POE-Component-SSLify>=0.04:${PORTSDIR}/security/p5-POE-Component-SSLify .endif -.include +.include Modified: head/www/p5-POE-Component-Server-SimpleHTTP/distinfo ============================================================================== --- head/www/p5-POE-Component-Server-SimpleHTTP/distinfo Sun Oct 28 10:03:03 2012 (r306542) +++ head/www/p5-POE-Component-Server-SimpleHTTP/distinfo Sun Oct 28 10:55:58 2012 (r306543) @@ -1,2 +1,2 @@ -SHA256 (POE-Component-Server-SimpleHTTP-2.14.tar.gz) = 8a8a1d0dc068069d7bc290a15a792688fe84f8cacfc8318ff0ceb0fcd5100b27 -SIZE (POE-Component-Server-SimpleHTTP-2.14.tar.gz) = 62995 +SHA256 (POE-Component-Server-SimpleHTTP-2.16.tar.gz) = 4d42419a51a34ae776ee5dc45beab51789512f46b7fb4aeac416d37150d2d69d +SIZE (POE-Component-Server-SimpleHTTP-2.16.tar.gz) = 63774 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 11:05:23 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99AE31F0; Sun, 28 Oct 2012 11:05:23 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7BC498FC12; Sun, 28 Oct 2012 11:05:23 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SB5Nex090984; Sun, 28 Oct 2012 11:05:23 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SB5NSm090982; Sun, 28 Oct 2012 11:05:23 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210281105.q9SB5NSm090982@svn.freebsd.org> From: Pawel Pekala Date: Sun, 28 Oct 2012 11:05:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306544 - head/audio/puddletag 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.14 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: Sun, 28 Oct 2012 11:05:23 -0000 Author: pawel Date: Sun Oct 28 11:05:22 2012 New Revision: 306544 URL: http://svn.freebsd.org/changeset/ports/306544 Log: Add run dependency on audio/chromaprint for AcoustID support Feature safe: yes Modified: head/audio/puddletag/Makefile Modified: head/audio/puddletag/Makefile ============================================================================== --- head/audio/puddletag/Makefile Sun Oct 28 10:55:58 2012 (r306543) +++ head/audio/puddletag/Makefile Sun Oct 28 11:05:22 2012 (r306544) @@ -2,6 +2,7 @@ PORTNAME= puddletag PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= audio python MASTER_SITES= SF MASTER_SITE_SUBDIR=${PORTNAME} @@ -11,11 +12,11 @@ COMMENT= Audio tag editor LICENSE= GPLv3 -RUN_DEPENDS= ${LOCALBASE}/bin/mb-submit-disc:${PORTSDIR}/audio/py-musicbrainz2 \ +RUN_DEPENDS= ${LOCALBASE}/bin/fpcalc:${PORTSDIR}/audio/chromaprint \ + ${LOCALBASE}/bin/mb-submit-disc:${PORTSDIR}/audio/py-musicbrainz2 \ ${LOCALBASE}/bin/moggsplit:${PORTSDIR}/audio/py-mutagen \ ${PYTHON_SITELIBDIR}/configobj.py:${PORTSDIR}/devel/py-configobj \ ${PYTHON_SITELIBDIR}/pyparsing.py:${PORTSDIR}/devel/py-parsing \ - ${PYTHON_SITELIBDIR}/PyQt4/Qt.py:${PORTSDIR}/devel/py-qt4-core \ ${PYTHON_SITELIBDIR}/PyQt4/QtSvg.so:${PORTSDIR}/graphics/py-qt4-svg \ ${PYTHON_SITELIBDIR}/PyQt4/QtGui.so:${PORTSDIR}/x11-toolkits/py-qt4-gui From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 11:09:44 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB3452ED; Sun, 28 Oct 2012 11:09:43 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B80C98FC08; Sun, 28 Oct 2012 11:09:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SB9ho8091733; Sun, 28 Oct 2012 11:09:43 GMT (envelope-from lth@svn.freebsd.org) Received: (from lth@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SB9hEn091729; Sun, 28 Oct 2012 11:09:43 GMT (envelope-from lth@svn.freebsd.org) Message-Id: <201210281109.q9SB9hEn091729@svn.freebsd.org> From: Lars Thegler Date: Sun, 28 Oct 2012 11:09:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306545 - head/devel/p5-Dist-Zilla 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.14 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: Sun, 28 Oct 2012 11:09:44 -0000 Author: lth Date: Sun Oct 28 11:09:43 2012 New Revision: 306545 URL: http://svn.freebsd.org/changeset/ports/306545 Log: update to 4.300028 Feature safe: yes Modified: head/devel/p5-Dist-Zilla/Makefile head/devel/p5-Dist-Zilla/distinfo head/devel/p5-Dist-Zilla/pkg-plist Modified: head/devel/p5-Dist-Zilla/Makefile ============================================================================== --- head/devel/p5-Dist-Zilla/Makefile Sun Oct 28 11:05:22 2012 (r306544) +++ head/devel/p5-Dist-Zilla/Makefile Sun Oct 28 11:09:43 2012 (r306545) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Dist-Zilla -PORTVERSION= 4.300024 +PORTVERSION= 4.300028 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= Dist @@ -26,6 +26,7 @@ BUILD_DEPENDS= p5-App-Cmd>=0.309:${PORTS p5-File-pushd>=0:${PORTSDIR}/devel/p5-File-pushd \ p5-Hash-Merge-Simple>=0:${PORTSDIR}/devel/p5-Hash-Merge-Simple \ p5-JSON>=2:${PORTSDIR}/converters/p5-JSON \ + p5-List-AllUtils>=0:${PORTSDIR}/devel/p5-List-AllUtils \ p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-Log-Dispatchouli>=1.102220:${PORTSDIR}/devel/p5-Log-Dispatchouli \ p5-Moose-Autobox>=0.10:${PORTSDIR}/devel/p5-Moose-Autobox \ @@ -163,10 +164,12 @@ MAN3= Dist::Zilla.3 \ Dist::Zilla::Role::FileMunger.3 \ Dist::Zilla::Role::FilePruner.3 \ Dist::Zilla::Role::InstallTool.3 \ + Dist::Zilla::Role::LicenseProvider.3 \ Dist::Zilla::Role::MetaProvider.3 \ Dist::Zilla::Role::MintingProfile.3 \ Dist::Zilla::Role::MintingProfile::ShareDir.3 \ Dist::Zilla::Role::ModuleMaker.3 \ + Dist::Zilla::Role::NameProvider.3 \ Dist::Zilla::Role::PPI.3 \ Dist::Zilla::Role::Plugin.3 \ Dist::Zilla::Role::PluginBundle.3 \ Modified: head/devel/p5-Dist-Zilla/distinfo ============================================================================== --- head/devel/p5-Dist-Zilla/distinfo Sun Oct 28 11:05:22 2012 (r306544) +++ head/devel/p5-Dist-Zilla/distinfo Sun Oct 28 11:09:43 2012 (r306545) @@ -1,2 +1,2 @@ -SHA256 (Dist-Zilla-4.300024.tar.gz) = fd03730e13b6dabfce1b649f61e496edeac2d4dfcc3b4ed933a672705c2e3057 -SIZE (Dist-Zilla-4.300024.tar.gz) = 134077 +SHA256 (Dist-Zilla-4.300028.tar.gz) = ab2937224d4b78d389d04aed4f4eef8088c8e6d1e6b7c4bca7f6dfb6ad27f787 +SIZE (Dist-Zilla-4.300028.tar.gz) = 137454 Modified: head/devel/p5-Dist-Zilla/pkg-plist ============================================================================== --- head/devel/p5-Dist-Zilla/pkg-plist Sun Oct 28 11:05:22 2012 (r306544) +++ head/devel/p5-Dist-Zilla/pkg-plist Sun Oct 28 11:09:43 2012 (r306545) @@ -102,10 +102,12 @@ bin/dzil %%SITE_PERL%%/Dist/Zilla/Role/FileMunger.pm %%SITE_PERL%%/Dist/Zilla/Role/FilePruner.pm %%SITE_PERL%%/Dist/Zilla/Role/InstallTool.pm +%%SITE_PERL%%/Dist/Zilla/Role/LicenseProvider.pm %%SITE_PERL%%/Dist/Zilla/Role/MetaProvider.pm %%SITE_PERL%%/Dist/Zilla/Role/MintingProfile.pm %%SITE_PERL%%/Dist/Zilla/Role/MintingProfile/ShareDir.pm %%SITE_PERL%%/Dist/Zilla/Role/ModuleMaker.pm +%%SITE_PERL%%/Dist/Zilla/Role/NameProvider.pm %%SITE_PERL%%/Dist/Zilla/Role/PPI.pm %%SITE_PERL%%/Dist/Zilla/Role/Plugin.pm %%SITE_PERL%%/Dist/Zilla/Role/PluginBundle.pm From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 11:14:37 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B7723E7; Sun, 28 Oct 2012 11:14:37 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2CE728FC08; Sun, 28 Oct 2012 11:14:37 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SBEbNX092678; Sun, 28 Oct 2012 11:14:37 GMT (envelope-from lth@svn.freebsd.org) Received: (from lth@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SBEaQ1092675; Sun, 28 Oct 2012 11:14:36 GMT (envelope-from lth@svn.freebsd.org) Message-Id: <201210281114.q9SBEaQ1092675@svn.freebsd.org> From: Lars Thegler Date: Sun, 28 Oct 2012 11:14:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306546 - head/devel/p5-Log-Log4perl 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.14 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: Sun, 28 Oct 2012 11:14:37 -0000 Author: lth Date: Sun Oct 28 11:14:36 2012 New Revision: 306546 URL: http://svn.freebsd.org/changeset/ports/306546 Log: update to 1.39 Feature safe: yes Modified: head/devel/p5-Log-Log4perl/Makefile head/devel/p5-Log-Log4perl/distinfo Modified: head/devel/p5-Log-Log4perl/Makefile ============================================================================== --- head/devel/p5-Log-Log4perl/Makefile Sun Oct 28 11:09:43 2012 (r306545) +++ head/devel/p5-Log-Log4perl/Makefile Sun Oct 28 11:14:36 2012 (r306546) @@ -6,7 +6,7 @@ # PORTNAME= Log-Log4perl -PORTVERSION= 1.38 +PORTVERSION= 1.39 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Log-Log4perl/distinfo ============================================================================== --- head/devel/p5-Log-Log4perl/distinfo Sun Oct 28 11:09:43 2012 (r306545) +++ head/devel/p5-Log-Log4perl/distinfo Sun Oct 28 11:14:36 2012 (r306546) @@ -1,2 +1,2 @@ -SHA256 (Log-Log4perl-1.38.tar.gz) = f78c75301459452b40b2ad58f006984e91fa7f21dea1d34a211b777509c180fb -SIZE (Log-Log4perl-1.38.tar.gz) = 266737 +SHA256 (Log-Log4perl-1.39.tar.gz) = e940ddcec6331297a3c513d5c91a9d3a7c71f101c23670326b7e1678d2e3dce2 +SIZE (Log-Log4perl-1.39.tar.gz) = 272492 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 11:31:18 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C7C5A787; Sun, 28 Oct 2012 11:31:18 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id CBE2E8FC08; Sun, 28 Oct 2012 11:31:17 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1714653bkc.13 for ; Sun, 28 Oct 2012 04:31:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=mCfV9M0GClqwseI9+VVO0AL+o2w/z40w6ATwrgumFV4=; b=As56DqUTef76STQqjBho96UhKPv/l/rlhPViSXnHn73rFloL3wju4Qtt+ADhmiVdg1 eUB8+veu3voblg2/0Yb/l6iutLfkyuGmbOs+spe8YrK7v5dMq0q6vPdSn4Jd2wOOIJ9+ emyECCxmqAy14W8GhBveNHIrlt0VexGLES8ReANeukRCv+cqWOWmGnMZwax33l6OBOM6 faU9xJ0rlfk6tIiL/awIQlqxFs4Gn1ETa+naursA09sVjdANvm9oYUKqddozCIHY5DFF U9oG239n7FFOb2nX0cz78c6UElWVx89APUOMyIbIEJrHX+BP99jDV/CvFaKrj6bvEhto 83eQ== Received: by 10.204.156.74 with SMTP id v10mr8580611bkw.39.1351423876486; Sun, 28 Oct 2012 04:31:16 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Sun, 28 Oct 2012 04:30:46 -0700 (PDT) In-Reply-To: <201210261407.q9QE7bWH014598@svn.freebsd.org> References: <201210261407.q9QE7bWH014598@svn.freebsd.org> From: Chris Rees Date: Sun, 28 Oct 2012 11:30:46 +0000 X-Google-Sender-Auth: 3Dsufhc45ugvA-iywqRk_zv2jX8 Message-ID: Subject: Re: svn commit: r306442 - in head: . net/activemq net/activemq/files To: Tom Judge Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 28 Oct 2012 11:31:18 -0000 On 26 October 2012 15:07, Tom Judge wrote: > XXX Ports RC script present > Author: tj > Date: Fri Oct 26 14:07:37 2012 > New Revision: 306442 > URL: http://svn.freebsd.org/changeset/ports/306442 > > Log: > * Update to 5.6.0 > * Remove legacy Makefile header > * Make user and group overridable > * Fix install to create data directory > * Move working data to /var/db/activemq > * Update required java version to 1.6+ > * Add entry to updating for move of data directory. > * Take over maintainer > > Changes: http://activemq.apache.org/new-features-in-56.html > > Feature safe: yes > Approved by: g.veniamin@googlemail.com (maintainer) > Approved by: eadler (mentor) > > Modified: > head/UPDATING > head/net/activemq/Makefile > head/net/activemq/distinfo > head/net/activemq/files/activemq.in > Modified: head/net/activemq/files/activemq.in > ============================================================================== > --- head/net/activemq/files/activemq.in Fri Oct 26 14:07:19 2012 (r306441) > +++ head/net/activemq/files/activemq.in Fri Oct 26 14:07:37 2012 (r306442) > @@ -35,9 +35,11 @@ load_rc_config $name > > # Set defaults > : ${activemq_enable:=NO} > -: ${activemq_user:=${name}} > -: ${activemq_group:=${name}} > +: ${activemq_user:=%%MQUSER%%} > +: ${activemq_group:=%%MQGROUP%%} > : ${activemq_classpath:=%%ETCDIR%%} > +: ${activemq_conf:=%%ETCDIR%%} > +: ${activemq_data:=%%MQDB%%} > : ${activemq_home:=%%DATADIR%%} > : ${activemq_javargs:='-Xmx512M -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties -Dcom.sun.management.jmxremote'} > : ${activemq_stop_timeout:="10"} > @@ -48,6 +50,8 @@ required_files="%%ETCDIR%%/activemq.xml" > jar_file="%%DATADIR%%/bin/run.jar" > java_options=" -server -jar ${activemq_javargs} \ > -Dactivemq.classpath=${activemq_classpath} \ > + -Dactivemq.conf=${activemq_conf} \ > + -Dactivemq.data=${activemq_data} \ > -Dactivemq.home=${activemq_home} \ > -Dactivemq.base=${activemq_home}" > > Normally the pidfile gets its own subdirectory if the utility isn't run as root. Please consider the following patch: http://www.bayofrum.net/~crees/patches/activemq-rc.diff Chris From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 11:48:28 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E50328B6; Sun, 28 Oct 2012 11:48:28 +0000 (UTC) (envelope-from lth@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CD9C58FC0A; Sun, 28 Oct 2012 11:48:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SBmS0i098324; Sun, 28 Oct 2012 11:48:28 GMT (envelope-from lth@svn.freebsd.org) Received: (from lth@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SBmSpX098321; Sun, 28 Oct 2012 11:48:28 GMT (envelope-from lth@svn.freebsd.org) Message-Id: <201210281148.q9SBmSpX098321@svn.freebsd.org> From: Lars Thegler Date: Sun, 28 Oct 2012 11:48:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306547 - head/devel/p5-Log-Report 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.14 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: Sun, 28 Oct 2012 11:48:29 -0000 Author: lth Date: Sun Oct 28 11:48:28 2012 New Revision: 306547 URL: http://svn.freebsd.org/changeset/ports/306547 Log: update to 0.99 Feature safe: yes Modified: head/devel/p5-Log-Report/Makefile head/devel/p5-Log-Report/distinfo Modified: head/devel/p5-Log-Report/Makefile ============================================================================== --- head/devel/p5-Log-Report/Makefile Sun Oct 28 11:14:36 2012 (r306546) +++ head/devel/p5-Log-Report/Makefile Sun Oct 28 11:48:28 2012 (r306547) @@ -6,7 +6,7 @@ # PORTNAME= Log-Report -PORTVERSION= 0.98 +PORTVERSION= 0.99 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MARKOV Modified: head/devel/p5-Log-Report/distinfo ============================================================================== --- head/devel/p5-Log-Report/distinfo Sun Oct 28 11:14:36 2012 (r306546) +++ head/devel/p5-Log-Report/distinfo Sun Oct 28 11:48:28 2012 (r306547) @@ -1,2 +1,2 @@ -SHA256 (Log-Report-0.98.tar.gz) = 9a9d9ffad2f178f03584e571eeabc0546ba122e06b6a960f5f452526d5358e23 -SIZE (Log-Report-0.98.tar.gz) = 95486 +SHA256 (Log-Report-0.99.tar.gz) = 46fee2289e07b4d97ca016297866626b1f1db51f00984e888892208498950f7f +SIZE (Log-Report-0.99.tar.gz) = 95561 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 12:02:50 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27AA3D6F; Sun, 28 Oct 2012 12:02:50 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 018348FC08; Sun, 28 Oct 2012 12:02:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SC2nvl001050; Sun, 28 Oct 2012 12:02:49 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SC2nkm001048; Sun, 28 Oct 2012 12:02:49 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210281202.q9SC2nkm001048@svn.freebsd.org> From: Pawel Pekala Date: Sun, 28 Oct 2012 12:02:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306548 - head/polish/kadu 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.14 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: Sun, 28 Oct 2012 12:02:50 -0000 Author: pawel Date: Sun Oct 28 12:02:49 2012 New Revision: 306548 URL: http://svn.freebsd.org/changeset/ports/306548 Log: - Fix another /bin/bash case - Trim Makefile header Feature safe: yes Modified: head/polish/kadu/Makefile Modified: head/polish/kadu/Makefile ============================================================================== --- head/polish/kadu/Makefile Sun Oct 28 11:48:28 2012 (r306547) +++ head/polish/kadu/Makefile Sun Oct 28 12:02:49 2012 (r306548) @@ -1,12 +1,9 @@ -# Ports collection makefile for: kadu -# Date created: 17 July 2003 -# Whom: Jacek Pelka -# +# Created by: Jacek Pelka # $FreeBSD$ -# PORTNAME= kadu PORTVERSION= 0.12.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= polish net-im MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}/:kadu \ @@ -82,6 +79,8 @@ post-patch: ${WRKSRC}/plugins/tabs/CMakeLists.txt @${FIND} ${WRKSRC} -exec ${GREP} -q "#!/bin/bash" {} \; \ -exec ${REINPLACE_CMD} -e 's|#!/bin/bash|#!/usr/bin/env bash|g' {} \; + @${REINPLACE_CMD} 's|/bin/bash|${LOCALBASE}/bin/bash|' \ + ${WRKSRC}/plugins/sql_history/storage/sql-restore.cpp post-install: .if ${PORT_OPTIONS:MGG_EMOTS} From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 12:12:51 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD7DAF8C; Sun, 28 Oct 2012 12:12:51 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A8BBA8FC08; Sun, 28 Oct 2012 12:12:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SCCpkr003001; Sun, 28 Oct 2012 12:12:51 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SCCpNQ002999; Sun, 28 Oct 2012 12:12:51 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201210281212.q9SCCpNQ002999@svn.freebsd.org> From: Max Brazhnikov Date: Sun, 28 Oct 2012 12:12:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306549 - head/audio/kid3-kde4 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.14 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: Sun, 28 Oct 2012 12:12:51 -0000 Author: makc Date: Sun Oct 28 12:12:51 2012 New Revision: 306549 URL: http://svn.freebsd.org/changeset/ports/306549 Log: Add option for recently added Chromaprint Feature safe: yes Modified: head/audio/kid3-kde4/Makefile Modified: head/audio/kid3-kde4/Makefile ============================================================================== --- head/audio/kid3-kde4/Makefile Sun Oct 28 12:02:49 2012 (r306548) +++ head/audio/kid3-kde4/Makefile Sun Oct 28 12:12:51 2012 (r306549) @@ -2,6 +2,7 @@ PORTNAME= kid3 PORTVERSION= 2.2 +PORTREVISION= 1 CATEGORIES= audio kde MASTER_SITES= SF @@ -15,12 +16,10 @@ LATEST_LINK= ${PORTNAME}-kde4 USE_KDE4= kdelibs kdeprefix kdehier automoc4 USE_QT4= qmake_build moc_build rcc_build uic_build USE_CMAKE= yes -# libchromaprint has not been ported yet -CMAKE_ARGS= -DWITH_CHROMAPRINT=off USE_GETTEXT= yes MAKE_JOBS_SAFE= yes -OPTIONS_DEFINE= FLAC ID3LIB MP4V2 VORBIS TAGLIB +OPTIONS_DEFINE= FLAC ID3LIB MP4V2 VORBIS TAGLIB CHROMAPRINT OPTIONS_DEFAULT= ${OPTIONS_DEFINE} FLAC_DESC= Support for FLAC files @@ -28,6 +27,7 @@ ID3LIB_DESC= Support for mp3 files MP4V2_DESC= Support for mp4 files VORBIS_DESC= Support for Ogg/Vorbis files TAGLIB_DESC= Support for various audio formats +CHROMAPRINT_DESC= Support for Chromaprint audio fingerprints .include @@ -67,6 +67,14 @@ LIB_DEPENDS+= tag.1:${PORTSDIR}/audio/ta CMAKE_ARGS+= -DWITH_TAGLIB=OFF .endif +.if ${PORT_OPTIONS:MCHROMAPRINT} +CMAKE_ARGS+= -DWITH_CHROMAPRINT=ON \ + -DWITH_FFMPEG=ON +LIB_DEPENDS+= chromaprint:${PORTSDIR}/audio/chromaprint +.else +CMAKE_ARGS+= -DWITH_CHROMAPRINT=OFF +.endif + pre-configure: ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' ${WRKSRC}/CMakeLists.txt From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 12:17:54 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B9CE6108; Sun, 28 Oct 2012 12:17:54 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id B56538FC0A; Sun, 28 Oct 2012 12:17:53 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1719942bkc.13 for ; Sun, 28 Oct 2012 05:17:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=m8Ua330WPkPc/nL5XyYVj6pJBB1Pljuk7chq/1wEetM=; b=qz53u7SuICxbvJu8MTSoOJ1UNwIJqjupXSS9MKRQV2/ffNQE3pD4qqzaY0EX628qu0 6BhKpb8YQNduQqv1sv09Vt0KgrjOAzyrPLyTpK84aE4eDGIAluHT0Q9kS/LoebSD5HHD d2RAZAd1qCCB/qvCV1Zp5vza0EjCAnmjblHH9TWq6Yhs3ssFdLaBIKAYhInlWw6OZ+PE 0FBUfeOrWb5aZYKCBa14JxuDwkCDrg1JFjzZv+WYV6Ng310U+VCsWHRdOPmkGbCQO1qk vXl9fqIvfXSkXKP36WJsqHaRMSA25jtoU6LHenuAxHcI50TG1FoFnNJp2DlNHNKEC9Md dY0g== Received: by 10.204.11.207 with SMTP id u15mr8574060bku.40.1351426672562; Sun, 28 Oct 2012 05:17:52 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Sun, 28 Oct 2012 05:17:22 -0700 (PDT) In-Reply-To: <201210222013.q9MKDbWx096398@svn.freebsd.org> References: <201210222013.q9MKDbWx096398@svn.freebsd.org> From: Chris Rees Date: Sun, 28 Oct 2012 12:17:22 +0000 X-Google-Sender-Auth: Mm3_dCmUDFb11xHDZZRSN5P1Sss Message-ID: Subject: Re: svn commit: r306286 - in head/sysutils/uhidd: . files To: Guido Falsi , kaiwang27@gmail.com Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 28 Oct 2012 12:17:54 -0000 On 22 October 2012 21:13, Guido Falsi wrote: > XXX Ports RC script present > XXX Ports RC script present > Author: madpilot > Date: Mon Oct 22 20:13:36 2012 > New Revision: 306286 > URL: http://svn.freebsd.org/changeset/ports/306286 > > Log: > - Update to 0.2.1 > Modified: head/sysutils/uhidd/files/uhidd.in > ============================================================================== > --- head/sysutils/uhidd/files/uhidd.in Mon Oct 22 20:06:34 2012 (r306285) > +++ head/sysutils/uhidd/files/uhidd.in Mon Oct 22 20:13:36 2012 (r306286) > @@ -19,7 +19,7 @@ name="uhidd" > rcvar=uhidd_enable > command="%%PREFIX%%/sbin/${name}" > start_cmd="uhidd_start" > -required_modules="uvhid vkbd" > +required_modules="vkbd" > pidprefix="/var/run/uhidd" > > load_rc_config $name > I remember when I fixed the ${name}_enable default missing case here, and looking again I had missed out a colon :) This patch fixes that, and contains other style fixes, but most importantly it replaces a use of [ with a much faster variable substitution. http://www.bayofrum.net/~crees/patches/uhidd-rc.diff Kai Wang, is it OK? Chris From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 13:57:13 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FCE4C64; Sun, 28 Oct 2012 13:57:13 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6670B8FC12; Sun, 28 Oct 2012 13:57:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SDvDS7021243; Sun, 28 Oct 2012 13:57:13 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SDvDRG021237; Sun, 28 Oct 2012 13:57:13 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201210281357.q9SDvDRG021237@svn.freebsd.org> From: Chris Rees Date: Sun, 28 Oct 2012 13:57:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306550 - in head/security/amavisd-new: . 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.14 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: Sun, 28 Oct 2012 13:57:13 -0000 Author: crees Date: Sun Oct 28 13:57:12 2012 New Revision: 306550 URL: http://svn.freebsd.org/changeset/ports/306550 Log: RC fixes; - Use REQUIRE in lieu of BEFORE where possible - Include KEYWORD: shutdown for persistent services - load_rc_config should precede any default settings - Style fixes, indenting functions, remove single-line functions Approved by: gabor (maintainer) Feature safe: yes Modified: head/security/amavisd-new/Makefile head/security/amavisd-new/files/amavis-milter.in head/security/amavisd-new/files/amavis-p0fanalyzer.in head/security/amavisd-new/files/amavisd-snmp.in head/security/amavisd-new/files/amavisd.in Modified: head/security/amavisd-new/Makefile ============================================================================== --- head/security/amavisd-new/Makefile Sun Oct 28 12:12:51 2012 (r306549) +++ head/security/amavisd-new/Makefile Sun Oct 28 13:57:12 2012 (r306550) @@ -2,7 +2,7 @@ PORTNAME= amavisd-new PORTVERSION= 2.8.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= http://www.ijs.si/software/amavisd/ \ Modified: head/security/amavisd-new/files/amavis-milter.in ============================================================================== --- head/security/amavisd-new/files/amavis-milter.in Sun Oct 28 12:12:51 2012 (r306549) +++ head/security/amavisd-new/files/amavis-milter.in Sun Oct 28 13:57:12 2012 (r306550) @@ -2,16 +2,14 @@ # # $FreeBSD$ # - # PROVIDE: amavis_milter # REQUIRE: amavisd # BEFORE: mail # KEYWORD: shutdown - # # Add the following lines to /etc/rc.conf to enable amavis-milter: # -#amavis_milter_enable="YES" +# amavis_milter_enable="YES" # . /etc/rc.subr @@ -19,14 +17,13 @@ name=amavis_milter rcvar=amavis_milter_enable -command=%%PREFIX%%/sbin/amavis-milter -required_files=%%PREFIX%%/etc/amavisd.conf +load_rc_config $name -# set defaults +: ${amavis_milter_enable:=NO} +: ${amavis_milter_flags=-D -p %%AMAVISDIR%%/amavis-milter.sock} +: ${amavis_milter_user=%%AMAVISUSER%%} -amavis_milter_enable=${amavis_milter_enable:-"NO"} -amavis_milter_flags=${amavis_milter_flags:-"-D -p %%AMAVISDIR%%/amavis-milter.sock"} -amavis_milter_user=${amavis_milter_user:-"%%AMAVISUSER%%"} +command=%%PREFIX%%/sbin/amavis-milter +required_files=%%PREFIX%%/etc/amavisd.conf -load_rc_config $name -run_rc_command "$1" +run_rc_command $1 Modified: head/security/amavisd-new/files/amavis-p0fanalyzer.in ============================================================================== --- head/security/amavisd-new/files/amavis-p0fanalyzer.in Sun Oct 28 12:12:51 2012 (r306549) +++ head/security/amavisd-new/files/amavis-p0fanalyzer.in Sun Oct 28 13:57:12 2012 (r306550) @@ -1,25 +1,28 @@ #!/bin/sh # $FreeBSD$ - +# # PROVIDE: amavis_p0fanalyzer # REQUIRE: DAEMON -# BEFORE: amavisd - -amavis_p0fanalyzer_enable="${amavis_p0fanalyzer_enable-NO}" -amavis_p0fanalyzer_p0f_filter="${amavis_p0fanalyzer_p0f_filter-"tcp dst port 25"}" -amavis_p0fanalyzer_pidfile1="${amavis_p0fanalyzer_pidfile1-/var/run/p0fanalyzer1.pid}" -amavis_p0fanalyzer_pidfile2="${amavis_p0fanalyzer_pidfile2-/var/run/p0fanalyzer2.pid}" -amavis_p0fanalyzer_flags="${amavis_p0fanalyzer_flags-2345}" +# KEYWORD: shutdown . /etc/rc.subr -name="amavis_p0fanalyzer" +name=amavis_p0fanalyzer rcvar=amavis_p0fanalyzer_enable +load_rc_config $name + +: ${amavis_p0fanalyzer_enable:=no} +: ${amavis_p0fanalyzer_p0f_filter:=tcp dst port 25} +: ${amavis_p0fanalyzer_pidfile1=/var/run/p0fanalyzer1.pid} +: ${amavis_p0fanalyzer_pidfile2=/var/run/p0fanalyzer2.pid} +: ${amavis_p0fanalyzer_flags=2345} + start_cmd=p0fanalyzer_start stop_cmd=p0fanalyzer_stop -p0fanalyzer_start() { +p0fanalyzer_start() +{ echo "Starting p0f-analyzer." && \ %%DAEMON%% ${amavis_p0fanalyzer_pidfile1} \ %%PREFIX%%/bin/p0f "${amavis_p0fanalyzer_p0f_filter}" 2>&1 | \ @@ -27,10 +30,10 @@ p0fanalyzer_start() { %%PREFIX%%/sbin/p0f-analyzer.pl ${amavis_p0fanalyzer_flags} } -p0fanalyzer_stop() { +p0fanalyzer_stop() +{ /bin/kill `cat ${amavis_p0fanalyzer_pidfile2}` && rm ${amavis_p0fanalyzer_pidfile2} /bin/kill `cat ${amavis_p0fanalyzer_pidfile1}` && rm ${amavis_p0fanalyzer_pidfile1} } -load_rc_config $name -run_rc_command "$1" +run_rc_command $1 Modified: head/security/amavisd-new/files/amavisd-snmp.in ============================================================================== --- head/security/amavisd-new/files/amavisd-snmp.in Sun Oct 28 12:12:51 2012 (r306549) +++ head/security/amavisd-new/files/amavisd-snmp.in Sun Oct 28 13:57:12 2012 (r306550) @@ -2,11 +2,9 @@ # # $FreeBSD$ # - # PROVIDE: amavisd_snmp # REQUIRE: snmpd # KEYWORD: shutdown - # # Add the following lines to /etc/rc.conf to enable amavisd-snmp-subagent: # @@ -18,19 +16,19 @@ name=amavisd_snmp rcvar=amavisd_snmp_enable -command="%%PREFIX%%/sbin/amavisd-snmp-subagent" -command_interpreter="%%PERL%%" -pidfile="%%AMAVISDIR%%/amavisd-snmp.pid" +load_rc_config $name # defaults -amavisd_snmp_enable=${amavisd_snmp_enable:-"NO"} -# amavis database directory -amavisd_snmp_dbdir=${amavisd_snmp_dbdir:-"%%AMAVISDIR%%/db"} +: ${amavisd_snmp_enable:=NO} +: ${amavisd_snmp_dbdir=%%AMAVISDIR%%/db} # log_level 0..5, default 0 -amavisd_snmp_loglevel=${amavisd_snmp_loglevel:-"0"} +: ${amavisd_snmp_loglevel=0} -load_rc_config $name +command=%%PREFIX%%/sbin/amavisd-snmp-subagent +command_interpreter=%%PERL%% +pidfile=${amavisd_pidfile:-%%AMAVISDIR%%/amavisd-snmp.pid} required_dirs=${amavisd_snmp_dbdir} amavisd_snmp_flags="-D ${amavisd_snmp_dbdir} -d ${amavisd_snmp_loglevel} -P ${pidfile}" -run_rc_command "$1" + +run_rc_command $1 Modified: head/security/amavisd-new/files/amavisd.in ============================================================================== --- head/security/amavisd-new/files/amavisd.in Sun Oct 28 12:12:51 2012 (r306549) +++ head/security/amavisd-new/files/amavisd.in Sun Oct 28 13:57:12 2012 (r306550) @@ -2,16 +2,14 @@ # # $FreeBSD$ # - # PROVIDE: amavisd -# REQUIRE: LOGIN mysql postgresql +# REQUIRE: LOGIN mysql postgresql amavis_p0fanalyzer # BEFORE: mail # KEYWORD: shutdown - # # Add the following lines to /etc/rc.conf to enable amavisd: # -#amavisd_enable="YES" +# amavisd_enable="YES" # . /etc/rc.subr @@ -19,47 +17,36 @@ name=amavisd rcvar=amavisd_enable +load_rc_config $name + +: ${amavisd_enable:=NO} +pidfile=${amavisd_pidfile-"%%AMAVISDIR%%/amavisd.pid"} + command=%%PREFIX%%/sbin/amavisd command_args='> /dev/null 2>&1' required_files=%%PREFIX%%/etc/amavisd.conf -extra_commands="reload" +extra_commands=reload start_precmd=start_precmd +stop_postcmd="rm -f $pidfile" +reload_cmd="$command reload" + # possible values include: amavisd_ram="512m" # adds ram disk for amavisd defanging/decoding, speeds up large systems 10% start_precmd() { -rm -rf %%AMAVISDIR%%/tmp/* %%AMAVISDIR%%/tmp/.* 2>/dev/null || true -if [ ${amavisd_ram} ];then - echo "========================================================" - echo "WARNING: using ramdisk is reported to be unstable and" - echo "thus it is highly recommended to be turned off." - echo "========================================================" - df %%AMAVISDIR%%/tmp | grep -E '^(/dev/md|tmpfs)' > /dev/null - if [ $? -eq 1 ]; then - mdmfs -s ${amavisd_ram} -p 750 -w %%AMAVISUSER%%:%%AMAVISGROUP%% md %%AMAVISDIR%%/tmp || true - fi -fi -} -stop_postcmd=stop_postcmd - -stop_postcmd() -{ - rm -f $pidfile -} - -reload_cmd=${name}_reload - -amavisd_reload() -{ - ${command} reload + rm -rf %%AMAVISDIR%%/tmp/* %%AMAVISDIR%%/tmp/.* 2>/dev/null || true + if [ ${amavisd_ram} ];then + echo "========================================================" + echo "WARNING: using ramdisk is reported to be unstable and" + echo "thus it is highly recommended to be turned off." + echo "========================================================" + df %%AMAVISDIR%%/tmp | grep -E '^(/dev/md|tmpfs)' > /dev/null + if [ $? -eq 1 ]; then + mdmfs -s ${amavisd_ram} -p 750 -w %%AMAVISUSER%%:%%AMAVISGROUP%% md %%AMAVISDIR%%/tmp || true + fi + fi } -# set defaults - -amavisd_enable=${amavisd_enable:-"NO"} -amavisd_pidfile=${amavisd_pidfile:-"%%AMAVISDIR%%/amavisd.pid"} - -load_rc_config $name -run_rc_command "$1" +run_rc_command $1 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 14:09:51 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F149878; Sun, 28 Oct 2012 14:09:50 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D947B8FC08; Sun, 28 Oct 2012 14:09:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SE9oJ9023482; Sun, 28 Oct 2012 14:09:50 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SE9oU6023480; Sun, 28 Oct 2012 14:09:50 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201210281409.q9SE9oU6023480@svn.freebsd.org> From: Chris Rees Date: Sun, 28 Oct 2012 14:09:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306551 - head 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.14 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: Sun, 28 Oct 2012 14:09:51 -0000 Author: crees Date: Sun Oct 28 14:09:50 2012 New Revision: 306551 URL: http://svn.freebsd.org/changeset/ports/306551 Log: Correct squid user home directory PR: ports/173151 Submitted by: Thomas-Martin Seck Feature safe: yes Modified: head/UIDs Modified: head/UIDs ============================================================================== --- head/UIDs Sun Oct 28 13:57:12 2012 (r306550) +++ head/UIDs Sun Oct 28 14:09:50 2012 (r306551) @@ -42,7 +42,7 @@ squeuer:*:96:96::0:0:SQueuer Owner:/none mud:*:97:97::0:0:MUD Owner:/nonexistent:/bin/sh msql:*:98:98::0:0:mSQL-2 pseudo-user:/var/db/msqldb:/bin/sh rscsi:*:99:99::0:0:Remote SCSI:/usr/local/rscsi:/usr/local/sbin/rscsi -squid:*:100:100::0:0:squid caching-proxy pseudo user:/usr/local/squid:/usr/sbin/nologin +squid:*:100:100::0:0:squid caching-proxy pseudo user:/var/squid:/usr/sbin/nologin quagga:*:101:101::0:0:Quagga route daemon pseudo user:/usr/local/etc/quagga:/usr/sbin/nologin ganglia:*:102:102::0:0:Ganglia User:/nonexistent:/usr/sbin/nologin sgeadmin:*:103:103::0:0:Sun Grid Engine Admin:/nonexistent:/usr/sbin/nologin From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 14:20:42 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4CC372CB; Sun, 28 Oct 2012 14:20:42 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2A8F38FC0C; Sun, 28 Oct 2012 14:20:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SEKfKA025385; Sun, 28 Oct 2012 14:20:41 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SEKfxC025379; Sun, 28 Oct 2012 14:20:41 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201210281420.q9SEKfxC025379@svn.freebsd.org> From: Chris Rees Date: Sun, 28 Oct 2012 14:20:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306552 - head/sysutils/userspace-rcu 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.14 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: Sun, 28 Oct 2012 14:20:42 -0000 Author: crees Date: Sun Oct 28 14:20:41 2012 New Revision: 306552 URL: http://svn.freebsd.org/changeset/ports/306552 Log: Update to 0.7.5 Many fixes and changes! PR: ports/172644 Submitted by: Leo Vandewoestijne (maintainer) Feature safe: yes Modified: head/sysutils/userspace-rcu/Makefile head/sysutils/userspace-rcu/distinfo head/sysutils/userspace-rcu/pkg-plist Modified: head/sysutils/userspace-rcu/Makefile ============================================================================== --- head/sysutils/userspace-rcu/Makefile Sun Oct 28 14:09:50 2012 (r306551) +++ head/sysutils/userspace-rcu/Makefile Sun Oct 28 14:20:41 2012 (r306552) @@ -1,12 +1,8 @@ -# New ports collection makefile for: userspace-rcu -# Date created: 29 February 2012 -# Whom: Leo Vandewoestijne -# +# Created by: Leo Vandewoestijne # $FreeBSD$ -# PORTNAME= userspace-rcu -PORTVERSION= 0.6.4 +PORTVERSION= 0.7.5 CATEGORIES= sysutils MASTER_SITES= http://lttng.org/files/urcu/ @@ -15,19 +11,11 @@ COMMENT= A read-copy-update data synchro LICENSE= LGPL21 +PORTDOCS= ChangeLog README cds-api.txt rcu-api.txt uatomic-api.txt + USE_BZIP2= yes HAS_CONFIGURE= yes +USE_GNOME= gnomehack USE_LDCONFIG= yes -post-patch: - @${REINPLACE_CMD} \ - -e 's,^\(pkgconfigdir = \).(libdir),\1${PREFIX}/libdata,' \ - ${WRKSRC}/Makefile.in - -.include - -.if ${ARCH} == "powerpc" -BROKEN= Does not compile on powerpc -.endif - -.include +.include Modified: head/sysutils/userspace-rcu/distinfo ============================================================================== --- head/sysutils/userspace-rcu/distinfo Sun Oct 28 14:09:50 2012 (r306551) +++ head/sysutils/userspace-rcu/distinfo Sun Oct 28 14:20:41 2012 (r306552) @@ -1,2 +1,2 @@ -SHA256 (userspace-rcu-0.6.4.tar.bz2) = 2914637c60027ea52974aa7fa8ee7f2a3a0067502bbaebe01de14d6988aa8882 -SIZE (userspace-rcu-0.6.4.tar.bz2) = 325414 +SHA256 (userspace-rcu-0.7.5.tar.bz2) = 0f7d4a1e0c6c6ecc75e7de0a4b80518c6ba93c97872981e196c758db7a2404e2 +SIZE (userspace-rcu-0.7.5.tar.bz2) = 383705 Modified: head/sysutils/userspace-rcu/pkg-plist ============================================================================== --- head/sysutils/userspace-rcu/pkg-plist Sun Oct 28 14:09:50 2012 (r306551) +++ head/sysutils/userspace-rcu/pkg-plist Sun Oct 28 14:20:41 2012 (r306552) @@ -1,6 +1,7 @@ include/urcu/urcu_ref.h include/urcu/config.h include/urcu/uatomic/generic.h +include/urcu/static/bkp-wfqueue.h include/urcu/static/urcu-bp.h include/urcu/static/rculfqueue.h include/urcu/static/urcu.h @@ -21,6 +22,7 @@ include/urcu/list.h include/urcu/uatomic_arch.h include/urcu/hlist.h include/urcu/urcu-futex.h +include/urcu/urcu-flavor.h include/urcu/rcuhlist.h include/urcu/rculfstack.h include/urcu/uatomic.h @@ -36,6 +38,8 @@ include/urcu-defer.h include/urcu-pointer.h include/urcu-qsbr.h include/urcu.h +include/urcu/rculfhash.h +include/urcu/tls-compat.h lib/liburcu-bp.a lib/liburcu-bp.la lib/liburcu-bp.so @@ -60,6 +64,10 @@ lib/liburcu.a lib/liburcu.la lib/liburcu.so lib/liburcu.so.1 +lib/liburcu-common.a +lib/liburcu-common.la +lib/liburcu-common.so +lib/liburcu-common.so.1 libdata/pkgconfig/liburcu-signal.pc libdata/pkgconfig/liburcu-qsbr.pc libdata/pkgconfig/liburcu.pc From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 15:30:21 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 51C3DBC2; Sun, 28 Oct 2012 15:30:21 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 342998FC08; Sun, 28 Oct 2012 15:30:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SFULdh038136; Sun, 28 Oct 2012 15:30:21 GMT (envelope-from jase@svn.freebsd.org) Received: (from jase@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SFUKHe038132; Sun, 28 Oct 2012 15:30:20 GMT (envelope-from jase@svn.freebsd.org) Message-Id: <201210281530.q9SFUKHe038132@svn.freebsd.org> From: Jase Thew Date: Sun, 28 Oct 2012 15:30:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306553 - head/devel/swig20 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.14 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: Sun, 28 Oct 2012 15:30:21 -0000 Author: jase Date: Sun Oct 28 15:30:20 2012 New Revision: 306553 URL: http://svn.freebsd.org/changeset/ports/306553 Log: - Update to 2.0.8 [1] - Convert to optionsNG - Convert to new format Makefile header PR: ports/172959 [1] Submitted by: Jason Bacon (maintainer) Approved by: flo, culot (mentors, implicit) Feature safe: yes Modified: head/devel/swig20/Makefile (contents, props changed) head/devel/swig20/distinfo (contents, props changed) head/devel/swig20/pkg-plist (contents, props changed) Modified: head/devel/swig20/Makefile ============================================================================== --- head/devel/swig20/Makefile Sun Oct 28 14:20:41 2012 (r306552) +++ head/devel/swig20/Makefile Sun Oct 28 15:30:20 2012 (r306553) @@ -1,12 +1,8 @@ -# New ports collection makefile for: SWIG -# Date created: 19 April 1996 -# Whom: jkh -# +# Created by: jkh # $FreeBSD$ -# PORTNAME= swig -PORTVERSION= 2.0.7 +PORTVERSION= 2.0.8 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -62,14 +58,14 @@ post-configure: ${REINPLACE_CMD} -e 's#null#&|| true#' ${WRKSRC}/Makefile post-install: -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${EXAMPLESDIR}/${PORTVERSION} cd ${WRKSRC}/Examples && ${FIND} . -type d \ -exec ${INSTALL} -d ${EXAMPLESDIR}/${PORTVERSION}/{} \; cd ${WRKSRC}/Examples && ${FIND} . -type f \ -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/${PORTVERSION}/{} \; .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/${PORTVERSION} cd ${WRKSRC}/Doc && ${FIND} . -type d \ -exec ${INSTALL} -d ${DOCSDIR}/${PORTVERSION}/{} \; Modified: head/devel/swig20/distinfo ============================================================================== --- head/devel/swig20/distinfo Sun Oct 28 14:20:41 2012 (r306552) +++ head/devel/swig20/distinfo Sun Oct 28 15:30:20 2012 (r306553) @@ -1,2 +1,2 @@ -SHA256 (swig-2.0.7.tar.gz) = ac1f29be405d78b3848c8ba76add2deffc2cdc166c9a1773eda7972ba3898967 -SIZE (swig-2.0.7.tar.gz) = 5281076 +SHA256 (swig-2.0.8.tar.gz) = aeeefa20bbe1c03bacf23f0af9e7d6193e8b807b7585470615b71b1ee0c8ca4f +SIZE (swig-2.0.8.tar.gz) = 5291361 Modified: head/devel/swig20/pkg-plist ============================================================================== --- head/devel/swig20/pkg-plist Sun Oct 28 14:20:41 2012 (r306552) +++ head/devel/swig20/pkg-plist Sun Oct 28 15:30:20 2012 (r306553) @@ -55,8 +55,8 @@ bin/swig2.0 %%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Varargs.html %%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Warnings.html %%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/Windows.html -%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/android-simple.png %%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/android-class.png +%%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/android-simple.png %%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/ch2.1.png %%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/chapters %%PORTDOCS%%%%DOCSDIR%%/%%PORTVERSION%%/Manual/fixstyle.py @@ -1310,6 +1310,7 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allegrocl/Makefile.in %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allowexcept.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allprotected.i +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/allprotected_not.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/anonymous_bitfield.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/apply_signed_char.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/apply_strings.i @@ -2021,6 +2022,7 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/inherit_target_language_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/intermediary_classname_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_constants_runme.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_director_assumeoverride_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_director_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_enums_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/java_jnitypes_runme.java @@ -2048,6 +2050,7 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/memberin_extend_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/minherit2_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/multiple_inheritance_runme.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/namespace_forward_declaration_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/nested_class_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/nested_structs_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/nested_workaround_runme.java @@ -2077,22 +2080,27 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_default_class_parms_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_default_class_parms_typedef_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_methods_runme.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_namespace_forward_declaration_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_nested_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_nested_typemaps_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_partial_specialization_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_partial_specialization_typedef_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_template_parameters_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_typedef_inherit_runme.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/template_using_directive_and_declaration_forward_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/typemap_arrays_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/typemap_namespace_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/typemap_out_optimal_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/unions_runme.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/using_directive_and_declaration_forward_runme.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/using_directive_and_declaration_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/using_pointers_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/varargs_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/virtual_poly_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java/wallkw_runme.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_constants.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_director.i +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_director_assumeoverride.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_enums.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_jnitypes.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/java_lib_arrays.i @@ -2139,6 +2147,7 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_pair.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_pair_extra.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_pair_lang_object.i +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_pair_using.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_queue.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_set.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/li_std_stack.i @@ -2232,6 +2241,7 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_class.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_enum.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_extend.i +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_forward_declaration.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_nested.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_spaces.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/namespace_template.i @@ -2714,6 +2724,7 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_map_member_runme.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_map_runme.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_pair_extra_runme.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_pair_using_runme.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_set_runme.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_stream_runme.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/python/li_std_string_extra_runme.py @@ -3157,6 +3168,7 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_int_const.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_matrix.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_methods.i +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_namespace_forward_declaration.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_nested.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_nested_typemaps.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_ns.i @@ -3202,6 +3214,7 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typemaps_typedef.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_typemaps_typedef2.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_using.i +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_using_directive_and_declaration_forward.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_virtual.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/template_whitespace.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir1/hello.i @@ -3249,6 +3262,8 @@ bin/swig2.0 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using1.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using2.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_composition.i +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_directive_and_declaration.i +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_directive_and_declaration_forward.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_extend.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_inherit.i %%PORTEXAMPLES%%%%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/using_namespace.i @@ -3912,11 +3927,6 @@ bin/swig2.0 @dirrm %%DATADIR%%/%%PORTVERSION%%/allegrocl @dirrm %%DATADIR%%/%%PORTVERSION%% @dirrmtry %%DATADIR%% -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%%/Manual -%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%%/Devel -%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%% -%%PORTDOCS%%@dirrmtry %%DOCSDIR%% %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/xml %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/uffi %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/test-suite/testdir/subdir2 @@ -4225,4 +4235,9 @@ bin/swig2.0 %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/android/class %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%%/android %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/%%PORTVERSION%% -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%%/Manual +%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%%/Devel +%%PORTDOCS%%@dirrm %%DOCSDIR%%/%%PORTVERSION%% +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% +%%PORTEXAMPLES%%@exec mkdir -p %D/%%EXAMPLESDIR%%/%%PORTVERSION%%/android/simple/libs From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 15:33:10 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A0FBCBE; Sun, 28 Oct 2012 15:33:10 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 715BF8FC0A; Sun, 28 Oct 2012 15:33:10 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SFXAZu038785; Sun, 28 Oct 2012 15:33:10 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SFXAVZ038777; Sun, 28 Oct 2012 15:33:10 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210281533.q9SFXAVZ038777@svn.freebsd.org> From: Florian Smeets Date: Sun, 28 Oct 2012 15:33:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306554 - in head/net-p2p/amule-devel: . 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.14 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: Sun, 28 Oct 2012 15:33:10 -0000 Author: flo Date: Sun Oct 28 15:33:09 2012 New Revision: 306554 URL: http://svn.freebsd.org/changeset/ports/306554 Log: - Update amule-devel port to SVN revision 10792. - Trim headers. - Remove quotes from options description. - Backport code fixes from upstream up to r10795 as the project has moved from SourceForge to GoogleCode and so SVN tarballs will not be available for a while. - OptionsNGize Makefile.man - Exhume DOCS and NLS options PR: ports/172671 Submitted by: Barbara Feature safe: yes Added: head/net-p2p/amule-devel/files/patch-src__ListenSocket.cpp (contents, props changed) head/net-p2p/amule-devel/files/patch-src__PlatformSpecific.h (contents, props changed) head/net-p2p/amule-devel/files/patch-src__SHAHashSet.cpp (contents, props changed) head/net-p2p/amule-devel/files/patch-src__ThreadTasks.cpp (contents, props changed) Modified: head/net-p2p/amule-devel/Makefile (contents, props changed) head/net-p2p/amule-devel/Makefile.man (contents, props changed) head/net-p2p/amule-devel/distinfo (contents, props changed) Modified: head/net-p2p/amule-devel/Makefile ============================================================================== --- head/net-p2p/amule-devel/Makefile Sun Oct 28 15:30:20 2012 (r306553) +++ head/net-p2p/amule-devel/Makefile Sun Oct 28 15:33:09 2012 (r306554) @@ -1,12 +1,8 @@ -# New ports collection makefile for: amule-devel -# Date created: Wed Nov 05 09:30:00 UTC 2003 -# Whom: Ganael LAPLANCHE -# +# Created by: Ganael LAPLANCHE # $FreeBSD$ -# PORTNAME= amule -PORTVERSION= 10788 +PORTVERSION= 10792 CATEGORIES= net-p2p MASTER_SITES= http://amule.sourceforge.net/tarballs/ PKGNAMESUFFIX= -devel @@ -41,27 +37,27 @@ CPPFLAGS+= -I${LOCALBASE}/include CFLAGS+= ${PTHREAD_CFLAGS} LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -OPTIONS_DEFINE= ALC ALCC AMULECMD AMULEDAEMON AMULEGUI CAS DEBUG ED2K FILEVIEW \ - GEOIP MMAP MONOLITHIC OPTIMIZED_CFLAGS PLASMAMULE UPNP WEBSERVER WXCAS \ - WXUNICODE XAS -ALC_DESC= "Compile aMule Link Creator for GUI" -ALCC_DESC= "Compile aMule Link Creator for console" -AMULECMD_DESC= "Compile aMule command line client" -AMULEDAEMON_DESC= "Compile aMule daemon version" -AMULEGUI_DESC= "Compile aMule remote GUI" -CAS_DESC= "Compile aMule Statistics for console" -DEBUG_DESC= "Compile aMule with additional debugging output" -ED2K_DESC= "Compile aMule ed2k links handler" -FILEVIEW_DESC= "Compile file viewer for console (EXPERIMENTAL)" -GEOIP_DESC= "Enable GeoIP IP2Country support" -MMAP_DESC= "Enable using mapped memory" -MONOLITHIC_DESC= "Compile monolithic aMule" -PLASMAMULE_DESC= "Compile aMule plasma applet and engine" -UPNP_DESC= "Enable Universal Plug and Play support" -WEBSERVER_DESC= "Compile aMule WebServer" -WXCAS_DESC= "Compile aMule Statistics for GUI" -WXUNICODE_DESC= "Enable Unicode support" -XAS_DESC= "Install XChat2 plugin" +OPTIONS_DEFINE= ALC ALCC AMULECMD AMULEDAEMON AMULEGUI CAS DEBUG DOCS ED2K \ + FILEVIEW GEOIP MMAP MONOLITHIC NLS OPTIMIZED_CFLAGS PLASMAMULE UPNP \ + WEBSERVER WXCAS WXUNICODE XAS +ALC_DESC= Compile aMule Link Creator for GUI +ALCC_DESC= Compile aMule Link Creator for console +AMULECMD_DESC= Compile aMule command line client +AMULEDAEMON_DESC= Compile aMule daemon version +AMULEGUI_DESC= Compile aMule remote GUI +CAS_DESC= Compile aMule Statistics for console +DEBUG_DESC= Compile aMule with debugging output +ED2K_DESC= Compile aMule ed2k links handler +FILEVIEW_DESC= Compile file viewer for console (EXPERIMENTAL) +GEOIP_DESC= Enable GeoIP IP2Country support +MMAP_DESC= Enable using mapped memory +MONOLITHIC_DESC= Compile monolithic aMule +PLASMAMULE_DESC= Compile aMule plasma applet and engine +UPNP_DESC= Enable Universal Plug and Play support +WEBSERVER_DESC= Compile aMule WebServer +WXCAS_DESC= Compile aMule Statistics for GUI +WXUNICODE_DESC= Enable Unicode support +XAS_DESC= Install XChat2 plugin OPTIONS_DEFAULT=ALC ALCC AMULECMD AMULEDAEMON AMULEGUI CAS ED2K FILEVIEW \ MONOLITHIC WEBSERVER WXCAS WXUNICODE XAS @@ -128,7 +124,7 @@ PLIST_SUB+= AMULEGUI="@comment " .if ${PORT_OPTIONS:MCAS} CONFIGURE_ARGS+= --enable-cas -LIB_DEPENDS+= gd.4:${PORTSDIR}/graphics/gd +LIB_DEPENDS+= gd:${PORTSDIR}/graphics/gd PLIST_SUB+= CAS="" .else CONFIGURE_ARGS+= --disable-cas @@ -154,7 +150,7 @@ PLIST_SUB+= FILEVIEW="@comment " .if ${PORT_OPTIONS:MGEOIP} CONFIGURE_ARGS+= --enable-geoip -LIB_DEPENDS+= GeoIP.5:${PORTSDIR}/net/GeoIP +LIB_DEPENDS+= GeoIP:${PORTSDIR}/net/GeoIP .else CONFIGURE_ARGS+= --disable-geoip .endif @@ -191,7 +187,7 @@ PLIST_SUB+= PLASMAMULE="@comment " .endif .if ${PORT_OPTIONS:MUPNP} -LIB_DEPENDS+= upnp.9:${PORTSDIR}/devel/upnp +LIB_DEPENDS+= upnp:${PORTSDIR}/devel/upnp .else CONFIGURE_ARGS+= --disable-upnp .endif Modified: head/net-p2p/amule-devel/Makefile.man ============================================================================== --- head/net-p2p/amule-devel/Makefile.man Sun Oct 28 15:30:20 2012 (r306553) +++ head/net-p2p/amule-devel/Makefile.man Sun Oct 28 15:33:09 2012 (r306554) @@ -1,38 +1,38 @@ MANLANG= "" de es fr hu it ru tr zh_TW -.if !defined(WITHOUT_NLS) -. if !defined(WITHOUT_MONOLITHIC) +.if ${PORT_OPTIONS:MNLS} +. if ${PORT_OPTIONS:MMONOLITHIC} MAN1+= amule.1 . endif -. if !defined(WITHOUT_ALC) +. if ${PORT_OPTIONS:MALC} MAN1+= alc.1 . endif -. if !defined(WITHOUT_ALCC) +. if ${PORT_OPTIONS:MALCC} MAN1+= alcc.1 . endif -. if !defined(WITHOUT_AMULECMD) +. if ${PORT_OPTIONS:MAMULECMD} MAN1+= amulecmd.1 . endif -. if !defined(WITHOUT_AMULEDAEMON) +. if ${PORT_OPTIONS:MAMULEDAEMON} MAN1+= amuled.1 . endif -. if !defined(WITHOUT_AMULEGUI) +. if ${PORT_OPTIONS:MAMULEGUI} MAN1+= amulegui.1 . endif -. if !defined(WITHOUT_CAS) +. if ${PORT_OPTIONS:MCAS} MAN1+= cas.1 . endif -. if !defined(WITHOUT_ED2K) +. if ${PORT_OPTIONS:MED2K} MAN1+= ed2k.1 . endif -. if !defined(WITHOUT_WEBSERVER) +. if ${PORT_OPTIONS:MWEBSERVER} MAN1+= amuleweb.1 . endif -. if !defined(WITHOUT_WXCAS) +. if ${PORT_OPTIONS:MWXCAS} MAN1+= wxcas.1 . endif -.endif # !WITHOUT_NLS +.endif -.if !defined(WITHOUT_XAS) +.if ${PORT_OPTIONS:MXAS} MAN1+= xas.1 .endif Modified: head/net-p2p/amule-devel/distinfo ============================================================================== --- head/net-p2p/amule-devel/distinfo Sun Oct 28 15:30:20 2012 (r306553) +++ head/net-p2p/amule-devel/distinfo Sun Oct 28 15:33:09 2012 (r306554) @@ -1,2 +1,2 @@ -SHA256 (aMule-SVN-r10788.tar.bz2) = 0eb48fb0575f93d955d3686ee2b966455acfdda1ae1296e75e6739b5185e08d2 -SIZE (aMule-SVN-r10788.tar.bz2) = 4603252 +SHA256 (aMule-SVN-r10792.tar.bz2) = e9b2cd2a8c66de1df9c37c0b1ca05d961d46ec2097e19ae56a0b25b5050fece4 +SIZE (aMule-SVN-r10792.tar.bz2) = 4603469 Added: head/net-p2p/amule-devel/files/patch-src__ListenSocket.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/amule-devel/files/patch-src__ListenSocket.cpp Sun Oct 28 15:33:09 2012 (r306554) @@ -0,0 +1,23 @@ +--- src/ListenSocket.cpp.orig 2012-05-11 20:38:58.000000000 +0200 ++++ src/ListenSocket.cpp 2012-10-13 12:37:21.000000000 +0200 +@@ -88,7 +88,9 @@ + + void CListenSocket::OnAccept() + { +- m_pending = true; ++ // Backported from r10795 ++ //m_pending = true; ++ m_pending = theApp->IsRunning(); // just do nothing if we are shutting down + // If the client is still at maxconnections, + // this will allow it to go above it ... + // But if you don't, you will get a lowID on all servers. +@@ -103,7 +105,8 @@ + newclient->Safe_Delete(); + m_pending = false; + } else { +- wxASSERT(theApp->IsRunning()); ++ // Backported from r10795 ++ //wxASSERT(theApp->IsRunning()); + if (!newclient->InitNetworkData()) { + // IP or port were not returned correctly + // from the accepted address, or filtered. Added: head/net-p2p/amule-devel/files/patch-src__PlatformSpecific.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/amule-devel/files/patch-src__PlatformSpecific.h Sun Oct 28 15:33:09 2012 (r306554) @@ -0,0 +1,11 @@ +--- src/PlatformSpecific.h.orig 2011-11-20 19:08:59.000000000 +0100 ++++ src/PlatformSpecific.h 2012-10-13 12:34:46.000000000 +0200 +@@ -100,6 +100,8 @@ + { + switch (GetFilesystemType(path)) { + case fsFAT: ++ // Backported from r10794 ++ case fsNTFS: + case fsHFS: + return false; + default: Added: head/net-p2p/amule-devel/files/patch-src__SHAHashSet.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/amule-devel/files/patch-src__SHAHashSet.cpp Sun Oct 28 15:33:09 2012 (r306554) @@ -0,0 +1,12 @@ +--- src/SHAHashSet.cpp.orig 2012-05-11 20:38:43.000000000 +0200 ++++ src/SHAHashSet.cpp 2012-10-13 12:29:25.000000000 +0200 +@@ -702,7 +702,8 @@ + return false; + } + +- FreeHashSet(); ++ //Backported from r10793 ++ //FreeHashSet(); + return true; + } + Added: head/net-p2p/amule-devel/files/patch-src__ThreadTasks.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/amule-devel/files/patch-src__ThreadTasks.cpp Sun Oct 28 15:33:09 2012 (r306554) @@ -0,0 +1,12 @@ +--- src/ThreadTasks.cpp.orig 2011-11-20 19:08:59.000000000 +0100 ++++ src/ThreadTasks.cpp 2012-10-13 12:33:01.000000000 +0200 +@@ -193,6 +193,9 @@ + % m_filename ); + } + } ++ // Backported from r10793 ++ // delete hashset now to free memory ++ AICHHashSet->FreeHashSet(); + } + + if ((m_toHash == EH_AICH) && !TestDestroy()) { From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 16:03:55 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CB8982E; Sun, 28 Oct 2012 16:03:55 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 15A548FC17; Sun, 28 Oct 2012 16:03:55 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SG3s3k045472; Sun, 28 Oct 2012 16:03:54 GMT (envelope-from thierry@svn.freebsd.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SG3sYe045468; Sun, 28 Oct 2012 16:03:54 GMT (envelope-from thierry@svn.freebsd.org) Message-Id: <201210281603.q9SG3sYe045468@svn.freebsd.org> From: Thierry Thomas Date: Sun, 28 Oct 2012 16:03:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306555 - head/graphics/barbecue 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.14 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: Sun, 28 Oct 2012 16:03:55 -0000 Author: thierry Date: Sun Oct 28 16:03:54 2012 New Revision: 306555 URL: http://svn.freebsd.org/changeset/ports/306555 Log: - Update to 1.5-beta1; - Optionify; - Adding support for Tomcat6 and Tomcat7. + Release maintainership. PR: ports/173015 Submitted by: nemysis (at) gmx.ch Feature safe: yes Added: head/graphics/barbecue/pkg-plist (contents, props changed) Modified: head/graphics/barbecue/Makefile (contents, props changed) head/graphics/barbecue/distinfo (contents, props changed) Modified: head/graphics/barbecue/Makefile ============================================================================== --- head/graphics/barbecue/Makefile Sun Oct 28 15:33:09 2012 (r306554) +++ head/graphics/barbecue/Makefile Sun Oct 28 16:03:54 2012 (r306555) @@ -6,13 +6,15 @@ # PORTNAME= barbecue -PORTVERSION= 1.0.6d -PORTREVISION= 4 +DISTVERSION= 1.5-beta1 CATEGORIES= graphics print java -MASTER_SITES= SF +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}/ +DIST_SUBDIR= java -MAINTAINER= thierry@FreeBSD.org -COMMENT= A Java barcode generator +MAINTAINER= ports@FreeBSD.org +COMMENT= Java barcode generator + +LICENSE= BSD RUN_DEPENDS= ${JAVALIBDIR}/jdom.jar:${PORTSDIR}/java/jdom @@ -20,40 +22,57 @@ USE_JAVA= yes JAVA_VERSION= 1.5+ NO_BUILD= yes -JARFILES= ${PORTNAME}-${PORTVERSION}.jar -PLIST_FILES+= %%JAVAJARDIR%%/${JARFILES:S|-${PORTVERSION}||} \ - %%JAVAJARDIR%%/LICENSE.barbecue.txt - -.if defined(WITH_TOMCAT55) -RUN_DEPENDS+= ${LOCALBASE}/tomcat5.5/bin/bootstrap.jar:${PORTSDIR}/www/tomcat55 -JAKARTA_HOME= ${LOCALBASE}/tomcat5.5 -PLIST_FILES+= ${JAKARTA_HOME:S|^${LOCALBASE}/||}/webapps/${PORTNAME}.war -.endif +JARFILES= ${PORTNAME}-${DISTVERSION}.jar + +TOMCATDIR= ${PREFIX}/${TOMCATVER} +APPHOME= ${LOCALBASE}/${TOMCATVER} +WEBAPPDIR= ${TOMCATDIR}/webapps PORTDOCS= * +PORTEXAMPLES= * + +PLIST_SUB= TOMCATDIR=${TOMCATDIR:S|^${PREFIX}/||} + +OPTIONS_SINGLE= AS +OPTIONS_SINGLE_AS= TOMCAT6 TOMCAT7 +OPTIONS_DEFAULT= TOMCAT6 + +.include -pre-everything:: -.if !defined(WITH_TOMCAT55) - @${ECHO_MSG} '*********************************************************' - @${ECHO_MSG} '* To use Barbecue as a servlet, define WITH_TOMCAT55. *' - @${ECHO_MSG} '*********************************************************' +.if ${PORT_OPTIONS:MTOMCAT6} +TOMCATVER= apache-tomcat-6.0 +BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 +RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat6 +.endif + +.if ${PORT_OPTIONS:MTOMCAT7} +TOMCATVER= apache-tomcat-7.0 +BUILD_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 +RUN_DEPENDS+= ${APPHOME}/bin/bootstrap.jar:${PORTSDIR}/www/tomcat7 .endif post-extract: - ${MV} ${WRKSRC}/${JARFILES} ${WRKSRC}/${JARFILES:S|-${PORTVERSION}||} + ${MV} ${WRKSRC}/${JARFILES} ${WRKSRC}/${JARFILES:S|-${DISTVERSION}||} + ${MKDIR} ${WRKDIR}/${PORTNAME} + ${TAR} xf ${WRKSRC}/${PORTNAME}.war -C ${WRKDIR}/${PORTNAME} do-install: - ${INSTALL_DATA} ${JARFILES:S|-${PORTVERSION}||:S|^|${WRKSRC}/|} ${JAVAJARDIR} - ${INSTALL_DATA} ${WRKSRC}/LICENSE.txt ${JAVAJARDIR}/LICENSE.barbecue.txt -.if defined(WITH_TOMCAT55) - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.war ${JAKARTA_HOME}/webapps + ${INSTALL_DATA} ${JARFILES:S|-${DISTVERSION}||:S|^|${WRKSRC}/|} ${JAVAJARDIR} + +.if ${PORT_OPTIONS:MTOMCAT6} || ${PORT_OPTIONS:MTOMCAT7} + ${INSTALL} -d -o ${WWWOWN} -g ${WWWGRP} ${WEBAPPDIR}/${PORTNAME} + (cd ${WRKDIR}/${PORTNAME} && ${COPYTREE_SHARE} \* ${WEBAPPDIR}/${PORTNAME}) + ${TOUCH} ${WEBAPPDIR}/${PORTNAME}/WEB-INF/classes/net/sourceforge/barbecue/postnet/.empty .endif -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR} - @${CP} -R ${WRKSRC}/docs/* ${DOCSDIR} - @${CP} -R ${WRKSRC}/examples ${DOCSDIR} - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR} + (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* ${DOCSDIR}) +.endif + +.if ${PORT_OPTIONS:MEXAMPLES} + (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) .endif .include Modified: head/graphics/barbecue/distinfo ============================================================================== --- head/graphics/barbecue/distinfo Sun Oct 28 15:33:09 2012 (r306554) +++ head/graphics/barbecue/distinfo Sun Oct 28 16:03:54 2012 (r306555) @@ -1,2 +1,2 @@ -SHA256 (barbecue-1.0.6d.tar.gz) = 48868ecde3570b9c9c62684199d8a5d1c4954ef78f16ad9d740756bfbb2189ae -SIZE (barbecue-1.0.6d.tar.gz) = 421847 +SHA256 (java/barbecue-1.5-beta1.tar.gz) = 500421de383b2f0867fe039f22077c45850e7fe581608fb25bd3899b4a870a17 +SIZE (java/barbecue-1.5-beta1.tar.gz) = 641262 Added: head/graphics/barbecue/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/barbecue/pkg-plist Sun Oct 28 16:03:54 2012 (r306555) @@ -0,0 +1,91 @@ +%%TOMCATDIR%%/webapps/barbecue/META-INF/MANIFEST.MF +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/LICENSE.txt +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/META-INF/MANIFEST.MF +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/Barcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/BarcodeException.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/BarcodeFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/BarcodeImageHandler.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/BarcodePortlet.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/BarcodeServlet.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/BlankModule.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/CompositeModule.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/Main.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/Module.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/Modulo10.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/SeparatorModule.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/env/DefaultEnvironment.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/env/Environment.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/env/EnvironmentFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/env/HeadlessEnvironment.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/env/NonAWTEnvironment.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/formatter/BarcodeFormatter.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/formatter/FormattingException.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/formatter/SVGFormatter.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/LinearBarcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/codabar/CodabarBarcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/codabar/ModuleFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code128/Accumulator.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code128/CharBuffer.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code128/Code128Barcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code128/CodeChangeModule.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code128/ModuleFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code128/ShiftModule.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code39/Code39Barcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code39/ModuleFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/ean/BooklandBarcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/ean/EAN13Barcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/ean/EAN13ModuleFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/ean/UCCEAN128Barcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/postnet/ModuleFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/postnet/PostNetBarcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/postnet/PostNetModule.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/twoOfFive/Int2of5Barcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/twoOfFive/Int2of5ModuleFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/twoOfFive/Std2of5Barcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/twoOfFive/Std2of5ModuleFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/upc/ModuleFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/upc/UPCABarcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/AbstractOutput.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/CenteredLabelLayout.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/DefaultLabelLayout.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/EPSOutput.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/GraphicsOutput.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/LabelLayout.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/LabelLayoutFactory.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/MarginLabelLayout.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/Output.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/OutputException.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/SVGOutput.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output/SizingOutput.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/postnet/.empty +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/twod/pdf417/PDF417Barcode.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/twod/pdf417/PDF417Data.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/twod/pdf417/PDF417Module.class +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/lib/jdom.jar +%%TOMCATDIR%%/webapps/barbecue/WEB-INF/web.xml +share/java/classes/barbecue.jar +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/lib +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/twod/pdf417 +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/twod +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/postnet +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/output +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/upc +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/twoOfFive +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/postnet +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/ean +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code39 +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/code128 +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear/codabar +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/linear +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/formatter +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue/env +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge/barbecue +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net/sourceforge +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/net +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes/META-INF +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF/classes +@dirrm %%TOMCATDIR%%/webapps/barbecue/WEB-INF +@dirrm %%TOMCATDIR%%/webapps/barbecue/META-INF +@dirrm %%TOMCATDIR%%/webapps/barbecue +@dirrmtry %%TOMCATDIR%%/webapps +@dirrmtry %%TOMCATDIR%% From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 16:17:01 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C125D48C; Sun, 28 Oct 2012 16:17:01 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 99DD78FC0C; Sun, 28 Oct 2012 16:17:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SGH13N048419; Sun, 28 Oct 2012 16:17:01 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SGH1HT048414; Sun, 28 Oct 2012 16:17:01 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210281617.q9SGH1HT048414@svn.freebsd.org> From: Pawel Pekala Date: Sun, 28 Oct 2012 16:17:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306556 - in head/net-p2p/vuze: . 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.14 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: Sun, 28 Oct 2012 16:17:02 -0000 Author: pawel Date: Sun Oct 28 16:17:00 2012 New Revision: 306556 URL: http://svn.freebsd.org/changeset/ports/306556 Log: - Update to version 4.8.0.0 - Take maintainership - Remove out-of-date pkg-message - Cleanup Makefile, remove unnecessary stuff - gecko bits, dos2unix - Update homepage Feature safe: yes Deleted: head/net-p2p/vuze/pkg-message Modified: head/net-p2p/vuze/Makefile head/net-p2p/vuze/distinfo head/net-p2p/vuze/files/vuze.in head/net-p2p/vuze/pkg-descr Modified: head/net-p2p/vuze/Makefile ============================================================================== --- head/net-p2p/vuze/Makefile Sun Oct 28 16:03:54 2012 (r306555) +++ head/net-p2p/vuze/Makefile Sun Oct 28 16:17:00 2012 (r306556) @@ -2,14 +2,14 @@ # $FreeBSD$ PORTNAME= vuze -PORTVERSION= 4.7.2.0 +PORTVERSION= 4.8.0.0 CATEGORIES= net-p2p java # Moved to x-obsolete, could do with an update MASTER_SITES= SF/azureus/vuze/Vuze_${PORTVERSION:S/.//g} DISTNAME= Vuze_${PORTVERSION:S/.//g}_source -MAINTAINER= ports@FreeBSD.org -COMMENT= A BitTorrent client written in Java +MAINTAINER= pawel@FreeBSD.org +COMMENT= BitTorrent client written in Java BUILD_DEPENDS= ${JAVALIBDIR}/log4j.jar:${PORTSDIR}/devel/log4j \ ${JAVALIBDIR}/commons-cli.jar:${PORTSDIR}/java/jakarta-commons-cli \ @@ -19,19 +19,9 @@ USE_JAVA= yes JAVA_VERSION= 1.5+ JAVA_OS= native USE_ANT= yes - USE_ZIP= yes - -#USE_DOS2UNIX= \ -#org/gudy/azureus2/platform/macosx/access/jnilib/OSXAccess.java \ -#org/gudy/azureus2/platform/unix/ScriptBeforeStartup.java \ -#org/gudy/azureus2/platform/PlatformManagerFactory.java \ -#org/gudy/azureus2/ui/swt/test/PrintTransferTypes.java \ -#org/gudy/azureus2/ui/swt/views/table/impl/TableViewSWTImpl.java \ -#com/aelitis/azureus/core/networkmanager/impl/TransportHelperFilterStream.java \ -#com/aelitis/azureus/core/networkmanager/impl/TransportHelperFilterTransparent.java - NO_WRKSUBDIR= yes +INSTALLS_ICONS= yes JARFILE= ${PORTNAME}.jar @@ -41,7 +31,7 @@ SWTDEVEL_DESC= Use SWT Development port # build classpath from BUILD_DEPENDS MAKE_ENV= LANG=C -CLASSPATH_JARS= ${BUILD_DEPENDS:C/:.+$//:M*.jar} +CLASSPATH_JARS= ${BUILD_DEPENDS:C/:.+$//:M*.jar:T} PLIST_FILES= %%JAVAJARDIR%%/${JARFILE} \ bin/${PORTNAME} \ @@ -51,8 +41,7 @@ PLIST_FILES= %%JAVAJARDIR%%/${JARFILE} \ SUB_FILES= ${PORTNAME} SUB_LIST= LIBDIR="${LOCALBASE}/lib" JARFILE="${JARFILE}" \ - SWTJAR="${JAVALIBDIR}/${SWT}.jar" JAVA="${LOCALBASE}/bin/java" \ - GECKO="${GECKO:S/19//}" + SWTJAR="${JAVALIBDIR}/${SWT}.jar" JAVA="${LOCALBASE}/bin/java" DESKTOP_ENTRIES= "Vuze" \ "A full feature BitTorrent client" \ @@ -61,8 +50,6 @@ DESKTOP_ENTRIES= "Vuze" \ "Application;Network;P2P;" \ true -INSTALLS_ICONS= yes - .include .if ${PORT_OPTIONS:MSWTDEVEL} @@ -77,7 +64,7 @@ RUN_DEPENDS+= ${JAVALIBDIR}/swt.jar:${PO CLASSPATH=. .for jar in ${CLASSPATH_JARS} -CLASSPATH:=${CLASSPATH}:${jar} +CLASSPATH:=${CLASSPATH}:${JAVALIBDIR}/${jar} .endfor post-patch: @@ -92,17 +79,10 @@ do-install: ${MKDIR} ${JAVAJARDIR} ${INSTALL_DATA} ${WRKSRC}/dist/lib/${JARFILE} ${JAVAJARDIR} ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} - ${MKDIR} ${PREFIX}/share/icons/hicolor/16x16/apps - ${INSTALL_DATA} ${WRKDIR}/org/gudy/azureus2/ui/icons/a16.png \ - ${PREFIX}/share/icons/hicolor/16x16/apps/${PORTNAME}.png - ${MKDIR} ${PREFIX}/share/icons/hicolor/32x32/apps - ${INSTALL_DATA} ${WRKDIR}/org/gudy/azureus2/ui/icons/a32.png \ - ${PREFIX}/share/icons/hicolor/32x32/apps/${PORTNAME}.png - ${MKDIR} ${PREFIX}/share/icons/hicolor/64x64/apps - ${INSTALL_DATA} ${WRKDIR}/org/gudy/azureus2/ui/icons/a64.png \ - ${PREFIX}/share/icons/hicolor/64x64/apps/${PORTNAME}.png - -post-install: - @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} +.for s in 16 32 64 + ${MKDIR} ${PREFIX}/share/icons/hicolor/${s}x${s}/apps + ${INSTALL_DATA} ${WRKDIR}/org/gudy/azureus2/ui/icons/a${s}.png \ + ${PREFIX}/share/icons/hicolor/${s}x${s}/apps/${PORTNAME}.png +.endfor .include Modified: head/net-p2p/vuze/distinfo ============================================================================== --- head/net-p2p/vuze/distinfo Sun Oct 28 16:03:54 2012 (r306555) +++ head/net-p2p/vuze/distinfo Sun Oct 28 16:17:00 2012 (r306556) @@ -1,2 +1,2 @@ -SHA256 (Vuze_4720_source.zip) = 853198ee09393afc1f2ba5e8e1cb1a10e564e3c42f885d0c658d947fa94a4494 -SIZE (Vuze_4720_source.zip) = 9384895 +SHA256 (Vuze_4800_source.zip) = 889d8524d162d18c1116a6b5bea74470ab8ded4f3931f7abd3a09c87c17d5776 +SIZE (Vuze_4800_source.zip) = 9441347 Modified: head/net-p2p/vuze/files/vuze.in ============================================================================== --- head/net-p2p/vuze/files/vuze.in Sun Oct 28 16:03:54 2012 (r306555) +++ head/net-p2p/vuze/files/vuze.in Sun Oct 28 16:17:00 2012 (r306556) @@ -12,18 +12,6 @@ LIB_PATH=%%LIBDIR%% CLASS_PATH=:%%JAVAJARDIR%%/%%JARFILE%%:${ECLIPSE_SWT_JAR} -#if [ ! "${MOZILLA_FIVE_HOME}" ]; then -# if [ -d "%%LOCALBASE%%/lib/%%GECKO%%" ]; then -# MOZILLA_FIVE_HOME="%%LOCALBASE%%/lib/%%GECKO%%" -# fi -#fi - -#if [ "${MOZILLA_FIVE_HOME}" ];then -# LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${MOZILLA_FIVE_HOME}" -# export MOZILLA_FIVE_HOME LD_LIBRARY_PATH -# echo "MOZILLA_FIVE_HOME=${MOZILLA_FIVE_HOME}" -#fi - if [ "${DEBUG}" ] then echo "ECLIPSE_BASE = ${ECLIPSE_BASE}" Modified: head/net-p2p/vuze/pkg-descr ============================================================================== --- head/net-p2p/vuze/pkg-descr Sun Oct 28 16:03:54 2012 (r306555) +++ head/net-p2p/vuze/pkg-descr Sun Oct 28 16:17:00 2012 (r306556) @@ -4,4 +4,4 @@ files), start/stop seeding options and i numerous pieces of information about your torrents. Azureus now features an embedded tracker easily setup and ready to use. -WWW: http://azureus.sourceforge.net/ +WWW: http://www.vuze.com From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 16:42:50 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B86CC8CC; Sun, 28 Oct 2012 16:42:50 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A054B8FC14; Sun, 28 Oct 2012 16:42:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SGgofe053218; Sun, 28 Oct 2012 16:42:50 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SGgoLs053216; Sun, 28 Oct 2012 16:42:50 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210281642.q9SGgoLs053216@svn.freebsd.org> From: Florian Smeets Date: Sun, 28 Oct 2012 16:42:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306557 - head/net-p2p/amule-devel 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.14 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: Sun, 28 Oct 2012 16:42:50 -0000 Author: flo Date: Sun Oct 28 16:42:50 2012 New Revision: 306557 URL: http://svn.freebsd.org/changeset/ports/306557 Log: Add NLS and DOCS to OPTIONS_DEFAULT Submitted by: Barbara PR: ports/173154 Feature safe: yes Modified: head/net-p2p/amule-devel/Makefile Modified: head/net-p2p/amule-devel/Makefile ============================================================================== --- head/net-p2p/amule-devel/Makefile Sun Oct 28 16:17:00 2012 (r306556) +++ head/net-p2p/amule-devel/Makefile Sun Oct 28 16:42:50 2012 (r306557) @@ -58,8 +58,8 @@ WEBSERVER_DESC= Compile aMule WebServer WXCAS_DESC= Compile aMule Statistics for GUI WXUNICODE_DESC= Enable Unicode support XAS_DESC= Install XChat2 plugin -OPTIONS_DEFAULT=ALC ALCC AMULECMD AMULEDAEMON AMULEGUI CAS ED2K FILEVIEW \ - MONOLITHIC WEBSERVER WXCAS WXUNICODE XAS +OPTIONS_DEFAULT=ALC ALCC AMULECMD AMULEDAEMON AMULEGUI CAS DOCS ED2K \ + FILEVIEW MONOLITHIC NLS WEBSERVER WXCAS WXUNICODE XAS PORTDOCS= ABOUT-NLS Changelog EC_Protocol.txt INSTALL README TODO \ amulesig.txt license.txt From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 17:03:30 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35DAEBB1; Sun, 28 Oct 2012 17:03:30 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1A61E8FC12; Sun, 28 Oct 2012 17:03:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SH3UXi057863; Sun, 28 Oct 2012 17:03:30 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SH3T6G057839; Sun, 28 Oct 2012 17:03:29 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210281703.q9SH3T6G057839@svn.freebsd.org> From: Florian Smeets Date: Sun, 28 Oct 2012 17:03:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306558 - in head: Mk devel/nspr mail/linux-thunderbird mail/thunderbird-esr mail/thunderbird-esr-i18n mail/thunderbird-esr/files security/ca_root_nss security/nss security/vuxml www/fi... 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.14 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: Sun, 28 Oct 2012 17:03:30 -0000 Author: flo Date: Sun Oct 28 17:03:28 2012 New Revision: 306558 URL: http://svn.freebsd.org/changeset/ports/306558 Log: - Update www/firefox{,-i18n} to 16.0.2 - Update seamonkey to 2.13.2 - Update ESR ports and libxul to 10.0.10 - Update nspr to 4.9.3 - Update nss to 3.14 - with GNOMEVFS2 option build its extension, too [1] - make heap-committed and heap-dirty reporters work in about:memory - properly mark QT4 as experimental (needs love upstream) - *miscellaneous cleanups and fixups* mail/thunderbird will be updated once the tarballs are available. PR: ports/173052 [1] Security: 6b3b1b97-207c-11e2-a03f-c8600054b392 Feature safe: yes In collaboration with: Jan Beich Added: head/mail/thunderbird-esr/files/patch-bug799441 (contents, props changed) head/www/firefox-esr/files/patch-bug799441 (contents, props changed) head/www/firefox/files/patch-bug799441 (contents, props changed) head/www/firefox/files/patch-z-bug762445 (contents, props changed) head/www/seamonkey/files/patch-bug799441 (contents, props changed) head/www/seamonkey/files/patch-z-bug762445 (contents, props changed) Modified: head/Mk/bsd.gecko.mk head/devel/nspr/Makefile head/devel/nspr/distinfo (contents, props changed) head/mail/linux-thunderbird/Makefile head/mail/linux-thunderbird/distinfo head/mail/thunderbird-esr-i18n/Makefile head/mail/thunderbird-esr-i18n/distinfo head/mail/thunderbird-esr/Makefile head/mail/thunderbird-esr/distinfo head/security/ca_root_nss/Makefile head/security/ca_root_nss/distinfo (contents, props changed) head/security/nss/Makefile head/security/nss/distinfo (contents, props changed) head/security/nss/pkg-plist (contents, props changed) head/security/vuxml/vuln.xml head/www/firefox-esr-i18n/Makefile head/www/firefox-esr-i18n/distinfo head/www/firefox-esr/Makefile head/www/firefox-esr/distinfo head/www/firefox-esr/files/patch-bug713802 head/www/firefox-i18n/Makefile head/www/firefox-i18n/distinfo head/www/firefox/Makefile head/www/firefox/Makefile.options head/www/firefox/distinfo head/www/firefox/files/patch-bug713802 head/www/libxul/Makefile head/www/libxul/distinfo head/www/libxul/files/patch-bug713802 head/www/linux-firefox/Makefile head/www/linux-firefox/distinfo head/www/linux-seamonkey/Makefile head/www/linux-seamonkey/distinfo head/www/seamonkey-i18n/Makefile head/www/seamonkey-i18n/distinfo head/www/seamonkey/Makefile head/www/seamonkey/distinfo head/www/seamonkey/files/patch-bug713802 Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Sun Oct 28 16:42:50 2012 (r306557) +++ head/Mk/bsd.gecko.mk Sun Oct 28 17:03:28 2012 (r306558) @@ -659,8 +659,8 @@ MOZ_OPTIONS+= --with-system-zlib \ --disable-updater \ --disable-pedantic -.if ${CXXFLAGS:M-stdlib=libc++} -LIBS+= -lcxxrt +.if exists(/usr/lib/libcxxrt.so) +LIBS+= -Wl,--as-needed,-lcxxrt,--no-as-needed .endif .if ${PORT_OPTIONS:MQT4} @@ -723,6 +723,7 @@ MOZ_OPTIONS+= --disable-gnomeui .if ${PORT_OPTIONS:MGNOMEVFS2} USE_GNOME+= gnomevfs2 MOZ_OPTIONS+= --enable-gnomevfs +MOZ_OPTIONS:= ${MOZ_OPTIONS:C/(extensions)=(.*)/\1=\2,gnomevfs/} .else MOZ_OPTIONS+= --disable-gnomevfs .endif Modified: head/devel/nspr/Makefile ============================================================================== --- head/devel/nspr/Makefile Sun Oct 28 16:42:50 2012 (r306557) +++ head/devel/nspr/Makefile Sun Oct 28 17:03:28 2012 (r306558) @@ -6,7 +6,7 @@ # $MCom: ports-experimental/devel/nspr/Makefile,v 1.6 2008/03/12 13:06:56 ahze Exp $ PORTNAME= nspr -DISTVERSION= 4.9.2 +DISTVERSION= 4.9.3 CATEGORIES= devel MASTER_SITES= MOZILLA MASTER_SITE_SUBDIR= nspr/releases/v${PORTVERSION}/src Modified: head/devel/nspr/distinfo ============================================================================== --- head/devel/nspr/distinfo Sun Oct 28 16:42:50 2012 (r306557) +++ head/devel/nspr/distinfo Sun Oct 28 17:03:28 2012 (r306558) @@ -1,2 +1,2 @@ -SHA256 (nspr-4.9.2.tar.gz) = 570206f125fc31b8589b31d3837c190ee2a75d4f3b8faec2cbedbeacc016e82c -SIZE (nspr-4.9.2.tar.gz) = 1172193 +SHA256 (nspr-4.9.3.tar.gz) = 9ca3f30b5ae6784f9820b32939284a7f14f67230a916c5752acd8ddace72f3c5 +SIZE (nspr-4.9.3.tar.gz) = 1174317 Modified: head/mail/linux-thunderbird/Makefile ============================================================================== --- head/mail/linux-thunderbird/Makefile Sun Oct 28 16:42:50 2012 (r306557) +++ head/mail/linux-thunderbird/Makefile Sun Oct 28 17:03:28 2012 (r306558) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird -PORTVERSION= 10.0.8 +PORTVERSION= 10.0.10 CATEGORIES= mail MASTER_SITE_SUBDIR?= ${PORTNAME}/releases/${PORTVERSION}esr/linux-i686/en-US DISTNAME= ${PORTNAME}-${DISTVERSION}esr Modified: head/mail/linux-thunderbird/distinfo ============================================================================== --- head/mail/linux-thunderbird/distinfo Sun Oct 28 16:42:50 2012 (r306557) +++ head/mail/linux-thunderbird/distinfo Sun Oct 28 17:03:28 2012 (r306558) @@ -1,2 +1,2 @@ -SHA256 (thunderbird-10.0.8esr.tar.bz2) = 7cf3daaf391864a265e8a0e17c49aee61fe63b3f92eba701f5a547216968330b -SIZE (thunderbird-10.0.8esr.tar.bz2) = 18579071 +SHA256 (thunderbird-10.0.10esr.tar.bz2) = ffb2f43cd237859024e7371e5d36fe0e23698c0cef89639c7d24590083c3eacd +SIZE (thunderbird-10.0.10esr.tar.bz2) = 18579759 Modified: head/mail/thunderbird-esr-i18n/Makefile ============================================================================== --- head/mail/thunderbird-esr-i18n/Makefile Sun Oct 28 16:42:50 2012 (r306557) +++ head/mail/thunderbird-esr-i18n/Makefile Sun Oct 28 17:03:28 2012 (r306558) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird-i18n -PORTVERSION= 10.0.9 +PORTVERSION= 10.0.10 CATEGORIES= mail MASTER_SITE_SUBDIR= thunderbird/releases/${PORTVERSION}esr/linux-i686/xpi PKGNAMEPREFIX= Modified: head/mail/thunderbird-esr-i18n/distinfo ============================================================================== --- head/mail/thunderbird-esr-i18n/distinfo Sun Oct 28 16:42:50 2012 (r306557) +++ head/mail/thunderbird-esr-i18n/distinfo Sun Oct 28 17:03:28 2012 (r306558) @@ -1,84 +1,84 @@ -SHA256 (xpi/thunderbird-i18n-10.0.9/ar.xpi) = a5ffdc1f019ea8cb75e1fb6fb09312aa1d17f772ec89ab35637dcb0e5716b3f0 -SIZE (xpi/thunderbird-i18n-10.0.9/ar.xpi) = 441466 -SHA256 (xpi/thunderbird-i18n-10.0.9/br.xpi) = e96c6db5a02ef095288f1afddd200d4fa78f13031811c7cb57ea0ba43331525d -SIZE (xpi/thunderbird-i18n-10.0.9/br.xpi) = 415527 -SHA256 (xpi/thunderbird-i18n-10.0.9/ca.xpi) = 1d1a14d52c0609834e60f4121539ab8266790c6f5ae61fa3953821a169fa7ca2 -SIZE (xpi/thunderbird-i18n-10.0.9/ca.xpi) = 416069 -SHA256 (xpi/thunderbird-i18n-10.0.9/cs.xpi) = 1b168dd86f73f60baf39e5e7065cfb6bb99f18a1496357aed06b61da9b22faa8 -SIZE (xpi/thunderbird-i18n-10.0.9/cs.xpi) = 419418 -SHA256 (xpi/thunderbird-i18n-10.0.9/da.xpi) = 74f027844acf8f018c3197eb3a02f28dd257827906fb23339585b1d58ee0555b -SIZE (xpi/thunderbird-i18n-10.0.9/da.xpi) = 363376 -SHA256 (xpi/thunderbird-i18n-10.0.9/de.xpi) = 3ca85654f55c12454358a2f800e3d061ecab1100e91eb7b24b284129e1f24b2b -SIZE (xpi/thunderbird-i18n-10.0.9/de.xpi) = 418266 -SHA256 (xpi/thunderbird-i18n-10.0.9/en-GB.xpi) = 95da944a19d971e298885e75d66608ebe571eb58c03d6d99eaad8e1de986d419 -SIZE (xpi/thunderbird-i18n-10.0.9/en-GB.xpi) = 391743 -SHA256 (xpi/thunderbird-i18n-10.0.9/en-US.xpi) = 69622361d1f471a497661288d346e00dfb00f498827ac9a1dcad2877fb340efa -SIZE (xpi/thunderbird-i18n-10.0.9/en-US.xpi) = 391241 -SHA256 (xpi/thunderbird-i18n-10.0.9/es-AR.xpi) = 383a7adc82c2ebaad8b50855b840b6e8f23b7782ba55d3eca462184d6d124aa3 -SIZE (xpi/thunderbird-i18n-10.0.9/es-AR.xpi) = 410726 -SHA256 (xpi/thunderbird-i18n-10.0.9/es-ES.xpi) = 7ebbab52ffc157272a0c4ef4a0d2207800bf94bfffa071143dce1d04d65cfc8b -SIZE (xpi/thunderbird-i18n-10.0.9/es-ES.xpi) = 355142 -SHA256 (xpi/thunderbird-i18n-10.0.9/et.xpi) = 9f3aee6b22b3f1eedd9af08e9811def8b5522cdb7d6ce9c7afac9fd3e0fded9f -SIZE (xpi/thunderbird-i18n-10.0.9/et.xpi) = 410724 -SHA256 (xpi/thunderbird-i18n-10.0.9/eu.xpi) = 7fa55d579e1682a5a7e9d184046177bcbc9a286245cfe0689c670d8ea4b69762 -SIZE (xpi/thunderbird-i18n-10.0.9/eu.xpi) = 406387 -SHA256 (xpi/thunderbird-i18n-10.0.9/fi.xpi) = 242448c30dd7b5b1ed54ea0f0876e321b8c8439e06b15255f1edc6be83803897 -SIZE (xpi/thunderbird-i18n-10.0.9/fi.xpi) = 411928 -SHA256 (xpi/thunderbird-i18n-10.0.9/fr.xpi) = 45ac5bee79e3613d80d5f8f6b69116ff09ff8276822d90cc1e9e23645b525128 -SIZE (xpi/thunderbird-i18n-10.0.9/fr.xpi) = 414749 -SHA256 (xpi/thunderbird-i18n-10.0.9/fy-NL.xpi) = d947508743f15ef39ce8dfc8a27d226a3ba4832aafa5337eefdbcb8f7a626054 -SIZE (xpi/thunderbird-i18n-10.0.9/fy-NL.xpi) = 413985 -SHA256 (xpi/thunderbird-i18n-10.0.9/ga-IE.xpi) = 332bf438362083afdec6ae0a1f4e1a90fd376653147ef21c0155fd6838a88892 -SIZE (xpi/thunderbird-i18n-10.0.9/ga-IE.xpi) = 423260 -SHA256 (xpi/thunderbird-i18n-10.0.9/gd.xpi) = c4ead85db5a1b038e912cad2df2670ac82f7489d6c9659858278047c411237ae -SIZE (xpi/thunderbird-i18n-10.0.9/gd.xpi) = 425875 -SHA256 (xpi/thunderbird-i18n-10.0.9/gl.xpi) = bd9d6c939df40dbd7913243b36ea1f7bf3c43f63307da2c7d54e6c699f31a2f1 -SIZE (xpi/thunderbird-i18n-10.0.9/gl.xpi) = 409228 -SHA256 (xpi/thunderbird-i18n-10.0.9/he.xpi) = 32d90d33099118b4b8f80507c5b66435fb866760dc06f2f95b14b6c1892230da -SIZE (xpi/thunderbird-i18n-10.0.9/he.xpi) = 439206 -SHA256 (xpi/thunderbird-i18n-10.0.9/hu.xpi) = 339922979a90c24a641d026a7ff4c8180fa76a4bc617733b215fda6bc6ce2547 -SIZE (xpi/thunderbird-i18n-10.0.9/hu.xpi) = 426356 -SHA256 (xpi/thunderbird-i18n-10.0.9/is.xpi) = d1e8817ed64202987454e2b8b97ab6b22bb5f2b18405f40979cf5af5f59edadd -SIZE (xpi/thunderbird-i18n-10.0.9/is.xpi) = 412634 -SHA256 (xpi/thunderbird-i18n-10.0.9/it.xpi) = 9cdbb544c91c559c91b315a303fc9511b765bba783006fb35a3923e6be88fda1 -SIZE (xpi/thunderbird-i18n-10.0.9/it.xpi) = 347633 -SHA256 (xpi/thunderbird-i18n-10.0.9/ja.xpi) = 454f3fc67042952ba5e022349f62092a29b9137abb7b8e10caccbf76a35d4fec -SIZE (xpi/thunderbird-i18n-10.0.9/ja.xpi) = 459031 -SHA256 (xpi/thunderbird-i18n-10.0.9/ko.xpi) = 8473bb0c747baeb9896d41b0fe81967457e1d5c580267b9fd284d9cd5906882b -SIZE (xpi/thunderbird-i18n-10.0.9/ko.xpi) = 372016 -SHA256 (xpi/thunderbird-i18n-10.0.9/lt.xpi) = a6f7e8c7fc96ed753f94e14be1c91bdfe3fa691c605e7e6cdd9c23679062b178 -SIZE (xpi/thunderbird-i18n-10.0.9/lt.xpi) = 531022 -SHA256 (xpi/thunderbird-i18n-10.0.9/nb-NO.xpi) = fbd38c96cc19eb1f6d4c750073910209b08ef59d30c250bfa37d5b42b7c21e52 -SIZE (xpi/thunderbird-i18n-10.0.9/nb-NO.xpi) = 407729 -SHA256 (xpi/thunderbird-i18n-10.0.9/nl.xpi) = 8371a678689c5d9e344902653c71adf78bfc23900ec05778275dbf0fd66452fb -SIZE (xpi/thunderbird-i18n-10.0.9/nl.xpi) = 407985 -SHA256 (xpi/thunderbird-i18n-10.0.9/nn-NO.xpi) = 319d848c99fca94137c2f30130b24e3609399150cf2e21d54ae676b9fbe6b46f -SIZE (xpi/thunderbird-i18n-10.0.9/nn-NO.xpi) = 409458 -SHA256 (xpi/thunderbird-i18n-10.0.9/pl.xpi) = 0221d1ae60a310847f11e2e0c30c1979c9f4b4954eb9c76208f343ab5c7fa922 -SIZE (xpi/thunderbird-i18n-10.0.9/pl.xpi) = 393578 -SHA256 (xpi/thunderbird-i18n-10.0.9/pt-BR.xpi) = 18b47c0156a00fbf740baea486ae7dc1568c05c4df5e451e707e68f8b79cea10 -SIZE (xpi/thunderbird-i18n-10.0.9/pt-BR.xpi) = 417229 -SHA256 (xpi/thunderbird-i18n-10.0.9/pt-PT.xpi) = acc7cd3e8479f9cbe6f86a3176e433cd71c85b41239afd2c203105cd530c0d84 -SIZE (xpi/thunderbird-i18n-10.0.9/pt-PT.xpi) = 414265 -SHA256 (xpi/thunderbird-i18n-10.0.9/rm.xpi) = d4198819e7b9ef50909dd0b2c39ebd847327189d9d3b193d4cfb1a84a2053cd6 -SIZE (xpi/thunderbird-i18n-10.0.9/rm.xpi) = 414709 -SHA256 (xpi/thunderbird-i18n-10.0.9/ru.xpi) = 376eda85b143c62e5931316c62f350b0b605ab13e188908d2c93f9979304d7ba -SIZE (xpi/thunderbird-i18n-10.0.9/ru.xpi) = 411634 -SHA256 (xpi/thunderbird-i18n-10.0.9/si.xpi) = 41ef08feec4db714bc5969d8a7b5097b89c0fb2aee300369d17121a6db2c1311 -SIZE (xpi/thunderbird-i18n-10.0.9/si.xpi) = 456607 -SHA256 (xpi/thunderbird-i18n-10.0.9/sk.xpi) = 0aea8e3cedd3c2c252cf969b7875e7fb115d5c0e29911667bba0f79d3bc9ecd8 -SIZE (xpi/thunderbird-i18n-10.0.9/sk.xpi) = 425029 -SHA256 (xpi/thunderbird-i18n-10.0.9/sl.xpi) = bf29d1de47318bce646a86104e216dc890d893841a79fc09de029a216d496669 -SIZE (xpi/thunderbird-i18n-10.0.9/sl.xpi) = 410431 -SHA256 (xpi/thunderbird-i18n-10.0.9/sq.xpi) = 807254061dc33b3184e800fb66591768be02e0cfb6048a290c5aadc52c6ad1fb -SIZE (xpi/thunderbird-i18n-10.0.9/sq.xpi) = 360480 -SHA256 (xpi/thunderbird-i18n-10.0.9/sv-SE.xpi) = 03724b785374abe139e2cfc21b74fe922d4e129c3f5982d8692ba5021ceeda7f -SIZE (xpi/thunderbird-i18n-10.0.9/sv-SE.xpi) = 478280 -SHA256 (xpi/thunderbird-i18n-10.0.9/ta-LK.xpi) = 7f903befe04bbf9cf3b967a26d717df8e7835a5b3114dc2a91193224c0fc1441 -SIZE (xpi/thunderbird-i18n-10.0.9/ta-LK.xpi) = 475718 -SHA256 (xpi/thunderbird-i18n-10.0.9/tr.xpi) = 75c5991966814eb28d07e614b08f1a7f4c3c9b9538382f7b06a2b80cdeb5a81d -SIZE (xpi/thunderbird-i18n-10.0.9/tr.xpi) = 418209 -SHA256 (xpi/thunderbird-i18n-10.0.9/uk.xpi) = 598eb454a39c676f7e83d11931cb8be5d1778bbc34d1a2bfc1f66193c6e30cff -SIZE (xpi/thunderbird-i18n-10.0.9/uk.xpi) = 463925 -SHA256 (xpi/thunderbird-i18n-10.0.9/zh-TW.xpi) = 3ea413d9a679a527b93c090dc6590e0ec66bffaa9b5fca0b0da45c1e0b6ffebd -SIZE (xpi/thunderbird-i18n-10.0.9/zh-TW.xpi) = 431827 +SHA256 (xpi/thunderbird-i18n-10.0.10/ar.xpi) = d24b8aab225e10ae8c8bd10561b2c04a7b20c8df84be7ccc8a27d2ab4cca52ff +SIZE (xpi/thunderbird-i18n-10.0.10/ar.xpi) = 441467 +SHA256 (xpi/thunderbird-i18n-10.0.10/br.xpi) = c95246960798870115e262f5fac6ff53281d6888de64b7ab1cc2471e31c77111 +SIZE (xpi/thunderbird-i18n-10.0.10/br.xpi) = 415527 +SHA256 (xpi/thunderbird-i18n-10.0.10/ca.xpi) = bd187775f76a6461c51e6d0cdeb33913c5abdce9c2091a36395fe89265292068 +SIZE (xpi/thunderbird-i18n-10.0.10/ca.xpi) = 416070 +SHA256 (xpi/thunderbird-i18n-10.0.10/cs.xpi) = 6146b56efba72264b2d37d8692d266e857190fbc1eb7258b2551d42f34f32953 +SIZE (xpi/thunderbird-i18n-10.0.10/cs.xpi) = 419419 +SHA256 (xpi/thunderbird-i18n-10.0.10/da.xpi) = 4ad2100be25d2e077ea5e4eb9689668a00b126ba9383181556d4641ec3ca3ae3 +SIZE (xpi/thunderbird-i18n-10.0.10/da.xpi) = 363376 +SHA256 (xpi/thunderbird-i18n-10.0.10/de.xpi) = 49d1e44d3101f30436d2155df48d6a63af76092ef839caac0be723bf23dd48c9 +SIZE (xpi/thunderbird-i18n-10.0.10/de.xpi) = 418266 +SHA256 (xpi/thunderbird-i18n-10.0.10/en-GB.xpi) = a7809eeeb5033d0aaae0f52628133d3a2db13956cc4c5393039bdbebf6e79eb9 +SIZE (xpi/thunderbird-i18n-10.0.10/en-GB.xpi) = 391743 +SHA256 (xpi/thunderbird-i18n-10.0.10/en-US.xpi) = 8f7b784dd55e83489cc1f67ca4c8a1fe4408ece1be373c856404f2378bc02d22 +SIZE (xpi/thunderbird-i18n-10.0.10/en-US.xpi) = 391241 +SHA256 (xpi/thunderbird-i18n-10.0.10/es-AR.xpi) = e2e1b1e40c56f2f3931ac8be3cf35fbfd58a538bc849ef00aa076707ea7b22de +SIZE (xpi/thunderbird-i18n-10.0.10/es-AR.xpi) = 410727 +SHA256 (xpi/thunderbird-i18n-10.0.10/es-ES.xpi) = 624e8cb6639a2034a7636e90752077b3d4b5bded8309c2b68430cbba671a8cf0 +SIZE (xpi/thunderbird-i18n-10.0.10/es-ES.xpi) = 355143 +SHA256 (xpi/thunderbird-i18n-10.0.10/et.xpi) = 00593799f568c436aa58dcb96d1b04e7c095f5df00eff27fc7624ead22136ed7 +SIZE (xpi/thunderbird-i18n-10.0.10/et.xpi) = 410725 +SHA256 (xpi/thunderbird-i18n-10.0.10/eu.xpi) = 834ddeb9b370664d0b2e2b95ead5d6065a2b6aa6ee9976928e473f6b3f0aa3e0 +SIZE (xpi/thunderbird-i18n-10.0.10/eu.xpi) = 406387 +SHA256 (xpi/thunderbird-i18n-10.0.10/fi.xpi) = 01522309544d8ad1d844b3ec9aa70d26507f78ee17857a929b05f44dd4ebc3bf +SIZE (xpi/thunderbird-i18n-10.0.10/fi.xpi) = 411928 +SHA256 (xpi/thunderbird-i18n-10.0.10/fr.xpi) = c83f57cf0373f548798ceb72d2a6a3d3e3c1cfb9d407c8ca7b3e5d5ed1324d84 +SIZE (xpi/thunderbird-i18n-10.0.10/fr.xpi) = 414750 +SHA256 (xpi/thunderbird-i18n-10.0.10/fy-NL.xpi) = bdc580f1154f612ec4bbdc1903cfb13be73643f46b6b93c97300438e69ee3d71 +SIZE (xpi/thunderbird-i18n-10.0.10/fy-NL.xpi) = 413985 +SHA256 (xpi/thunderbird-i18n-10.0.10/ga-IE.xpi) = 3f19d5d8c4404629740354703c08118463c7fe44cd0cbee2a8c04663e4d5bd45 +SIZE (xpi/thunderbird-i18n-10.0.10/ga-IE.xpi) = 423261 +SHA256 (xpi/thunderbird-i18n-10.0.10/gd.xpi) = 52b9748b8125cfc46e701cd2c82def679b62dbeec4fd323261e2c748cf2319ba +SIZE (xpi/thunderbird-i18n-10.0.10/gd.xpi) = 425876 +SHA256 (xpi/thunderbird-i18n-10.0.10/gl.xpi) = b2056fd967f1d1c09729b99594fd2f564ff94d894c103dd6bbcf8bfa9b891ada +SIZE (xpi/thunderbird-i18n-10.0.10/gl.xpi) = 409229 +SHA256 (xpi/thunderbird-i18n-10.0.10/he.xpi) = b28065516354553aff94cc109775c9d888cdda9f7c2409b140211508090bcb1e +SIZE (xpi/thunderbird-i18n-10.0.10/he.xpi) = 439207 +SHA256 (xpi/thunderbird-i18n-10.0.10/hu.xpi) = 77fe6f6afae32c9e9fa80cc32ce925416bb68fe093f8347576bf6fa39f50b16c +SIZE (xpi/thunderbird-i18n-10.0.10/hu.xpi) = 426357 +SHA256 (xpi/thunderbird-i18n-10.0.10/is.xpi) = cf6a0ab2b6afc19bfce52f4504123d0328f893f3401cd3f07f50ba76c8f8a59b +SIZE (xpi/thunderbird-i18n-10.0.10/is.xpi) = 412634 +SHA256 (xpi/thunderbird-i18n-10.0.10/it.xpi) = 7ffab5cf5f6784e1a96c49504b45be990fa895808a27407b09b40e001ccc8e0c +SIZE (xpi/thunderbird-i18n-10.0.10/it.xpi) = 347634 +SHA256 (xpi/thunderbird-i18n-10.0.10/ja.xpi) = 40ff77a351ac33e905e095c350010969d890de4087f0a35291fa4a4dadbc6f86 +SIZE (xpi/thunderbird-i18n-10.0.10/ja.xpi) = 459031 +SHA256 (xpi/thunderbird-i18n-10.0.10/ko.xpi) = 97ef6562bf6f3c953c1e73ae15d225a30499d335d0bb61a28ce96b22e1ff868b +SIZE (xpi/thunderbird-i18n-10.0.10/ko.xpi) = 372016 +SHA256 (xpi/thunderbird-i18n-10.0.10/lt.xpi) = 16852e1f6b1072a902f62d8aea683318ae8ac17a740a3625c0f30ce168a61ecb +SIZE (xpi/thunderbird-i18n-10.0.10/lt.xpi) = 531023 +SHA256 (xpi/thunderbird-i18n-10.0.10/nb-NO.xpi) = 3eb29f36dde5576daa17bc5b29830df4e89fe3479faa6c56bed9e24d6f8a8832 +SIZE (xpi/thunderbird-i18n-10.0.10/nb-NO.xpi) = 407729 +SHA256 (xpi/thunderbird-i18n-10.0.10/nl.xpi) = 51bfe9abef4dc9d29f075df0b56b3df0628d86db9f899dd8e73eb60f0b2f2484 +SIZE (xpi/thunderbird-i18n-10.0.10/nl.xpi) = 407985 +SHA256 (xpi/thunderbird-i18n-10.0.10/nn-NO.xpi) = 6d72afd9631c469300984695ca76efa218e8cc5a05e15efa5d349cec99e34931 +SIZE (xpi/thunderbird-i18n-10.0.10/nn-NO.xpi) = 409459 +SHA256 (xpi/thunderbird-i18n-10.0.10/pl.xpi) = 36357d01b56d1cab90db70949330edf327785b88f0f7a0a6a028b8ca0099fc2d +SIZE (xpi/thunderbird-i18n-10.0.10/pl.xpi) = 393579 +SHA256 (xpi/thunderbird-i18n-10.0.10/pt-BR.xpi) = e8b26d046d1ef6704d65c4e04444569ec024f6045a6093bd00d5f6765dfaeb8f +SIZE (xpi/thunderbird-i18n-10.0.10/pt-BR.xpi) = 417230 +SHA256 (xpi/thunderbird-i18n-10.0.10/pt-PT.xpi) = d54050232029179028cf3d4489fdc8a0565354e89f90f1bd333bd98e9c2467fa +SIZE (xpi/thunderbird-i18n-10.0.10/pt-PT.xpi) = 414266 +SHA256 (xpi/thunderbird-i18n-10.0.10/rm.xpi) = 542543f7816d0a9a60e1a9b77cebb04f887d4976b55fa445c1884f2fa4f2617f +SIZE (xpi/thunderbird-i18n-10.0.10/rm.xpi) = 414710 +SHA256 (xpi/thunderbird-i18n-10.0.10/ru.xpi) = 6c07f6afa652a2b6759ddfa9ee02ddca03269178da546174a4bd20111157603c +SIZE (xpi/thunderbird-i18n-10.0.10/ru.xpi) = 411635 +SHA256 (xpi/thunderbird-i18n-10.0.10/si.xpi) = ef220e4b4aa97aa34ad952b4f7c0617c1030b0d7d30f344f18040010da3982ff +SIZE (xpi/thunderbird-i18n-10.0.10/si.xpi) = 456608 +SHA256 (xpi/thunderbird-i18n-10.0.10/sk.xpi) = bb312e4e685abfed7d139d97742aa4dc2b09c51640f3b30b3cf41a783e224d1f +SIZE (xpi/thunderbird-i18n-10.0.10/sk.xpi) = 425030 +SHA256 (xpi/thunderbird-i18n-10.0.10/sl.xpi) = 111a027841465e04787467cea984e7f5428fcb76cc086197bc0876572b415717 +SIZE (xpi/thunderbird-i18n-10.0.10/sl.xpi) = 410432 +SHA256 (xpi/thunderbird-i18n-10.0.10/sq.xpi) = 7fd921d4adebb6702517054cb6724c1fc667ffcc8ff754ed82f86ff349337af8 +SIZE (xpi/thunderbird-i18n-10.0.10/sq.xpi) = 360481 +SHA256 (xpi/thunderbird-i18n-10.0.10/sv-SE.xpi) = 786723beeb96b3667ce0631b1ccca02442bd5399d3c0491bced9065ec28f6724 +SIZE (xpi/thunderbird-i18n-10.0.10/sv-SE.xpi) = 478282 +SHA256 (xpi/thunderbird-i18n-10.0.10/ta-LK.xpi) = 622234d5de08414a90018aa1230b4a97eaf0717d0d9a920898abd973ae1211b5 +SIZE (xpi/thunderbird-i18n-10.0.10/ta-LK.xpi) = 475719 +SHA256 (xpi/thunderbird-i18n-10.0.10/tr.xpi) = 01ea999a0a3f5201aef33991bd66d1413d510d6d5ed5ebeaf911da146cf840dc +SIZE (xpi/thunderbird-i18n-10.0.10/tr.xpi) = 418210 +SHA256 (xpi/thunderbird-i18n-10.0.10/uk.xpi) = 0d8af1172f77eb9979999a3bea2b97b8403a1e98e15739f0119ae4a550528fb7 +SIZE (xpi/thunderbird-i18n-10.0.10/uk.xpi) = 463925 +SHA256 (xpi/thunderbird-i18n-10.0.10/zh-TW.xpi) = 2049f19a3d36dc3be0ad774fe0cf2e1a49122b3d773f38222239641705fdc90b +SIZE (xpi/thunderbird-i18n-10.0.10/zh-TW.xpi) = 431828 Modified: head/mail/thunderbird-esr/Makefile ============================================================================== --- head/mail/thunderbird-esr/Makefile Sun Oct 28 16:42:50 2012 (r306557) +++ head/mail/thunderbird-esr/Makefile Sun Oct 28 17:03:28 2012 (r306558) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird -DISTVERSION= 10.0.9 +DISTVERSION= 10.0.10 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${DISTVERSION}esr/source @@ -76,10 +76,6 @@ CFLAGS+= -mminimal-toc .endif .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - .if !empty(CXX:M*clang++*) CFLAGS+= -Wno-return-type-c-linkage .endif Modified: head/mail/thunderbird-esr/distinfo ============================================================================== --- head/mail/thunderbird-esr/distinfo Sun Oct 28 16:42:50 2012 (r306557) +++ head/mail/thunderbird-esr/distinfo Sun Oct 28 17:03:28 2012 (r306558) @@ -1,4 +1,4 @@ -SHA256 (thunderbird-10.0.9esr.source.tar.bz2) = d20687aa99736d6ad36258a57061030e0ddc2003fb6368ffab3ccbe247c7bfb9 -SIZE (thunderbird-10.0.9esr.source.tar.bz2) = 97616343 +SHA256 (thunderbird-10.0.10esr.source.tar.bz2) = afe9ccb5a893d3bac23acc942e439601102dbb7f804ce8a7c2c252672dc7fe84 +SIZE (thunderbird-10.0.10esr.source.tar.bz2) = 97607731 SHA256 (enigmail-1.4.5.tar.gz) = fa59491fba21de9414a003933349074a8ec1833a1d64cac9f0a9f7020ed6c020 SIZE (enigmail-1.4.5.tar.gz) = 1269207 Added: head/mail/thunderbird-esr/files/patch-bug799441 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird-esr/files/patch-bug799441 Sun Oct 28 17:03:28 2012 (r306558) @@ -0,0 +1,116 @@ +commit b9accdd +Author: Mike Hommey +Date: Thu Oct 18 14:47:10 2012 +0200 + + Bug 799441 - Build GIO module in libxul. r=ted +--- + configure.in | 6 ++++++ + extensions/gio/Makefile.in | 14 +++----------- + toolkit/library/Makefile.in | 5 +++++ + toolkit/library/nsStaticXULComponents.cpp | 7 +++++++ + toolkit/toolkit-tiers.mk | 4 ++++ + 5 files changed, 25 insertions(+), 11 deletions(-) + +diff --git configure.in configure.in +index a9fb5f1..37e6db8 100644 +--- mozilla/configure.in ++++ mozilla/configure.in +@@ -6086,6 +6086,12 @@ if test -n "$LIBXUL_SDK_DIR" -a `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; th + MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'` + fi + ++if test `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; then ++ MOZ_GIO_COMPONENT=1 ++ MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'` ++fi ++AC_SUBST(MOZ_GIO_COMPONENT) ++ + if test -z "$MOZ_JSDEBUGGER" -a `echo "$MOZ_EXTENSIONS" | grep -c venkman` -ne 0; then + AC_MSG_WARN([Cannot build venkman without JavaScript debug library. Removing venkman from MOZ_EXTENSIONS.]) + MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|venkman||'` +diff --git extensions/gio/Makefile.in extensions/gio/Makefile.in +index ccf2846..79112a8 100644 +--- mozilla/extensions/gio/Makefile.in ++++ mozilla/extensions/gio/Makefile.in +@@ -14,6 +14,9 @@ MODULE = nkgio + LIBRARY_NAME = nkgio + SHORT_LIBNAME = nkgio + IS_COMPONENT = 1 ++EXPORT_LIBRARY = 1 ++MODULE_NAME = nsGIOModule ++LIBXUL_LIBRARY = 1 + + CPPSRCS = \ + nsGIOProtocolHandler.cpp \ +@@ -21,15 +24,4 @@ CPPSRCS = \ + + LOCAL_INCLUDES = $(MOZ_GIO_CFLAGS) + +-EXTRA_DSO_LDOPTS = \ +- $(XPCOM_GLUE_LDOPTS) \ +- $(NSPR_LIBS) \ +- $(MOZ_GIO_LIBS) \ +- $(NULL) +- +-# make sure this component is never statically linked into the main +-# application. this is necessary since we don't want to force users +-# to install gio in order to use the rest of mozilla ;-) +-FORCE_SHARED_LIB= 1 +- + include $(topsrcdir)/config/rules.mk +diff --git toolkit/library/Makefile.in toolkit/library/Makefile.in +index 7f9046e..6499758 100644 +--- mozilla/toolkit/library/libxul-config.mk ++++ mozilla/toolkit/library/libxul-config.mk +@@ -333,6 +333,11 @@ COMPONENT_LIBS += gkdebug + endif + endif + ++ifdef MOZ_GIO_COMPONENT ++DEFINES += -DMOZ_GIO_COMPONENT ++COMPONENT_LIBS += nkgio ++endif ++ + ifdef MOZ_APP_COMPONENT_LIBS + COMPONENT_LIBS += $(MOZ_APP_COMPONENT_LIBS) + endif +diff --git toolkit/library/nsStaticXULComponents.cpp toolkit/library/nsStaticXULComponents.cpp +index e1d90f2..85b21a2 100644 +--- mozilla/toolkit/library/nsStaticXULComponents.cpp ++++ mozilla/toolkit/library/nsStaticXULComponents.cpp +@@ -164,6 +164,12 @@ + #define PROFILER_MODULE + #endif + ++#if defined(MOZ_GIO_COMPONENT) ++#define GIO_MODULE MODULE(nsGIOModule) ++#else ++#define GIO_MODULE ++#endif ++ + #define XUL_MODULES \ + MODULE(nsUConvModule) \ + MODULE(nsI18nModule) \ +@@ -220,6 +226,7 @@ + MODULE(nsTelemetryModule) \ + MODULE(jsinspector) \ + MODULE(jsdebugger) \ ++ GIO_MODULE \ + /* end of list */ + + #define MODULE(_name) \ +diff --git toolkit/toolkit-tiers.mk toolkit/toolkit-tiers.mk +index e87d7af..4b16d23 100644 +--- mozilla/toolkit/toolkit-tiers.mk ++++ mozilla/toolkit/toolkit-tiers.mk +@@ -252,6 +252,10 @@ tier_platform_dirs += js/ductwork/debugger + + tier_platform_dirs += other-licenses/snappy + ++ifdef MOZ_GIO_COMPONENT ++tier_platform_dirs += extensions/gio ++endif ++ + ifdef APP_LIBXUL_STATICDIRS + # Applications can cheat and ask for code to be + # built before libxul so libxul can be linked against it. Modified: head/security/ca_root_nss/Makefile ============================================================================== --- head/security/ca_root_nss/Makefile Sun Oct 28 16:42:50 2012 (r306557) +++ head/security/ca_root_nss/Makefile Sun Oct 28 17:03:28 2012 (r306558) @@ -29,7 +29,7 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.13.6 +VERSION_NSS= 3.14 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/mozilla/security/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: head/security/ca_root_nss/distinfo ============================================================================== --- head/security/ca_root_nss/distinfo Sun Oct 28 16:42:50 2012 (r306557) +++ head/security/ca_root_nss/distinfo Sun Oct 28 17:03:28 2012 (r306558) @@ -1,2 +1,2 @@ -SHA256 (nss-3.13.6.tar.gz) = f7e90727e0ecc1c29de10da39a79bc9c53b814ccfbf40720e053b29c683d43a0 -SIZE (nss-3.13.6.tar.gz) = 6109538 +SHA256 (nss-3.14.tar.gz) = b01868959d50263265aacc5a09f9a9eefbbde5f35604c2977f9714696f1d3e2b +SIZE (nss-3.14.tar.gz) = 6068755 Modified: head/security/nss/Makefile ============================================================================== --- head/security/nss/Makefile Sun Oct 28 16:42:50 2012 (r306557) +++ head/security/nss/Makefile Sun Oct 28 17:03:28 2012 (r306558) @@ -6,8 +6,7 @@ # $MCom ports-experimental/security/nss/Makefile,v 1.4 2008/02/23 15:47:28 ahze Exp $ PORTNAME= nss -PORTVERSION= ${_MAJOR}.${_MINOR}.${_PATCH} -PORTREVISION= 1 +PORTVERSION= ${_MAJOR}.${_MINOR} #.${_PATCH} CATEGORIES= security MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= security/nss/releases/NSS_${PORTVERSION:S/./_/g}_RTM/src @@ -22,8 +21,8 @@ LIB_DEPENDS= nspr4.1:${PORTSDIR}/devel/n sqlite3.8:${PORTSDIR}/databases/sqlite3 _MAJOR= 3 -_MINOR= 13 -_PATCH= 6 +_MINOR= 14 +_PATCH= 0 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/mozilla/security/nss Modified: head/security/nss/distinfo ============================================================================== --- head/security/nss/distinfo Sun Oct 28 16:42:50 2012 (r306557) +++ head/security/nss/distinfo Sun Oct 28 17:03:28 2012 (r306558) @@ -1,2 +1,2 @@ -SHA256 (nss-3.13.6.tar.gz) = f7e90727e0ecc1c29de10da39a79bc9c53b814ccfbf40720e053b29c683d43a0 -SIZE (nss-3.13.6.tar.gz) = 6109538 +SHA256 (nss-3.14.tar.gz) = b01868959d50263265aacc5a09f9a9eefbbde5f35604c2977f9714696f1d3e2b +SIZE (nss-3.14.tar.gz) = 6068755 Modified: head/security/nss/pkg-plist ============================================================================== --- head/security/nss/pkg-plist Sun Oct 28 16:42:50 2012 (r306557) +++ head/security/nss/pkg-plist Sun Oct 28 17:03:28 2012 (r306558) @@ -114,6 +114,9 @@ include/nss/nss/ssl.h include/nss/nss/sslerr.h include/nss/nss/sslproto.h include/nss/nss/sslt.h +include/nss/nss/utilmodt.h +include/nss/nss/utilpars.h +include/nss/nss/utilparst.h include/nss/nss/utilrename.h lib/nss/libcrmf.a lib/nss/libfreebl3.so Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Oct 28 16:42:50 2012 (r306557) +++ head/security/vuxml/vuln.xml Sun Oct 28 17:03:28 2012 (r306558) @@ -51,6 +51,61 @@ Note: Please add new entries to the beg --> + + mozilla -- multiple vulnerabilities + + + firefox + 11.0,116.0.2,1 + 10.0.10,1 + + + linux-firefox + 10.0.10,1 + + + linux-seamonkey + 2.13.2 + + + linux-thunderbird + 10.0.10 + + + seamonkey + 2.13.2 + + + thunderbird + 11.016.0.2 + 10.0.10 + + + libxul + 1.9.2.*10.0.10 + + + + +

The Mozilla Project reports:

+
+

MFSA 2012-90 Fixes for Location object issues

+
+ +
+ + CVE-2012-4194 + CVE-2012-4195 + CVE-2012-4196 + http://www.mozilla.org/security/known-vulnerabilities/ + http://www.mozilla.org/security/announce/2012/mfsa2012-90.html + + + 2012-10-26 + 2012-10-27 + +
+ Exim -- remote code execution Modified: head/www/firefox-esr-i18n/Makefile ============================================================================== --- head/www/firefox-esr-i18n/Makefile Sun Oct 28 16:42:50 2012 (r306557) +++ head/www/firefox-esr-i18n/Makefile Sun Oct 28 17:03:28 2012 (r306558) @@ -6,7 +6,7 @@ # PORTNAME= firefox-i18n -PORTVERSION= 10.0.9 +PORTVERSION= 10.0.10 CATEGORIES= www MASTER_SITE_SUBDIR= firefox/releases/${PORTVERSION}esr/linux-i686/xpi PKGNAMEPREFIX= Modified: head/www/firefox-esr-i18n/distinfo ============================================================================== --- head/www/firefox-esr-i18n/distinfo Sun Oct 28 16:42:50 2012 (r306557) +++ head/www/firefox-esr-i18n/distinfo Sun Oct 28 17:03:28 2012 (r306558) @@ -1,164 +1,164 @@ -SHA256 (xpi/firefox-i18n-10.0.9/af.xpi) = 064acfd1c3332c4b3896b884ff635faadae851d174b02a0a2dfb12596a2bacce -SIZE (xpi/firefox-i18n-10.0.9/af.xpi) = 238744 -SHA256 (xpi/firefox-i18n-10.0.9/ak.xpi) = ed354a2e2a0047abfc2d38d560c658af65e43f1f5b248e42d3af31ec8216e8e2 -SIZE (xpi/firefox-i18n-10.0.9/ak.xpi) = 240572 -SHA256 (xpi/firefox-i18n-10.0.9/ar.xpi) = 06de0f96f740294e2bb1312796e89d68a8d267b1b93d43cc0c17760319496b3c -SIZE (xpi/firefox-i18n-10.0.9/ar.xpi) = 263703 -SHA256 (xpi/firefox-i18n-10.0.9/ast.xpi) = b119bb7dff1d8be7cb4e4b7326c5e7addd84af1627e9df967199450d153b9a38 -SIZE (xpi/firefox-i18n-10.0.9/ast.xpi) = 237975 -SHA256 (xpi/firefox-i18n-10.0.9/be.xpi) = 3d6e8655598d75cf870ddd5c7a7338c28cccd7b74793781c5d699e9d9de7337c -SIZE (xpi/firefox-i18n-10.0.9/be.xpi) = 245757 -SHA256 (xpi/firefox-i18n-10.0.9/bg.xpi) = 2f80a8c025a5208feb6fc0d45df29d0cc8f004c9945565e9b5af57526148e441 -SIZE (xpi/firefox-i18n-10.0.9/bg.xpi) = 276757 -SHA256 (xpi/firefox-i18n-10.0.9/bn-BD.xpi) = a43f0426b4d51db75e88d19d65838a032a7c119c6503bf7402c9360dfe68a781 -SIZE (xpi/firefox-i18n-10.0.9/bn-BD.xpi) = 288293 -SHA256 (xpi/firefox-i18n-10.0.9/bn-IN.xpi) = 2a43b93f2d3151f955ba999df5051382b17bd5b17c35037c1528399dd88b3ec1 -SIZE (xpi/firefox-i18n-10.0.9/bn-IN.xpi) = 319304 -SHA256 (xpi/firefox-i18n-10.0.9/br.xpi) = 881688b54ed45ec4dfabc758e93090d792a05e3b8a1c9e927062613b14181a67 -SIZE (xpi/firefox-i18n-10.0.9/br.xpi) = 247652 -SHA256 (xpi/firefox-i18n-10.0.9/bs.xpi) = 6149f9da2f3b04d3bb486397656e2ddbdfd6c9e5d58008ed3ae22b66de0193a3 -SIZE (xpi/firefox-i18n-10.0.9/bs.xpi) = 245309 -SHA256 (xpi/firefox-i18n-10.0.9/ca.xpi) = 021c1cd746780aa28bbad8ca1a17a7407110d1cd1807cefdb8b8f73007e3b912 -SIZE (xpi/firefox-i18n-10.0.9/ca.xpi) = 248222 -SHA256 (xpi/firefox-i18n-10.0.9/cs.xpi) = d734e530e33072c72a611e385f57f30f8da6660fbbbc04932704d3d9dfe293a8 -SIZE (xpi/firefox-i18n-10.0.9/cs.xpi) = 248770 -SHA256 (xpi/firefox-i18n-10.0.9/cy.xpi) = febedde3c405998e4eba5ffdb9f0b5f3bc35392b22827cab2ad48e8233a90fe4 -SIZE (xpi/firefox-i18n-10.0.9/cy.xpi) = 244198 -SHA256 (xpi/firefox-i18n-10.0.9/da.xpi) = 0d43680130cf55606dcc3ccf8e0ebd5f06eaf038ba74f50b91ee06424fd60651 -SIZE (xpi/firefox-i18n-10.0.9/da.xpi) = 240328 -SHA256 (xpi/firefox-i18n-10.0.9/de.xpi) = 669aa2da43edbbda804fbfb7562cb18c85de977667a806abcc2eedd8aa381299 -SIZE (xpi/firefox-i18n-10.0.9/de.xpi) = 249298 -SHA256 (xpi/firefox-i18n-10.0.9/el.xpi) = 948f5e8094c8fbeac772bce7110fa6f62779636fd611becd8896f54203944b0f -SIZE (xpi/firefox-i18n-10.0.9/el.xpi) = 264380 -SHA256 (xpi/firefox-i18n-10.0.9/en-GB.xpi) = a6d75cfc066720f4003667dcf6aa877852cd25d46a16515345f1b22cec38a63d -SIZE (xpi/firefox-i18n-10.0.9/en-GB.xpi) = 231194 -SHA256 (xpi/firefox-i18n-10.0.9/en-US.xpi) = 41bc7a4c0077240243a7b8b2e8cff135e9754338f90a964078b0608569f8a8ae -SIZE (xpi/firefox-i18n-10.0.9/en-US.xpi) = 230681 -SHA256 (xpi/firefox-i18n-10.0.9/en-ZA.xpi) = 0e142c79de188410e2885d5f12f85bdc304a2e50a8a5941e9a3f1a8448e1c100 -SIZE (xpi/firefox-i18n-10.0.9/en-ZA.xpi) = 233920 -SHA256 (xpi/firefox-i18n-10.0.9/eo.xpi) = 6e4f46b4bd0c090288989423c6d77eb3f7e957c99e80b9566858f8f97635971c -SIZE (xpi/firefox-i18n-10.0.9/eo.xpi) = 240903 -SHA256 (xpi/firefox-i18n-10.0.9/es-AR.xpi) = f22a8b8e8c6a6d003de3a9d403063701c371c10b3f84d97c81e5b9bae15e64e0 -SIZE (xpi/firefox-i18n-10.0.9/es-AR.xpi) = 245347 -SHA256 (xpi/firefox-i18n-10.0.9/es-CL.xpi) = 80e3a8446b41c278babbf81507f1a9bca7730fcbca7c8f74ada787d391d5513b -SIZE (xpi/firefox-i18n-10.0.9/es-CL.xpi) = 250206 -SHA256 (xpi/firefox-i18n-10.0.9/es-ES.xpi) = 2bbb059959fcffee6fddb46589cf7d7712935dc29035c9acf295829fe7b2dc82 -SIZE (xpi/firefox-i18n-10.0.9/es-ES.xpi) = 215378 -SHA256 (xpi/firefox-i18n-10.0.9/es-MX.xpi) = 0bd7f183f15503ced04e21c1b55e2534d3fa13e79739b94c4b482eed365af2b3 -SIZE (xpi/firefox-i18n-10.0.9/es-MX.xpi) = 224152 -SHA256 (xpi/firefox-i18n-10.0.9/et.xpi) = f8cce8cf6913027d4a89eddfb32ab0c8dc0251bcc0baeb80ca30e5641cf77acb -SIZE (xpi/firefox-i18n-10.0.9/et.xpi) = 242631 -SHA256 (xpi/firefox-i18n-10.0.9/eu.xpi) = e6a8a140766a823e934cfabfed046490e2406c38ecd6a3f292b2f3c20e7a6bac -SIZE (xpi/firefox-i18n-10.0.9/eu.xpi) = 240252 -SHA256 (xpi/firefox-i18n-10.0.9/fa.xpi) = 3ea911cde5d287d4bf243a7a4513825c8c508cd0926dd025188c848c88a554fd -SIZE (xpi/firefox-i18n-10.0.9/fa.xpi) = 272853 -SHA256 (xpi/firefox-i18n-10.0.9/fi.xpi) = 2d1b4cd03dbcea1dc53e39f671faf58b4927951976a31cf1fe3b5b5fcb27a3f7 -SIZE (xpi/firefox-i18n-10.0.9/fi.xpi) = 243630 -SHA256 (xpi/firefox-i18n-10.0.9/fr.xpi) = 3e1991a21ee282fd30612eb94e887b7e8a4499d199a78a8b6b726b3524ab3a5c -SIZE (xpi/firefox-i18n-10.0.9/fr.xpi) = 249569 -SHA256 (xpi/firefox-i18n-10.0.9/fy-NL.xpi) = 1aa2899b1caab0e3d5d95d80e37cc792c0215ad960f44383cca0047e83e4231c -SIZE (xpi/firefox-i18n-10.0.9/fy-NL.xpi) = 249343 -SHA256 (xpi/firefox-i18n-10.0.9/ga-IE.xpi) = fac69cfc71de10135a6cfa42d130ba864dfd727b41cd88165872df2c987b5eca -SIZE (xpi/firefox-i18n-10.0.9/ga-IE.xpi) = 252022 -SHA256 (xpi/firefox-i18n-10.0.9/gl.xpi) = 422c59a2c4591c0f343a56ea3354d04e511ef311c5b2b70927cbf4b216de428e -SIZE (xpi/firefox-i18n-10.0.9/gl.xpi) = 243250 -SHA256 (xpi/firefox-i18n-10.0.9/gu-IN.xpi) = d60eb4b7f86b796241bb484ea47df0890bc1b6b47ad3f64ea6a1178094da800e -SIZE (xpi/firefox-i18n-10.0.9/gu-IN.xpi) = 275222 -SHA256 (xpi/firefox-i18n-10.0.9/he.xpi) = edc74738ccfe2d96da989c10fe535b4fae6812076c5a96af1315483ea5e3273c -SIZE (xpi/firefox-i18n-10.0.9/he.xpi) = 264935 -SHA256 (xpi/firefox-i18n-10.0.9/hi-IN.xpi) = a3e44681b89bbb7b7aa8c079533485a05d92a421ced5ddc1060b801c7c9acf01 -SIZE (xpi/firefox-i18n-10.0.9/hi-IN.xpi) = 280001 -SHA256 (xpi/firefox-i18n-10.0.9/hr.xpi) = c5fe0de488ffed260d3835085179154f23193a562b7dee54e1598d60021cbbea -SIZE (xpi/firefox-i18n-10.0.9/hr.xpi) = 249334 -SHA256 (xpi/firefox-i18n-10.0.9/hu.xpi) = da0152f09a528501ee1ded733f46794386fe34973235342e97e41816355161b9 -SIZE (xpi/firefox-i18n-10.0.9/hu.xpi) = 253774 -SHA256 (xpi/firefox-i18n-10.0.9/hy-AM.xpi) = 7c225f179507602efdc173b449dc1baac3542c156260903d5273052257e8e8a0 -SIZE (xpi/firefox-i18n-10.0.9/hy-AM.xpi) = 445453 -SHA256 (xpi/firefox-i18n-10.0.9/id.xpi) = 73928ce6e04bb98ced950a3605adf019259f61d1234d3b1d1dd35b090206be4c -SIZE (xpi/firefox-i18n-10.0.9/id.xpi) = 236824 -SHA256 (xpi/firefox-i18n-10.0.9/is.xpi) = 53d923d2b33d8dc5e9978e411ca185122a827020a3a981af4a93d51865f62a15 -SIZE (xpi/firefox-i18n-10.0.9/is.xpi) = 243068 -SHA256 (xpi/firefox-i18n-10.0.9/it.xpi) = e6a440e1e1b8cde7cddb59a033e1b309a49f17140980e84c0c9e91c62afb1a24 -SIZE (xpi/firefox-i18n-10.0.9/it.xpi) = 212717 -SHA256 (xpi/firefox-i18n-10.0.9/ja.xpi) = b09bed37264b2d045d01a4c25e6bf5e6c70f73784b683036df0eb0a729c5eb81 -SIZE (xpi/firefox-i18n-10.0.9/ja.xpi) = 273115 -SHA256 (xpi/firefox-i18n-10.0.9/kk.xpi) = f100d387773251d6ba81c7c4ea0f421eb5e2516e65c9e723a7ec77386e37c558 -SIZE (xpi/firefox-i18n-10.0.9/kk.xpi) = 279778 -SHA256 (xpi/firefox-i18n-10.0.9/kn.xpi) = ebe2890ca019721607234437a87f29c8cf56ad785afc956afa8a6d06e435f79b -SIZE (xpi/firefox-i18n-10.0.9/kn.xpi) = 299831 -SHA256 (xpi/firefox-i18n-10.0.9/ko.xpi) = e664f4da7a08e8cb73e3936e178cac892a9c4e1ee5332597c53b57e8861a8469 -SIZE (xpi/firefox-i18n-10.0.9/ko.xpi) = 227946 -SHA256 (xpi/firefox-i18n-10.0.9/ku.xpi) = bd155554e86ddde2ce42bf452b1924bfde69841585f3feb907720fd78dd0d8e0 -SIZE (xpi/firefox-i18n-10.0.9/ku.xpi) = 254710 -SHA256 (xpi/firefox-i18n-10.0.9/lg.xpi) = 2b65e6bbb6e76bdb6b38bae183c05740d7810c3054c83ba43dc3495e13cbe724 -SIZE (xpi/firefox-i18n-10.0.9/lg.xpi) = 247674 -SHA256 (xpi/firefox-i18n-10.0.9/lt.xpi) = b4a371d99d7a041fb279f2bf3ada9b919581aa5f7004e374b92fd7001d09101e -SIZE (xpi/firefox-i18n-10.0.9/lt.xpi) = 330632 -SHA256 (xpi/firefox-i18n-10.0.9/lv.xpi) = 1b90a558ac7d68236a4c6e748ce62c289d496404ab9d35f7bd7c9f6ec5b8f9b8 -SIZE (xpi/firefox-i18n-10.0.9/lv.xpi) = 244353 -SHA256 (xpi/firefox-i18n-10.0.9/mai.xpi) = 9db8e0fbe369aa2d9743479fd5e865991e6c433ac4de22a475360ed63b398c31 -SIZE (xpi/firefox-i18n-10.0.9/mai.xpi) = 279254 -SHA256 (xpi/firefox-i18n-10.0.9/mk.xpi) = dfbd996113c7c4145d3f162f88d19b3293dbcbd4797258d0ecdb0c50e58612e8 -SIZE (xpi/firefox-i18n-10.0.9/mk.xpi) = 272940 -SHA256 (xpi/firefox-i18n-10.0.9/ml.xpi) = eda92e136a363a5020767e38d63dd98ad2fa0512c83846ef35c0ec7985f18bb8 -SIZE (xpi/firefox-i18n-10.0.9/ml.xpi) = 306676 -SHA256 (xpi/firefox-i18n-10.0.9/mr.xpi) = f405329848cc53efbbccec77f35ccd7ce861a80dde4333a087d6f82977fe08f5 -SIZE (xpi/firefox-i18n-10.0.9/mr.xpi) = 281458 -SHA256 (xpi/firefox-i18n-10.0.9/nb-NO.xpi) = cccd674f8ac48834a56cc5040dabfa8bd9bd535176e59a837b38dde66c17da03 -SIZE (xpi/firefox-i18n-10.0.9/nb-NO.xpi) = 241211 -SHA256 (xpi/firefox-i18n-10.0.9/nl.xpi) = ec5fe2abf1d05920ee5e98e3a53f3cd9fddcd81b9941be33d5fced8aa68d490e -SIZE (xpi/firefox-i18n-10.0.9/nl.xpi) = 242401 -SHA256 (xpi/firefox-i18n-10.0.9/nn-NO.xpi) = 41d1d3c1e758fdf0103de2f0ac38f93b7afbe6da242e6634dbb2a4bc4bc5424c -SIZE (xpi/firefox-i18n-10.0.9/nn-NO.xpi) = 242454 -SHA256 (xpi/firefox-i18n-10.0.9/nso.xpi) = 60d5034f354ae3eef6757390a64e2438843b5d80fbc92d0b68836ac67835e95e -SIZE (xpi/firefox-i18n-10.0.9/nso.xpi) = 245696 -SHA256 (xpi/firefox-i18n-10.0.9/or.xpi) = 1bebafad6ab9e34b818f1f61ed639e2e6407f152fa051c0edbdcb2c06f29faad -SIZE (xpi/firefox-i18n-10.0.9/or.xpi) = 281686 -SHA256 (xpi/firefox-i18n-10.0.9/pa-IN.xpi) = 34a352418aa75b7e83e710708eefa7f148444cafc022f8c82b98340c6b17ba74 -SIZE (xpi/firefox-i18n-10.0.9/pa-IN.xpi) = 282145 -SHA256 (xpi/firefox-i18n-10.0.9/pl.xpi) = cf7775157c9e68e3c207a2d2d6050acc4e37d37a74ab1465e7e00850e672a444 -SIZE (xpi/firefox-i18n-10.0.9/pl.xpi) = 252047 -SHA256 (xpi/firefox-i18n-10.0.9/pt-BR.xpi) = 6ed2cb5686e0baa22a03d334edc9f2e0034c132474e1bf2941e094b40bde73f1 -SIZE (xpi/firefox-i18n-10.0.9/pt-BR.xpi) = 246849 -SHA256 (xpi/firefox-i18n-10.0.9/pt-PT.xpi) = 9357f925fc4f56ab76fa5c9248ce637bc37ac341cdb44e0be3c62d945799c8b7 -SIZE (xpi/firefox-i18n-10.0.9/pt-PT.xpi) = 246476 -SHA256 (xpi/firefox-i18n-10.0.9/rm.xpi) = d38b192efd6767c90030603dde5deb658fd3e500ba5af863478a2d575ed3200c -SIZE (xpi/firefox-i18n-10.0.9/rm.xpi) = 245772 -SHA256 (xpi/firefox-i18n-10.0.9/ro.xpi) = e1c7e342e4148c33e0887b50481375435b5f984f979c19806ca08cfd3655fc56 -SIZE (xpi/firefox-i18n-10.0.9/ro.xpi) = 263252 -SHA256 (xpi/firefox-i18n-10.0.9/ru.xpi) = b5d9a813e0fde4a2f63978e2e03a8e73bbad977c5e44cb0352ee1052e7219779 -SIZE (xpi/firefox-i18n-10.0.9/ru.xpi) = 254985 -SHA256 (xpi/firefox-i18n-10.0.9/si.xpi) = 649ef9b15432f82015035987e046ed9655ad933455b2521c8eb910bb18abd174 -SIZE (xpi/firefox-i18n-10.0.9/si.xpi) = 271990 -SHA256 (xpi/firefox-i18n-10.0.9/sk.xpi) = abdd4d42e2beb3113882e8c2da7478c67bd6c2a88871694a8d0f89eab7e1b716 -SIZE (xpi/firefox-i18n-10.0.9/sk.xpi) = 254289 -SHA256 (xpi/firefox-i18n-10.0.9/sl.xpi) = 134d6d0b9654edbc051de6d6cfab160a730d1075b0b0a0988f45ab2f97c1eb3b -SIZE (xpi/firefox-i18n-10.0.9/sl.xpi) = 241035 -SHA256 (xpi/firefox-i18n-10.0.9/son.xpi) = df6ca0af4df03a0069b0c1e00624215730dead93fc1c77ec8ec22cdf52360d6e -SIZE (xpi/firefox-i18n-10.0.9/son.xpi) = 239061 -SHA256 (xpi/firefox-i18n-10.0.9/sq.xpi) = 7879ff0feab9f0698284d6c0887372b829c0d16e17dd8f246ba708e6475e51fc -SIZE (xpi/firefox-i18n-10.0.9/sq.xpi) = 227697 -SHA256 (xpi/firefox-i18n-10.0.9/sr.xpi) = 257e2b26374571441f2cfda018fef426ad4719420462f26d4656222f895f866d -SIZE (xpi/firefox-i18n-10.0.9/sr.xpi) = 277745 -SHA256 (xpi/firefox-i18n-10.0.9/sv-SE.xpi) = d5e77a68973b91d4af93597cfb97f99e362e9b9c2af9c3c89c597642ea456b3c -SIZE (xpi/firefox-i18n-10.0.9/sv-SE.xpi) = 278881 -SHA256 (xpi/firefox-i18n-10.0.9/ta-LK.xpi) = c7e092a409c14625887bc6d35be3070a222d819512c0646e5f95d94c79b75ca6 -SIZE (xpi/firefox-i18n-10.0.9/ta-LK.xpi) = 290619 -SHA256 (xpi/firefox-i18n-10.0.9/ta.xpi) = 950dcc30db322676c2abbfb4f0881440697cdf08a41667f3e30e6517688624b2 -SIZE (xpi/firefox-i18n-10.0.9/ta.xpi) = 274057 -SHA256 (xpi/firefox-i18n-10.0.9/te.xpi) = a34f6044a177b6f868699d736a5db4132d9afc371461747705a49452efcb435f -SIZE (xpi/firefox-i18n-10.0.9/te.xpi) = 289046 -SHA256 (xpi/firefox-i18n-10.0.9/th.xpi) = c629d5cc407a78c35a5f0e8d1bf9d6810ff99fd80f49424104762536c8ae6d7e -SIZE (xpi/firefox-i18n-10.0.9/th.xpi) = 272423 -SHA256 (xpi/firefox-i18n-10.0.9/tr.xpi) = 74f1281305b67d413f903fcd11865bc8784954d28c9c63aee9e7d574124a4248 -SIZE (xpi/firefox-i18n-10.0.9/tr.xpi) = 249918 -SHA256 (xpi/firefox-i18n-10.0.9/uk.xpi) = 9865e17fca6c27cb15ddadb68c416dd36df4b4c1ae8048f1fa3316bbe628ad3a -SIZE (xpi/firefox-i18n-10.0.9/uk.xpi) = 279133 -SHA256 (xpi/firefox-i18n-10.0.9/vi.xpi) = def1d8d443b1eebf5292d43bd813d8b83738b7227abad0e5ee100bb5801fd2cd -SIZE (xpi/firefox-i18n-10.0.9/vi.xpi) = 262786 -SHA256 (xpi/firefox-i18n-10.0.9/zh-CN.xpi) = f5ed06c4617c9c57fa255431ae0ed79c8bb4c91a1368f0e21dfcee0f78170e94 -SIZE (xpi/firefox-i18n-10.0.9/zh-CN.xpi) = 256547 -SHA256 (xpi/firefox-i18n-10.0.9/zh-TW.xpi) = 1d4cc5b002071435c9ff018d02a0628d679ed1e1d2daeb0888f32bc077d80dc1 -SIZE (xpi/firefox-i18n-10.0.9/zh-TW.xpi) = 257493 -SHA256 (xpi/firefox-i18n-10.0.9/zu.xpi) = 3b4bda37b7bd16288bd65ead943b51fb9f06db75e4f6a8e73f9649d84db084e3 -SIZE (xpi/firefox-i18n-10.0.9/zu.xpi) = 246396 +SHA256 (xpi/firefox-i18n-10.0.10/af.xpi) = 7a4f000ce589b607de3e13dd0bd687cd2dc3f2a6a4e83abd539d963c94e1b19c +SIZE (xpi/firefox-i18n-10.0.10/af.xpi) = 238745 +SHA256 (xpi/firefox-i18n-10.0.10/ak.xpi) = fd16e9260678663ac317f61e82f62f91084604cd5a47c47ade777f4293330667 +SIZE (xpi/firefox-i18n-10.0.10/ak.xpi) = 240573 +SHA256 (xpi/firefox-i18n-10.0.10/ar.xpi) = d8d6008cfa4c89a7f48baf2af4eef984296d93d8997732b6961e7fd9d3f12609 +SIZE (xpi/firefox-i18n-10.0.10/ar.xpi) = 263704 +SHA256 (xpi/firefox-i18n-10.0.10/ast.xpi) = 5d20510dda3a989c3f9977f560c9a25b99499e2a1c318593704228fab29092cc +SIZE (xpi/firefox-i18n-10.0.10/ast.xpi) = 237976 +SHA256 (xpi/firefox-i18n-10.0.10/be.xpi) = ad2e4ff2001bbb59963fc00167862fcf6b11532f62a873ffbd91f1d4e5670912 +SIZE (xpi/firefox-i18n-10.0.10/be.xpi) = 245758 +SHA256 (xpi/firefox-i18n-10.0.10/bg.xpi) = 592c3e8e88154eb0ffa49375feafb336a332f996734f3e614753e8f32ee6aa56 +SIZE (xpi/firefox-i18n-10.0.10/bg.xpi) = 276757 +SHA256 (xpi/firefox-i18n-10.0.10/bn-BD.xpi) = df8346ab841fafccf98cbf83e0ced1ca0e0a31a061ed0442ae5f7be9f4522edf +SIZE (xpi/firefox-i18n-10.0.10/bn-BD.xpi) = 288294 +SHA256 (xpi/firefox-i18n-10.0.10/bn-IN.xpi) = 2e12582ab719a304864fb66fdf4233009d956aab10e9bbe7fa6ec6701f634ba2 +SIZE (xpi/firefox-i18n-10.0.10/bn-IN.xpi) = 319305 +SHA256 (xpi/firefox-i18n-10.0.10/br.xpi) = 00eab13b9015c1cc2304a45124e665b9fa2a62ef3b293ef820970fd1207d1091 +SIZE (xpi/firefox-i18n-10.0.10/br.xpi) = 247652 +SHA256 (xpi/firefox-i18n-10.0.10/bs.xpi) = dd06874a8188c65265f14b6997fa506ac1b3dc0ab144c92d53b91b08d39f9125 +SIZE (xpi/firefox-i18n-10.0.10/bs.xpi) = 245309 +SHA256 (xpi/firefox-i18n-10.0.10/ca.xpi) = 7fc2504e9c0412c758d267de0f293820f357515b08b8c4c47861b3a1a0f4e46d +SIZE (xpi/firefox-i18n-10.0.10/ca.xpi) = 248222 +SHA256 (xpi/firefox-i18n-10.0.10/cs.xpi) = 06a428ee7e87ce7dbbbecf389e90064c96dbba4e3bd36866d6aa279bb2a744db +SIZE (xpi/firefox-i18n-10.0.10/cs.xpi) = 248770 +SHA256 (xpi/firefox-i18n-10.0.10/cy.xpi) = be57f30fe02ac12ff75f0365c37f724fb8624195f9ae5594ef6c4089ce94dc27 +SIZE (xpi/firefox-i18n-10.0.10/cy.xpi) = 244198 +SHA256 (xpi/firefox-i18n-10.0.10/da.xpi) = 1b0f087f5b7c53fe3b196fbf9c7b95cc079ab2a480911f73e066e316911a29d2 +SIZE (xpi/firefox-i18n-10.0.10/da.xpi) = 240329 +SHA256 (xpi/firefox-i18n-10.0.10/de.xpi) = f7033ae43ca75b3e2ca977a1a057517a85be0c588f65ef016ec403da1e8a9b7f +SIZE (xpi/firefox-i18n-10.0.10/de.xpi) = 249299 +SHA256 (xpi/firefox-i18n-10.0.10/el.xpi) = 81b68971889ac4998a6f849708d9dac236096e1fdc8887d9acef1e228c89754c +SIZE (xpi/firefox-i18n-10.0.10/el.xpi) = 264381 +SHA256 (xpi/firefox-i18n-10.0.10/en-GB.xpi) = c428a2a2e0476a4598725fdead109d480c358367cb7ad63071b00c1e693fc277 +SIZE (xpi/firefox-i18n-10.0.10/en-GB.xpi) = 231195 +SHA256 (xpi/firefox-i18n-10.0.10/en-US.xpi) = 8da2c21e23743573c6d4a5d3c8a4242655d819a731a4706461fd7a62df4dacd7 +SIZE (xpi/firefox-i18n-10.0.10/en-US.xpi) = 230682 +SHA256 (xpi/firefox-i18n-10.0.10/en-ZA.xpi) = 6bd954a77ea2bd2435c795ebe6b03682d3794c37f4af7d3f18b6258b220f9abe +SIZE (xpi/firefox-i18n-10.0.10/en-ZA.xpi) = 233921 +SHA256 (xpi/firefox-i18n-10.0.10/eo.xpi) = 3e6016ddb965d12c6371482cdaa1c278f1d749284b81948ade78e87604d254bf +SIZE (xpi/firefox-i18n-10.0.10/eo.xpi) = 240904 +SHA256 (xpi/firefox-i18n-10.0.10/es-AR.xpi) = 4980cb171c2bc7bb0d65340ad04a184afb01202130bacfb9c28ceeacb161dc7b +SIZE (xpi/firefox-i18n-10.0.10/es-AR.xpi) = 245348 +SHA256 (xpi/firefox-i18n-10.0.10/es-CL.xpi) = 66ac43f83c08936480b835dfaededc31e66ee76a3edb500275ba7b71f8914715 +SIZE (xpi/firefox-i18n-10.0.10/es-CL.xpi) = 250206 +SHA256 (xpi/firefox-i18n-10.0.10/es-ES.xpi) = 0afc109d9ee61582e65b75d8ae3e7720ea544ee7dac1ae9c89baf9a32c9203d3 +SIZE (xpi/firefox-i18n-10.0.10/es-ES.xpi) = 215379 +SHA256 (xpi/firefox-i18n-10.0.10/es-MX.xpi) = 78b27a22cc317d23ecb0eeaefd6ba779d17aefad4cf8b81672f35a08b3924e27 +SIZE (xpi/firefox-i18n-10.0.10/es-MX.xpi) = 224153 +SHA256 (xpi/firefox-i18n-10.0.10/et.xpi) = 2c03b931dfeb67f9dfc5ef748bfd8b0a54c53364ad159a23d03561f44be9c188 +SIZE (xpi/firefox-i18n-10.0.10/et.xpi) = 242632 +SHA256 (xpi/firefox-i18n-10.0.10/eu.xpi) = cb4bf0a842b74cabd162a8c79fda62aba208badfec230cf2f65c6d32ca2e3f87 +SIZE (xpi/firefox-i18n-10.0.10/eu.xpi) = 240253 +SHA256 (xpi/firefox-i18n-10.0.10/fa.xpi) = 7d71c9ca7feff877fa4e40d890976d22f38efdc24291e6c844434a67fd9144db +SIZE (xpi/firefox-i18n-10.0.10/fa.xpi) = 272854 +SHA256 (xpi/firefox-i18n-10.0.10/fi.xpi) = e9effb2636932ba64c516cdd0c9e3faaf9f23b86d28c99fd9e7331fefadc96c9 +SIZE (xpi/firefox-i18n-10.0.10/fi.xpi) = 243630 +SHA256 (xpi/firefox-i18n-10.0.10/fr.xpi) = 34c19e5d8844e8ac91ba71eaffe64c6c1a18d63997cb80faae8dd013299dc8e9 +SIZE (xpi/firefox-i18n-10.0.10/fr.xpi) = 249569 +SHA256 (xpi/firefox-i18n-10.0.10/fy-NL.xpi) = 6641562eeefe2e36c857699257f864e70a76d1676119fbd1438c8a83f53fdffc +SIZE (xpi/firefox-i18n-10.0.10/fy-NL.xpi) = 249345 +SHA256 (xpi/firefox-i18n-10.0.10/ga-IE.xpi) = 2960c3e783235a6663213313cdb60a01e4599ffa9318d47162a4a7504ebce37a +SIZE (xpi/firefox-i18n-10.0.10/ga-IE.xpi) = 252024 +SHA256 (xpi/firefox-i18n-10.0.10/gl.xpi) = 668e1955cc10de40ac1cb73066f89edb11a341251e85a0bbb402aac9cfca4407 +SIZE (xpi/firefox-i18n-10.0.10/gl.xpi) = 243250 +SHA256 (xpi/firefox-i18n-10.0.10/gu-IN.xpi) = 24ee2ce7d313260817311e76ae1ab695c409708ad65c37196aded4b12905833e +SIZE (xpi/firefox-i18n-10.0.10/gu-IN.xpi) = 275223 +SHA256 (xpi/firefox-i18n-10.0.10/he.xpi) = 1ce149751735ad58bc389c7a404b48c6788655cd1cd2f634edc95633b9cf1675 +SIZE (xpi/firefox-i18n-10.0.10/he.xpi) = 264936 +SHA256 (xpi/firefox-i18n-10.0.10/hi-IN.xpi) = 34ad7dfa29bf65b69217c889b24e27dc464c3ac5de029e5f4d174596f579b2a8 +SIZE (xpi/firefox-i18n-10.0.10/hi-IN.xpi) = 280002 +SHA256 (xpi/firefox-i18n-10.0.10/hr.xpi) = 0fb1d1e5f4c8701d83bfc3c7b2760d91a4e22e743d3785666efc4db027f565d0 +SIZE (xpi/firefox-i18n-10.0.10/hr.xpi) = 249334 +SHA256 (xpi/firefox-i18n-10.0.10/hu.xpi) = f4bdece4b06dfc956dd1e1eb8981ffc615ce93dc97fff8b778988815890281d3 +SIZE (xpi/firefox-i18n-10.0.10/hu.xpi) = 253774 +SHA256 (xpi/firefox-i18n-10.0.10/hy-AM.xpi) = 9862c465878f05b512cae5b0b93321693488c4957ef058a9fb40ca11256c3380 +SIZE (xpi/firefox-i18n-10.0.10/hy-AM.xpi) = 445453 +SHA256 (xpi/firefox-i18n-10.0.10/id.xpi) = a37e6f9a8a6707d8283a297f32aba43a1945d2a8ad6020df04aafb5b89c3d960 +SIZE (xpi/firefox-i18n-10.0.10/id.xpi) = 236825 +SHA256 (xpi/firefox-i18n-10.0.10/is.xpi) = 05f80c43f11b82ecfec9a83e8e9aefffc9ac217e084324b1ac6cea18d9a63a2c +SIZE (xpi/firefox-i18n-10.0.10/is.xpi) = 243068 +SHA256 (xpi/firefox-i18n-10.0.10/it.xpi) = be11ff6dd93e467a0cdd731ea17487a34ba21965f8ac3c4081479665b8b857ed +SIZE (xpi/firefox-i18n-10.0.10/it.xpi) = 212718 +SHA256 (xpi/firefox-i18n-10.0.10/ja.xpi) = af253b9044d2d1207a79b9646c7b05a887f33af53be8acaf72b9c0d90c77f997 +SIZE (xpi/firefox-i18n-10.0.10/ja.xpi) = 273117 +SHA256 (xpi/firefox-i18n-10.0.10/kk.xpi) = 4142b53f89876bd43629aacdb9af7c0cf9f71992280aa8ece12c75278ad503e3 +SIZE (xpi/firefox-i18n-10.0.10/kk.xpi) = 279776 +SHA256 (xpi/firefox-i18n-10.0.10/kn.xpi) = da190788df9bba2e3fedfa2e91fb635fc7ba68a30cecb4fdc2b8db2fc08c687b +SIZE (xpi/firefox-i18n-10.0.10/kn.xpi) = 299832 +SHA256 (xpi/firefox-i18n-10.0.10/ko.xpi) = d37bb0031579d2271f1d81958c7feee1172a170ff844e5f7aed949f33fcc578d +SIZE (xpi/firefox-i18n-10.0.10/ko.xpi) = 227947 +SHA256 (xpi/firefox-i18n-10.0.10/ku.xpi) = 00af28c859e18170884387ab181af08cdd8e2c237dd40846babf4618fec06f7e +SIZE (xpi/firefox-i18n-10.0.10/ku.xpi) = 254711 +SHA256 (xpi/firefox-i18n-10.0.10/lg.xpi) = c2c857e80a785e43028f93857bb43fe086a71f41afccfd463faedf3f4ab02bbf +SIZE (xpi/firefox-i18n-10.0.10/lg.xpi) = 247675 +SHA256 (xpi/firefox-i18n-10.0.10/lt.xpi) = a2a94187f0cd5e335f8347c270200ce4f87df90fb5173b5d6386cb3ec14f7689 +SIZE (xpi/firefox-i18n-10.0.10/lt.xpi) = 330632 +SHA256 (xpi/firefox-i18n-10.0.10/lv.xpi) = f62eeeaa2d4945e7824ae6fe7ddf1fe5c0604d6e7bdfcecd575b7c31070ee517 +SIZE (xpi/firefox-i18n-10.0.10/lv.xpi) = 244353 +SHA256 (xpi/firefox-i18n-10.0.10/mai.xpi) = ec1b6002ce61a7bd1b99fea7937e399f151c3c5f8ead414286537edfdb6b20e9 +SIZE (xpi/firefox-i18n-10.0.10/mai.xpi) = 279254 +SHA256 (xpi/firefox-i18n-10.0.10/mk.xpi) = 333d2a77f00d0590c918b6d5a02bc28133c0bf9936d1fe302124904fa3538427 +SIZE (xpi/firefox-i18n-10.0.10/mk.xpi) = 272941 +SHA256 (xpi/firefox-i18n-10.0.10/ml.xpi) = 90157eecefcc93673e1d5b089dc3b33eec7a240dc52877ba14df12d235ee32b0 +SIZE (xpi/firefox-i18n-10.0.10/ml.xpi) = 306676 +SHA256 (xpi/firefox-i18n-10.0.10/mr.xpi) = 0a666303434cf86ab9732d0b5aaa3adeeb75b7ba2ed257ebd196d9e7791e3643 +SIZE (xpi/firefox-i18n-10.0.10/mr.xpi) = 281459 +SHA256 (xpi/firefox-i18n-10.0.10/nb-NO.xpi) = 07a6646e3b02e0b267049a95bc00f1f849163ec5bf43fe3af4824ec05418ecf3 +SIZE (xpi/firefox-i18n-10.0.10/nb-NO.xpi) = 241212 +SHA256 (xpi/firefox-i18n-10.0.10/nl.xpi) = 37f1715fd00b8d06273a4cd908743354093ba565a099a5bc67da60ef99b4762c +SIZE (xpi/firefox-i18n-10.0.10/nl.xpi) = 242402 +SHA256 (xpi/firefox-i18n-10.0.10/nn-NO.xpi) = a59024f4f706118557a6563f2d09b8a12afd1e49f898d2eb010f0f6f4ac04933 +SIZE (xpi/firefox-i18n-10.0.10/nn-NO.xpi) = 242455 +SHA256 (xpi/firefox-i18n-10.0.10/nso.xpi) = d42d35a5e0d37ba6648a5841604f44fd1a6aae8e3ee9663ec0b29dcd0fb581bd +SIZE (xpi/firefox-i18n-10.0.10/nso.xpi) = 245697 +SHA256 (xpi/firefox-i18n-10.0.10/or.xpi) = 4ef887dc79730d34cfd3d8fae4323e7b52a9d2d6f37ad0f10febdedc72a6f0d0 +SIZE (xpi/firefox-i18n-10.0.10/or.xpi) = 281687 +SHA256 (xpi/firefox-i18n-10.0.10/pa-IN.xpi) = ee3f02ff285e33194e74307998347ee766264002400c5a3ce526a7beee4d0f3d +SIZE (xpi/firefox-i18n-10.0.10/pa-IN.xpi) = 282146 +SHA256 (xpi/firefox-i18n-10.0.10/pl.xpi) = f48b74a169d6d4d87cf17a9310bf25290d55b4954a99ad3c0e0091a1ec0cb662 +SIZE (xpi/firefox-i18n-10.0.10/pl.xpi) = 252048 +SHA256 (xpi/firefox-i18n-10.0.10/pt-BR.xpi) = a1ef06bba55cf398d8334c6191340e948fe8d28e3115b08eef428a70565c527c +SIZE (xpi/firefox-i18n-10.0.10/pt-BR.xpi) = 246850 +SHA256 (xpi/firefox-i18n-10.0.10/pt-PT.xpi) = 2d0f1a694386637abeb2b6f9ceef4ea7ca561678e41010383e33be167c052760 +SIZE (xpi/firefox-i18n-10.0.10/pt-PT.xpi) = 246478 +SHA256 (xpi/firefox-i18n-10.0.10/rm.xpi) = eb715b8294382e018de4eafd8b431fa8ca7a0f053449fd1eb1ef88cb3338a40a +SIZE (xpi/firefox-i18n-10.0.10/rm.xpi) = 245773 +SHA256 (xpi/firefox-i18n-10.0.10/ro.xpi) = cd12a66ff56d7ac1c5631617cbd6b47030e27c7da0404748c6e9f5ddddb8d072 +SIZE (xpi/firefox-i18n-10.0.10/ro.xpi) = 263253 +SHA256 (xpi/firefox-i18n-10.0.10/ru.xpi) = 8e235cd2fbf3890f3875218023cf0165a8573c4ba12b4d426ad69503859a29a9 +SIZE (xpi/firefox-i18n-10.0.10/ru.xpi) = 254986 +SHA256 (xpi/firefox-i18n-10.0.10/si.xpi) = 04d072d20d1bd13a24ec63b2e133d84ba5f1b23781f0351502c1b9e4bd5a68a7 +SIZE (xpi/firefox-i18n-10.0.10/si.xpi) = 271991 +SHA256 (xpi/firefox-i18n-10.0.10/sk.xpi) = 3bc33f1b2fea89e873dd002e7683d6367a9015e51b45023c8037c1f8e875d528 +SIZE (xpi/firefox-i18n-10.0.10/sk.xpi) = 254290 +SHA256 (xpi/firefox-i18n-10.0.10/sl.xpi) = 10c9ba222444088879f6b8c7ad625b22b7c1e9f4fdff5cc056cf4de41f1668c5 +SIZE (xpi/firefox-i18n-10.0.10/sl.xpi) = 241036 +SHA256 (xpi/firefox-i18n-10.0.10/son.xpi) = 976f0c06e5bc3049a1fb1a808faec4cb50549836961560b33074e15f0e8f7d5b +SIZE (xpi/firefox-i18n-10.0.10/son.xpi) = 239061 +SHA256 (xpi/firefox-i18n-10.0.10/sq.xpi) = ca994dd1b25d38d4f4fd6892c2e538a8402471d9a6b53b07f4b0d3e305f095a9 +SIZE (xpi/firefox-i18n-10.0.10/sq.xpi) = 227698 +SHA256 (xpi/firefox-i18n-10.0.10/sr.xpi) = 8018d4c491ac0b92bf41a24ac2a022c1deae3293a5003d826290b859fd8ea8db +SIZE (xpi/firefox-i18n-10.0.10/sr.xpi) = 277746 +SHA256 (xpi/firefox-i18n-10.0.10/sv-SE.xpi) = e7d80a0629e8a0f15abc96c88807a41653f38bd7ea365eb805431151e3079033 +SIZE (xpi/firefox-i18n-10.0.10/sv-SE.xpi) = 278881 +SHA256 (xpi/firefox-i18n-10.0.10/ta-LK.xpi) = 58deb3fbe09227a8061fca47f4bac093f0f019add786458a77c8885c89dc4ddd +SIZE (xpi/firefox-i18n-10.0.10/ta-LK.xpi) = 290620 +SHA256 (xpi/firefox-i18n-10.0.10/ta.xpi) = 6ed4963334dffee7f77c429164d9b9478b56a2b2ab72f15b61a2ce940f43d956 +SIZE (xpi/firefox-i18n-10.0.10/ta.xpi) = 274057 +SHA256 (xpi/firefox-i18n-10.0.10/te.xpi) = 2c98a85902959fce61cb9e67d7366e6b873d45693ad0f6a5ed2cdf39ddf28331 +SIZE (xpi/firefox-i18n-10.0.10/te.xpi) = 289046 +SHA256 (xpi/firefox-i18n-10.0.10/th.xpi) = da3297d5ff366ffb8b34a5d9659d2ef0c4ac16350be6cac21d31935a654695d3 +SIZE (xpi/firefox-i18n-10.0.10/th.xpi) = 272424 +SHA256 (xpi/firefox-i18n-10.0.10/tr.xpi) = f06cc54dd2dfba48e2477bf60be6386e2870775d34552fa889556b584718a856 +SIZE (xpi/firefox-i18n-10.0.10/tr.xpi) = 249919 +SHA256 (xpi/firefox-i18n-10.0.10/uk.xpi) = 86e35107ea92aac365011eaf6bfa7d824b686d31c5cd6ea2ac7a6ad5269fab90 +SIZE (xpi/firefox-i18n-10.0.10/uk.xpi) = 279134 +SHA256 (xpi/firefox-i18n-10.0.10/vi.xpi) = ed628d324a040697bddfe08f29ca40e198081b57e66bc1b7a17cd9389c4a341b +SIZE (xpi/firefox-i18n-10.0.10/vi.xpi) = 262787 +SHA256 (xpi/firefox-i18n-10.0.10/zh-CN.xpi) = ee1ba0dfd4ecd38bd6556d908b46b165938b27e4add465a5f4ad0563b4649964 +SIZE (xpi/firefox-i18n-10.0.10/zh-CN.xpi) = 256548 +SHA256 (xpi/firefox-i18n-10.0.10/zh-TW.xpi) = 4c2a7de047afc1d0ac58ce391a47539fc2940e0ea9574c633edb09f7b152f58a +SIZE (xpi/firefox-i18n-10.0.10/zh-TW.xpi) = 257494 +SHA256 (xpi/firefox-i18n-10.0.10/zu.xpi) = 41c19a04ba48719718274044b5cd1f2c8fc949aee14dfe1023c33ed964a75083 +SIZE (xpi/firefox-i18n-10.0.10/zu.xpi) = 246396 Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Sun Oct 28 16:42:50 2012 (r306557) +++ head/www/firefox-esr/Makefile Sun Oct 28 17:03:28 2012 (r306558) @@ -6,7 +6,7 @@ # PORTNAME= firefox -DISTVERSION= 10.0.9 +DISTVERSION= 10.0.10 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} @@ -80,10 +80,6 @@ MOZ_MK_OPTIONS+=PROFILE_GEN_SCRIPT="${PY @MOZ_OBJDIR@/_profile/pgo/profileserver.py" .endif -.if ${ARCH} == amd64 || ${ARCH} == i386 -BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -.endif - .if !empty(CXX:M*clang++*) CXXFLAGS+= -Wno-return-type-c-linkage .endif Modified: head/www/firefox-esr/distinfo ============================================================================== --- head/www/firefox-esr/distinfo Sun Oct 28 16:42:50 2012 (r306557) +++ head/www/firefox-esr/distinfo Sun Oct 28 17:03:28 2012 (r306558) @@ -1,2 +1,2 @@ -SHA256 (firefox-10.0.9esr.source.tar.bz2) = 7719499f1b2610b497ed0ebbccd3fc84d2b331fed2ccd447aeb5e6b5b183155c -SIZE (firefox-10.0.9esr.source.tar.bz2) = 75634700 +SHA256 (firefox-10.0.10esr.source.tar.bz2) = ea14528ae9292332721eef1da5aeebf07c188e5878cd65eb16c2ae03247460c0 +SIZE (firefox-10.0.10esr.source.tar.bz2) = 75629310 Modified: head/www/firefox-esr/files/patch-bug713802 ============================================================================== --- head/www/firefox-esr/files/patch-bug713802 Sun Oct 28 16:42:50 2012 (r306557) +++ head/www/firefox-esr/files/patch-bug713802 Sun Oct 28 17:03:28 2012 (r306558) @@ -25,19 +25,6 @@ index 40ab494..eae5645 100755 # MOZ_APP_DISPLAYNAME will be set by branding/configure.sh # Changing MOZ_*BRANDING_DIRECTORY requires a clobber to ensure correct results, # because branding dependencies are broken. ---- browser/installer/package-manifest.in~ -+++ browser/installer/package-manifest.in -@@ -679,6 +679,10 @@ bin/libfreebl_32int64_3.so - - ; [Extensions] - ; -+#ifdef MOZ_ENABLE_GIO -+bin/components/@DLL_PREFIX@nkgio@DLL_SUFFIX@ -+#endif -+ - #ifdef MOZ_ENABLE_GNOMEVFS - bin/components/@DLL_PREFIX@nkgnomevfs@DLL_SUFFIX@ - #endif diff --git configure.in configure.in index 87a9391..2118651 100644 --- configure.in Added: head/www/firefox-esr/files/patch-bug799441 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox-esr/files/patch-bug799441 Sun Oct 28 17:03:28 2012 (r306558) @@ -0,0 +1,116 @@ +commit b9accdd +Author: Mike Hommey +Date: Thu Oct 18 14:47:10 2012 +0200 + + Bug 799441 - Build GIO module in libxul. r=ted +--- + configure.in | 6 ++++++ + extensions/gio/Makefile.in | 14 +++----------- + toolkit/library/Makefile.in | 5 +++++ + toolkit/library/nsStaticXULComponents.cpp | 7 +++++++ + toolkit/toolkit-tiers.mk | 4 ++++ + 5 files changed, 25 insertions(+), 11 deletions(-) + +diff --git configure.in configure.in +index a9fb5f1..37e6db8 100644 +--- configure.in ++++ configure.in +@@ -6086,6 +6086,12 @@ if test -n "$LIBXUL_SDK_DIR" -a `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; th + MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'` + fi + ++if test `echo "$MOZ_EXTENSIONS" | grep -c gio` -ne 0; then ++ MOZ_GIO_COMPONENT=1 ++ MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gio||'` ++fi ++AC_SUBST(MOZ_GIO_COMPONENT) ++ + if test -z "$MOZ_JSDEBUGGER" -a `echo "$MOZ_EXTENSIONS" | grep -c venkman` -ne 0; then + AC_MSG_WARN([Cannot build venkman without JavaScript debug library. Removing venkman from MOZ_EXTENSIONS.]) + MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|venkman||'` +diff --git extensions/gio/Makefile.in extensions/gio/Makefile.in +index ccf2846..79112a8 100644 +--- extensions/gio/Makefile.in ++++ extensions/gio/Makefile.in +@@ -14,6 +14,9 @@ MODULE = nkgio + LIBRARY_NAME = nkgio + SHORT_LIBNAME = nkgio + IS_COMPONENT = 1 ++EXPORT_LIBRARY = 1 ++MODULE_NAME = nsGIOModule ++LIBXUL_LIBRARY = 1 + + CPPSRCS = \ + nsGIOProtocolHandler.cpp \ +@@ -21,15 +24,4 @@ CPPSRCS = \ + + LOCAL_INCLUDES = $(MOZ_GIO_CFLAGS) + +-EXTRA_DSO_LDOPTS = \ +- $(XPCOM_GLUE_LDOPTS) \ +- $(MOZ_COMPONENT_LIBS) \ +- $(MOZ_GIO_LIBS) \ +- $(NULL) +- +-# make sure this component is never statically linked into the main +-# application. this is necessary since we don't want to force users +-# to install gio in order to use the rest of mozilla ;-) +-FORCE_SHARED_LIB= 1 +- + include $(topsrcdir)/config/rules.mk +diff --git toolkit/library/Makefile.in toolkit/library/Makefile.in +index 7f9046e..6499758 100644 +--- toolkit/library/libxul-config.mk ++++ toolkit/library/libxul-config.mk +@@ -333,6 +333,11 @@ COMPONENT_LIBS += gkdebug + endif + endif + ++ifdef MOZ_GIO_COMPONENT ++DEFINES += -DMOZ_GIO_COMPONENT ++COMPONENT_LIBS += nkgio ++endif ++ + ifdef MOZ_APP_COMPONENT_LIBS + COMPONENT_LIBS += $(MOZ_APP_COMPONENT_LIBS) + endif +diff --git toolkit/library/nsStaticXULComponents.cpp toolkit/library/nsStaticXULComponents.cpp +index e1d90f2..85b21a2 100644 +--- toolkit/library/nsStaticXULComponents.cpp ++++ toolkit/library/nsStaticXULComponents.cpp +@@ -164,6 +164,12 @@ + #define PROFILER_MODULE + #endif + ++#if defined(MOZ_GIO_COMPONENT) ++#define GIO_MODULE MODULE(nsGIOModule) ++#else ++#define GIO_MODULE ++#endif ++ + #define XUL_MODULES \ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 17:18:16 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE25619E; Sun, 28 Oct 2012 17:18:16 +0000 (UTC) (envelope-from flo@smeets.im) Received: from mail.solomo.de (mail.solomo.de [IPv6:2a01:4f8:162:1142::2]) by mx1.freebsd.org (Postfix) with ESMTP id 8DE888FC0A; Sun, 28 Oct 2012 17:18:16 +0000 (UTC) Received: from cpos1.nexxtmobile.de (localhost [127.0.0.1]) by mail.solomo.de (Postfix) with ESMTP id 82B72B966; Sun, 28 Oct 2012 18:18:15 +0100 (CET) X-Virus-Scanned: amavisd-new at nexxtmobile.de Received: from mail.solomo.de ([127.0.0.1]) by cpos1.nexxtmobile.de (cpos1.nexxtmobile.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id FERnN2OTsf-h; Sun, 28 Oct 2012 18:18:13 +0100 (CET) Received: from nibbler-osx-wlan.fritz.box (b2b-92-50-66-163.unitymedia.biz [92.50.66.163]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.solomo.de (Postfix) with ESMTPSA id 86F2EB959; Sun, 28 Oct 2012 18:18:12 +0100 (CET) Message-ID: <508D68D3.40701@smeets.im> Date: Sun, 28 Oct 2012 18:18:11 +0100 From: Florian Smeets User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r306557 - head/net-p2p/amule-devel References: <201210281642.q9SGgoLs053216@svn.freebsd.org> In-Reply-To: <201210281642.q9SGgoLs053216@svn.freebsd.org> X-Enigmail-Version: 1.5a1pre Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig260FB9705B807D45645EC3FD" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 28 Oct 2012 17:18:17 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig260FB9705B807D45645EC3FD Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 28.10.12 17:42, Florian Smeets wrote: > Author: flo > Date: Sun Oct 28 16:42:50 2012 > New Revision: 306557 > URL: http://svn.freebsd.org/changeset/ports/306557 >=20 > Log: > Add NLS and DOCS to OPTIONS_DEFAULT > =20 This is of course useless, as both options are turned on by default. I'll take the blame and the pointyhat :) That's what happens if you task switch from *another* Mozilla security update to what seems to be a trivial patch to a recent commit one did, without thinking it through... I'll remove this with the next update, to not have another useless commit, and it doesn't cause any harm in the meantime. Florian --------------enig260FB9705B807D45645EC3FD Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iEYEARECAAYFAlCNaNMACgkQapo8P8lCvwnKPQCfXGNtVJUuVMLi+Usu4Ym9C4fw QNAAoKkN0cCnhVunlagdDOeSzgBw6TIg =2+d7 -----END PGP SIGNATURE----- --------------enig260FB9705B807D45645EC3FD-- From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 18:41:39 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B0655B5; Sun, 28 Oct 2012 18:41:39 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 640248FC0A; Sun, 28 Oct 2012 18:41:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SIfdAC074734; Sun, 28 Oct 2012 18:41:39 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SIfdGO074733; Sun, 28 Oct 2012 18:41:39 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210281841.q9SIfdGO074733@svn.freebsd.org> From: Florian Smeets Date: Sun, 28 Oct 2012 18:41:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-svnadmin@freebsd.org Subject: svn commit: r306559 - svnadmin/conf X-SVN-Group: ports-svnadmin 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.14 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: Sun, 28 Oct 2012 18:41:39 -0000 Author: flo Date: Sun Oct 28 18:41:38 2012 New Revision: 306559 URL: http://svn.freebsd.org/changeset/ports/306559 Log: Release jase from mentorship. He should be able to stay out of trouble on his own now. Fly little bird, fly! Feature safe: yes Modified: svnadmin/conf/mentors Modified: svnadmin/conf/mentors ============================================================================== --- svnadmin/conf/mentors Sun Oct 28 17:03:28 2012 (r306558) +++ svnadmin/conf/mentors Sun Oct 28 18:41:38 2012 (r306559) @@ -14,7 +14,6 @@ # Mentee Mentor Optional comment gjb eadler Co-mentor: crees -jase flo Co-mentor: culot jhale makc Co-mentor: avilla jsa wxs Co-mentor: kwm olivierd miwi Co-mentor: rene From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 19:41:44 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEEE316E; Sun, 28 Oct 2012 19:41:44 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 968008FC0A; Sun, 28 Oct 2012 19:41:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SJfi0e084754; Sun, 28 Oct 2012 19:41:44 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SJfiTD084752; Sun, 28 Oct 2012 19:41:44 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210281941.q9SJfiTD084752@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 19:41:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306560 - head/net-mgmt/rancid 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.14 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: Sun, 28 Oct 2012 19:41:44 -0000 Author: pgj Date: Sun Oct 28 19:41:44 2012 New Revision: 306560 URL: http://svn.freebsd.org/changeset/ports/306560 Log: - Convert options to the new format PR: ports/172525 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/net-mgmt/rancid/Makefile Modified: head/net-mgmt/rancid/Makefile ============================================================================== --- head/net-mgmt/rancid/Makefile Sun Oct 28 18:41:38 2012 (r306559) +++ head/net-mgmt/rancid/Makefile Sun Oct 28 19:41:44 2012 (r306560) @@ -1,9 +1,5 @@ -# New ports collection makefile for: rancid -# Date created: 3 June 2002 -# Whom: Janos.Mohacsi@bsd.hu -# +# Created by: Janos.Mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= rancid PORTVERSION= 2.3.8 @@ -46,13 +42,18 @@ NEWERCONFIG_FILES1= etc/rancid.conf NEWERCONFIG_FILES2= etc/lg.conf NEWCONFIG_FILES= rancid.conf lg.conf -OPTIONS= SVN "Use Subversion instead of CVS" off +OPTIONS_DEFINE= SVN +OPTIONS_DEFAULT= + +SVN_DESC= Use Subversion instead of CVS .include -.if defined(WITH_SVN) +.if ${PORT_OPTIONS:MSVN} CONFIGURE_ARGS+= --with-svn BUILD_DEPENDS+= svn:${PORTSDIR}/devel/subversion +.else +CONFIGURE_ARGS+= --without-svn .endif pre-everything:: From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 19:48:12 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D3AE4DB; Sun, 28 Oct 2012 19:48:12 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6490E8FC12; Sun, 28 Oct 2012 19:48:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SJmC28085902; Sun, 28 Oct 2012 19:48:12 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SJmCLl085900; Sun, 28 Oct 2012 19:48:12 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210281948.q9SJmCLl085900@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 19:48:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306561 - head/net-mgmt/nfdump 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.14 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: Sun, 28 Oct 2012 19:48:12 -0000 Author: pgj Date: Sun Oct 28 19:48:11 2012 New Revision: 306561 URL: http://svn.freebsd.org/changeset/ports/306561 Log: - Convert options to the new format PR: ports/172526 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/net-mgmt/nfdump/Makefile Modified: head/net-mgmt/nfdump/Makefile ============================================================================== --- head/net-mgmt/nfdump/Makefile Sun Oct 28 19:41:44 2012 (r306560) +++ head/net-mgmt/nfdump/Makefile Sun Oct 28 19:48:11 2012 (r306561) @@ -1,9 +1,5 @@ -# New ports collection makefile for: nfdump -# Date created: 2004-09-29 -# Whom: Janos.Mohacsi@bsd.hu -# +# Created by: Janos.Mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= nfdump PORTVERSION= 1.6.6 @@ -21,19 +17,26 @@ GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes #flow-tools support -OPTIONS= FT2NFDUMP "With Flow-tools to nfdump converter" off \ - NFPROFILE "With nfprofile (nfsen requires it)" on \ - FIXTIMEBUG "With fixing swap time bug of some v5" off \ - READPCAP "With pcap support" off \ - NFTRACK "With PortTracker support" off \ - SFLOW "Build sflow collector daemon also" off +OPTIONS_DEFINE= FT2NFDUMP NFPROFILE FIXTIMEBUG READPCAP NFTRACK \ + SFLOW NFDUMP15 +OPTIONS_DEFAULT= NFPROFILE + +FT2NFDUMP_DESC= With Flow-tools to nfdump converter +NFPROFILE_DESC= With nfprofile (nfsen requires it) +FIXTIMEBUG_DESC= With fixing swap time bug of some v5 +READPCAP_DESC= With pcap support +NFTRACK_DESC= With PortTracker support +SFLOW_DESC= Build sflow collector daemon also +NFDUMP15_DESC= Enable compatbility with version 1.5 -.include +.include #for compatibility # -.ifndef(WITHOUT_NFDUMP15_SUPPORT) -CONFIGURE_ARGS= --enable-compat15 +.if ${PORT_OPTIONS:MNFDUMP15} +CONFIGURE_ARGS+= --enable-compat15 +.else +CONFIGURE_ARGS+= --disable-compat15 .endif PLIST_FILES= bin/nfanon bin/nfcapd bin/nfdump bin/nfexpire bin/nfreplay @@ -41,48 +44,58 @@ MAN1= nfanon.1 nfcapd.1 nfdump.1 nfexpi MAN1+= ft2nfdump.1 nfprofile.1 sfcapd.1 PORTDOCS= AUTHORS ChangeLog INSTALL README -.if defined(WITH_FIXTIMEBUG) +.if ${PORT_OPTIONS:MFIXTIMEBUG} CONFIGURE_ARGS+= --enable-fixtimebug +.else +CONFIGURE_ARGS+= --disable-fixtimebug .endif -.if defined(WITH_NFPROFILE) +.if ${PORT_OPTIONS:MNFPROFILE} CONFIGURE_ARGS+= --enable-nfprofile PLIST_FILES+= bin/nfprofile +.else +CONFIGURE_ARGS+= --disable-nfprofile .endif -.if defined(WITH_NFTRACK) +.if ${PORT_OPTIONS:MNFTRACK} CONFIGURE_ARGS+= --enable-nftrack PLIST_FILES+= bin/nftrack +.else +CONFIGURE_ARGS+= --disable-nftrack .endif -.if defined(WITH_NFPROFILE) || defined(WITH_NFTRACK) +.if ${PORT_OPTIONS:MNFPROFILE} || ${PORT_OPTIONS:MNFTRACK} CONFIGURE_ARGS+= --with-rrdpath=${LOCALBASE} BUILD_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool RUN_DEPENDS+= rrdtool:${PORTSDIR}/databases/rrdtool .endif #flow-tools support -.if defined(WITH_FT2NFDUMP) +.if ${PORT_OPTIONS:MFT2NFDUMP} BUILD_DEPENDS+= flow-cat:${PORTSDIR}/net-mgmt/flow-tools CONFIGURE_ARGS+= --enable-ftconv --with-ftpath=${LOCALBASE} PLIST_FILES+= bin/ft2nfdump .endif -.if defined (WITH_READPCAP) +.if ${PORT_OPTIONS:MREADPCAP} CONFIGURE_ARGS+= --enable-readpcap +.else +CONFIGURE_ARGS+= --disable-readpcap .endif #sflow capture support -.if defined(WITH_SFLOW) +.if ${PORT_OPTIONS:MSFLOW} CONFIGURE_ARGS+= --enable-sflow PLIST_FILES+= bin/sfcapd #MAN1+= sfcapd.1 +.else +CONFIGURE_ARGS+= --disable-sflow .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} post-install: ${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif -.include +.include From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 19:49:14 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42BC0652; Sun, 28 Oct 2012 19:49:14 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2ABEA8FC19; Sun, 28 Oct 2012 19:49:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SJnEZu086124; Sun, 28 Oct 2012 19:49:14 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SJnDDa086122; Sun, 28 Oct 2012 19:49:13 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210281949.q9SJnDDa086122@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 19:49:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306562 - head/net/beacon 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.14 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: Sun, 28 Oct 2012 19:49:14 -0000 Author: pgj Date: Sun Oct 28 19:49:13 2012 New Revision: 306562 URL: http://svn.freebsd.org/changeset/ports/306562 Log: - Convert options to the new format PR: ports/172527 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/net/beacon/Makefile Modified: head/net/beacon/Makefile ============================================================================== --- head/net/beacon/Makefile Sun Oct 28 19:48:11 2012 (r306561) +++ head/net/beacon/Makefile Sun Oct 28 19:49:13 2012 (r306562) @@ -1,9 +1,5 @@ -# New ports collection makefile for: beacon -# Date created: 26 February 2004 -# Whom: Janos.Mohacsi@bsd.hu -# +# Created by: Janos.Mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= beacon PORTVERSION= 1.4 @@ -22,15 +18,22 @@ PLIST_SUB+= VERSION=${PORTVERSION} USE_PERL5= yes USE_AUTOTOOLS= autoconf -OPTIONS= IPV6 "Enable IPv6 PTR lookups" off +OPTIONS_DEFINE= IPV6 +OPTIONS_DEFAULT= -.ifdef(WITH_IPV6) +IPV6_DESC= Enable IPv6 PTR lookups + +.include + +.if ${PORT_OPTIONS:MIPV6} BUILD_DEPENDS+= p5-Socket6>=0:${PORTSDIR}/net/p5-Socket6 CONFIGURE_ARGS+= --enable-ipv6 +.else +CONFIGURE_ARGS+= --disable-ipv6 .endif post-install: -.ifndef(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR}/ @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/ .endif From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 19:51:54 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 564F388B; Sun, 28 Oct 2012 19:51:54 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 206A48FC08; Sun, 28 Oct 2012 19:51:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SJprsq086583; Sun, 28 Oct 2012 19:51:53 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SJprCc086581; Sun, 28 Oct 2012 19:51:53 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210281951.q9SJprCc086581@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 19:51:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306563 - head/www/limesurvey 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.14 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: Sun, 28 Oct 2012 19:51:54 -0000 Author: pgj Date: Sun Oct 28 19:51:53 2012 New Revision: 306563 URL: http://svn.freebsd.org/changeset/ports/306563 Log: - Convert options to the new format PR: ports/172531 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/www/limesurvey/Makefile Modified: head/www/limesurvey/Makefile ============================================================================== --- head/www/limesurvey/Makefile Sun Oct 28 19:49:13 2012 (r306562) +++ head/www/limesurvey/Makefile Sun Oct 28 19:51:53 2012 (r306563) @@ -1,9 +1,5 @@ -# New ports collection makefile for: phpsurveyor -# Date created: 21 March 2005 -# Whom: janos.mohacsi@bsd.hu -# +# Created by: janos.mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= limesurvey PORTVERSION= 1.91 @@ -17,16 +13,18 @@ COMMENT= A PHP-based survey building and LICENSE= GPLv2 # http://docs.limesurvey.org/Installation&structure=English+Instructions+for+LimeSurvey -OPTIONS= PGSQL "Use PostgreSQL (instead of MySQL)" off \ - GD "Install PHP gd extention" on \ - LDAP "Install PHP LDAP extention" off \ - ZIP "Install PHP zip extention" off -# ZLIB "Install PHP zlib extention" off # For ComfortUpdate +OPTIONS_DEFINE= PGSQL GD LDAP ZIP +OPTIONS_DEFAULT= GD + +PGSQL_DESC= Use PostgreSQL (instead of MySQL) +GD_DESC= Install PHP gd extension +LDAP_DESC= Install PHP LDAP extension +ZIP_DESC= Install PHP zip extension .include # http://docs.limesurvey.org/Installation&structure=English+Instructions+for+LimeSurvey#Make_sure_you_can_use_LimeSurvey_on_your_website -.if defined(WITH_PGSQL) +.if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes USE_PHP= pgsql .else @@ -35,13 +33,13 @@ USE_PHP= pgsql USE_MYSQL= client USE_PHP= mysql .endif -.if defined(WITH_GD) +.if ${PORT_OPTIONS:MGD} USE_PHP+= gd .endif -.if defined(WITH_LDAP) +.if ${PORT_OPTIONS:MLDAP} USE_PHP+= ldap .endif -.if defined(WITH_ZIP) +.if ${PORT_OPTIONS:MZIP} USE_PHP+= zip .endif USE_PHP+= ctype dom iconv json mbstring pcre \ @@ -61,7 +59,7 @@ PHPSURVEYORDIR= ${WWWDOCROOT}/${PHPSURVE do-install: ${MKDIR} "${WWWDIR}" -.if defined(WITH_PGSQL) +.if ${PORT_OPTIONS:MPGSQL} ${SED} -E \ -e 's/^(\$$databasetype[[:space:]]*=[[:space:]]*'"')mysql('"'.*)$$/\1postgres\2/' \ -e 's/^(\$$databaseuser[[:space:]]*=[[:space:]]*'"')root('"'.*)$$/\1pgsql\2/' \ From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 19:54:58 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93925993; Sun, 28 Oct 2012 19:54:58 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 740FC8FC08; Sun, 28 Oct 2012 19:54:58 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SJswNc087118; Sun, 28 Oct 2012 19:54:58 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SJswsY087115; Sun, 28 Oct 2012 19:54:58 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210281954.q9SJswsY087115@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 19:54:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306564 - head/textproc/xerces-c2-devel 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.14 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: Sun, 28 Oct 2012 19:54:59 -0000 Author: pgj Date: Sun Oct 28 19:54:57 2012 New Revision: 306564 URL: http://svn.freebsd.org/changeset/ports/306564 Log: - Convert options to the new format PR: ports/172539 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/textproc/xerces-c2-devel/Makefile Modified: head/textproc/xerces-c2-devel/Makefile ============================================================================== --- head/textproc/xerces-c2-devel/Makefile Sun Oct 28 19:51:53 2012 (r306563) +++ head/textproc/xerces-c2-devel/Makefile Sun Oct 28 19:54:57 2012 (r306564) @@ -1,9 +1,5 @@ -# New ports collection makefile for: xerces-c2 -# Date created: 06 September 2002 -# Whom: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) -# +# Created by: "Bjoern A. Zeeb" (bzeeb+freebsdports@zabbadoz.net) # $FreeBSD$ -# PORTNAME= xerces-c2-devel PORTVERSION= 2.8.0 @@ -17,21 +13,26 @@ COMMENT= Validating XML parser from the MAKE_JOBS_UNSAFE= yes -OPTIONS= THREADS "Build a thread enabled shared library." on \ - DEBUG "Include debugging information, do not strip." off \ - ICONVFBSD "Use IconvFBSD transcoder." on \ - ICU "Use ICU transcoder." off \ - NATIVE "Use native transcoder." off +OPTIONS_DEFINE= THREADS DEBUG ICONVFBSD ICU NATIVE +OPTIONS_DEFAULT= THREADS ICONVFBSD -.include +THREADS_DESC= Build a thread enabled shared library +DEBUG_DESC= Include debugging information, do not strip +ICONVFBSD_DESC= Use IconvFBSD transcoder +ICU_DESC= Use ICU transcoder +NATIVE_DESC= Use native transcoder -.if defined(WITH_NATIVE) +.include + +.if ${PORT_OPTIONS:MNATIVE} TRANSCODER= native .endif -.if defined(WITH_ICU) + +.if ${PORT_OPTIONS:MICU} TRANSCODER= icu .endif -.if defined(WITH_ICONVFBSD) + +.if ${PORT_OPTIONS:MICONVFBSD} TRANSCODER= IconvFBSD .endif @@ -84,7 +85,7 @@ CONFIGURE_ARGS+= -p freebsd -c ${CC} -x CONFIGURE_ARGS+= -t ${TRANSCODER} -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} CONFIGURE_ARGS+= -d .endif @@ -96,11 +97,11 @@ CONFIGURE_ARGS+= -b 64 SAMPLES_CONFIG_ARGS+= -b 64 .endif -.if defined(WITHOUT_THREADS) -CONFIGURE_ARGS+= -r none -.else +.if ${PORT_OPTIONS:MTHREADS} CONFIGURE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" +.else +CONFIGURE_ARGS+= -r none .endif XERCESC_LIB_VERSION= ${PORTVERSION:S/.//:R} @@ -110,24 +111,22 @@ PLIST_SUB+= XERCESC_LIB=${XERCESC_LIB} XERCESC_DEPDOM_LIB=${XERCESC_DEPDOM_LIB} \ XERCESC_LIB_VERSION=${XERCESC_LIB_VERSION} -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} ALL_TARGET?= all samples XERCES_BINS?= CreateDOMDocument DOMCount DOMPrint EnumVal MemParse PParse \ PSVIWriter Redirect SAX2Count SAX2Print SAXCount SAXPrint \ SCMPrint SEnumVal StdInParse SAMPLES_CONFIG_ARGS+= -p freebsd -c ${CC} -x ${CXX} -.if defined(WITHOUT_THREADS) -SAMPLES_CONFIG_ARGS+= -r none -.else +.if ${PORT_OPTIONS:MTHREADS} SAMPLES_CONFIG_ARGS+= -r pthread SAMPLES_CONFIG_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" +.else +SAMPLES_CONFIG_ARGS+= -r none .endif .endif -.if !defined(NOPORTDOCS) PORTDOCS= * -.endif SCRIPTS_ENV= WITH_NATIVE="${WITH_NATIVE}" \ WITH_ICU="${WITH_ICU}" \ @@ -149,7 +148,7 @@ pre-configure: @${CHMOD} 700 ${CONFIGURE_WRKSRC}/configure post-configure: -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} .if defined(TRANSCODER) && (${TRANSCODER} == "icu") @(cd ${WRKSRC}/samples && \ ${SETENV} \ @@ -168,11 +167,11 @@ post-configure: .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @${CP} -r ${WRKSRC}/doc/ ${DOCSDIR} .endif -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${EXAMPLESDIR} .for i in ${XERCES_BINS} data @${CP} -r ${WRKSRC}/samples/$i ${EXAMPLESDIR} @@ -182,4 +181,4 @@ post-install: .endfor .endif -.include +.include From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 19:57:44 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E66AA96; Sun, 28 Oct 2012 19:57:44 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 48CDE8FC08; Sun, 28 Oct 2012 19:57:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SJvidJ087647; Sun, 28 Oct 2012 19:57:44 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SJvioQ087645; Sun, 28 Oct 2012 19:57:44 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210281957.q9SJvioQ087645@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 19:57:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306565 - head/www/bozohttpd 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.14 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: Sun, 28 Oct 2012 19:57:44 -0000 Author: pgj Date: Sun Oct 28 19:57:43 2012 New Revision: 306565 URL: http://svn.freebsd.org/changeset/ports/306565 Log: - Convert options to the new format PR: ports/172540 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/www/bozohttpd/Makefile Modified: head/www/bozohttpd/Makefile ============================================================================== --- head/www/bozohttpd/Makefile Sun Oct 28 19:54:57 2012 (r306564) +++ head/www/bozohttpd/Makefile Sun Oct 28 19:57:43 2012 (r306565) @@ -1,9 +1,5 @@ -# New ports collection makefile for: bozohttpd -# Date created: 21.03.2002 -# Whom: Janos.Mohacsi@bsd.hu -# +# Created by: Janos.Mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= bozohttpd PORTVERSION= 20100920 @@ -20,34 +16,38 @@ USE_BZIP2= YES USE_RC_SUBR= bozohttpd #options handling -OPTIONS= HTPASSWD_SUPPORT "Enable htpassord support" off \ - SSL "Enable SSL support" on \ - CGI "Enable CGI support" on +OPTIONS_DEFINE= HTPASSWD SSL CGI +OPTIONS_DEFAULT= SSL CGI + +HTPASSWD_DESC= Enable htpassword support +SSL_DESC= Enable SSL support +CGI_DESC= Enable CGI support #make happy portlint -.if defined(WITHOUT_SSL) +.if empty(PORT_OPTIONS:MSSL) .else USE_OPENSSL= yes .endif -.include +.include -.if defined(WITH_HTPASSWD_SUPPORT) +.if ${PORT_OPTIONS:MHTPASSWD} CFLAGS+= -DDO_HTPASSWD MAKE_ARGS+= 'LDFLAGS+= -lcrypt' +.else +CFLAGS+= -UDO_HTPASSWD .endif -.if defined(WITHOUT_SSL) -CFLAGS+= -DNO_SSL_SUPPORT -.else -#USE_OPENSSL= yes +.if ${PORT_OPTIONS:MSSL} CFLAGS+= -UNO_SSL_SUPPORT +.else +CFLAGS+= -DNO_SSL_SUPPORT .endif -.if defined(WITHOUT_CGI) -CFLAGS+= -DNO_CGIBIN_SUPPORT -.else +.if ${PORT_OPTIONS:MCGI} CFLAGS+= -UNO_CGIBIN_SUPPORT +.else +CFLAGS+= -DNO_CGIBIN_SUPPORT .endif MAN8= bozohttpd.8 @@ -57,4 +57,4 @@ PLIST_FILES= libexec/bozohttpd post-patch: @${REINPLACE_CMD} -e 's|@@PREFIX@@|${PREFIX}|g' ${WRKSRC}/bozohttpd.8 -.include +.include From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 20:01:35 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7428FD4; Sun, 28 Oct 2012 20:01:35 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A71868FC0C; Sun, 28 Oct 2012 20:01:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SK1ZpA088448; Sun, 28 Oct 2012 20:01:35 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SK1Z0f088446; Sun, 28 Oct 2012 20:01:35 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210282001.q9SK1Z0f088446@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 20:01:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306566 - head/net-mgmt/ndpmon 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.14 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: Sun, 28 Oct 2012 20:01:35 -0000 Author: pgj Date: Sun Oct 28 20:01:35 2012 New Revision: 306566 URL: http://svn.freebsd.org/changeset/ports/306566 Log: - Convert options to the new format PR: ports/172545 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/net-mgmt/ndpmon/Makefile Modified: head/net-mgmt/ndpmon/Makefile ============================================================================== --- head/net-mgmt/ndpmon/Makefile Sun Oct 28 19:57:43 2012 (r306565) +++ head/net-mgmt/ndpmon/Makefile Sun Oct 28 20:01:35 2012 (r306566) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ndpmon -# Date created: 2006-12-17 -# Whom: janos.mohacsi@bsd.hu -# +# Created by: janos.mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= ndpmon PORTVERSION= 1.4.0 @@ -18,17 +14,20 @@ COMMENT= On-link icmpv6 message monitori LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -OPTIONS= PY4SUITE "Depend on py-4suite-xml (for generating HTML)" off \ - MACRESOLV "Enable MAC Manufacturer Resolution" off +OPTIONS_DEFINE= PY4SUITE MACRESOLV +OPTIONS_DEFAULT= + +PY4SUITE_DESC= Depend on py-4suite-xml (for generating HTML) +MACRESOLV_DESC= Enable MAC Manufacturer Resolution .include -.if defined(WITHOUT_PY4SUITE) -PLIST_SUB+= PY="@comment " -.else +.if ${PORT_OPTIONS:MPY4SUITE} RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/Ft/Xml/Domlette.py:${PORTSDIR}/textproc/py-4suite-xml USE_PYTHON= 2.6+ PLIST_SUB+= PY="" +.else +PLIST_SUB+= PY="@comment " .endif USE_GNOME= libxml2 @@ -44,8 +43,10 @@ CONFIGURE_ARGS= --with-var-datadir=${PRE MAN8= ndpmon.8 PORTDOCS= INSTALL README -.if defined(WITH_MACRESOLV) +.if ${PORT_OPTIONS:MMACRESOLV} CONFIGURE_ARGS+=--enable-mac-resolv +.else +CONFIGURE_ARGS+=--disable-mac-resolv .endif post-patch: @@ -65,7 +66,7 @@ do-install: ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/*.dtd ${DATADIR} ${INSTALL_SCRIPT} ${WRKSRC}/demopipeprogram.pl.sample ${DATADIR} -.if defined(WITH_PY4SUITE) +.if ${PORT_OPTIONS:MPY4SUITE} ${INSTALL_SCRIPT} ${WRKSRC}/create_html_table.py ${DATADIR} .endif @@ -75,7 +76,7 @@ do-install: ${MKDIR} ${PREFIX}/var/ndpmon ${INSTALL_DATA} ${WRKSRC}/neighbor_list.xml ${PREFIX}/var/ndpmon/neighbor_list.xml -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} post-install: ${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 20:03:24 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F22B131; Sun, 28 Oct 2012 20:03:24 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2D6B28FC0A; Sun, 28 Oct 2012 20:03:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SK3OYF088788; Sun, 28 Oct 2012 20:03:24 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SK3NT5088786; Sun, 28 Oct 2012 20:03:23 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210282003.q9SK3NT5088786@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 20:03:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306567 - head/net-mgmt/nfdump-devel 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.14 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: Sun, 28 Oct 2012 20:03:24 -0000 Author: pgj Date: Sun Oct 28 20:03:23 2012 New Revision: 306567 URL: http://svn.freebsd.org/changeset/ports/306567 Log: - Convert options to the new format PR: ports/172546 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/net-mgmt/nfdump-devel/Makefile Modified: head/net-mgmt/nfdump-devel/Makefile ============================================================================== --- head/net-mgmt/nfdump-devel/Makefile Sun Oct 28 20:01:35 2012 (r306566) +++ head/net-mgmt/nfdump-devel/Makefile Sun Oct 28 20:03:23 2012 (r306567) @@ -1,9 +1,5 @@ -# New ports collection makefile for: nfdump-devel -# Date created: 2007-05-20 -# Whom: Janos.Mohacsi@bsd.hu -# +# Created by: Janos.Mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= nfdump-devel PORTVERSION= 20070808 @@ -22,10 +18,14 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-nfprofile --with-rrdpath=${LOCALBASE} #flow-tools support -OPTIONS= FT2NFDUMP "With Flow-tools to nfdump converter" off \ - SFLOW "Build sflow collector daemon also" off +OPTIONS_DEFINE= FT2NFDUMP SFLOW NFDUMP14 +OPTIONS_DEFAULT= + +FT2NFDUMP_DESC= With Flow-tools to nfdump converter +SFLOW_DESC= Build sflow collector daemon also +NFDUMP14_DESC= Enable compatbility with version 1.4 -.include +.include .if ${OSVERSION} < 700000 BROKEN= does not configure on 6.X @@ -33,8 +33,10 @@ BROKEN= does not configure on 6.X #for compatibility # -.ifndef(WITHOUT_NFDUMP14_SUPPORT) +.if ${PORT_OPTIONS:MNFDUMP14} CONFIGURE_ARGS+= --enable-compat14 +.else +CONFIGURE_ARGS+= --disable-compat14 .endif PLIST_FILES= bin/nfcapd bin/nfdump bin/nfreplay bin/nfexpire bin/nfprofile @@ -42,7 +44,7 @@ MAN1= nfcapd.1 nfdump.1 nfexpire.1 nfpr PORTDOCS= AUTHORS ChangeLog INSTALL README #flow-tools support -.if defined(WITH_FT2NFDUMP) +.if ${PORT_OPTIONS:MFT2NFDUMP} BUILD_DEPENDS+= flow-cat:${PORTSDIR}/net-mgmt/flow-tools CONFIGURE_ARGS+= --enable-ftconv --with-ftpath=${LOCALBASE} PLIST_FILES+= bin/ft2nfdump @@ -50,16 +52,18 @@ MAN1+= ft2nfdump.1 .endif #sflow capture support -.if defined(WITH_SFLOW) +.if ${PORT_OPTIONS:MSFLOW} CONFIGURE_ARGS+= --enable-sflow PLIST_FILES+= bin/sfcapd MAN1+= sfcapd.1 +.else +CONFIGURE_ARGS+= --disable-sflow .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} post-install: ${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif -.include +.include From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 20:05:02 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9C6C381; Sun, 28 Oct 2012 20:05:02 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C2D0C8FC14; Sun, 28 Oct 2012 20:05:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SK52CY089171; Sun, 28 Oct 2012 20:05:02 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SK52VD089167; Sun, 28 Oct 2012 20:05:02 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210282005.q9SK52VD089167@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 20:05:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306568 - head/dns/zonecheck 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.14 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: Sun, 28 Oct 2012 20:05:02 -0000 Author: pgj Date: Sun Oct 28 20:05:02 2012 New Revision: 306568 URL: http://svn.freebsd.org/changeset/ports/306568 Log: - Convert options to the new format PR: ports/172556 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/dns/zonecheck/Makefile Modified: head/dns/zonecheck/Makefile ============================================================================== --- head/dns/zonecheck/Makefile Sun Oct 28 20:03:23 2012 (r306567) +++ head/dns/zonecheck/Makefile Sun Oct 28 20:05:02 2012 (r306568) @@ -1,9 +1,5 @@ -# New ports collection makefile for: zonecheck -# Date created: 10 July 2003 -# Whom: Janos.Mohacsi@bsd.hu -# +# Created by: Janos.Mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= zonecheck PORTVERSION= 3.0.5 @@ -30,13 +26,16 @@ WRKSRC= ${WRKDIR}/${PORTNAME} MAN1= zonecheck.1 DOCS= BUGS INSTALL README TODO -OPTIONS= ZONECHECK_CGI "Install with CGI support" off +OPTIONS_DEFINE= CGI +OPTIONS_DEFAULT= -.include +CGI_DESC= Install with CGI support + +.include ZONECHECK_TARGET= common cli -.if defined(WITH_ZONECHECK_CGI) +.if ${PORT_OPTIONS:MCGI} ZONECHECK_TARGET+= cgi PLIST_SUB+= ZONECHECK_CGI="" .else @@ -49,10 +48,10 @@ do-install: -DETCDIST='-dist' -DRUBY="${RUBY}" -DPREFIX="${PREFIX}" \ -DWWWDIR="${PREFIX}/www/${PORTNAME}" -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} post-install: @${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} .endif -.include +.include From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 20:07:40 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3168764C; Sun, 28 Oct 2012 20:07:40 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 177F08FC0C; Sun, 28 Oct 2012 20:07:40 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SK7dow089645; Sun, 28 Oct 2012 20:07:39 GMT (envelope-from pgj@svn.freebsd.org) Received: (from pgj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SK7dM4089643; Sun, 28 Oct 2012 20:07:39 GMT (envelope-from pgj@svn.freebsd.org) Message-Id: <201210282007.q9SK7dM4089643@svn.freebsd.org> From: Gabor Pali Date: Sun, 28 Oct 2012 20:07:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306569 - head/security/apache-xml-security-c 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.14 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: Sun, 28 Oct 2012 20:07:40 -0000 Author: pgj Date: Sun Oct 28 20:07:39 2012 New Revision: 306569 URL: http://svn.freebsd.org/changeset/ports/306569 Log: - Convert options to the new format PR: ports/172558 Submitted by: pgj Approved by: maintainer Feature safe: yes Modified: head/security/apache-xml-security-c/Makefile Modified: head/security/apache-xml-security-c/Makefile ============================================================================== --- head/security/apache-xml-security-c/Makefile Sun Oct 28 20:05:02 2012 (r306568) +++ head/security/apache-xml-security-c/Makefile Sun Oct 28 20:07:39 2012 (r306569) @@ -1,9 +1,5 @@ -# New ports collection makefile for: apache-xml-security-c -# Date created: 06 Febuary 2007 -# Whom: Tony Maher -# +# Created by: Tony Maher # $FreeBSD$ -# PORTNAME= xml-security-c PORTVERSION= 1.6.1 @@ -17,12 +13,16 @@ COMMENT= Apache XML security libraries - LICENSE= AL2 -OPTIONS= XERCES_3 "With Xerces vesion 3.x (shibboleth2 requires)" on +OPTIONS_DEFINE= XERCES_3 +OPTIONS_DEFAULT= XERCES_3 + +XERCES_3_DESC= With Xerces vesion 3.x (shibboleth2 requires) USE_OPENSSL= yes -.include -.if defined(WITH_XERCES_3) +.include + +.if ${PORT_OPTIONS:MXERCES_3} LIB_DEPENDS+= xerces-c.3:${PORTSDIR}/textproc/xerces-c3 .else LIB_DEPENDS+= xerces-c.27:${PORTSDIR}/textproc/xerces-c2 @@ -34,4 +34,5 @@ USE_AUTOTOOLS= libtool USE_GMAKE= yes USE_LDCONFIG= yes CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} -.include + +.include From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 20:54:28 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D4A81E9; Sun, 28 Oct 2012 20:54:28 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 85B3E8FC12; Sun, 28 Oct 2012 20:36:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SKa4jE094477; Sun, 28 Oct 2012 20:36:04 GMT (envelope-from glewis@svn.freebsd.org) Received: (from glewis@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SKa4Hi094475; Sun, 28 Oct 2012 20:36:04 GMT (envelope-from glewis@svn.freebsd.org) Message-Id: <201210282036.q9SKa4Hi094475@svn.freebsd.org> From: Greg Lewis Date: Sun, 28 Oct 2012 20:36:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306570 - head/java/openjdk7 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.14 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: Sun, 28 Oct 2012 20:54:28 -0000 Author: glewis Date: Sun Oct 28 20:36:03 2012 New Revision: 306570 URL: http://svn.freebsd.org/changeset/ports/306570 Log: . Remove duplicate MAKE_JOBS_SAFE line. [1] . Group the USE_* directives together. . Trim the Makefile header. [2] . Convert to optionsNG. [2] . Remove the ABI numbers from LIB_DEPENDS. [2] . Fix the POLICY option. [2] . Fix permissions and ownership of jexec. [2] . Make sure the bootstrap JDK is used by the ant bootstrap. [2] Submitted by: kuriyama@ [1] jkim@ [2] Feature safe: yes Modified: head/java/openjdk7/Makefile Modified: head/java/openjdk7/Makefile ============================================================================== --- head/java/openjdk7/Makefile Sun Oct 28 20:07:39 2012 (r306569) +++ head/java/openjdk7/Makefile Sun Oct 28 20:36:03 2012 (r306570) @@ -7,7 +7,7 @@ PORTNAME= openjdk PORTVERSION= ${JDK_MAJOR_VERSION}.${PORT_MINOR_VERSION}.${PORT_BUILD_NUMBER} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk${JDK_MAJOR_VERSION}u${JDK_MINOR_VERSION}/promoted/b${JDK_BUILD_NUMBER}/ \ http://download.java.net/jaxp/1.4.5/:jaxp \ @@ -29,11 +29,16 @@ LICENSE= GPLv2 WRKSRC= ${WRKDIR}/${PORTNAME} -USE_ZIP= YES -MAKE_JOBS_UNSAFE= YES +USE_ZIP= yes +USE_GMAKE= yes +USE_ICONV= yes +USE_XORG+= x11 xext xi xrender xt xtst +MAKE_JOBS_UNSAFE= yes -OPTIONS= POLICY "Install the Unlimited Strength Policy Files" on \ - TZUPDATE "Update the time zone data" on +OPTIONS_DEFINE= POLICY TZUPDATE +OPTIONS_DEFAULT= POLICY TZUPDATE +POLICY_DESC= Install the Unlimited Strength Policy Files +TZUPDATE_DESC= Update the time zone data PORT_MINOR_VERSION= ${JDK_MINOR_VERSION} PORT_BUILD_NUMBER= ${JDK_BUILD_NUMBER} @@ -49,15 +54,11 @@ ANT_DISTFILE= apache-ant-${ANT_VERSION} LATEST_LINK= openjdk7 -USE_GMAKE= YES -USE_ICONV= YES -USE_XORG+= x11 xext xi xrender xt xtst -MAKE_JOBS_UNSAFE= yes - -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 \ - asound.2:${PORTSDIR}/audio/alsa-lib +LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2 \ + asound:${PORTSDIR}/audio/alsa-lib BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip \ + ${LOCALBASE}/bin/registervm:${PORTSDIR}/java/javavmwrapper \ ${LOCALBASE}/include/cups/cups.h:${PORTSDIR}/print/cups-client RUN_DEPENDS+= javavm:${PORTSDIR}/java/javavmwrapper @@ -83,6 +84,7 @@ MAKE_ENV+= LANG="C" \ ALT_PKG_PATH="${LOCALBASE}" \ ALT_PACKAGE_PATH="${LOCALBASE}" \ ANT_HOME="${WRKDIR}/apache-ant-${ANT_VERSION}" \ + JAVACMD=${BOOTSTRAPJDKDIR}/bin/java \ X11DIR="${LOCALBASE}" \ LOCALDIR="${LOCALBASE}" \ NO_DOCS="true" \ @@ -107,12 +109,11 @@ MAKE_ENV+= HOTSPOT_BUILD_JOBS=${BUILD_JO BOOTSTRAP_JDKS= ${LOCALBASE}/openjdk7 \ ${LOCALBASE}/openjdk6 \ - ${LOCALBASE}/jdk1.6.0 \ - ${LOCALBASE}/diablo-jdk1.6.0 + ${LOCALBASE}/bootstrap-openjdk -.include +.include -.if defined(WITH_TZUPDATE) +.if ${PORT_OPTIONS:MTZUPDATE} RUN_DEPENDS+= ${LOCALBASE}/share/java/zi:${PORTSDIR}/java/java-zoneinfo .endif @@ -125,21 +126,19 @@ BOOTSTRAPJDKDIR= ${BJDK} # if no valid jdk found, set dependency .if !defined(BOOTSTRAPJDKDIR) -BOOTSTRAPJDKDIR?= ${LOCALBASE}/diablo-jdk1.6.0 -BUILD_DEPENDS+= ${BOOTSTRAPJDKDIR}/bin/javac:${PORTSDIR}/java/diablo-jdk16 +BOOTSTRAPJDKDIR?= ${LOCALBASE}/bootstrap-openjdk +BUILD_DEPENDS+= ${BOOTSTRAPJDKDIR}/bin/javac:${PORTSDIR}/java/bootstrap-openjdk .endif post-patch: @${REINPLACE_CMD} "s|%%LOCALBASE%%|${LOCALBASE}|" \ ${WRKSRC}/hotspot/src/os/bsd/vm/os_bsd.cpp - @${REINPLACE_CMD} 's|build-policy install-limited|build-policy install-unlimited|' \ - ${WRKSRC}/jdk/make/javax/crypto/Makefile -.if defined(WITH_POLICY) +.if ${PORT_OPTIONS:MPOLICY} @${REINPLACE_CMD} 's|build-policy install-limited|build-policy install-unlimited|' \ ${WRKSRC}/jdk/make/javax/crypto/Makefile .endif -.if defined(WITH_TZUPDATE) +.if ${PORT_OPTIONS:MTZUPDATE} pre-install: @# Update time zones @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib/zi @@ -156,6 +155,8 @@ do-install: ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ done + @${CHOWN} ${BINOWN}:${BINGRP} ${INSTALLDIR}/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} ${INSTALLDIR}/jre/lib/${ARCH}/jexec @${INSTALL_DATA} ${FILESDIR}/cacerts ${INSTALLDIR}/jre/lib/security/cacerts @${ECHO} "@unexec ${LOCALBASE}/bin/unregistervm ${INSTALLDIR}/bin/java" >> ${TMPPLIST} @${FIND} -s ${INSTALLDIR} -not -type d | ${SORT} | \ @@ -168,4 +169,4 @@ post-install: # Register the VM "${LOCALBASE}/bin/registervm" "${INSTALLDIR}/bin/java # OpenJDK${JDK_MAJOR_VERSION}" -.include +.include From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 20:54:28 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B657D21A; Sun, 28 Oct 2012 20:54:28 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0AF208FCDF; Sun, 28 Oct 2012 20:46:07 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SKk6x1095696; Sun, 28 Oct 2012 20:46:06 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SKk6qR095693; Sun, 28 Oct 2012 20:46:06 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210282046.q9SKk6qR095693@svn.freebsd.org> From: Pawel Pekala Date: Sun, 28 Oct 2012 20:46:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306571 - head/sysutils/mbmon 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.14 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: Sun, 28 Oct 2012 20:54:28 -0000 Author: pawel Date: Sun Oct 28 20:46:06 2012 New Revision: 306571 URL: http://svn.freebsd.org/changeset/ports/306571 Log: - Convert to OptionsNG [1] - Add fflush patch to solve the problem for using pipe to get outputs [1] - Add option to support ASUS A7N8X-VM/400 [1] - Improve COMMENT - Trim Makefile headers PR: ports/171933 [1] Submitted by: Takefu [1] Approved by: maintainer timeout (1 month) Feature safe: yes Modified: head/sysutils/mbmon/Makefile head/sysutils/mbmon/distinfo Modified: head/sysutils/mbmon/Makefile ============================================================================== --- head/sysutils/mbmon/Makefile Sun Oct 28 20:36:03 2012 (r306570) +++ head/sysutils/mbmon/Makefile Sun Oct 28 20:46:06 2012 (r306571) @@ -1,21 +1,19 @@ -# Ports collection makefile for: xmbmon -# Date created: 2001/08/30 -# Whom: kaz@kobe1995.net (NAKAMURA Kauzushi) -# +# Created by: kaz@kobe1995.net (NAKAMURA Kauzushi) # $FreeBSD$ -# PORTNAME?= mbmon PORTVERSION= 205 -PORTREVISION?= 5 +PORTREVISION?= 6 CATEGORIES= sysutils MASTER_SITES= http://www.nt.phys.kyushu-u.ac.jp/shimizu/download/xmbmon/ DISTNAME= xmbmon${PORTVERSION} MAINTAINER= 5u623l20@gmail.com -COMMENT?= A tty motherboard monitor for LM78/79, W8378x, AS99127F, VT82C686 and ADM9240 +COMMENT?= Motherboard monitor for LM78/79, W8378x, AS99127F, VT82C686 and ADM9240 PORTSCOUT= limit:^[0-9]+$ +PATCH_SITES+= ${MASTER_SITES} +PATCHFILES+= xmbmon${PORTVERSION}_fflush.patch ONLY_FOR_ARCHS= i386 amd64 GNU_CONFIGURE= yes @@ -26,17 +24,24 @@ PLIST_FILES+= bin/${PORTNAME} MAN1?= mbmon.1 PORTDOCS= ChangeLog ChangeLog.jp ReadMe ReadMe.jp ReadMe.tech -OPTIONS= SMB "enable smb(4) support" on +OPTIONS_DEFINE= ASUS SMB +OPTIONS_SET= SMB +ASUS_DESC= "Enable A7N8X-VM support" +SMB_DESC= "Enable smb(4) support" .if ${PORTNAME} == "mbmon" USE_RC_SUBR= mbmon .endif -.include +.include + +.if ${PORT_OPTIONS:MASUS} +PATCHFILES+= xmbmon${PORTVERSION}_A7N8X-VM.patch +.endif post-patch: @${REINPLACE_CMD} -e 's+/usr/share/doc/mbmon+${DOCSDIR}+' ${WRKSRC}/mbmon.1 -.if !defined(WITHOUT_SMB) +.if ${PORT_OPTIONS:MSMB} @${REINPLACE_CMD} -e 's/^DEFS=/&-DSMBUS_IOCTL /' ${WRKSRC}/Makefile.in .endif @@ -49,4 +54,4 @@ do-install: ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif -.include +.include Modified: head/sysutils/mbmon/distinfo ============================================================================== --- head/sysutils/mbmon/distinfo Sun Oct 28 20:36:03 2012 (r306570) +++ head/sysutils/mbmon/distinfo Sun Oct 28 20:46:06 2012 (r306571) @@ -1,2 +1,6 @@ SHA256 (xmbmon205.tar.gz) = 65b10ebfe53585ac22d6a31d8ef3fea552cb266cf2c124c00421dec1df5a4a4f SIZE (xmbmon205.tar.gz) = 142987 +SHA256 (xmbmon205_fflush.patch) = f837f465861ce46e4a90d1d3c7a680c1904f7fb91e14efcbad22313c90e2cdc7 +SIZE (xmbmon205_fflush.patch) = 242 +SHA256 (xmbmon205_A7N8X-VM.patch) = 20565e0b1216d3becb87f796fa547e81fec84e37cff05405eb8f71bc97eebc68 +SIZE (xmbmon205_A7N8X-VM.patch) = 274 From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 21:19:21 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23FE6109; Sun, 28 Oct 2012 21:19:21 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 88D018FC0C; Sun, 28 Oct 2012 21:19:20 +0000 (UTC) Received: by mail-qc0-f182.google.com with SMTP id k19so2590688qcs.13 for ; Sun, 28 Oct 2012 14:19:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding:content-type; bh=E4c8QgGupLfh9PdUHMxfph4KUI0NSQhNXmoZp9ZQlgI=; b=A/0CJmL79mGGUoedivBrNg0Evi2X9QsVSX7KAExC3Namgo3SrluIbyWLmfIoRRgRgK SIwbflUPObuw1b9YLD/foJHf8qjAl510hNGai7GmGAmW/J4JXKd/uBTsdA43SO6flLdc ZAI8hBLMSj+EzIlFblvm7n2PQOKtdP7wUw8AmvTTfOqjJp0poECV0DJXgDGl9zVJNOzX lfi2PC57k29u5rNKCRgdQpL2jHtPq7u6WsuSy4V2joMJCeqf/Kwf57il3ZT9Ua1mwMmh sDGzAtO+WNArjTxKYjb7IOQIqCAmr4cwJnWjkLjASJ3iaugZO6qAq5Rnw1J2bl2FK9Ef 5Oug== Received: by 10.49.71.4 with SMTP id q4mr5539345qeu.16.1351458741738; Sun, 28 Oct 2012 14:12:21 -0700 (PDT) Received: from mocha.verizon.net (c-71-61-40-68.hsd1.oh.comcast.net. [71.61.40.68]) by mx.google.com with ESMTPS id lk6sm3148558qeb.10.2012.10.28.14.12.17 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 28 Oct 2012 14:12:18 -0700 (PDT) Sender: "Jason E. Hale" From: "Jason E. Hale" To: Pawel Pekala Subject: Re: svn commit: r306571 - head/sysutils/mbmon Date: Sun, 28 Oct 2012 17:12:16 -0400 Message-ID: <1663223.kWmZmHxpKG@mocha.verizon.net> User-Agent: KMail/4.8.4 (FreeBSD/9.0-RELEASE-p3; KDE/4.8.4; i386; ; ) In-Reply-To: <201210282046.q9SKk6qR095693@svn.freebsd.org> References: <201210282046.q9SKk6qR095693@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 28 Oct 2012 21:19:21 -0000 On Sunday, October 28, 2012 20:46:06 Pawel Pekala wrote: > Author: pawel > Date: Sun Oct 28 20:46:06 2012 > New Revision: 306571 > URL: http://svn.freebsd.org/changeset/ports/306571 > > Log: > - Convert to OptionsNG [1] <--snip--> > > -OPTIONS= SMB "enable smb(4) support" on > +OPTIONS_DEFINE= ASUS SMB > +OPTIONS_SET= SMB > +ASUS_DESC= "Enable A7N8X-VM support" > +SMB_DESC= "Enable smb(4) support" > Should be OPTIONS_DEFAULT rather than OPTIONS_SET. -- Jason E. Hale - jhale@ FreeBSD Ports Committer KDE/FreeBSD Team From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 21:20:28 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D97C01F0; Sun, 28 Oct 2012 21:20:28 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BEFB28FC08; Sun, 28 Oct 2012 21:20:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9SLKSD9001733; Sun, 28 Oct 2012 21:20:28 GMT (envelope-from glewis@svn.freebsd.org) Received: (from glewis@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9SLKS5x001729; Sun, 28 Oct 2012 21:20:28 GMT (envelope-from glewis@svn.freebsd.org) Message-Id: <201210282120.q9SLKS5x001729@svn.freebsd.org> From: Greg Lewis Date: Sun, 28 Oct 2012 21:20:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306572 - in head/java/openjdk7: . 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.14 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: Sun, 28 Oct 2012 21:20:28 -0000 Author: glewis Date: Sun Oct 28 21:20:28 2012 New Revision: 306572 URL: http://svn.freebsd.org/changeset/ports/306572 Log: . Update to 7u9. Feature safe: yes Added: head/java/openjdk7/files/patch-7u9 (contents, props changed) Deleted: head/java/openjdk7/files/patch-CVE-2012-4681 Modified: head/java/openjdk7/Makefile head/java/openjdk7/files/patch-set Modified: head/java/openjdk7/Makefile ============================================================================== --- head/java/openjdk7/Makefile Sun Oct 28 20:46:06 2012 (r306571) +++ head/java/openjdk7/Makefile Sun Oct 28 21:20:28 2012 (r306572) @@ -7,7 +7,6 @@ PORTNAME= openjdk PORTVERSION= ${JDK_MAJOR_VERSION}.${PORT_MINOR_VERSION}.${PORT_BUILD_NUMBER} -PORTREVISION= 2 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk${JDK_MAJOR_VERSION}u${JDK_MINOR_VERSION}/promoted/b${JDK_BUILD_NUMBER}/ \ http://download.java.net/jaxp/1.4.5/:jaxp \ @@ -40,8 +39,8 @@ OPTIONS_DEFAULT= POLICY TZUPDATE POLICY_DESC= Install the Unlimited Strength Policy Files TZUPDATE_DESC= Update the time zone data -PORT_MINOR_VERSION= ${JDK_MINOR_VERSION} -PORT_BUILD_NUMBER= ${JDK_BUILD_NUMBER} +PORT_MINOR_VERSION= 9 +PORT_BUILD_NUMBER= 05 JDK_MAJOR_VERSION= 7 JDK_MINOR_VERSION= 6 JDK_BUILD_NUMBER= 24 Added: head/java/openjdk7/files/patch-7u9 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/openjdk7/files/patch-7u9 Sun Oct 28 21:20:28 2012 (r306572) @@ -0,0 +1,40207 @@ +diff -r e4def733cc8c -r d9c8fa0606fd .hgtags +--- .hgtags Tue Aug 07 12:09:29 2012 -0700 ++++ .hgtags Thu Sep 20 14:22:08 2012 -0700 +@@ -197,3 +197,17 @@ + 29f6fb1833eb2a696b95e8985126f2d70f511a82 jdk7u6-b21 + 31cdab09d719fe60876c7f3a472386c1455d93e2 jdk7u6-b22 + d1c709f1196a73d1df10d04a221b10e30fd2eb48 jdk7u6-b23 ++e4def733cc8c58e83b7cefa7edd89a3e2b793520 jdk7u6-b24 ++f5f546dba006778854e7a81141fc1b44acd257a4 jdk7u6-b30 ++43775eae8df6c874fb3631c86009505cf3821b1f jdk7u7-b10 ++a380c75873bfb578e605d4362edb18c08698cc3e jdk7u7-b30 ++d7f2b3949f9c9ff1115ea61c496d3cd4c62e2759 jdk7u7-b11 ++82c51e6a3bea0dd8feb1bd3033e847dbdc5d9f99 jdk7u7-b31 ++5ca487420f9c2cf6d39acf1e842d13bf8ef0ca07 jdk7u7-b01 ++dbfa9c57853c2dd9cd4e4a139d83b519573d8031 jdk7u7-b02 ++bae912f95f2aa1d22dbc0ff62816b71861965cd6 jdk7u9-b03 ++0000000000000000000000000000000000000000 jdk7u7-b01 ++5ca487420f9c2cf6d39acf1e842d13bf8ef0ca07 jdk7u9-b01 ++0000000000000000000000000000000000000000 jdk7u7-b02 ++dbfa9c57853c2dd9cd4e4a139d83b519573d8031 jdk7u9-b02 ++3159fbe20e2d9501007aae8ca3db58978d754561 jdk7u9-b04 +diff -r 02512f61591f -r a5dced409c4b .hgtags +--- corba/.hgtags Tue Aug 07 12:09:37 2012 -0700 ++++ corba/.hgtags Thu Sep 20 14:22:12 2012 -0700 +@@ -197,3 +197,17 @@ + 353c15c4bc371f2f8258344c988d1403477cc140 jdk7u6-b21 + 793b80c0316fcafa18668bced26acb41af3be07d jdk7u6-b22 + 2a8376123fbb81bc4b2f643ff7cfaf7f87b21c35 jdk7u6-b23 ++02512f61591f55d84458d1ea4ce84eecb7324f89 jdk7u6-b24 ++8b20875b3faa01ef56331045de88747df278eaeb jdk7u6-b30 ++d7fe6c13adf9e06d98c061449d171bc06c2ba0a3 jdk7u7-b10 ++496baf62d0550c704505b0ff6f390279f6a569e0 jdk7u7-b30 ++e57e4274a3575f278115cc8ef03c5bdf3c43a7ed jdk7u7-b11 ++06cbc4af754ea8f2e3b7d0b1701d1a69ce9d5075 jdk7u7-b31 ++8737f43e092ea52dd85dcf164736eea3b9b364e6 jdk7u7-b01 ++ec602836c4e173927911673d253bb8baa1e3d170 jdk7u7-b02 ++a163e56c6679d10dc64ec48f35e67c3a5942afba jdk7u9-b03 ++0000000000000000000000000000000000000000 jdk7u7-b01 ++8737f43e092ea52dd85dcf164736eea3b9b364e6 jdk7u9-b01 ++0000000000000000000000000000000000000000 jdk7u7-b02 ++ec602836c4e173927911673d253bb8baa1e3d170 jdk7u9-b02 ++268470f3f0d0d7e9b04c579c551571097f0b0305 jdk7u9-b04 +diff -r b03c2687fb16 -r da4aa289ac10 .hgtags +--- hotspot/.hgtags Tue Aug 07 12:09:51 2012 -0700 ++++ hotspot/.hgtags Mon Sep 24 12:07:44 2012 -0700 +@@ -318,3 +318,17 @@ + 02a6c89432d724119565f9ba25672829b136fc5f jdk7u6-b21 + a79d86eef6ac995a1fc35554f082f3a61abe9ae0 jdk7u6-b22 + df57f6208cb76b4e8d1a0bd0eea3d2ad577cb79b jdk7u6-b23 ++b03c2687fb16514652e79261ad68d2c601dcee62 jdk7u6-b24 ++cffde29ea7cc8647f17002a4d0e94065dcd82839 jdk7u6-b30 ++f7933fecea9aa494e4032e17ff07e5fcec4b5961 jdk7u7-b10 ++eeef33dc4b40f9ba50c4c9b1ac61b30f0f2523bf jdk7u7-b30 ++f1551c70c7f598b7049bcc33e530fc738a81c7a4 jdk7u7-b11 ++6b9db7216dd4b7846faf372f19566a418c8e391f jdk7u7-b31 ++b66bb0e3224ff15259361a5b501bf8fa6b346113 jdk7u7-b01 ++ca6943c94e6075fc28353d52ac6ea52c80aef9bb jdk7u7-b02 ++e043d96d767d8ba4d74d53c477af8e07b78b6128 jdk7u9-b03 ++0000000000000000000000000000000000000000 jdk7u7-b01 ++b66bb0e3224ff15259361a5b501bf8fa6b346113 jdk7u9-b01 ++0000000000000000000000000000000000000000 jdk7u7-b02 ++ca6943c94e6075fc28353d52ac6ea52c80aef9bb jdk7u9-b02 ++ed42837374ac730ddaf2fd28814017c665634a8b jdk7u9-b04 +diff -r b03c2687fb16 -r da4aa289ac10 make/hotspot_version +--- hotspot/make/hotspot_version Tue Aug 07 12:09:51 2012 -0700 ++++ hotspot/make/hotspot_version Mon Sep 24 12:07:44 2012 -0700 +@@ -34,8 +34,8 @@ + HOTSPOT_VM_COPYRIGHT=Copyright 2012 + + HS_MAJOR_VER=23 +-HS_MINOR_VER=2 +-HS_BUILD_NUMBER=09 ++HS_MINOR_VER=5 ++HS_BUILD_NUMBER=02 + + JDK_MAJOR_VER=1 + JDK_MINOR_VER=7 +diff -r b03c2687fb16 -r da4aa289ac10 src/cpu/sparc/vm/methodHandles_sparc.cpp +--- hotspot/src/cpu/sparc/vm/methodHandles_sparc.cpp Tue Aug 07 12:09:51 2012 -0700 ++++ hotspot/src/cpu/sparc/vm/methodHandles_sparc.cpp Mon Sep 24 12:07:44 2012 -0700 +@@ -698,6 +698,17 @@ + if (arg_slots.is_constant() && arg_slots.as_constant() == 0) + return; + ++ // We have to insert at least one word, so bang the stack. ++ if (UseStackBanging) { ++ // Save G3_method_handle since bang_stack_with_offset uses it as a temp register ++ __ mov(G3_method_handle, temp_reg); ++ int frame_size = (arg_slots.is_constant() ? -1 * arg_slots.as_constant() * wordSize : 0); ++ if (frame_size <= 0) ++ frame_size = 256 * Interpreter::stackElementSize; // conservative ++ __ generate_stack_overflow_check(frame_size); ++ __ mov(temp_reg, G3_method_handle); ++ } ++ + assert_different_registers(argslot_reg, temp_reg, temp2_reg, temp3_reg, + (!arg_slots.is_register() ? Gargs : arg_slots.as_register())); + +@@ -1702,6 +1713,14 @@ + "copied argument(s) must fall within current frame"); + } + ++ if (UseStackBanging) { ++ // Save G3_method_handle since bang_stack_with_offset uses it as a temp register ++ __ mov(G3_method_handle, O3_scratch); ++ // Bang the stack before pushing args. ++ int frame_size = 256 * Interpreter::stackElementSize; // conservative ++ __ generate_stack_overflow_check(frame_size + sizeof(RicochetFrame)); ++ __ mov(O3_scratch, G3_method_handle); ++ } + // insert location is always the bottom of the argument list: + __ neg(O1_stack_move); + push_arg_slots(_masm, O0_argslot, O1_stack_move, O2_scratch, O3_scratch); +@@ -2118,6 +2137,18 @@ + // The return handler will further cut back the stack when it takes + // down the RF. Perhaps there is a way to streamline this further. + ++ if (UseStackBanging) { ++ // Save G3_method_handle since bang_stack_with_offset uses it as a temp register ++ __ mov(G3_method_handle, O4_scratch); ++ // Bang the stack before recursive call. ++ // Even if slots == 0, we are inside a RicochetFrame. ++ int frame_size = collect_count.is_constant() ? collect_count.as_constant() * wordSize : -1; ++ if (frame_size < 0) { ++ frame_size = 256 * Interpreter::stackElementSize; // conservative ++ } ++ __ generate_stack_overflow_check(frame_size + sizeof(RicochetFrame)); ++ __ mov(O4_scratch, G3_method_handle); ++ } + // State during recursive call: + // ... keep1 | dest | dest=42 | keep3 | RF... | collect | bounce_pc | + __ jump_to_method_handle_entry(G3_method_handle, O1_scratch); +diff -r b03c2687fb16 -r da4aa289ac10 src/cpu/x86/vm/methodHandles_x86.cpp +--- hotspot/src/cpu/x86/vm/methodHandles_x86.cpp Tue Aug 07 12:09:51 2012 -0700 ++++ hotspot/src/cpu/x86/vm/methodHandles_x86.cpp Mon Sep 24 12:07: