From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 00:19:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D3081065672 for ; Sun, 7 Oct 2012 00:19:11 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id B31AE8FC12 for ; Sun, 7 Oct 2012 00:19:10 +0000 (UTC) Received: by mail-wg0-f50.google.com with SMTP id 16so2376844wgi.31 for ; Sat, 06 Oct 2012 17:19:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=l3H+ibppmWMOKPBe/w7lzUZf4TVJq0da86gu/4Eak4o=; b=Im2uChAejdSGFqj4ybWVgfVjLBEM/AgZNR139os+Wc9gz/gHOrQqtuM0cQMTh46a7F bp7ibaKgJIpfNbWBwLjUi5ge1iUdamwx/Kum9qmvX8OtDYumZT/2MA+GrvHyZm8Uo62n dN92RUKyMlk26uc7yegYO2BxhfuhxjkhLjyiaebxco+hpNuYo6Be+VtwdC1e9Z4UFN7b cnnSiId84LfI2wLSd6NiSoAtFzH1ThAIRGgsOpP0C49islm9bqHyvP3MvU6G8ewJp0yF V6kxNBm152tI/gwu7zvEiEw2wUOhSC5Aodf4BrXKI9Sj7HqjJFc6hFT11NLkIyMBabxg XGRg== MIME-Version: 1.0 Received: by 10.180.91.169 with SMTP id cf9mr11793518wib.1.1349569149317; Sat, 06 Oct 2012 17:19:09 -0700 (PDT) Sender: bsd-src@helfman.org Received: by 10.194.81.136 with HTTP; Sat, 6 Oct 2012 17:19:09 -0700 (PDT) In-Reply-To: <5070B355.1000802@FreeBSD.org> References: <201210060537.q965bUpk005984@svn.freebsd.org> <5070A09B.1090404@FreeBSD.org> <5070B0F0.6080404@FreeBSD.org> <5070B355.1000802@FreeBSD.org> Date: Sat, 6 Oct 2012 17:19:09 -0700 X-Google-Sender-Auth: HPajjUUvSMW_MAFVzod-C6xfdgQ Message-ID: From: Jason Helfman To: Doug Barton X-Gm-Message-State: ALoCoQlhCXK2ADfjKh0Vorm92gSXB+wVr42lrwtzz5FG3xWlH9EgaSeVkV7ERudnAPnbmDfUNvNz Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, nemysis@gmx.ch, ports-committers@freebsd.org Subject: Re: svn commit: r305338 - in head/games/pycadia: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 00:19:11 -0000 On Sat, Oct 6, 2012 at 3:40 PM, Doug Barton wrote: > On 10/06/2012 15:34, Jason Helfman wrote: > > On Sat, Oct 6, 2012 at 3:30 PM, Doug Barton > > wrote: > > > > On 10/06/2012 15:25, Jason Helfman wrote: > > > On Sat, Oct 6, 2012 at 2:20 PM, Doug Barton > > > > >> wrote: > > > > > > On 10/05/2012 22:37, Jason Helfman wrote: > > > > Added: head/games/pycadia/files/pycadia.sh.in > > > > > > > > > > > > ============================================================================== > > > > --- /dev/null 00:00:00 1970 (empty, because file is newly > > added) > > > > +++ head/games/pycadia/files/pycadia.sh.in > > > > > Sat Oct 6 05:37:29 2012 (r305338) > > > > @@ -0,0 +1,6 @@ > > > > +#!/bin/sh > > > > +# > > > > +# $FreeBSD$ > > > > + > > > > +cd "%%DATADIR%%" > > > > +./pycadia.py > > > > > > Unless there is some reason to cd into that directory, you'd > > be better > > > off with just: %%DATADIR%%/pycadia.py > > > > > > And in any case, shouldn't you be using exec here? > > > > > > > > > I can check with the maintainer, but it does need to be run from > the > > > DATADIR specifically. > > > > Ok, that's not a problem. A comment to that effect would probably be > > useful for future reference. > > > > > > > What would exec provide that isn't currently fulfilled? > > > > Eliminating the shell. > > > > Fair enough. I can discuss with maintainer, as he has many ports that do > > this. I would suggest using %%PYTHON_CMD%% in favor of exec. Do you see > > an issue with that? > > Yes, unless %%PYTHON_CMD%% has some magic to eliminate the shell that > I'm not aware of. :) > > Try the existing command with and without exec and then look at your ps > output to see my point. > > Doug > Currently I'm not aware of a method to eliminate the shell within a shell script. Had I realized this was such an issue I would've sent mail requesting a review. %%PYTHON_CMD%% become /usr/local/bin/pythonXX -jgh -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 00:42:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EC29106566B; Sun, 7 Oct 2012 00:42:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 68A8A8FC08; Sun, 7 Oct 2012 00:42: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 q970gJDf076613; Sun, 7 Oct 2012 00:42:19 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q970gJVH076611; Sun, 7 Oct 2012 00:42:19 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210070042.q970gJVH076611@svn.freebsd.org> From: Mark Linimon Date: Sun, 7 Oct 2012 00:42:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305424 - head/net-p2p/vuze X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 00:42:19 -0000 Author: linimon Date: Sun Oct 7 00:42:18 2012 New Revision: 305424 URL: http://svn.freebsd.org/changeset/ports/305424 Log: Attempt to fix build on pointyhat-west. Modified: head/net-p2p/vuze/Makefile Modified: head/net-p2p/vuze/Makefile ============================================================================== --- head/net-p2p/vuze/Makefile Sat Oct 6 23:01:46 2012 (r305423) +++ head/net-p2p/vuze/Makefile Sun Oct 7 00:42:18 2012 (r305424) @@ -65,7 +65,7 @@ INSTALLS_ICONS= yes .include -.if ${PORT_OPTIONS:MDEVEL} +.if ${PORT_OPTIONS:MSWTDEVEL} SWT= swt-devel BUILD_DEPENDS+= ${JAVALIBDIR}/swt-devel.jar:${PORTSDIR}/x11-toolkits/swt-devel RUN_DEPENDS+= ${JAVALIBDIR}/swt-devel.jar:${PORTSDIR}/x11-toolkits/swt-devel From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 03:55:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0D7C01065670; Sun, 7 Oct 2012 03:55:20 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EC0CA8FC08; Sun, 7 Oct 2012 03:55: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 q973tJY5010596; Sun, 7 Oct 2012 03:55:19 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q973tJw4010593; Sun, 7 Oct 2012 03:55:19 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210070355.q973tJw4010593@svn.freebsd.org> From: Wen Heping Date: Sun, 7 Oct 2012 03:55:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305425 - head/science/py-netCDF4 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 03:55:20 -0000 Author: wen Date: Sun Oct 7 03:55:19 2012 New Revision: 305425 URL: http://svn.freebsd.org/changeset/ports/305425 Log: - Update to 1.0.1 - Trim Makefile headers - Reset maintainer to ports@ Modified: head/science/py-netCDF4/Makefile head/science/py-netCDF4/distinfo Modified: head/science/py-netCDF4/Makefile ============================================================================== --- head/science/py-netCDF4/Makefile Sun Oct 7 00:42:18 2012 (r305424) +++ head/science/py-netCDF4/Makefile Sun Oct 7 03:55:19 2012 (r305425) @@ -1,18 +1,14 @@ -# Ports collection makefile for: netCDF4 -# Date created: 18 Feb, 2009 -# Whom: wenheping@gmail.com -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= netCDF4 -PORTVERSION= 0.9.9 +PORTVERSION= 1.0.1 CATEGORIES= science python MASTER_SITES= http://netcdf4-python.googlecode.com/files/ \ CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= wen@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python Interface to the NetCDF Library(versions 3 and 4) BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/numpy:${PORTSDIR}/math/py-numpy Modified: head/science/py-netCDF4/distinfo ============================================================================== --- head/science/py-netCDF4/distinfo Sun Oct 7 00:42:18 2012 (r305424) +++ head/science/py-netCDF4/distinfo Sun Oct 7 03:55:19 2012 (r305425) @@ -1,2 +1,2 @@ -SHA256 (netCDF4-0.9.9.tar.gz) = 0ac5352348d9c508736969bf442f7a1ccba21877d9ef50a28678d3d9f934a887 -SIZE (netCDF4-0.9.9.tar.gz) = 448789 +SHA256 (netCDF4-1.0.1.tar.gz) = 67357a3a9b16e081503f6d2d4385cb52a2232a7203483d6e1899f22315b0c8f8 +SIZE (netCDF4-1.0.1.tar.gz) = 490179 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 04:31:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1B83106566C; Sun, 7 Oct 2012 04:31:14 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8CE598FC08; Sun, 7 Oct 2012 04:31: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 q974VEJp016702; Sun, 7 Oct 2012 04:31:14 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q974VEtl016700; Sun, 7 Oct 2012 04:31:14 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210070431.q974VEtl016700@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 04:31:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305426 - head/devel/binutils X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 04:31:14 -0000 Author: eadler Date: Sun Oct 7 04:31:13 2012 New Revision: 305426 URL: http://svn.freebsd.org/changeset/ports/305426 Log: Convert to OptionsNG PR: ports/172422 Submitted by: Michael Gmelin Modified: head/devel/binutils/Makefile Modified: head/devel/binutils/Makefile ============================================================================== --- head/devel/binutils/Makefile Sun Oct 7 03:55:19 2012 (r305425) +++ head/devel/binutils/Makefile Sun Oct 7 04:31:13 2012 (r305426) @@ -1,9 +1,5 @@ -# New ports collection makefile for: binutils -# Date created: 9 July 2009 -# Whom: Martin Matuska -# +# Created by: Martin Matuska # $FreeBSD$ -# PORTNAME= binutils PORTVERSION= 2.22 @@ -23,7 +19,7 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libgmp.s CONFLICTS= libbfd-[0-9]* -OPTIONS= NLS "Enable National Language Support" off +OPTIONS_DEFINE= NLS LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING3 LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING3.LIB @@ -69,7 +65,7 @@ INFO= as \ configure \ ld -.include +.include # Actual earliest version may differ slightly .if ${OSVERSION} >= 900044 @@ -79,7 +75,7 @@ PLIST_SUB+= GOLD="" PLIST_SUB+= GOLD="@comment " .endif -.if defined(WITH_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" .else @@ -100,4 +96,4 @@ post-install: @${FIND} -ds ${PREFIX}/${CONFIGURE_TARGET} -type d | \ ${SED} -e 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 04:34:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5508106564A; Sun, 7 Oct 2012 04:34:43 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 845DE8FC08; Sun, 7 Oct 2012 04:34: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 q974YhJc017347; Sun, 7 Oct 2012 04:34:43 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q974YhuY017345; Sun, 7 Oct 2012 04:34:43 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210070434.q974YhuY017345@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 04:34:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305427 - head/net/click X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 04:34:43 -0000 Author: eadler Date: Sun Oct 7 04:34:42 2012 New Revision: 305427 URL: http://svn.freebsd.org/changeset/ports/305427 Log: Convert to OptionsNG PR: 172425 Submitted by: Michael Gmelin Modified: head/net/click/Makefile Modified: head/net/click/Makefile ============================================================================== --- head/net/click/Makefile Sun Oct 7 04:31:13 2012 (r305426) +++ head/net/click/Makefile Sun Oct 7 04:34:42 2012 (r305427) @@ -1,9 +1,5 @@ -# Ports collection makefile for: click -# Date created: 3 Nov 2001 -# Whom: gnn -# +# Created by: gnn # $FreeBSD$ -# # XXX: TODO: fix kernel module @@ -79,27 +75,30 @@ MANN= FTPPortMapper.n ARPFaker.n ARPPrin CONFDIR= ${PREFIX}/etc/click/conf -OPTIONS= \ - XML "Enable XML support with expat" Off \ - USERCLICK "Build user-space Click" On \ - KERNEL_MODULE "Build BSD kernel module (BROKEN)" Off \ - ANALYSIS_ELEMS "Build network analysis elements" Off \ - ETHERSWITCH_ELEMS "Build etherswitch elements" Off \ - GRID_ELEMS "Build Grid elements (see FAQ)" Off \ - IPSEC_ELEMS "Build IPSEC elements" Off \ - LOCAL_ELEMS "Build local elements" Off \ - WIFI_ELEMS "Build Wi-Fi elements" Off \ - IPV6_ELEMS "Build IPv6 elements (EXPERIMENTAL)" Off \ - NS_ELEMS "Build NS elements (EXPERIMENTAL)" Off \ - RADIO_ELEMS "Build radio elements (EXPERIMENTAL)" Off +OPTIONS_DEFINE= ANALYSIS_ELEMS ETHERSWITCH_ELEMS GRID_ELEMS \ + IPSEC_ELEMS IPV6_ELEMS KERNEL_MODULE LOCAL_ELEMS \ + NS_ELEMS RADIO_ELEMS USERCLICK WIFI_ELEMS XML_EXPAT +OPTIONS_DEFAULT= USERCLICK +ANALYSIS_ELEMS_DESC= Build network analysis elements +ETHERSWITCH_ELEMS_DESC= Build etherswitch elements +GRID_ELEMS_DESC= Build Grid elements (see FAQ) +IPSEC_ELEMS_DESC= Build IPSEC elements +IPV6_ELEMS_DESC= Build IPv6 elements (EXPERIMENTAL) +KERNEL_MODULE_DESC= Build BSD kernel module (BROKEN) +LOCAL_ELEMS_DESC= Build local elements +NS_ELEMS_DESC= Build NS elements (EXPERIMENTAL) +RADIO_ELEMS_DESC= Build radio elements (EXPERIMENTAL) +USERCLICK_DESC= Build user-space Click +WIFI_ELEMS_DESC= Build Wi-Fi elements +XML_EXPAT_DESC= Enable XML support with expat -.include +.include .if ${ARCH} == "alpha" BROKEN= does not compile on alpha 4.x .endif -.if defined(WITH_XML) +.if ${PORT_OPTIONS:MXML_EXPAT} CONFIGURE_ARGS+= --with-expat=${LOCALBASE} LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 PLIST_SUB+= XMLCLICK="" @@ -107,13 +106,13 @@ PLIST_SUB+= XMLCLICK="" PLIST_SUB+= XMLCLICK="@comment " .endif -.if !defined(WITH_USERCLICK) +.if !${PORT_OPTIONS:MUSERCLICK} CONFIGURE_ARGS+= --disable-userlevel #.else #MANN+= IPFlowRawSockets.n .endif -.if defined(WITH_KERNEL_MODULE) +.if ${PORT_OPTIONS:MKERNEL_MODULE} .if !exists(${SRC_BASE}/sys/Makefile) IGNORE= kernel source files required .endif @@ -123,7 +122,7 @@ CONFIGURE_ARGS+= --enable-bsdmodule \ CONFIGURE_ARGS+= --disable-bsdmodule .endif -.if defined(WITH_ANALYSIS_ELEMS) +.if ${PORT_OPTIONS:MANALYSIS_ELEMS} CONFIGURE_ARGS+= --enable-analysis MANN+= AggregateFilter.n TimeSortedSched.n TimeRange.n \ FromTcpdump.n ToIPFlowDumps.n AggregateLast.n \ @@ -136,12 +135,12 @@ MANN+= AggregateFilter.n TimeSortedSche AggregatePacketCounter.n TimeFilter.n .endif -.if defined(WITH_ETHERSWITCH_ELEMS) +.if ${PORT_OPTIONS:METHERSWITCH_ELEMS} CONFIGURE_ARGS+= --enable-etherswitch MANN+= EtherSwitch.n ListenEtherSwitch.n .endif -.if defined(WITH_GRID_ELEMS) +.if ${PORT_OPTIONS:MGRID_ELEMS} CONFIGURE_ARGS+= --enable-grid MANN+= ACKResponder.n ACKResponder2.n ACKRetrySender.n \ ACKRetrySender2.n AiroInfo.n BottleneckMetric.n \ @@ -164,17 +163,17 @@ MANN+= ACKResponder.n ACKResponder2.n A YarvisMetric.n .endif -.if defined(WITH_IPSEC_ELEMS) +.if ${PORT_OPTIONS:MIPSEC_ELEMS} CONFIGURE_ARGS+= --enable-ipsec MANN+= IPsecAuthSHA1.n IPsecDES.n IPsecESPUnencap.n \ IPsecESPEncap.n .endif -.if defined(WITH_LOCAL_ELEMS) +.if ${PORT_OPTIONS:MLOCAL_ELEMS} CONFIGURE_ARGS+= --enable-local .endif -.if defined(WITH_WIFI_ELEMS) +.if ${PORT_OPTIONS:MWIFI_ELEMS} CONFIGURE_ARGS+= --enable-wifi MANN+= FilterPhyErr.n AssociationResponder.n FilterFailures.n \ ReadAnno.n PacketStore.n AvailableRates.n \ @@ -194,11 +193,11 @@ MANN+= FilterPhyErr.n AssociationRespon # The following Click elements are marked experimental as of 1.5.0. # -.if defined(WITH_IPV6_ELEMS) +.if ${PORT_OPTIONS:MIPV6_ELEMS} CONFIGURE_ARGS+= --enable-ipv6 .endif -.if defined(WITH_NS_ELEMS) +.if ${PORT_OPTIONS:MNS_ELEMS} CONFIGURE_ARGS+= --enable-nsclick MANN+= ToSimTrace.n ToSimDevice.u.n FromSimDevice.u.n \ EraseIPPayload.n @@ -207,7 +206,7 @@ PLIST_SUB+= NSCLICK="" PLIST_SUB+= NSCLICK="@comment " .endif -.if defined(WITH_RADIO_ELEMS) +.if ${PORT_OPTIONS:MRADIO_ELEMS} CONFIGURE_ARGS+= --enable-radio MANN+= RadioSim.n .endif @@ -229,4 +228,4 @@ post-install: @${ECHO_CMD} "----------------------------------------------------" @${ECHO_CMD} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 04:39:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3621D1065670; Sun, 7 Oct 2012 04:39:13 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 164148FC17; Sun, 7 Oct 2012 04:39: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 q974dCxn018170; Sun, 7 Oct 2012 04:39:12 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q974dCfr018168; Sun, 7 Oct 2012 04:39:12 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210070439.q974dCfr018168@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 04:39:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305428 - head/x11-toolkits/tk86 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 04:39:13 -0000 Author: eadler Date: Sun Oct 7 04:39:12 2012 New Revision: 305428 URL: http://svn.freebsd.org/changeset/ports/305428 Log: Convert to OptionsNG PR: ports/172432 Submitted by: Michael Gmelin Modified: head/x11-toolkits/tk86/Makefile Modified: head/x11-toolkits/tk86/Makefile ============================================================================== --- head/x11-toolkits/tk86/Makefile Sun Oct 7 04:34:42 2012 (r305427) +++ head/x11-toolkits/tk86/Makefile Sun Oct 7 04:39:12 2012 (r305428) @@ -1,9 +1,5 @@ -# New ports collection makefile for: tk -# Date created: 17 January 2007 -# Whom: Martin Matuska -# +# Created by: Martin Matuska # $FreeBSD$ -# PORTNAME= tk PORTVERSION= 8.6.b.2 @@ -37,9 +33,10 @@ SUB_FILES= pkgIndex.tcl .if !defined(BUILDING_TK_THREADS) USE_TCL= ${SHORT_TK_VER} -OPTIONS= TK86_MAN "Install tk 8.6 function manpages" off \ - XFT "Use Xft fonts" on \ - DEMOS "Install demos" off +OPTIONS_DEFINE= DEMOS TK86_MAN XFT +OPTIONS_DEFAULT=XFT +TK86_MAN_DESC= Install tk 8.6 function manpages +DEMOS_DESC= Install demos .else USE_TK= ${SHORT_TK_VER} PLIST= ${PKGDIR}/pkg-plist.threads @@ -50,11 +47,11 @@ LIB_DEPENDS= tcl${SHORT_TK_VER}${THREADS SUB_LIST+= THREADS_SUFFIX="${THREADS_SUFFIX}" \ TCLPATCHLEVEL="8.6b1" -.include +.include DATADIR= ${PREFIX}/share/${PORTNAME}${TCL_VER} -.if !defined(WITHOUT_XFT) +.if ${PORT_OPTIONS:MXFT} CONFIGURE_ARGS+= --enable-xft LIB_DEPENDS+= Xft.2:${PORTSDIR}/x11-fonts/libXft .else @@ -77,14 +74,14 @@ CONFIGURE_ARGS+= --disable-threads --wit SUB_LIST+= TK_PROVIDE="" -.if defined(WITH_DEMOS) +.if ${PORT_OPTIONS:MDEMOS} INSTALL_TARGET+= install install-demos PLIST_SUB+= DEMOS="" .else PLIST_SUB+= DEMOS="@comment " .endif -.if !defined(NO_INSTALL_MANPAGES) && defined(WITH_TK86_MAN) +.if !defined(NO_INSTALL_MANPAGES) && ${PORT_OPTIONS:MTK86_MAN} MAN3= 3DBorder.3 AddOption.3 BindTable.3 CanvPsY.3 CanvTkwin.3 \ CanvTxtInfo.3 Clipboard.3 ClrSelect.3 ConfigWidg.3 ConfigWind.3 \ @@ -401,7 +398,7 @@ MLINKS= 3DBorder.3 Tk_Alloc3DBorderFromO text.n tk_textCut.n \ text.n tk_textPaste.n -.endif #!defined(NO_INSTALL_MANPAGES) && !defined(WITH_TK86_MAN) +.endif #!defined(NO_INSTALL_MANPAGES) && !${PORT_OPTIONS:MTK86_MAN} .endif # defined(BUILDING_TK_THREADS) @@ -454,13 +451,13 @@ post-install: .if !defined(NO_INSTALL_MANPAGES) ${MKDIR} ${MANPREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/../doc/wish.1 ${MANPREFIX}/man/man1/wish${TCL_VER}${THREADS_SUFFIX}.1 -.if !defined(BUILDING_TK_THREADS) && defined(WITH_TK86_MAN) +.if !defined(BUILDING_TK_THREADS) && ${PORT_OPTIONS:MTK86_MAN} . for mp in ${MAN3} ${MANN} @${REINPLACE_CMD} -e 's|^.so man.macros|.so ${DATADIR}/man.macros|' \ ${WRKSRC}/../doc/${mp} . endfor @cd ${WRKSRC} && ${MAKE} -f Makefile install-doc ${MAKE_ENV} -.endif # !defined(BUILDING_TK_THREADS) && defined(WITH_TK86_MAN) +.endif # !defined(BUILDING_TK_THREADS) && ${PORT_OPTIONS:MTK86_MAN} .endif # !defined(NO_INSTALL_MANPAGES) @@ -469,4 +466,4 @@ regression-test: build ${ECHO_CMD} "package require Tk" | tclsh${TK_VER} ${ECHO_CMD} "load libtk${SHORT_TK_VER}.so" | tclsh${TK_VER} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 04:44:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C8FC106564A; Sun, 7 Oct 2012 04:44:49 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3DE908FC17; Sun, 7 Oct 2012 04:44:49 +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 q974inuB019167; Sun, 7 Oct 2012 04:44:49 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q974in0V019165; Sun, 7 Oct 2012 04:44:49 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210070444.q974in0V019165@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 04:44:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305429 - head/security/libpreludedb X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 04:44:49 -0000 Author: eadler Date: Sun Oct 7 04:44:48 2012 New Revision: 305429 URL: http://svn.freebsd.org/changeset/ports/305429 Log: Convert to OptionsNG PR: ports/172426 Submitted by: Michael Gmelin Modified: head/security/libpreludedb/Makefile Modified: head/security/libpreludedb/Makefile ============================================================================== --- head/security/libpreludedb/Makefile Sun Oct 7 04:39:12 2012 (r305428) +++ head/security/libpreludedb/Makefile Sun Oct 7 04:44:48 2012 (r305429) @@ -1,6 +1,4 @@ -# New ports collection makefile for: libpreludedb -# Date created: 2005-10-14 -# Whom: Sergei Kolobov +# Created by: Sergei Kolobov # $FreeBSD$ PORTNAME= libpreludedb @@ -23,15 +21,12 @@ USE_LDCONFIG= yes MAN1= preludedb-admin.1 PORTDOCS= * -OPTIONS= PERL "Include Perl bindings" off \ - PYTHON "Include Python bindings" off \ - MYSQL "Use MySQL backend" on \ - PGSQL "Use PostgreSQL backend" off \ - SQLITE "Use SQLite backend" off +OPTIONS_DEFINE= DOCS MYSQL PERL PGSQL PYTHON SQLITE +OPTIONS_DEFAULT=MYSQL -.include +.include -.if defined(WITH_PERL) +.if ${PORT_OPTIONS:MPERL} USE_PERL5= yes CONFIGURE_ARGS+= --with-perl PLIST_SUB+= WITH_PERL="" @@ -40,7 +35,7 @@ CONFIGURE_ARGS+= --without-perl PLIST_SUB+= WITH_PERL="@comment " .endif -.if defined(WITH_PYTHON) +.if ${PORT_OPTIONS:MPYTHON} USE_PYTHON= yes .include "${PORTSDIR}/Mk/bsd.python.mk" CONFIGURE_ARGS+= --with-python @@ -50,7 +45,7 @@ CONFIGURE_ARGS+= --without-python PLIST_SUB+= WITH_PYTHON="@comment " .endif -.if defined(WITH_MYSQL) || exists(${LOCALBASE}/bin/mysql_config) +.if ${PORT_OPTIONS:MMYSQL} || exists(${LOCALBASE}/bin/mysql_config) USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql PLIST_SUB+= WITH_MYSQL="" @@ -59,7 +54,7 @@ CONFIGURE_ARGS+= --without-mysql PLIST_SUB+= WITH_MYSQL="@comment " .endif -.if defined(WITH_PGSQL) || exists(${LOCALBASE}/bin/pg_config) +.if ${PORT_OPTIONS:MPGSQL} || exists(${LOCALBASE}/bin/pg_config) USE_PGSQL= yes CONFIGURE_ARGS+= --with-postgresql PLIST_SUB+= WITH_PGSQL="" @@ -68,7 +63,7 @@ CONFIGURE_ARGS+= --without-postgresql PLIST_SUB+= WITH_PGSQL="@comment " .endif -.if defined(WITH_SQLITE) || exists(${LOCALBASE}/lib/libsqlite3.so) +.if ${PORT_OPTIONS:MSQLITE} || exists(${LOCALBASE}/lib/libsqlite3.so) USE_SQLITE= yes CONFIGURE_ARGS+= --with-sqlite3 PLIST_SUB+= WITH_SQLITE="" @@ -78,16 +73,16 @@ CONFIGURE_ARGS+= --without-sqlite3 PLIST_SUB+= WITH_SQLITE="@comment " .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${INSTALL} -d ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/api/html/* ${DOCSDIR} .endif @${INSTALL_MAN} ${WRKSRC}/docs/manpages/*.1 ${MAN1PREFIX}/man/man1/ -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 04:49:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2CF181065670; Sun, 7 Oct 2012 04:49:09 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 170838FC08; Sun, 7 Oct 2012 04:49:09 +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 q974n8OF019953; Sun, 7 Oct 2012 04:49:08 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q974n8C8019950; Sun, 7 Oct 2012 04:49:08 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210070449.q974n8C8019950@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 04:49:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305430 - head/textproc/xmlwrapp X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 04:49:09 -0000 Author: eadler Date: Sun Oct 7 04:49:08 2012 New Revision: 305430 URL: http://svn.freebsd.org/changeset/ports/305430 Log: Convert to OptionsNG PR: ports/172437 Submitted by: Michael Gmelin Modified: head/textproc/xmlwrapp/Makefile Modified: head/textproc/xmlwrapp/Makefile ============================================================================== --- head/textproc/xmlwrapp/Makefile Sun Oct 7 04:44:48 2012 (r305429) +++ head/textproc/xmlwrapp/Makefile Sun Oct 7 04:49:08 2012 (r305430) @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: xmlwrapp -# Date created: Jan 14, 2003 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD$ -# PORTNAME= xmlwrapp PORTVERSION= 0.6.3 @@ -19,7 +14,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= boost_iostreams.4:${PORTSDIR}/devel/boost-libs -OPTIONS= XSLT "build libxsltwrap library (requires libxslt)" off +OPTIONS_DEFINE= XSLT +XSLT_DESC= Build libxsltwrap library (requires libxslt) USE_GNOME= gnomehack libxml2 USE_PERL5_BUILD=yes @@ -34,7 +30,7 @@ LDFLAGS+= -L${LOCALBASE}/lib .include -.if defined(WITH_XSLT) +.if ${PORT_OPTIONS:MXSLT} USE_GNOME+= libxslt PLIST_SUB+= XSLT="" .else @@ -47,9 +43,8 @@ post-patch: @${REINPLACE_CMD} '/^SUBDIRS/s|docs||' ${WRKSRC}/Makefile.in post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @(cd ${WRKSRC}/docs && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) .endif - .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 05:22:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F32EE106566C; Sun, 7 Oct 2012 05:21:59 +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 C3E518FC08; Sun, 7 Oct 2012 05:21:59 +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 q975Lxdk025708; Sun, 7 Oct 2012 05:21:59 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q975LxJ1025705; Sun, 7 Oct 2012 05:21:59 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210070521.q975LxJ1025705@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Sun, 7 Oct 2012 05:21:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305431 - head/devel/py-importlib X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 05:22:00 -0000 Author: rm Date: Sun Oct 7 05:21:59 2012 New Revision: 305431 URL: http://svn.freebsd.org/changeset/ports/305431 Log: importlib module is available in Python standard library since 2.7 (in 2.x branch) and 3.1 (in 3.x branch). Since we don't have 3.0 in ports, nor anything less 2.6, set USE_PYTHON to exactly 2.6 while here: - trim Makefile header - move pkg-plist contents to Makefile:PLIST_FILES - correct WWW in pkg-descr PR: 172409 Submitted by: rm (myself) Approved by: Alexandros Kosiaris (maintainer) Deleted: head/devel/py-importlib/pkg-plist Modified: head/devel/py-importlib/Makefile head/devel/py-importlib/pkg-descr Modified: head/devel/py-importlib/Makefile ============================================================================== --- head/devel/py-importlib/Makefile Sun Oct 7 04:49:08 2012 (r305430) +++ head/devel/py-importlib/Makefile Sun Oct 7 05:21:59 2012 (r305431) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-importlib -# Date created: 14 February 2012 -# Whom: Alexandros Kosiaris -# +# Created by: Alexandros Kosiaris # $FreeBSD$ -# PORTNAME= importlib PORTVERSION= 1.0.2 @@ -14,7 +10,12 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= akosiaris+ports@gmail.com COMMENT= Backport of importlib.import_module() from Python 2.7 -USE_PYTHON= 2.3-2.6 +USE_PYTHON= 2.6 USE_PYDISTUTILS= yes +PLIST_FILES= %%PYTHON_SITELIBDIR%%/importlib/__init__.py \ + %%PYTHON_SITELIBDIR%%/importlib/__init__.pyc \ + %%PYTHON_SITELIBDIR%%/importlib/__init__.pyo +PLIST_DIRS= %%PYTHON_SITELIBDIR%%/importlib + .include Modified: head/devel/py-importlib/pkg-descr ============================================================================== --- head/devel/py-importlib/pkg-descr Sun Oct 7 04:49:08 2012 (r305430) +++ head/devel/py-importlib/pkg-descr Sun Oct 7 05:21:59 2012 (r305431) @@ -7,4 +7,4 @@ trunk. For documentation, see the importlib docs for Python 2.7. -WWW: http://pypi.python.org/pypi/importlib/1.0.1 +WWW: http://pypi.python.org/pypi/importlib From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 05:24:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by hub.freebsd.org (Postfix) with ESMTP id A6201106564A; Sun, 7 Oct 2012 05:24:59 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from opti.dougb.net (hub.freebsd.org [69.147.83.54]) by mx2.freebsd.org (Postfix) with ESMTP id 503E014D962; Sun, 7 Oct 2012 05:24:59 +0000 (UTC) Message-ID: <5071122A.1050209@FreeBSD.org> Date: Sat, 06 Oct 2012 22:24:58 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20121001 Thunderbird/15.0.1 MIME-Version: 1.0 To: Jason Helfman References: <201210060537.q965bUpk005984@svn.freebsd.org> <5070A09B.1090404@FreeBSD.org> <5070B0F0.6080404@FreeBSD.org> <5070B355.1000802@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.4.4 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, nemysis@gmx.ch, ports-committers@freebsd.org Subject: Re: svn commit: r305338 - in head/games/pycadia: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 05:24:59 -0000 On 10/06/2012 17:19, Jason Helfman wrote: > On Sat, Oct 6, 2012 at 3:40 PM, Doug Barton > wrote: > > On 10/06/2012 15:34, Jason Helfman wrote: > > On Sat, Oct 6, 2012 at 3:30 PM, Doug Barton > > >> wrote: > > > > On 10/06/2012 15:25, Jason Helfman wrote: > > > On Sat, Oct 6, 2012 at 2:20 PM, Doug Barton > > > > > > > > >>> wrote: > > > > > > On 10/05/2012 22:37, Jason Helfman wrote: > > > > Added: head/games/pycadia/files/pycadia.sh.in > > > > > > > > > > > > > ============================================================================== > > > > --- /dev/null 00:00:00 1970 (empty, because file is > newly > > added) > > > > +++ head/games/pycadia/files/pycadia.sh.in > > > > > > Sat Oct 6 05:37:29 2012 (r305338) > > > > @@ -0,0 +1,6 @@ > > > > +#!/bin/sh > > > > +# > > > > +# $FreeBSD$ > > > > + > > > > +cd "%%DATADIR%%" > > > > +./pycadia.py > > > > > > Unless there is some reason to cd into that directory, you'd > > be better > > > off with just: %%DATADIR%%/pycadia.py > > > > > > And in any case, shouldn't you be using exec here? > > > > > > > > > I can check with the maintainer, but it does need to be run > from the > > > DATADIR specifically. > > > > Ok, that's not a problem. A comment to that effect would > probably be > > useful for future reference. > > > > > > > What would exec provide that isn't currently fulfilled? > > > > Eliminating the shell. > > > > Fair enough. I can discuss with maintainer, as he has many ports > that do > > this. I would suggest using %%PYTHON_CMD%% in favor of exec. Do > you see > > an issue with that? > > Yes, unless %%PYTHON_CMD%% has some magic to eliminate the shell that > I'm not aware of. :) > > Try the existing command with and without exec and then look at your ps > output to see my point. > > Doug > > > Currently I'm not aware of a method to eliminate the shell within a > shell script. None of us knows everything (including me). :) > Had I realized this was such an issue I would've sent mail > requesting a review. It's not that big a deal. > %%PYTHON_CMD%% become /usr/local/bin/pythonXX Still missing the point. :) I sent you and the maintainer a private message spelling it all out in nauseating detail. Doug -- I am only one, but I am one. I cannot do everything, but I can do something. And I will not let what I cannot do interfere with what I can do. -- Edward Everett Hale, (1822 - 1909) From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 07:12:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5ADDB106566C; Sun, 7 Oct 2012 07:12:55 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 40B818FC24; Sun, 7 Oct 2012 07:12: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 q977CtWV044828; Sun, 7 Oct 2012 07:12:55 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q977CtoL044826; Sun, 7 Oct 2012 07:12:55 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210070712.q977CtoL044826@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 7 Oct 2012 07:12:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305432 - head/security/libtomcrypt X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 07:12:55 -0000 Author: bapt Date: Sun Oct 7 07:12:54 2012 New Revision: 305432 URL: http://svn.freebsd.org/changeset/ports/305432 Log: use libtommath as default math library as it used to be before conversion to optionsng Repored by: linimon Modified: head/security/libtomcrypt/Makefile Modified: head/security/libtomcrypt/Makefile ============================================================================== --- head/security/libtomcrypt/Makefile Sun Oct 7 05:21:59 2012 (r305431) +++ head/security/libtomcrypt/Makefile Sun Oct 7 07:12:54 2012 (r305432) @@ -23,6 +23,7 @@ MAKE_JOBS_SAFE= yes CFLAGS+= -I${PREFIX}/include OPTIONS_DEFINE= DOCS +OPTIONS_DEFAULT= LIBTOMMATH OPTIONS_MULTI= MATH OPTIONS_MULTI_MATH= LIBTOMMATH TOMSFASTMATH GMP LIBTOMMATH_DESC= Use LibTomMath From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 07:13:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7911A106566B; Sun, 7 Oct 2012 07:13:40 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 624008FC08; Sun, 7 Oct 2012 07:13: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 q977DeA8045014; Sun, 7 Oct 2012 07:13:40 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q977DeGG045012; Sun, 7 Oct 2012 07:13:40 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210070713.q977DeGG045012@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 7 Oct 2012 07:13:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305433 - head/x11-wm/stumpwm X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 07:13:40 -0000 Author: bapt Date: Sun Oct 7 07:13:39 2012 New Revision: 305433 URL: http://svn.freebsd.org/changeset/ports/305433 Log: Set SBCL on by default as it used to be before conversion to optionsng Modified: head/x11-wm/stumpwm/Makefile Modified: head/x11-wm/stumpwm/Makefile ============================================================================== --- head/x11-wm/stumpwm/Makefile Sun Oct 7 07:12:54 2012 (r305432) +++ head/x11-wm/stumpwm/Makefile Sun Oct 7 07:13:39 2012 (r305433) @@ -25,6 +25,7 @@ PORTEXAMPLES= sample-stumpwmrc.lisp PORTDATA= * OPTIONS_DEFINE= SBCL EXAMPLES +OPTIONS_DEFAULT= SBCL SBCL_DESC= Build with lang/sbcl (otherwise with lang/clisp) .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 07:17:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E9661065696; Sun, 7 Oct 2012 07:17:35 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id ED0D38FC0C; Sun, 7 Oct 2012 07:17: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 q977HYLa045758; Sun, 7 Oct 2012 07:17:34 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q977HYhS045756; Sun, 7 Oct 2012 07:17:34 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210070717.q977HYhS045756@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 7 Oct 2012 07:17:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305434 - head/net-p2p/libtorrent X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 07:17:35 -0000 Author: bapt Date: Sun Oct 7 07:17:34 2012 New Revision: 305434 URL: http://svn.freebsd.org/changeset/ports/305434 Log: Use shared IPv6 description, no need for a custom one Reported by: sunpoet Modified: head/net-p2p/libtorrent/Makefile Modified: head/net-p2p/libtorrent/Makefile ============================================================================== --- head/net-p2p/libtorrent/Makefile Sun Oct 7 07:13:39 2012 (r305433) +++ head/net-p2p/libtorrent/Makefile Sun Oct 7 07:17:34 2012 (r305434) @@ -26,7 +26,6 @@ GNU_CONFIGURE= yes OPTIONS_DEFINE= KQUEUE IPV6 OPTIONS_DEFAULT= KQUEUE KQUEUE_DESC= Use kqueue(2) support -IPV6_DESC= Enable IPv6 support .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 07:19:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 861E91065676; Sun, 7 Oct 2012 07:19:38 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 65BF48FC19; Sun, 7 Oct 2012 07:19:38 +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 q977Jcm0046207; Sun, 7 Oct 2012 07:19:38 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q977JcCF046205; Sun, 7 Oct 2012 07:19:38 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210070719.q977JcCF046205@svn.freebsd.org> From: Wen Heping Date: Sun, 7 Oct 2012 07:19:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305435 - head/www/mediawiki X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 07:19:38 -0000 Author: wen Date: Sun Oct 7 07:19:37 2012 New Revision: 305435 URL: http://svn.freebsd.org/changeset/ports/305435 Log: - Convert to new Makefile format - Convert to new options framework Modified: head/www/mediawiki/Makefile Modified: head/www/mediawiki/Makefile ============================================================================== --- head/www/mediawiki/Makefile Sun Oct 7 07:17:34 2012 (r305434) +++ head/www/mediawiki/Makefile Sun Oct 7 07:19:37 2012 (r305435) @@ -1,9 +1,5 @@ -# New ports collection makefile for: www/mediawiki -# Date created: February 1st 2005 -# Whom: Gerrit Beine -# +# Created by: Gerrit Beine # $FreeBSD$ -# PORTNAME= mediawiki PORTVERSION= 1.19.2 @@ -19,47 +15,51 @@ CONFLICTS= mediawiki-1.1[0-8].* FETCH_ARGS= -pr USE_PHP= ctype iconv mbstring pcre session xml zlib readline dom -IGNORE_WITH_PHP= 4 +IGNORE_WITH_PHP=4 WANT_PHP_WEB= yes MEDIAWIKIDIR?= www/mediawiki NO_BUILD= yes -OPTIONS= PGSQL "Use PostgreSQL (instead of MySQL)" off \ - SQLITE "Use SQLite (instead of MySQL)" off \ - LDAP "Use LDAP authentication" off \ - MEMCACHED "Use memcached" off \ - APC "Use pecl-APC(Mediawiki recommended)" on \ - EACCEL "Use eAccelerator (instead of pecl-APC)" off \ - IMAGICK "Use ImageMagick" off +OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL IMAGICK +OPTIONS_DEFAULT=MYSQL APC -.include +MEMCACHED_DESCR=use memcached +APC_DESCR= use pecl-APC(Mediawiki recommended) +EACCEL_DESCR= use eAccelerator (instead of pecl-APC) +IMAGICK_DESCR= use ImageMagick -.if defined(WITH_PGSQL) -USE_PHP+= pgsql -.elif defined(WITH_SQLITE) -USE_PHP+= sqlite -.else +.include + +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= server USE_PHP+= mysql .endif -.if defined(WITH_LDAP) +.if ${PORT_OPTIONS:MPGSQL} +USE_PHP+= pgsql +.endif + +.if ${PORT_OPTIONS:MSQLITE} +USE_PHP+= sqlite +.endif + +.if ${PORT_OPTIONS:MLDAP} USE_PHP+= ldap .endif -.if defined(WITH_MEMCACHED) +.if ${PORT_OPTIONS:MMEMCACHED} RUN_DEPENDS= memcached:${PORTSDIR}/databases/memcached .endif -.if defined(WITH_IMAGICK) +.if ${PORT_OPTIONS:MIMAGICK} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick .endif -.if defined(WITH_APC) || defined(WITH_EACCEL)||defined(WITH_XCACHE) -.if defined(WITH_EACCEL) +.if ${PORT_OPTIONS:MAPC} || ${PORTS_OPTIONS:MEACCEL} || ${PORTS_OPTIONS:MXCACHE} +.if ${PORT_OPTIONS:MEACCEL} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator -.elif defined(WITH_XCACHE) +.elif ${PORT_OPTIONS:MXCACHE} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache .else RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC @@ -78,4 +78,4 @@ post-install: | ${SED} -ne 's,^${WRKSRC},@dirrm ${MEDIAWIKIDIR},p' >> ${TMPPLIST} @${SED} -e 's|%%MEDIAWIKIDIR%%|${PREFIX}/${MEDIAWIKIDIR}|' ${PKGMESSAGE} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 07:45:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06F65106566C; Sun, 7 Oct 2012 07:45:08 +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 C592D8FC17; Sun, 7 Oct 2012 07:45:08 +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 q977j8xN050792; Sun, 7 Oct 2012 07:45:08 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q977j8kP050790; Sun, 7 Oct 2012 07:45:08 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210070745.q977j8kP050790@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Sun, 7 Oct 2012 07:45:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305436 - head/databases/py-swift X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 07:45:09 -0000 Author: rm Date: Sun Oct 7 07:45:08 2012 New Revision: 305436 URL: http://svn.freebsd.org/changeset/ports/305436 Log: - add missing dependency on net/py-netifaces - bump PORTREVISION while here: - trim Makefile header - limit python version to 2.x only - tab -> space change in pkg-descr:WWW PR: 172410 Submitted by: trociny Approved by: Gea-Suan Lin (maintainer) Modified: head/databases/py-swift/Makefile head/databases/py-swift/pkg-descr Modified: head/databases/py-swift/Makefile ============================================================================== --- head/databases/py-swift/Makefile Sun Oct 7 07:19:37 2012 (r305435) +++ head/databases/py-swift/Makefile Sun Oct 7 07:45:08 2012 (r305436) @@ -1,12 +1,9 @@ -# New ports collection makefile for: py-swift -# Date created: 2010-07-22 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= swift PORTVERSION= 1.4.6 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= http://launchpadlibrarian.net/92556660/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,13 +12,14 @@ MAINTAINER= gslin@gslin.org COMMENT= Highly available, distributed, eventually consistent object/blob store RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}eventlet>=0.9.8:${PORTSDIR}/net/py-eventlet \ + ${PYTHON_PKGNAMEPREFIX}netifaces>0:${PORTSDIR}/net/py-netifaces \ ${PYTHON_PKGNAMEPREFIX}simplejson>=0:${PORTSDIR}/devel/py-simplejson \ ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \ ${PYTHON_PKGNAMEPREFIX}webob>=0.9.8:${PORTSDIR}/www/py-webob \ ${PYTHON_PKGNAMEPREFIX}xattr>=0:${PORTSDIR}/devel/py-xattr \ rsync>=3.0:${PORTSDIR}/net/rsync -USE_PYTHON= 2.6+ +USE_PYTHON= -2.7 USE_PYDISTUTILS= easy_install post-install: Modified: head/databases/py-swift/pkg-descr ============================================================================== --- head/databases/py-swift/pkg-descr Sun Oct 7 07:19:37 2012 (r305435) +++ head/databases/py-swift/pkg-descr Sun Oct 7 07:45:08 2012 (r305436) @@ -1,4 +1,4 @@ Swift is a highly available, distributed, eventually consistent object/blob store. -WWW: http://launchpad.net/swift +WWW: http://launchpad.net/swift From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 07:46:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 81FC51065670; Sun, 7 Oct 2012 07:46:05 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6A7CC8FC1A; Sun, 7 Oct 2012 07:46:05 +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 q977k5CF051060; Sun, 7 Oct 2012 07:46:05 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q977k5rk051052; Sun, 7 Oct 2012 07:46:05 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210070746.q977k5rk051052@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 7 Oct 2012 07:46:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305437 - in head: ftp/bareftp multimedia/mplayerxp x11-wm/waimea x11-wm/waimea-devel X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 07:46:05 -0000 Author: bapt Date: Sun Oct 7 07:46:04 2012 New Revision: 305437 URL: http://svn.freebsd.org/changeset/ports/305437 Log: Convert to new options framework PR: ports/172414 Submitted by: Chris Petrik (maintainer) Modified: head/ftp/bareftp/Makefile head/multimedia/mplayerxp/Makefile head/x11-wm/waimea-devel/Makefile head/x11-wm/waimea/Makefile Modified: head/ftp/bareftp/Makefile ============================================================================== --- head/ftp/bareftp/Makefile Sun Oct 7 07:45:08 2012 (r305436) +++ head/ftp/bareftp/Makefile Sun Oct 7 07:46:04 2012 (r305437) @@ -25,16 +25,17 @@ MAKE_JOBS_SAFE= yes MAN1= bareftp.1 -OPTIONS= KEYRING "Support for Gnome Keyring" on +OPTIONS_DEFINE= GNOMEKEYRING +OPTIONS_DEFAULT= GNOMEKEYRING .include -.if defined(WITHOUT_KEYRING) -CONFIGURE_ARGS+= --without-gnomekeyring -.else +.if ${PORT_OPTIONS:MGNOMEKEYRING} KEYRING_DETECT= ${LOCALBASE}/libdata/pkgconfig/gnome-keyring-sharp-1.0.pc BUILD_DEPENDS+= ${KEYRING_DETECT}:${PORTSDIR}/security/gnome-keyring-sharp RUN_DEPENDS+= ${KEYRING_DETECT}:${PORTSDIR}/security/gnome-keyring-sharp +.else +CONFIGURE_ARGS+= --without-gnomekeyring .endif # TODO Modified: head/multimedia/mplayerxp/Makefile ============================================================================== --- head/multimedia/mplayerxp/Makefile Sun Oct 7 07:45:08 2012 (r305436) +++ head/multimedia/mplayerxp/Makefile Sun Oct 7 07:46:04 2012 (r305437) @@ -15,14 +15,13 @@ LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphic vcdinfo.2:${PORTSDIR}/multimedia/vcdimager RUN_DEPENDS= ${LOCALBASE}/share/mplayer/fonts:${PORTSDIR}/multimedia/mplayer-fonts -OPTIONS= DVDNAV "Enable libdvdnav support" off \ - DVDPLAY "Enable libdvdplay support" off \ - CDPARANOIA "Enable CDDA support" off \ - OCFLAGS "Use optimized compiler flags" off \ - SDL "Enable SDL video output" off \ - TERMCAP "Enable termcap key support" off \ - WIN32 "Enable win32 codec set" on +OPTIONS_DEFINE= DVDNAV DVDPLAY CDPARANOIA OPTIMIZED_CFLAGS SDL TERMCAP WIN32 +DVDNAV_DESC= Enable libdvdnav support +DVDPLAY_DESC= Enable libdvdplay support +TERMCAP_DESC= Enable termcap key support +WIN32_DESC= Enable win32 codec set +OPTIONS_DEFAULT= WIN32 ONLY_FOR_ARCHS= i386 USE_BZIP2= yes @@ -63,7 +62,7 @@ CFLAGS+= -fomit-frame-pointer ## # cdda support -.if defined(WITH_CDPARANOIA) +.if ${PORT_OPTIONS:MCDPARANOIA} LIB_DEPENDS+= cdda_paranoia.0:${PORTSDIR}/audio/cdparanoia CONFIGURE_ARGS+= --enable-cdparanoia @@ -71,7 +70,7 @@ CONFIGURE_ARGS+= --enable-cdparanoia CONFIGURE_ARGS+= --disable-cdparanoia .endif # dvd support -.if defined(WITH_DVDNAV) || defined(WITH_DVDPLAY) +.if ${PORT_OPTIONS:MDVDNAV} || ${PORT_OPTIONS:MDVDPLAY} LIB_DEPENDS+= dvdread.4:${PORTSDIR}/multimedia/libdvdread CONFIGURE_ARGS+= --enable-libdvdread @@ -79,7 +78,7 @@ CONFIGURE_ARGS+= --enable-libdvdread CONFIGURE_ARGS+= --disable-libdvdread .endif # xine libdvdnav -.if defined(WITH_DVDNAV) +.if ${PORT_OPTIONS:MDVDNAV} LIB_DEPENDS+= dvdnav.4:${PORTSDIR}/multimedia/libdvdnav CONFIGURE_ARGS+= --enable-libdvdnav @@ -87,7 +86,7 @@ CONFIGURE_ARGS+= --enable-libdvdnav CONFIGURE_ARGS+= --disable-libdvdnav .endif # ogle's libdvdplay -.if defined(WITH_DVDPLAY) +.if ${PORT_OPTIONS:MDVDPLAY} LIB_DEPENDS+= dvdplay.0:${PORTSDIR}/multimedia/libdvdplay CONFIGURE_ARGS+= --enable-libdvdplay @@ -95,13 +94,13 @@ CONFIGURE_ARGS+= --enable-libdvdplay CONFIGURE_ARGS+= --disable-libdvdplay .endif # compilation optimizations -.if defined(WITH_OCFLAGS) +.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} CFLAGS+= -O3 -ffast-math .else MAKE_ARGS+= OPTFLAGS="${CFLAGS}" SHCFLAGS="${CFLAGS} -PIC" .endif # sdl -.if defined(WITH_SDL) +.if ${PORT_OPTIONS:MSDL} USE_SDL= image sdl CONFIGURE_ARGS+= --enable-sdl --enable-sdl-image .else @@ -109,13 +108,13 @@ CONFIGURE_ARGS+= --disable-sdl --disable .endif # termcap key support # mplayerxp does not clean up after itself yet -.if defined(WITH_TERMCAP) +.if ${PORT_OPTIONS:MTERMCAP} CONFIGURE_ARGS+= --enable-termcap .else CONFIGURE_ARGS+= --disable-termcap .endif # win32 binary dll codecs -.if !defined(WITHOUT_WIN32) +.if ${PORT_OPTIONS:MWIN32} RUN_DEPENDS+= ${CODEC_DETECTION_FILE}:${CODEC_PORT} CODEC_PORT= ${PORTSDIR}/multimedia/win32-codecs Modified: head/x11-wm/waimea-devel/Makefile ============================================================================== --- head/x11-wm/waimea-devel/Makefile Sun Oct 7 07:45:08 2012 (r305436) +++ head/x11-wm/waimea-devel/Makefile Sun Oct 7 07:46:04 2012 (r305437) @@ -1,9 +1,5 @@ -# New ports collection makefile for: Waimea -# Date created: 03 Mar 2005 -# Whom: Alexey Dokuchaev -# +# Created by: Alexey Dokuchaev # $FreeBSD$ -# PORTNAME= waimea PORTVERSION= 0.5.1 @@ -32,19 +28,18 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS= PNG "Enable PNG support" On \ - SVG "Enable SVG support" On \ - THREAD "Enable threading support" Off +OPTIONS_DEFINE= PNG SVG THREADS +OPTIONS_DEFAULT= PNG SVG -.include +.include -.if defined(WITH_PNG) +.if ${PORT_OPTIONS:MPNG} LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png .else CONFIGURE_ARGS+= --disable-png .endif -.if defined(WITH_SVG) +.if ${PORT_OPTIONS:MSVG} LIB_DEPENDS+= svg-cairo.1:${PORTSDIR}/graphics/libsvg-cairo .else CONFIGURE_ARGS+= --disable-svg @@ -52,7 +47,7 @@ MAKE_ARGS= CPPFLAGS="-I${LOCALBASE}/incl LDFLAGS="-L${LOCALBASE}/lib" .endif -.if defined(WITH_THREAD) +.if ${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+= --enable-thread .endif @@ -63,4 +58,4 @@ post-extract: @${LN} -fs ${AUTOMAKE_DIR}/${f} ${WRKSRC}/config/${f} .endfor -.include +.include Modified: head/x11-wm/waimea/Makefile ============================================================================== --- head/x11-wm/waimea/Makefile Sun Oct 7 07:45:08 2012 (r305436) +++ head/x11-wm/waimea/Makefile Sun Oct 7 07:46:04 2012 (r305437) @@ -1,9 +1,5 @@ -# New ports collection makefile for: waimea -# Date created: 27 May 2002 -# Whom: Alexey Dokuchaev -# +# Created by: Alexey Dokuchaev # $FreeBSD$ -# PORTNAME= waimea PORTVERSION= 0.4.0 @@ -27,17 +23,19 @@ GNU_CONFIGURE= yes MAN1= waimea.1 -OPTIONS= PIXMAP "Build with pixmap textures support" on \ - DITHER "Enable ordered pseudocolor dithering" off +OPTIONS_DEFINE= PIXMAP DITHER +OPTIONS_DEFAULT= PIXMAP +PIXMAP_DESC= Build with pixmap textures support +DITHER_DESC= =Enable ordered pseudocolor dithering -.include +.include -.if !defined(WITHOUT_PIXMAP) +.if ${PORT_OPTIONS:MPIXMAP} USE_EFL+= imlib2 .endif -.if defined(WITH_DITHER) +.if ${PORT_OPTIONS:MDITHER} CONFIGURE_ARGS+= --enable-ordered-pseudo .endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 07:54:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 627E8106566B; Sun, 7 Oct 2012 07:54:19 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 32D338FC08; Sun, 7 Oct 2012 07:54: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 q977sJr1052851; Sun, 7 Oct 2012 07:54:19 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q977sIFv052847; Sun, 7 Oct 2012 07:54:18 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201210070754.q977sIFv052847@svn.freebsd.org> From: Doug Barton Date: Sun, 7 Oct 2012 07:54:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305438 - in head/security: libotr pidgin-otr X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 07:54:19 -0000 Author: dougb Date: Sun Oct 7 07:54:18 2012 New Revision: 305438 URL: http://svn.freebsd.org/changeset/ports/305438 Log: Work around a problem on stable/[89] with libotr generating an "undefined reference to `__stack_chk_fail_local'" error. None of the usual remedies work (such as making sure that gcc is used instead of ld for the linker) so on those releases we simply disable that option. pointyhat logs confirm that pidgin-otr (the only consumer of libotr atm) is failing on 8 and 9 with the same configure error that I am seeing on 8, so this patch should at least allow it to build on those releases. Bump PORTREVISION for libotr to err on the side of caution. While I'm here, remove a now-spurious mod to the pidgin-otr configure. Modified: head/security/libotr/Makefile head/security/pidgin-otr/Makefile Modified: head/security/libotr/Makefile ============================================================================== --- head/security/libotr/Makefile Sun Oct 7 07:46:04 2012 (r305437) +++ head/security/libotr/Makefile Sun Oct 7 07:54:18 2012 (r305438) @@ -4,6 +4,7 @@ PORTNAME= libotr PORTVERSION= 4.0.0 # Please do not bump PORTREVISION for this port unless you have # confirmed via testing that it is necessary +PORTREVISION= 1 CATEGORIES= security net-im net MASTER_SITES= http://www.cypherpunks.ca/otr/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc @@ -34,8 +35,15 @@ MLINKS= otr_toolkit.1 otr_parse.1 \ verify: checksum gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc +.include + post-patch: @${REINPLACE_CMD} -e 's#^pkgconfigdir .*#pkgconfigdir = ${PREFIX}/libdata/pkgconfig#' \ ${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.am -.include +.if ${OSVERSION} >= 800000 && ${OSVERSION} < 1000000 + ${REINPLACE_CMD} -e 's#OTR_CHECK_CFLAGS(.*stack-protector.*#dnl &#' \ + ${WRKSRC}/configure.ac +.endif + +.include Modified: head/security/pidgin-otr/Makefile ============================================================================== --- head/security/pidgin-otr/Makefile Sun Oct 7 07:46:04 2012 (r305437) +++ head/security/pidgin-otr/Makefile Sun Oct 7 07:54:18 2012 (r305438) @@ -35,7 +35,4 @@ CONFIGURE_ARGS= --with-libotr-prefix=${L verify: checksum gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc -post-patch: - @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure - .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 07:55:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 290661065673; Sun, 7 Oct 2012 07:55:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 143978FC1A; Sun, 7 Oct 2012 07:55:16 +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 q977tFEi053098; Sun, 7 Oct 2012 07:55:15 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q977tFc2053096; Sun, 7 Oct 2012 07:55:15 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210070755.q977tFc2053096@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 7 Oct 2012 07:55:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305439 - head/sysutils/3dm X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 07:55:16 -0000 Author: bapt Date: Sun Oct 7 07:55:15 2012 New Revision: 305439 URL: http://svn.freebsd.org/changeset/ports/305439 Log: - Convert to new options [1] - While I'm here, trim header PR: ports/172420 Submitted by: Darren Pilgrim (maintainer) Modified: head/sysutils/3dm/Makefile Modified: head/sysutils/3dm/Makefile ============================================================================== --- head/sysutils/3dm/Makefile Sun Oct 7 07:54:18 2012 (r305438) +++ head/sysutils/3dm/Makefile Sun Oct 7 07:55:15 2012 (r305439) @@ -1,9 +1,5 @@ -# New ports collection makefile for: 3dm2 -# Date created: 02 Sep 2002 -# Whom: dbaker -# +# Created by: Daniel Baker # $FreeBSD$ -# PORTNAME= 3dm PORTVERSION= 2.11.00.019 @@ -19,11 +15,14 @@ COMMENT= 3ware RAID controller monitorin USE_RC_SUBR= 3dm2 -OPTIONS= SSLFIX "Install KB16625-patched binaries" On +OPTIONS_DEFINE= SSLFIX +SSLFIX_DESC= Install KB16625-patched binaries + +OPTIONS_DEFAULT= SSLFIX .include -.if defined(WITH_SSLFIX) +.if !empty(PORT_OPTIONS:MSSLFIX) DISTFILES+= kb16625_${PORTVERSION}.tar.gz BINPREFIX= ${WRKSRC}/kb16625 .else From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 08:01:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 123DD106566B; Sun, 7 Oct 2012 08:01:15 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EF9AA8FC12; Sun, 7 Oct 2012 08:01: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 q9781EJv054528; Sun, 7 Oct 2012 08:01:14 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9781E4s054524; Sun, 7 Oct 2012 08:01:14 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210070801.q9781E4s054524@svn.freebsd.org> From: TAKATSU Tomonari Date: Sun, 7 Oct 2012 08:01:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305440 - head/math/R-cran-zoo X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 08:01:15 -0000 Author: tota Date: Sun Oct 7 08:01:14 2012 New Revision: 305440 URL: http://svn.freebsd.org/changeset/ports/305440 Log: - Update to 1.7-8 - Convert to new Makefile header - Trim WWW: line in pkg-descr Modified: head/math/R-cran-zoo/Makefile head/math/R-cran-zoo/distinfo head/math/R-cran-zoo/pkg-descr Modified: head/math/R-cran-zoo/Makefile ============================================================================== --- head/math/R-cran-zoo/Makefile Sun Oct 7 07:55:15 2012 (r305439) +++ head/math/R-cran-zoo/Makefile Sun Oct 7 08:01:14 2012 (r305440) @@ -1,13 +1,8 @@ -# New ports collection makefile for: R-cran-zoo -# Date created: 2011-08-16 -# Whom: TAKATSU Tomonari -# +# Created by: TAKATSU Tomonari # $FreeBSD$ -# PORTNAME= zoo -DISTVERSION= 1.7-7 -PORTREVISION= 3 +DISTVERSION= 1.7-8 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/math/R-cran-zoo/distinfo ============================================================================== --- head/math/R-cran-zoo/distinfo Sun Oct 7 07:55:15 2012 (r305439) +++ head/math/R-cran-zoo/distinfo Sun Oct 7 08:01:14 2012 (r305440) @@ -1,2 +1,2 @@ -SHA256 (zoo_1.7-7.tar.gz) = 56dc45377cbd71e0ff2c37937fac47911cb4308f37f81981c8008dce2e3221a3 -SIZE (zoo_1.7-7.tar.gz) = 1240674 +SHA256 (zoo_1.7-8.tar.gz) = 48fb9a7461566fecb626cd84e69f9c44aecd0b52e2be83462ae89053baac2e41 +SIZE (zoo_1.7-8.tar.gz) = 803962 Modified: head/math/R-cran-zoo/pkg-descr ============================================================================== --- head/math/R-cran-zoo/pkg-descr Sun Oct 7 07:55:15 2012 (r305439) +++ head/math/R-cran-zoo/pkg-descr Sun Oct 7 08:01:14 2012 (r305440) @@ -4,4 +4,4 @@ vectors/matrices and factors. zoo's key of a particular index/date/time class and consistency with ts and base R by providing methods to extend standard generics. -WWW: http://zoo.r-forge.r-project.org/ +WWW: http://zoo.r-forge.r-project.org/ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 08:12:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 354F01065674; Sun, 7 Oct 2012 08:12:54 +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 1E0FD8FC2F; Sun, 7 Oct 2012 08:12: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 q978Crjp056912; Sun, 7 Oct 2012 08:12:53 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q978CrM7056907; Sun, 7 Oct 2012 08:12:53 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210070812.q978CrM7056907@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Sun, 7 Oct 2012 08:12:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305441 - in head/databases/py-bsddb3: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 08:12:54 -0000 Author: rm Date: Sun Oct 7 08:12:53 2012 New Revision: 305441 URL: http://svn.freebsd.org/changeset/ports/305441 Log: - fix build with python3 [1] - fix packaging list for python >= 3.2.0 (using nivit's solution for devel/py-virtualenv) PR: 170443 Submitted by: Volodymyr Kostyrko [1] Approved by: wen (maintainer) Added: head/databases/py-bsddb3/files/py3k-fix-pkg-plist.inc (contents, props changed) Modified: head/databases/py-bsddb3/Makefile head/databases/py-bsddb3/files/patch-setup3.py Modified: head/databases/py-bsddb3/Makefile ============================================================================== --- head/databases/py-bsddb3/Makefile Sun Oct 7 08:01:14 2012 (r305440) +++ head/databases/py-bsddb3/Makefile Sun Oct 7 08:12:53 2012 (r305441) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-bsddb3 -# Date created: 22 March 2001 -# Whom: Hye-Shik Chang -# +# Created by: Hye-Shik Chang # $FreeBSD$ -# PORTNAME= bsddb3 PORTVERSION= 5.3.0 @@ -24,6 +20,8 @@ PYDISTUTILS_INSTALLARGS=-c -O1 --prefix= PORTDOCS= * DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} +.include + post-patch: ${REINPLACE_CMD} 's,%%DBVERSION%%,${BDB_LIB_NAME},g' ${WRKSRC}/setup2.py ${WRKSRC}/setup3.py ${REINPLACE_CMD} 's,,<${BDB_INCLUDE_DIR}/db.h>,' ${WRKSRC}/Modules/bsddb.h @@ -34,4 +32,8 @@ post-install: (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* ${DOCSDIR}) .endif -.include +.if ${PYTHON_REL} >= 320 +.include "${FILESDIR}/py3k-fix-pkg-plist.inc" +.endif + +.include Modified: head/databases/py-bsddb3/files/patch-setup3.py ============================================================================== --- head/databases/py-bsddb3/files/patch-setup3.py Sun Oct 7 08:01:14 2012 (r305440) +++ head/databases/py-bsddb3/files/patch-setup3.py Sun Oct 7 08:12:53 2012 (r305441) @@ -19,7 +19,7 @@ - if not '-ldb' in LIBS: - libname = [dblib] + if not '-l%%DBVERSION%%' in LIBS: -+ libname = [%%DBVERSION%%] ++ libname = ['%%DBVERSION%%'] else: if debug: print("LIBS already contains '-ldb' not adding our own", "'-l"+dblib+"'") libname = [] Added: head/databases/py-bsddb3/files/py3k-fix-pkg-plist.inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-bsddb3/files/py3k-fix-pkg-plist.inc Sun Oct 7 08:12:53 2012 (r305441) @@ -0,0 +1,14 @@ +# When Python version is 3.2+ we rewrite all the filenames +# of TMPPLIST that end with .py[co], so that they conform +# to PEP 3147 (see http://www.python.org/dev/peps/pep-3147/) +PYMAGICTAG= ${PYTHON_CMD} -c 'import imp; print(imp.get_tag())' +add-plist-post: + @${AWK} '\ + /\.py[co]$$/ && !($$0 ~ "/" pc "/") {id = match($$0, /\/[^\/]+\.py[co]$$/); if (id != 0) {d = substr($$0, 1, RSTART - 1); dirs[d] = 1}; sub(/\.py[co]$$/, "." mt "&"); sub(/[^\/]+\.py[co]$$/, pc "/&"); print; next} \ + /^@dirrm / {d = substr($$0, 8); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \ + {print} \ + END {if (sp in dirs) {print "@dirrm " sp "/" pc}} \ + ' \ + pc="__pycache__" mt="$$(${PYMAGICTAG})" sp="${PYTHON_SITELIBDIR:S,${PYTHONBASE}/,,g}" \ + ${TMPPLIST} > ${TMPPLIST}.pyc_tmp + @${MV} ${TMPPLIST}.pyc_tmp ${TMPPLIST} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 08:42:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2856F1065672; Sun, 7 Oct 2012 08:42:53 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 138208FC0C; Sun, 7 Oct 2012 08:42:53 +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 q978gqqi061585; Sun, 7 Oct 2012 08:42:52 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q978gqRv061583; Sun, 7 Oct 2012 08:42:52 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201210070842.q978gqRv061583@svn.freebsd.org> From: Koop Mast Date: Sun, 7 Oct 2012 08:42:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305442 - head/audio/libcddb X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 08:42:53 -0000 Author: kwm Date: Sun Oct 7 08:42:52 2012 New Revision: 305442 URL: http://svn.freebsd.org/changeset/ports/305442 Log: Fix typo Modified: head/audio/libcddb/Makefile Modified: head/audio/libcddb/Makefile ============================================================================== --- head/audio/libcddb/Makefile Sun Oct 7 08:12:53 2012 (r305441) +++ head/audio/libcddb/Makefile Sun Oct 7 08:42:52 2012 (r305442) @@ -13,7 +13,7 @@ COMMENT= A library to access data on a C USE_BZIP2= yes GNU_CONFIGURE= yes USE_GNOME= gnomehack -USE_PKGCONFIG= bild +USE_PKGCONFIG= build USE_ICONV= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --without-cdio From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 08:44:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1027D1065672; Sun, 7 Oct 2012 08:44:22 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E595F8FC19; Sun, 7 Oct 2012 08:44: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 q978iLHl061867; Sun, 7 Oct 2012 08:44:21 GMT (envelope-from sbz@svn.freebsd.org) Received: (from sbz@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q978iLWp061864; Sun, 7 Oct 2012 08:44:21 GMT (envelope-from sbz@svn.freebsd.org) Message-Id: <201210070844.q978iLWp061864@svn.freebsd.org> From: Sofian Brabez Date: Sun, 7 Oct 2012 08:44:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305443 - head/security/w3af X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 08:44:22 -0000 Author: sbz Date: Sun Oct 7 08:44:21 2012 New Revision: 305443 URL: http://svn.freebsd.org/changeset/ports/305443 Log: - Convert to new options framework - Add LICENSE - Add math/py-numpy build depends - Bump PORTREVISION Modified: head/security/w3af/Makefile (contents, props changed) Modified: head/security/w3af/Makefile ============================================================================== --- head/security/w3af/Makefile Sun Oct 7 08:42:52 2012 (r305442) +++ head/security/w3af/Makefile Sun Oct 7 08:44:21 2012 (r305443) @@ -1,22 +1,19 @@ -# New ports collection makefile for: w3af -# Date created: Wed Aug 29 21:44:33 CEST 2007 -# Whom: Stefan Esser -# +# Created by: Stefan Esser # $FreeBSD$ -# PORTNAME= w3af DISTVERSION= 1.0-rc4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security python www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}/${PORTNAME}%20${DISTVERSION} -DISTNAME= ${PORTNAME}-${DISTVERSION} MAINTAINER= sbz@FreeBSD.org COMMENT= Web Application Attack and Audit Framework -LIB_DEPENDS= tidy-0.99.0:${PORTSDIR}/www/py-utidy +LICENSE= GPLv2 + +LIB_DEPENDS= tidy:${PORTSDIR}/www/py-utidy BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=2.1:${PORTSDIR}/devel/py-lxml \ ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:${PORTSDIR}/devel/py-simplejson \ ${PYTHON_SITELIBDIR}/OpenSSL/SSL.so:${PORTSDIR}/security/py-openssl \ @@ -24,6 +21,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lx ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ ${PYTHON_SITELIBDIR}/fpconst.py:${PORTSDIR}/math/py-fpconst \ nltk>0:${PORTSDIR}/textproc/nltk \ + ${PYTHON_SITELIBDIR}/numpy/__init__.py:${PORTSDIR}/math/py-numpy \ ${PYTHON_SITELIBDIR}/pyPdf/pdf.py:${PORTSDIR}/print/py-pdf \ ${PYTHON_SITELIBDIR}/scapy/main.py:${PORTSDIR}/net/scapy \ ${PYTHON_SITELIBDIR}/wordnet.py:${PORTSDIR}/textproc/py-wordnet \ @@ -31,7 +29,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lx RUN_DEPENDS:= ${BUILD_DEPENDS} MAN1PREFIX= ${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/plugins/discovery/oHalberd/ -MAN1= halberd.1 +MAN1= halberd.1 MANCOMPRESSED= no WRKSRC= ${WRKDIR}/${PORTNAME} @@ -39,11 +37,11 @@ USE_GETTEXT= yes USE_BZIP2= yes USE_PYTHON= 2.5+ -OPTIONS= GUI "Support for graphical user interface" off +OPTIONS_DEFINE= GUI .include -.if defined(WITH_GUI) +.if ${PORT_OPTIONS:MGUI} BUILD_DEPENDS+= ${PYTHON_SITELIBDIR}/pygraphviz/graphviz.py:${PORTSDIR}/graphics/py-graphviz \ ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:${PORTSDIR}/x11-toolkits/py-gtk2 PLIST_SUB+= GUI="" @@ -62,7 +60,7 @@ do-build: @${MKDIR} ${WRKDIR}/build @${MKDIR} ${WRKSRC}/build/extlib @${CP} ${WRKSRC}/w3af_console ${WRKDIR}/build/w3af_console.py -.if defined(WITH_GUI) +.if ${PORT_OPTIONS:MGUI} @${CP} ${WRKSRC}/w3af_gui ${WRKDIR}/build/w3af_gui.py .endif .for f in core locales plugins profiles readme scripts tools @@ -86,7 +84,7 @@ do-install: @${MKDIR} ${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/ @(cd ${WRKDIR}/build && ${COPYTREE_SHARE} \* ${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/) @${INSTALL_SCRIPT} ${WRKDIR}/w3af_console.sh ${PREFIX}/bin/w3af_console -.if defined(WITH_GUI) +.if ${PORT_OPTIONS:MGUI} @${INSTALL_SCRIPT} ${WRKDIR}/w3af_gui.sh ${PREFIX}/bin/w3af_gui .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 08:59:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E859106564A; Sun, 7 Oct 2012 08:59:36 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 587A38FC0C; Sun, 7 Oct 2012 08:59:36 +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 q978xaVf063899; Sun, 7 Oct 2012 08:59:36 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q978xauM063897; Sun, 7 Oct 2012 08:59:36 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201210070859.q978xauM063897@svn.freebsd.org> From: Rene Ladan Date: Sun, 7 Oct 2012 08:59:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305444 - head/www/chromium X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 08:59:36 -0000 Author: rene Date: Sun Oct 7 08:59:35 2012 New Revision: 305444 URL: http://svn.freebsd.org/changeset/ports/305444 Log: Cleanup Makefile header. Modified: head/www/chromium/Makefile Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Sun Oct 7 08:44:21 2012 (r305443) +++ head/www/chromium/Makefile Sun Oct 7 08:59:35 2012 (r305444) @@ -1,9 +1,5 @@ -# New ports collection makefile for: chromium -# Date created: September 30 2009 -# Whom: Florent Thoumie -# +# Created by: Florent Thoumie # $FreeBSD$ -# PORTNAME= chromium DISTVERSIONPREFIX= courgette-redacted- From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 09:09:12 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CC6D2106566C; Sun, 7 Oct 2012 09:09:12 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AB9128FC0A; Sun, 7 Oct 2012 09:09: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 q9799CWB065196; Sun, 7 Oct 2012 09:09:12 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9799CdV065190; Sun, 7 Oct 2012 09:09:12 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210070909.q9799CdV065190@svn.freebsd.org> From: Carlo Strub Date: Sun, 7 Oct 2012 09:09:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305445 - head/math/ess X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 09:09:13 -0000 Author: cs Date: Sun Oct 7 09:09:12 2012 New Revision: 305445 URL: http://svn.freebsd.org/changeset/ports/305445 Log: - Update to 12.09 - Remove conflict - Cleanup pkg-descr PR: ports/172382 Submitted by: "Christopher J. Ruwe" (maintainer) Modified: head/math/ess/Makefile head/math/ess/distinfo head/math/ess/pkg-descr head/math/ess/pkg-plist Modified: head/math/ess/Makefile ============================================================================== --- head/math/ess/Makefile Sun Oct 7 08:59:35 2012 (r305444) +++ head/math/ess/Makefile Sun Oct 7 09:09:12 2012 (r305445) @@ -6,8 +6,7 @@ # PORTNAME= ess -DISTVERSION= 12.04-4 -PORTREVISION= 4 +DISTVERSION= 12.09 CATEGORIES= math MASTER_SITES= http://ess.r-project.org/downloads/ess/ EXTRACT_SUFX= .tgz @@ -19,8 +18,6 @@ LICENSE= GPLv2 RUN_DEPENDS= R:${PORTSDIR}/math/R -CONFLICTS= noweb-[0-9]* - USE_EMACS= yes USE_GMAKE= yes Modified: head/math/ess/distinfo ============================================================================== --- head/math/ess/distinfo Sun Oct 7 08:59:35 2012 (r305444) +++ head/math/ess/distinfo Sun Oct 7 09:09:12 2012 (r305445) @@ -1,2 +1,2 @@ -SHA256 (ess-12.04-4.tgz) = c8ae9ba3db3ee98ca857a9ea6c82c88d92d4bc9115bc3f7e08c466920b5950ca -SIZE (ess-12.04-4.tgz) = 3280247 +SHA256 (ess-12.09.tgz) = 3167a84c9958605e9c1de7dc2dce564e22e89b79c9d1ba7ff7f66013af56f2b8 +SIZE (ess-12.09.tgz) = 3332863 Modified: head/math/ess/pkg-descr ============================================================================== --- head/math/ess/pkg-descr Sun Oct 7 08:59:35 2012 (r305444) +++ head/math/ess/pkg-descr Sun Oct 7 09:09:12 2012 (r305445) @@ -1,6 +1,6 @@ -Emacs Speaks Statistics (ESS) is an add-on package for emacs text editors -such as GNU Emacs and XEmacs. It is designed to support editing of scripts -and interaction with various statistical analysis programs such as R, S-Plus, -SAS, Stata and JAGS. +Emacs Speaks Statistics (ESS) is an add-on package for emacs text editors such +as GNU Emacs and XEmacs. It is designed to support editing of scripts and +interaction with various statistical analysis programs such as R, S-Plus, SAS, +Stata and JAGS. -WWW: http://ess.r-project.org +WWW: http://ess.r-project.org Modified: head/math/ess/pkg-plist ============================================================================== --- head/math/ess/pkg-plist Sun Oct 7 08:59:35 2012 (r305444) +++ head/math/ess/pkg-plist Sun Oct 7 09:09:12 2012 (r305445) @@ -49,6 +49,8 @@ %%EMACS_SITE_LISPDIR%%/ess-inf.elc %%EMACS_SITE_LISPDIR%%/ess-jags-d.el %%EMACS_SITE_LISPDIR%%/ess-jags-d.elc +%%EMACS_SITE_LISPDIR%%/ess-julia.el +%%EMACS_SITE_LISPDIR%%/ess-julia.elc %%EMACS_SITE_LISPDIR%%/ess-lsp-l.el %%EMACS_SITE_LISPDIR%%/ess-lsp-l.elc %%EMACS_SITE_LISPDIR%%/ess-menu.el @@ -127,10 +129,10 @@ %%EMACS_SITE_LISPDIR%%/mouseme.elc %%EMACS_SITE_LISPDIR%%/msdos.el %%EMACS_SITE_LISPDIR%%/msdos.elc -%%EMACS_SITE_LISPDIR%%/noweb-font-lock-mode.el -%%EMACS_SITE_LISPDIR%%/noweb-font-lock-mode.elc -%%EMACS_SITE_LISPDIR%%/noweb-mode.el -%%EMACS_SITE_LISPDIR%%/noweb-mode.elc +%%EMACS_SITE_LISPDIR%%/ess-noweb-font-lock-mode.el +%%EMACS_SITE_LISPDIR%%/ess-noweb-font-lock-mode.elc +%%EMACS_SITE_LISPDIR%%/ess-noweb-mode.el +%%EMACS_SITE_LISPDIR%%/ess-noweb-mode.elc @dirrm %%EMACS_LIBDIR%%/etc/ess/icons @dirrm %%EMACS_LIBDIR%%/etc/ess @dirrmtry %%EMACS_LIBDIR%%/etc From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 09:11:52 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36867106564A; Sun, 7 Oct 2012 09:11:52 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1B9668FC0C; Sun, 7 Oct 2012 09:11:52 +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 q979Bp6n065761; Sun, 7 Oct 2012 09:11:51 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q979Bpta065746; Sun, 7 Oct 2012 09:11:51 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201210070911.q979Bpta065746@svn.freebsd.org> From: Rene Ladan Date: Sun, 7 Oct 2012 09:11:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305446 - in head: astro/boinc-astropulse astro/boinc-setiathome-enhanced devel/chrpath devel/epydoc devel/log4cxx emulators/fuse-utils emulators/lib765 games/torcs lang/bas2tap lang/bf... X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 09:11:52 -0000 Author: rene Date: Sun Oct 7 09:11:51 2012 New Revision: 305446 URL: http://svn.freebsd.org/changeset/ports/305446 Log: Cleanup Makefile headers of my ports. Just use my login for ports I originally created myself. Modified: head/astro/boinc-astropulse/Makefile head/astro/boinc-setiathome-enhanced/Makefile head/devel/chrpath/Makefile head/devel/epydoc/Makefile head/devel/log4cxx/Makefile head/emulators/fuse-utils/Makefile head/emulators/lib765/Makefile head/games/torcs/Makefile head/lang/bas2tap/Makefile head/lang/bf2c/Makefile head/lang/nbc/Makefile head/misc/biosfont-demos/Makefile head/sysutils/biosfont/Makefile Modified: head/astro/boinc-astropulse/Makefile ============================================================================== --- head/astro/boinc-astropulse/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/astro/boinc-astropulse/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,8 +1,5 @@ -# New ports collection makefile for: boinc-astropulse -# Date created: 8 July 2009 -# Whom: Rene Ladan +# Created by: rene # $FreeBSD$ -# PORTNAME= boinc-astropulse PORTVERSION= 6.01 Modified: head/astro/boinc-setiathome-enhanced/Makefile ============================================================================== --- head/astro/boinc-setiathome-enhanced/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/astro/boinc-setiathome-enhanced/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,8 +1,5 @@ -# New ports collection makefile for: boinc-setiathome-enhanced -# Date created: 26 March 2006 -# Whom: Rene Ladan +# Created by: rene # $FreeBSD$ -# PORTNAME= boinc-setiathome-enhanced PORTVERSION= 6.12 Modified: head/devel/chrpath/Makefile ============================================================================== --- head/devel/chrpath/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/devel/chrpath/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: chrpath -# Date created: 2009-12-01 -# Whom: bms -# +# Created by: bms # $FreeBSD$ -# PORTNAME= chrpath PORTVERSION= 0.13 Modified: head/devel/epydoc/Makefile ============================================================================== --- head/devel/epydoc/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/devel/epydoc/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: epydoc -# Date created: Dec 29, 2003 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD$ -# PORTNAME= epydoc PORTVERSION= 3.0.1 Modified: head/devel/log4cxx/Makefile ============================================================================== --- head/devel/log4cxx/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/devel/log4cxx/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,7 +1,4 @@ -# New ports collection makefile for: log4cxx -# Date created: 2005-01-12 -# Whom: Thaddeus Covert -# +# Created by: Thaddeus Covert # $FreeBSD$ PORTNAME= log4cxx Modified: head/emulators/fuse-utils/Makefile ============================================================================== --- head/emulators/fuse-utils/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/emulators/fuse-utils/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: fuse-utils -# Date created: 2007-06-27 -# Whom: Rene Ladan -# +# Created by: rene # $FreeBSD$ -# PORTNAME= fuse-utils PORTVERSION= 1.0.0 Modified: head/emulators/lib765/Makefile ============================================================================== --- head/emulators/lib765/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/emulators/lib765/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: lib765 -# Date created: 2003-10-27 -# Whom: Alexey V. Antipovsky -# +# Created by: Alexey V. Antipovsky # $FreeBSD$ -# PORTNAME= lib765 PORTVERSION= 0.4.2 Modified: head/games/torcs/Makefile ============================================================================== --- head/games/torcs/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/games/torcs/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: torcs -# Date created: Fri 25 avr 2003 -# Whom: thierry@pompo.net -# +# Created by: thierry@pompo.net # $FreeBSD$ -# PORTNAME= torcs DISTVERSION= 1.3.3 Modified: head/lang/bas2tap/Makefile ============================================================================== --- head/lang/bas2tap/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/lang/bas2tap/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: bas2tap -# Date created: 2007-06-26 -# Whom: Rene Ladan -# +# Created by: rene # $FreeBSD$ -# PORTNAME= bas2tap PORTVERSION= 2.5 Modified: head/lang/bf2c/Makefile ============================================================================== --- head/lang/bf2c/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/lang/bf2c/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: bf2c -# Date created: 4 Sep 2003 -# Whom: r.c.ladan@student.tue.nl -# +# Created by: rene # $FreeBSD$ -# PORTNAME= bf2c PORTVERSION= 1.2.5 Modified: head/lang/nbc/Makefile ============================================================================== --- head/lang/nbc/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/lang/nbc/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,6 @@ -# New ports collection makefile for: nbc -# Date created: 4 April 2007 -# Whom: Ivan "Rambius" Ivanov -# Jason Bacon +# Created by: Ivan "Rambius" Ivanov +# Jason Bacon # $FreeBSD$ -# PORTNAME= nbc PORTVERSION= 1.2.1.r4 Modified: head/misc/biosfont-demos/Makefile ============================================================================== --- head/misc/biosfont-demos/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/misc/biosfont-demos/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: biosfont-demos -# Date created: 30 June 2006 -# Whom: Rene Ladan -# +# Created by: rene # $FreeBSD$ -# PORTNAME= biosfont-demos PORTVERSION= 1.1 Modified: head/sysutils/biosfont/Makefile ============================================================================== --- head/sysutils/biosfont/Makefile Sun Oct 7 09:09:12 2012 (r305445) +++ head/sysutils/biosfont/Makefile Sun Oct 7 09:11:51 2012 (r305446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: biosfont -# Date created: 10 May 2006 -# Whom: Rene Ladan -# +# Created by: rene # $FreeBSD$ -# PORTNAME= biosfont PORTVERSION= 1.2 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 09:16:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B119106564A; Sun, 7 Oct 2012 09:16:42 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BFD208FC08; Sun, 7 Oct 2012 09:16:41 +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 q979Gf9L066420; Sun, 7 Oct 2012 09:16:41 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q979GfJN066415; Sun, 7 Oct 2012 09:16:41 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210070916.q979GfJN066415@svn.freebsd.org> From: Carlo Strub Date: Sun, 7 Oct 2012 09:16:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305447 - in head/multimedia/ffmpegthumbnailer: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 09:16:42 -0000 Author: cs Date: Sun Oct 7 09:16:41 2012 New Revision: 305447 URL: http://svn.freebsd.org/changeset/ports/305447 Log: - Update to 2.0.8 - New maintainer - Cleanup pkg-descr PR: ports/171901 Submitted by: clutton Approved by: Dierk Sacher (maintainer) Deleted: head/multimedia/ffmpegthumbnailer/files/ Modified: head/multimedia/ffmpegthumbnailer/Makefile head/multimedia/ffmpegthumbnailer/distinfo head/multimedia/ffmpegthumbnailer/pkg-descr head/multimedia/ffmpegthumbnailer/pkg-plist Modified: head/multimedia/ffmpegthumbnailer/Makefile ============================================================================== --- head/multimedia/ffmpegthumbnailer/Makefile Sun Oct 7 09:11:51 2012 (r305446) +++ head/multimedia/ffmpegthumbnailer/Makefile Sun Oct 7 09:16:41 2012 (r305447) @@ -5,12 +5,11 @@ # $FreeBSD$ PORTNAME= ffmpegthumbnailer -PORTVERSION= 2.0.7 -PORTREVISION= 2 +PORTVERSION= 2.0.8 CATEGORIES= multimedia graphics MASTER_SITES= GOOGLE_CODE -MAINTAINER= dierk@blaxxtarz.de +MAINTAINER= mbsd@isgroup.com.ua COMMENT= Lightweight video thumbnailer that can be used by file managers LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ @@ -19,22 +18,32 @@ LIB_DEPENDS= png15:${PORTSDIR}/graphics/ CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig \ - --enable-gio +CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig --enable-gio GNU_CONFIGURE= yes USE_GMAKE= yes USE_GNOME= gnomehack pkgconfig _glib20 USE_LDCONFIG= yes -MAN1= ffmpegthumbnailer.1 +WANT_GNOME= yes + +OPTIONS_DEFINE= GNOME + +.include -SUB_FILES= pkg-message +.if ${PORT_OPTIONS:MGNOME} +PKGNAMESUFFIX+= -gnome +GCONF_SCHEMAS= ffmpegthumbnailer.schemas +.endif + +MAN1= ffmpegthumbnailer.1 post-install: cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE} install-pkgconfigDATA - ${MKDIR} ${DATADIR} - ${INSTALL_SCRIPT} ${FILESDIR}/bind-nautilus.sh ${DATADIR} - @${CAT} ${PKGMESSAGE} - -.include +.if ${PORT_OPTIONS:MGNOME} + ${INSTALL_DATA} ${FILESDIR}/${GCONF_SCHEMAS} ${LOCALBASE}/etc/gconf/schemas + @${SETENV} GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \ + gconftool-2 --makefile-install-rule ${LOCALBASE}/etc/gconf/schemas/${GCONF_SCHEMAS} \ + > /dev/null +.endif +.include Modified: head/multimedia/ffmpegthumbnailer/distinfo ============================================================================== --- head/multimedia/ffmpegthumbnailer/distinfo Sun Oct 7 09:11:51 2012 (r305446) +++ head/multimedia/ffmpegthumbnailer/distinfo Sun Oct 7 09:16:41 2012 (r305447) @@ -1,2 +1,2 @@ -SHA256 (ffmpegthumbnailer-2.0.7.tar.gz) = a71155339d17201a13fc3ebb649b0d00c7ab2d5a8880da071c8157a69c6f612b -SIZE (ffmpegthumbnailer-2.0.7.tar.gz) = 359864 +SHA256 (ffmpegthumbnailer-2.0.8.tar.gz) = 2c8bbefa838d38ea42fc8ac78258cda36865d974c991624b14cffdb92a3bc68b +SIZE (ffmpegthumbnailer-2.0.8.tar.gz) = 367186 Modified: head/multimedia/ffmpegthumbnailer/pkg-descr ============================================================================== --- head/multimedia/ffmpegthumbnailer/pkg-descr Sun Oct 7 09:11:51 2012 (r305446) +++ head/multimedia/ffmpegthumbnailer/pkg-descr Sun Oct 7 09:16:41 2012 (r305447) @@ -1,9 +1,8 @@ -This video thumbnailer can be used by file managers to create thumbnails -for your video files. The thumbnailer uses ffmpeg to decode frames from -the video files, so supported videoformats depend on the configuration -flags of ffmpeg. +This video thumbnailer can be used by file managers to create thumbnails for +your video files. The thumbnailer uses ffmpeg to decode frames from the video +files, so supported videoformats depend on the configuration flags of ffmpeg. -This thumbnailer was designed to be as fast and lightweight as possible. -The only dependencies are ffmpeg, libjpeg and libpng. +This thumbnailer was designed to be as fast and lightweight as possible. The +only dependencies are ffmpeg, libjpeg and libpng. WWW: http://code.google.com/p/ffmpegthumbnailer/ Modified: head/multimedia/ffmpegthumbnailer/pkg-plist ============================================================================== --- head/multimedia/ffmpegthumbnailer/pkg-plist Sun Oct 7 09:11:51 2012 (r305446) +++ head/multimedia/ffmpegthumbnailer/pkg-plist Sun Oct 7 09:16:41 2012 (r305447) @@ -10,6 +10,4 @@ lib/libffmpegthumbnailer.la lib/libffmpegthumbnailer.so lib/libffmpegthumbnailer.so.4 libdata/pkgconfig/libffmpegthumbnailer.pc -%%DATADIR%%/bind-nautilus.sh @dirrm include/libffmpegthumbnailer -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 09:45:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44A221065676; Sun, 7 Oct 2012 09:45:26 +0000 (UTC) (envelope-from alexkozlov0@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 752FE8FC0A; Sun, 7 Oct 2012 09:45:24 +0000 (UTC) Received: by mail-we0-f182.google.com with SMTP id x43so2485494wey.13 for ; Sun, 07 Oct 2012 02:45:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; bh=XAynU4B2v40awVJ4OzWff+Y4FzGfwL1oKJ4ODOhUn8s=; b=drCRdjzUQgSnfQKYbQWQEd1WgEHcSp6pcBkefTVl7albGp96Iwb1yNP70JZ5QB3E/f orX2CVc8KIh3PSI8usliSJEjPUkS7mM9V8RPokvKUiuC+8Z986W7N5ynp43UxY6yePiW gg7v6G4EPr9FyuVmguCc9zAiLDdv+Ir0lz/zKgRHHQB7g4ykPaaX2MvmopSA3ugAEeM2 NWeYbfKBW5snLsOyee7WuV9ZxxO639izyzUWbPu2zH7ACRbsfa+IGlhbspZ8Mv4Do9gP 6ewSioFUeKP1O3ox3DrhwBjDXXOG827sX/fmh494uKNmyqcGrVpSXdGzfB7tbVt6eA0K FeXg== Received: by 10.180.95.97 with SMTP id dj1mr13902180wib.3.1349603123438; Sun, 07 Oct 2012 02:45:23 -0700 (PDT) Received: from ravenloft.kiev.ua (ravenloft.kiev.ua. [94.244.131.95]) by mx.google.com with ESMTPS id p4sm14672101wix.0.2012.10.07.02.45.21 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 07 Oct 2012 02:45:23 -0700 (PDT) Sender: Alex Kozlov Date: Sun, 7 Oct 2012 12:45:19 +0300 From: Alex Kozlov To: Boris Samorodov Message-ID: <20121007094519.GA23625@ravenloft.kiev.ua> References: <201210062105.q96L5Dth040796@svn.freebsd.org> <50713F44.5010603@passap.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <50713F44.5010603@passap.ru> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305403 - head/graphics/eos-movrec X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 09:45:26 -0000 On Sun, Oct 07, 2012 at 12:37:24PM +0400, Boris Samorodov wrote: > Hello Alex, > > > Log: > > - Convert Makefile headers to new style > > - Add DESKTOP_ENTRIES > > - Pass maintainership to nemysis > As for me this is too simplified commit log. May be added: > > - Use bzip2 instead of zip tarball (greatly reduses the size) > - Remove duplicate PORTREVISION > - Remove the indefinite article from COMMENT > - Remove shlib version from the dependency > - convert and install icon *.png from *.ico Apologies, I forgot to update message file. Convert and install icon included in add DESKTOP_ENTRIES though, desktop entry need to have an icon. > And those changes are definitely demand a PORTREVISION bump. > There are some notes inline. > > > PR: ports/172342 > Since you committed a different patch it's better to point this out. The patch was substantially improved after discussion on irc, but it's still (technically) submitted by pr author. I guess I could have used something like: PR: ports/172342 (based on) > > Submitted by: nemysis > > > > Modified: > > head/graphics/eos-movrec/Makefile (contents, props changed) > > head/graphics/eos-movrec/distinfo (contents, props changed) > > > > Modified: head/graphics/eos-movrec/Makefile > > ============================================================================== > > --- head/graphics/eos-movrec/Makefile Sat Oct 6 20:50:12 2012 (r305402) > > +++ head/graphics/eos-movrec/Makefile Sat Oct 6 21:05:12 2012 (r305403) > > @@ -1,34 +1,42 @@ > > -# New ports collection makefile for: EOS camera movie record > > -# Date created: 15 Aug 2011 > > -# Whom: Alexey Dokuchaev > > -# > > # $FreeBSD$ > > -# > > +# Created by: Alexey Dokuchaev > Imho this line should be the first one. At the moment there are three or four variants of Makefile headers in the tree. I try to be as close as possible to the official version: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-samplem.html > > PORTNAME= eos-movrec > > DISTVERSION= 0.3.1_beta > > PORTREVISION= 1 > > CATEGORIES= graphics > I'm not sure, but may be this port belongs to multimedia? Hm. I'm not sure either, will ask maintainer. > > -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.3_beta > > +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.3_beta/ > > > > -MAINTAINER= ports@FreeBSD.org > > -COMMENT= A program to capture short movies with Canon DSLR camera > > +MAINTAINER= nemysis@gmx.ch > > +COMMENT= Program to capture short movies with Canon DSLR camera > May be this is a matter of taste but I'll say that "Program to" may be > trimmed too. > > LICENSE= GPLv2 > > > > -LIB_DEPENDS= gphoto2.2:${PORTSDIR}/graphics/libgphoto2 > > +LIB_DEPENDS= gphoto2:${PORTSDIR}/graphics/libgphoto2 > > +BUILD_DEPENDS= pnmtopng:${PORTSDIR}/graphics/netpbm > > > > -USE_ZIP= yes > > +USE_BZIP2= yes > > USE_CMAKE= yes > > +CMAKE_VERBOSE= yes > Seems to be a diagnistic only tool. Is it necessary for every build? I don't see any harm in it. But I will ask the maintainer if he agrees to remove it. > > +post-build: > > + @(cd ${WRKSRC} && ${LOCALBASE}/bin/winicontoppm -bestqual eos-movrec2.ico | \ > > + ${LOCALBASE}/bin/pnmtopng > eos-movrec.png) > > This is an interesting trick. Is it documented anywhere? No. You need to read netpbm documentation online. -- Alex From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 09:58:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE57D106566B; Sun, 7 Oct 2012 09:58:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9892D8FC0A; Sun, 7 Oct 2012 09:58:53 +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 q979wrM4071535; Sun, 7 Oct 2012 09:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q979wrku071533; Sun, 7 Oct 2012 09:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210070958.q979wrku071533@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 09:58:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305448 - head/Mk X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 09:58:53 -0000 Author: sunpoet Date: Sun Oct 7 09:58:53 2012 New Revision: 305448 URL: http://svn.freebsd.org/changeset/ports/305448 Log: - Add shared UTF16 description - Adjust descriptions: - PROJ_DESC: detail description - PTH_DESC: change "use ... for ..." to "... via ..." as other descriptions do - SQLITE3_DESC: add space between SQLite and 3 Modified: head/Mk/bsd.options.desc.mk Modified: head/Mk/bsd.options.desc.mk ============================================================================== --- head/Mk/bsd.options.desc.mk Sun Oct 7 09:16:41 2012 (r305447) +++ head/Mk/bsd.options.desc.mk Sun Oct 7 09:58:53 2012 (r305448) @@ -250,9 +250,9 @@ PORTAUDIO_DESC?= PortAudio library POSTGIS_DESC?= PostGIS support PRINT_DESC?= Printer support PROFILE_DESC?= Profiling library -PROJ_DESC?= PROJ.4 support +PROJ_DESC?= PROJ.4 cartographic projections library PROXY_DESC?= Proxy support -PTH_DESC?= Use GNU Pth for threading/multiprocessing +PTH_DESC?= Threading/multiprocessing via GNU Pth PULSEAUDIO_DESC?= PulseAudio sound server PYMALLOC_DESC?= Use Python's internal malloc PYTHON_DESC?= Python bindings @@ -280,7 +280,7 @@ SPANDSP_DESC?= Spandsp faxing SPEEX_DESC?= Speex audio format SQL_DESC?= SQL database SQLITE_DESC?= SQLite database -SQLITE3_DESC?= SQLite3 database +SQLITE3_DESC?= SQLite 3 database SSE_DESC?= Use SSE optimized routines SSH_DESC?= SSH protocol SSL_DESC?= SSL protocol @@ -310,6 +310,7 @@ UNIXODBC_DESC?= ODBC backend via unixOD UNZIP_DESC?= UnZip compression UPNP_DESC?= UPnP support UTF8_DESC?= Unicode UTF-8 encoding +UTF16_DESC?= Unicode UTF-16 encoding VAAPI_DESC?= VAAPI (GPU video acceleration) VDPAU_DESC?= VDPAU (GPU video acceleration) VIDEO_DESC?= Video support From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 10:14:17 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 469FA106566B; Sun, 7 Oct 2012 10:14:17 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 308988FC12; Sun, 7 Oct 2012 10:14:17 +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 q97AEHtT073608; Sun, 7 Oct 2012 10:14:17 GMT (envelope-from zeising@svn.freebsd.org) Received: (from zeising@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97AEGft073606; Sun, 7 Oct 2012 10:14:16 GMT (envelope-from zeising@svn.freebsd.org) Message-Id: <201210071014.q97AEGft073606@svn.freebsd.org> From: Niclas Zeising Date: Sun, 7 Oct 2012 10:14:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305449 - head/devel/binutils X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 10:14:17 -0000 Author: zeising Date: Sun Oct 7 10:14:16 2012 New Revision: 305449 URL: http://svn.freebsd.org/changeset/ports/305449 Log: Grab Approved by: miwi (mentor) Modified: head/devel/binutils/Makefile Modified: head/devel/binutils/Makefile ============================================================================== --- head/devel/binutils/Makefile Sun Oct 7 09:58:53 2012 (r305448) +++ head/devel/binutils/Makefile Sun Oct 7 10:14:16 2012 (r305449) @@ -8,7 +8,7 @@ CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEWARE} MASTER_SITE_SUBDIR= binutils/releases -MAINTAINER= ports@FreeBSD.org +MAINTAINER= zeising@FreeBSD.org COMMENT= GNU binary tools LICENSE= GPLv3 LGPL3 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 10:14:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C873106564A; Sun, 7 Oct 2012 10:14:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4C46F8FC16; Sun, 7 Oct 2012 10:14: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 q97AEtN2073758; Sun, 7 Oct 2012 10:14:55 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97AEttW073754; Sun, 7 Oct 2012 10:14:55 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071014.q97AEttW073754@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 10:14:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305450 - head/textproc/tidyp X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 10:14:55 -0000 Author: sunpoet Date: Sun Oct 7 10:14:54 2012 New Revision: 305450 URL: http://svn.freebsd.org/changeset/ports/305450 Log: - Convert to new options framework - Cleanup Makefile header Modified: head/textproc/tidyp/Makefile (contents, props changed) head/textproc/tidyp/pkg-descr (contents, props changed) Modified: head/textproc/tidyp/Makefile ============================================================================== --- head/textproc/tidyp/Makefile Sun Oct 7 10:14:16 2012 (r305449) +++ head/textproc/tidyp/Makefile Sun Oct 7 10:14:54 2012 (r305450) @@ -1,9 +1,5 @@ -# New ports collection makefile for: tidyp -# Date created: 2010-05-14 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= tidyp PORTVERSION= 1.04 @@ -17,10 +13,9 @@ COMMENT= A library and program to valida GNU_CONFIGURE= yes USE_LDCONFIG= yes -OPTIONS= ACCESS "Support Accessibility checks" off \ - ASIAN "Support Asian encoding" off \ - DEBUG "Enable debugging" off \ - UTF16 "Support UTF-16 encoding" off +OPTIONS_DEFINE= ACCESS ASIAN DEBUG UTF16 +ACCESS_DESC= Accessibility checks +ASIAN_DESC= Asian encodings PLIST_FILES= bin/${PORTNAME} \ include/${PORTNAME}/buffio.h \ @@ -36,19 +31,19 @@ PLIST_DIRS= include/${PORTNAME} .include -.if defined(WITH_ACCESS) +.if ${PORT_OPTIONS:MACCESS} CONFIGURE_ARGS+=--enable-access .endif -.if defined(WITH_ASIAN) +.if ${PORT_OPTIONS:MASIAN} CONFIGURE_ARGS+=--enable-asian .endif -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} CONFIGURE_ARGS+=--enable-debug .endif -.if defined(WITH_UTF16) +.if ${PORT_OPTIONS:MUTF16} CONFIGURE_ARGS+=--enable-utf16 .endif Modified: head/textproc/tidyp/pkg-descr ============================================================================== --- head/textproc/tidyp/pkg-descr Sun Oct 7 10:14:16 2012 (r305449) +++ head/textproc/tidyp/pkg-descr Sun Oct 7 10:14:54 2012 (r305450) @@ -4,4 +4,4 @@ but all internal API stays the same. tidyp will validate your HTML, and output cleaned-up HTML. -WWW: http://tidyp.com/ +WWW: http://tidyp.com/ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 10:23:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C1E58106564A; Sun, 7 Oct 2012 10:23:24 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AC4068FC12; Sun, 7 Oct 2012 10:23: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 q97ANOqV074826; Sun, 7 Oct 2012 10:23:24 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97ANOSa074824; Sun, 7 Oct 2012 10:23:24 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210071023.q97ANOSa074824@svn.freebsd.org> From: Alex Kozlov Date: Sun, 7 Oct 2012 10:23:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305451 - head/graphics/zbar X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 10:23:25 -0000 Author: ak Date: Sun Oct 7 10:23:23 2012 New Revision: 305451 URL: http://svn.freebsd.org/changeset/ports/305451 Log: - Convert Makefile headers to new style - Convert to new options framework - Remove ABI version numbers from LIB_DEPENDS PR: ports/172397 Submitted by: Oliver Heesakkers (maintainer) Modified: head/graphics/zbar/Makefile (contents, props changed) Modified: head/graphics/zbar/Makefile ============================================================================== --- head/graphics/zbar/Makefile Sun Oct 7 10:14:54 2012 (r305450) +++ head/graphics/zbar/Makefile Sun Oct 7 10:23:23 2012 (r305451) @@ -1,9 +1,5 @@ -# New ports collection makefile for: zbar -# Date created: 12 november 2010 -# Whom: Oliver Heesakkers -# # $FreeBSD$ -# +# Created by: Oliver Heesakkers PORTNAME= zbar PORTVERSION= 0.10 @@ -21,32 +17,29 @@ USE_GMAKE= yes USE_LDCONFIG= yes USE_ICONV= yes -OPTIONS= X11 "Build with X support" on \ - IMAGEMAGICK "ImageMagick graphics support" on \ - V4L "Build zbarcam video scanner" off \ - PYTHON "Build PyGTK widget" off \ - GTK2 "Build GTK+2 widget" off \ - QT4 "Build Qt4 widget" off +OPTIONS_DEFINE= X11 IMAGEMAGICK V4L PYTHON GTK2 QT4 +OPTIONS_DEFAULT= X11 IMAGEMAGICK +V4L_DESC= Build zbarcam video scanner .include .if exists(${LOCALBASE}/lib/libjpeg.so) CONFIGURE_ARGS+= --with-jpeg=yes -LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg +LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg .else CONFIGURE_ARGS+= --with-jpeg=no .endif -.if defined(WITH_X11) +.if ${PORT_OPTIONS:MX11} USE_XORG= ice sm x11 xau xdmcp xext xv -LIB_DEPENDS+= xcb.2:${PORTSDIR}/x11/libxcb +LIB_DEPENDS+= xcb:${PORTSDIR}/x11/libxcb CONFIGURE_ARGS+= --with-x=yes .else CONFIGURE_ARGS+= --with-x=no --without-xshm --without-xv .endif -.if defined(WITH_IMAGEMAGICK) -LIB_DEPENDS+= Magick++.5:${PORTSDIR}/graphics/ImageMagick +.if ${PORT_OPTIONS:MIMAGEMAGICK} +LIB_DEPENDS+= Magick++:${PORTSDIR}/graphics/ImageMagick CONFIGURE_ARGS+= --with-imagemagick=yes PLIST_SUB+= IMAGEMAGICK="" MAN1= zbarimg.1 @@ -55,7 +48,7 @@ CONFIGURE_ARGS+= --with-imagemagick=no PLIST_SUB+= IMAGEMAGICK="@comment " .endif -.if defined(WITH_V4L) +.if ${PORT_OPTIONS:MV4L} BUILD_DEPENDS+= v4l_compat>=1.0.20101027:${PORTSDIR}/multimedia/v4l_compat CONFIGURE_ARGS+= --enable-video=yes PLIST_SUB+= V4L="" @@ -65,7 +58,7 @@ CONFIGURE_ARGS+= --enable-video=no PLIST_SUB+= V4L="@comment " .endif -.if defined(WITH_PYTHON) +.if ${PORT_OPTIONS:MPYTHON} USE_PYTHON= 2.5-2.7 USE_GNOME+= pygtk2 CONFIGURE_ARGS+= --with-python=yes @@ -75,7 +68,7 @@ CONFIGURE_ARGS+= --with-python=no PLIST_SUB+= PYTHON="@comment " .endif -.if defined(WITH_GTK2) +.if ${PORT_OPTIONS:MGTK2} USE_GNOME+= gtk20 CONFIGURE_ARGS+= --with-gtk=yes PLIST_SUB+= GTK2="" @@ -84,7 +77,7 @@ CONFIGURE_ARGS+= --with-gtk=no PLIST_SUB+= GTK2="@comment " .endif -.if defined(WITH_QT4) +.if ${PORT_OPTIONS:MQT4} USE_QT4= gui moc_build CONFIGURE_ARGS+= --with-qt=yes PLIST_SUB+= QT4="" @@ -97,9 +90,9 @@ LDFLAGS+= -L${LOCALBASE}/lib post-patch: @${REINPLACE_CMD} 's|-lpthread|${PTHREAD_LIBS}|' ${WRKSRC}/configure - @${REINPLACE_CMD} 's|^pkgconfigdir = .*|pkgconfigdir = $$(prefix)/libdata/pkgconfig|' \ + @${REINPLACE_CMD} 's|^pkgconfigdir = .*|pkgconfigdir = ${PREFIX}/libdata/pkgconfig|' \ ${WRKSRC}/Makefile.in -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} '/^install-data-am: /s/install-dist_docDATA//' \ ${WRKSRC}/Makefile.in .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 10:23:46 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC98610657F4; Sun, 7 Oct 2012 10:23:45 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 474D98FC12; Sun, 7 Oct 2012 10:23:44 +0000 (UTC) Received: from aruba-ctlr2-nat.its.manchester.ac.uk [130.88.99.218:23159] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id q97ANerq064217 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sun, 7 Oct 2012 14:23:43 +0400 (MSK) From: Max Brazhnikov To: Alex Kozlov Date: Sun, 7 Oct 2012 10:23:51 +0000 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.9.1; amd64; ; ) References: <201210062105.q96L5Dth040796@svn.freebsd.org> <50713F44.5010603@passap.ru> <20121007094519.GA23625@ravenloft.kiev.ua> In-Reply-To: <20121007094519.GA23625@ravenloft.kiev.ua> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201210071023.52123.makc@freebsd.org> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Boris Samorodov , ports-committers@freebsd.org Subject: Re: svn commit: r305403 - head/graphics/eos-movrec X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 10:23:46 -0000 On Sun, 7 Oct 2012 12:45:19 +0300, Alex Kozlov wrote: > > > USE_CMAKE= yes > > > +CMAKE_VERBOSE= yes > > Seems to be a diagnistic only tool. Is it necessary for every build? > I don't see any harm in it. But I will ask the maintainer if he agrees to > remove it CMAKE_VERBOSE is user defined variable, it shouldn't be set in Makefile. Max From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 10:24:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07ACA106564A; Sun, 7 Oct 2012 10:24:48 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CBB078FC0A; Sun, 7 Oct 2012 10:24:47 +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 q97AOlwV075032; Sun, 7 Oct 2012 10:24:47 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97AOl3B075030; Sun, 7 Oct 2012 10:24:47 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201210071024.q97AOl3B075030@svn.freebsd.org> From: Marcus von Appen Date: Sun, 7 Oct 2012 10:24:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305452 - head/math/py-numpy X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 10:24:48 -0000 Author: mva Date: Sun Oct 7 10:24:47 2012 New Revision: 305452 URL: http://svn.freebsd.org/changeset/ports/305452 Log: - Remove automatic dependency to SuiteSparse; use OPTIONS instead - Change to new OPTIONS style PR: ports/171349 Submitted by: Li-Lun Wang (maintainer) Reported by: A.J. Kehoe IV (Nanoman) Modified: head/math/py-numpy/Makefile (contents, props changed) Modified: head/math/py-numpy/Makefile ============================================================================== --- head/math/py-numpy/Makefile Sun Oct 7 10:23:23 2012 (r305451) +++ head/math/py-numpy/Makefile Sun Oct 7 10:24:47 2012 (r305452) @@ -7,6 +7,7 @@ PORTNAME= numpy PORTVERSION= 1.6.2 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= math python MASTER_SITES= http://docs.scipy.org/doc/${DISTNAME:C/\..$/.0/}/:doc \ @@ -24,7 +25,10 @@ LICENSE= BSD RUN_DEPENDS= nosetests:${PORTSDIR}/devel/py-nose -OPTIONS= ATLAS "Use optimized blas library" Off +OPTIONS_DEFINE= ATLAS SUITESPARSE +OPTIONS_DEFAULT= SUITESPARSE +ATLAS_DESC= Use optimized blas library +SUITESPARSE_DESC= Use AMD and UMFPACK in SuiteSparse USE_FORTRAN= yes USE_PYTHON= yes @@ -53,7 +57,7 @@ FP_ARCH= ${ARCH} DISTFILES+= ${FP_ARCH}/fenv.c?p=203441:fp ${FP_ARCH}/fenv.h?p=203441:fp .endif -.if defined(WITH_ATLAS) +.if ${PORT_OPTIONS:MATLAS} LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas .if !exists(${LOCALBASE}/lib/libalapack.a) IGNORE= atlas needs to be built with WITH_STATIC for numpy to function properly @@ -63,7 +67,7 @@ LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/ blas.2:${PORTSDIR}/math/blas .endif -.if exists(${LOCALBASE}/lib/libumfpack.so.1) +.if ${PORT_OPTIONS:MSUITESPARSE} LIB_DEPENDS+= umfpack.1:${PORTSDIR}/math/suitesparse .endif @@ -90,17 +94,17 @@ pre-configure: ${PATCH} ${PATCH_DIST_ARGS} < ${FILESDIR}/fenv.patch; \ fi .endif -.ifdef WITH_ATLAS - @${REINPLACE_CMD} -e "s+%%GCCLIBDIR%%+$$(${GCCLIBDIR_CMDS})+" \ - -e "s+%%LOCALBASE%%+${LOCALBASE}+g" \ - -e "s+%%ATLASLIBS%%+alapack, f77blas, cblas, atlas+" \ - ${WRKSRC}/site.cfg +.if ${PORT_OPTIONS:MATLAS} + @${REINPLACE_CMD} -e "s+%%ATLASLIBS%%+alapack, f77blas, cblas, atlas+" ${WRKSRC}/site.cfg .else + @${REINPLACE_CMD} -e "s+%%ATLASLIBS%%+lapack, blas+" ${WRKSRC}/site.cfg +.endif +.if !${PORT_OPTIONS:MSUITESPARSE} + @${REINPLACE_CMD} -e "s+:%%LOCALBASE%%/include/suitesparse++" ${WRKSRC}/site.cfg +.endif @${REINPLACE_CMD} -e "s+%%GCCLIBDIR%%+$$(${GCCLIBDIR_CMDS})+" \ -e "s+%%LOCALBASE%%+${LOCALBASE}+g" \ - -e "s+%%ATLASLIBS%%+lapack, blas+" \ - ${WRKSRC}/site.cfg -.endif + ${WRKSRC}/site.cfg @${REINPLACE_CMD} -e "s+%%GCCLIBDIR%%+$$(${GCCLIBDIR_CMDS})+" ${WRKSRC}/numpy/distutils/system_info.py pre-install: From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 10:26:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A45B8106566B; Sun, 7 Oct 2012 10:26:44 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 758FA8FC0C; Sun, 7 Oct 2012 10:26: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 q97AQieF075321; Sun, 7 Oct 2012 10:26:44 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97AQia3075319; Sun, 7 Oct 2012 10:26:44 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201210071026.q97AQia3075319@svn.freebsd.org> From: Marcus von Appen Date: Sun, 7 Oct 2012 10:26:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305453 - head/science/py-scipy X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 10:26:44 -0000 Author: mva Date: Sun Oct 7 10:26:43 2012 New Revision: 305453 URL: http://svn.freebsd.org/changeset/ports/305453 Log: - Remove automatic dependency to SuiteSparse; use OPTIONS instead - Change to new OPTIONS style - Add RUN_DEPENDS on py-nose PR: ports/171349 Submitted by: Li-Lun Wang (maintainer) Reported by: A.J. Kehoe IV (Nanoman) Modified: head/science/py-scipy/Makefile (contents, props changed) Modified: head/science/py-scipy/Makefile ============================================================================== --- head/science/py-scipy/Makefile Sun Oct 7 10:24:47 2012 (r305452) +++ head/science/py-scipy/Makefile Sun Oct 7 10:26:43 2012 (r305453) @@ -7,6 +7,7 @@ PORTNAME= scipy PORTVERSION= 0.10.1 +PORTREVISION= 1 CATEGORIES= science python MASTER_SITES= http://docs.scipy.org/doc/${DISTNAME}/:doc \ SF:source @@ -21,7 +22,8 @@ COMMENT= Scientific tools for Python BUILD_DEPENDS+= ${PYNUMPY} \ ${LOCALBASE}/lib/libdjbfft.a:${PORTSDIR}/math/djbfft LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw3 -RUN_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} \ + nosetests:${PORTSDIR}/devel/py-nose LATEST_LINK= py-${PORTNAME} OPTIONSFILE= ${PORT_DBDIR}/py-numpy/options @@ -29,7 +31,11 @@ OPTIONSFILE= ${PORT_DBDIR}/py-numpy/opti USE_FORTRAN= yes USE_PYTHON= 2.5+ USE_PYDISTUTILS= yes -OPTIONS= ATLAS "Use optimized blas library" OFF + +OPTIONS_DEFINE= ATLAS SUITESPARSE +OPTIONS_DEFAULT= SUITESPARSE +ATLAS_DESC= Use optimized blas library +SUITESPARSE_DESC= Use AMD and UMFPACK in SuiteSparse post-patch: @${GREP} -lR "malloc\.h" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \ @@ -37,7 +43,7 @@ post-patch: .include -.if defined(WITH_ATLAS) +.if ${PORT_OPTIONS:MATLAS} LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas .if !exists(${LOCALBASE}/lib/libalapack.a) IGNORE= atlas needs to be built with WITH_STATIC for scipy to function properly @@ -47,7 +53,7 @@ LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/ blas.2:${PORTSDIR}/math/blas .endif -.if exists(${LOCALBASE}/lib/libumfpack.so.1) +.if ${PORT_OPTIONS:MSUITESPARSE} BUILD_DEPENDS+= swig:${PORTSDIR}/devel/swig13 LIB_DEPENDS+= umfpack.1:${PORTSDIR}/math/suitesparse .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 10:28:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 01CFC106566C; Sun, 7 Oct 2012 10:28:58 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C598F8FC0A; Sun, 7 Oct 2012 10:28:57 +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 q97ASvIK075719; Sun, 7 Oct 2012 10:28:57 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97ASv9O075713; Sun, 7 Oct 2012 10:28:57 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201210071028.q97ASv9O075713@svn.freebsd.org> From: Jun Kuriyama Date: Sun, 7 Oct 2012 10:28:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305454 - in head/textproc: . rubygem-charlock_holmes X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 10:28:58 -0000 Author: kuriyama Date: Sun Oct 7 10:28:57 2012 New Revision: 305454 URL: http://svn.freebsd.org/changeset/ports/305454 Log: Character encoding detecting library for Ruby using ICU. WWW: http://github.com/brianmario/charlock_holmes Added: head/textproc/rubygem-charlock_holmes/ head/textproc/rubygem-charlock_holmes/Makefile (contents, props changed) head/textproc/rubygem-charlock_holmes/distinfo (contents, props changed) head/textproc/rubygem-charlock_holmes/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Oct 7 10:26:43 2012 (r305453) +++ head/textproc/Makefile Sun Oct 7 10:28:57 2012 (r305454) @@ -1257,6 +1257,7 @@ SUBDIR += ruby-xslt SUBDIR += rubygem-albino SUBDIR += rubygem-augeas + SUBDIR += rubygem-charlock_holmes SUBDIR += rubygem-coderay SUBDIR += rubygem-colored SUBDIR += rubygem-compass Added: head/textproc/rubygem-charlock_holmes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-charlock_holmes/Makefile Sun Oct 7 10:28:57 2012 (r305454) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= charlock_holmes +PORTVERSION= 0.6.8 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Gems for character encoding detection + +LIB_DEPENDS= icui18n:${PORTSDIR}/devel/icu + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes +CONFIGURE_ARGS= --with-icu-include=${LOCALBASE}/include +PLIST_FILES= lib/ruby/gems/${RUBY_VER}/gems/charlock_holmes-${PORTVERSION}/ext/charlock_holmes/src/file-5.08/src/.libs/libmagic.la + +.include Added: head/textproc/rubygem-charlock_holmes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-charlock_holmes/distinfo Sun Oct 7 10:28:57 2012 (r305454) @@ -0,0 +1,2 @@ +SHA256 (rubygem/charlock_holmes-0.6.8.gem) = 1f3af070aa98fe464413cbc29741b6e4cd986f50e3e4e895771ca91e74428361 +SIZE (rubygem/charlock_holmes-0.6.8.gem) = 648192 Added: head/textproc/rubygem-charlock_holmes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-charlock_holmes/pkg-descr Sun Oct 7 10:28:57 2012 (r305454) @@ -0,0 +1,3 @@ +Character encoding detecting library for Ruby using ICU. + +WWW: http://github.com/brianmario/charlock_holmes From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 11:06:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D939106566B; Sun, 7 Oct 2012 11:06:57 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3A2C18FC0A; Sun, 7 Oct 2012 11:06:57 +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 q97B6vjw086103; Sun, 7 Oct 2012 11:06:57 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97B6vf1086100; Sun, 7 Oct 2012 11:06:57 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210071106.q97B6vf1086100@svn.freebsd.org> From: Carlo Strub Date: Sun, 7 Oct 2012 11:06:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305455 - in head/multimedia/ffmpegthumbnailer: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 11:06:59 -0000 Author: cs Date: Sun Oct 7 11:06:56 2012 New Revision: 305455 URL: http://svn.freebsd.org/changeset/ports/305455 Log: Add missing file PR: ports/171901 Submitted by: clutton (maintainer) Added: head/multimedia/ffmpegthumbnailer/files/ head/multimedia/ffmpegthumbnailer/files/ffmpegthumbnailer.schemas (contents, props changed) Modified: head/multimedia/ffmpegthumbnailer/Makefile Modified: head/multimedia/ffmpegthumbnailer/Makefile ============================================================================== --- head/multimedia/ffmpegthumbnailer/Makefile Sun Oct 7 10:28:57 2012 (r305454) +++ head/multimedia/ffmpegthumbnailer/Makefile Sun Oct 7 11:06:56 2012 (r305455) @@ -6,6 +6,7 @@ PORTNAME= ffmpegthumbnailer PORTVERSION= 2.0.8 +PORTREVISION= 1 CATEGORIES= multimedia graphics MASTER_SITES= GOOGLE_CODE Added: head/multimedia/ffmpegthumbnailer/files/ffmpegthumbnailer.schemas ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/ffmpegthumbnailer/files/ffmpegthumbnailer.schemas Sun Oct 7 11:06:56 2012 (r305455) @@ -0,0 +1,2501 @@ + + + + + + /schemas/desktop/gnome/thumbnailers/application@mxf/enable + /desktop/gnome/thumbnailers/application@mxf/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@mxf/command + /desktop/gnome/thumbnailers/application@mxf/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@ogg/enable + /desktop/gnome/thumbnailers/application@ogg/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@ogg/command + /desktop/gnome/thumbnailers/application@ogg/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@ram/enable + /desktop/gnome/thumbnailers/application@ram/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@ram/command + /desktop/gnome/thumbnailers/application@ram/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@sdp/enable + /desktop/gnome/thumbnailers/application@sdp/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@sdp/command + /desktop/gnome/thumbnailers/application@sdp/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@vnd.ms-wpl/enable + /desktop/gnome/thumbnailers/application@vnd.ms-wpl/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@vnd.ms-wpl/command + /desktop/gnome/thumbnailers/application@vnd.ms-wpl/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@vnd.rn-realmedia/enable + /desktop/gnome/thumbnailers/application@vnd.rn-realmedia/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@vnd.rn-realmedia/command + /desktop/gnome/thumbnailers/application@vnd.rn-realmedia/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-extension-m4a/enable + /desktop/gnome/thumbnailers/application@x-extension-m4a/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-extension-m4a/command + /desktop/gnome/thumbnailers/application@x-extension-m4a/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-extension-mp4/enable + /desktop/gnome/thumbnailers/application@x-extension-mp4/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-extension-mp4/command + /desktop/gnome/thumbnailers/application@x-extension-mp4/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-flash-video/enable + /desktop/gnome/thumbnailers/application@x-flash-video/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-flash-video/command + /desktop/gnome/thumbnailers/application@x-flash-video/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-matroska/enable + /desktop/gnome/thumbnailers/application@x-matroska/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-matroska/command + /desktop/gnome/thumbnailers/application@x-matroska/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-netshow-channel/enable + /desktop/gnome/thumbnailers/application@x-netshow-channel/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-netshow-channel/command + /desktop/gnome/thumbnailers/application@x-netshow-channel/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-ogg/enable + /desktop/gnome/thumbnailers/application@x-ogg/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-ogg/command + /desktop/gnome/thumbnailers/application@x-ogg/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-quicktimeplayer/enable + /desktop/gnome/thumbnailers/application@x-quicktimeplayer/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-quicktimeplayer/command + /desktop/gnome/thumbnailers/application@x-quicktimeplayer/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-shorten/enable + /desktop/gnome/thumbnailers/application@x-shorten/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/application@x-shorten/command + /desktop/gnome/thumbnailers/application@x-shorten/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/image@vnd.rn-realpix/enable + /desktop/gnome/thumbnailers/image@vnd.rn-realpix/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/image@vnd.rn-realpix/command + /desktop/gnome/thumbnailers/image@vnd.rn-realpix/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/image@x-pict/enable + /desktop/gnome/thumbnailers/image@x-pict/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/image@x-pict/command + /desktop/gnome/thumbnailers/image@x-pict/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/misc@ultravox/enable + /desktop/gnome/thumbnailers/misc@ultravox/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/misc@ultravox/command + /desktop/gnome/thumbnailers/misc@ultravox/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/text@x-google-video-pointer/enable + /desktop/gnome/thumbnailers/text@x-google-video-pointer/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/text@x-google-video-pointer/command + /desktop/gnome/thumbnailers/text@x-google-video-pointer/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@3gpp/enable + /desktop/gnome/thumbnailers/video@3gpp/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@3gpp/command + /desktop/gnome/thumbnailers/video@3gpp/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@dv/enable + /desktop/gnome/thumbnailers/video@dv/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@dv/command + /desktop/gnome/thumbnailers/video@dv/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@fli/enable + /desktop/gnome/thumbnailers/video@fli/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@fli/command + /desktop/gnome/thumbnailers/video@fli/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@flv/enable + /desktop/gnome/thumbnailers/video@flv/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@flv/command + /desktop/gnome/thumbnailers/video@flv/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@mp2t/enable + /desktop/gnome/thumbnailers/video@mp2t/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@mp2t/command + /desktop/gnome/thumbnailers/video@mp2t/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@mp4/enable + /desktop/gnome/thumbnailers/video@mp4/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@mp4/command + /desktop/gnome/thumbnailers/video@mp4/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@mp4v-es/enable + /desktop/gnome/thumbnailers/video@mp4v-es/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@mp4v-es/command + /desktop/gnome/thumbnailers/video@mp4v-es/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@mpeg/enable + /desktop/gnome/thumbnailers/video@mpeg/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@mpeg/command + /desktop/gnome/thumbnailers/video@mpeg/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@msvideo/enable + /desktop/gnome/thumbnailers/video@msvideo/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@msvideo/command + /desktop/gnome/thumbnailers/video@msvideo/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@ogg/enable + /desktop/gnome/thumbnailers/video@ogg/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@ogg/command + /desktop/gnome/thumbnailers/video@ogg/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@quicktime/enable + /desktop/gnome/thumbnailers/video@quicktime/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@quicktime/command + /desktop/gnome/thumbnailers/video@quicktime/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@vivo/enable + /desktop/gnome/thumbnailers/video@vivo/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@vivo/command + /desktop/gnome/thumbnailers/video@vivo/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@vnd.divx/enable + /desktop/gnome/thumbnailers/video@vnd.divx/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@vnd.divx/command + /desktop/gnome/thumbnailers/video@vnd.divx/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@vnd.rn-realvideo/enable + /desktop/gnome/thumbnailers/video@vnd.rn-realvideo/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@vnd.rn-realvideo/command + /desktop/gnome/thumbnailers/video@vnd.rn-realvideo/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@vnd.vivo/enable + /desktop/gnome/thumbnailers/video@vnd.vivo/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@vnd.vivo/command + /desktop/gnome/thumbnailers/video@vnd.vivo/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@webm/enable + /desktop/gnome/thumbnailers/video@webm/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@webm/command + /desktop/gnome/thumbnailers/video@webm/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@x-anim/enable + /desktop/gnome/thumbnailers/video@x-anim/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@x-anim/command + /desktop/gnome/thumbnailers/video@x-anim/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@x-avi/enable + /desktop/gnome/thumbnailers/video@x-avi/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@x-avi/command + /desktop/gnome/thumbnailers/video@x-avi/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@x-flc/enable + /desktop/gnome/thumbnailers/video@x-flc/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@x-flc/command + /desktop/gnome/thumbnailers/video@x-flc/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@x-fli/enable + /desktop/gnome/thumbnailers/video@x-fli/enable + ffmpegthumbnailer + bool + true + + + + + + + + + /schemas/desktop/gnome/thumbnailers/video@x-fli/command + /desktop/gnome/thumbnailers/video@x-fli/command + ffmpegthumbnailer + string + /usr/local/bin/ffmpegthumbnailer -s %s -i %i -o %o -c png -f -t 10 + + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 11:10:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A2A710656EB; Sun, 7 Oct 2012 11:10:19 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1F7918FC12; Sun, 7 Oct 2012 11:10: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 q97BAINo086620; Sun, 7 Oct 2012 11:10:18 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97BAIcR086616; Sun, 7 Oct 2012 11:10:18 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210071110.q97BAIcR086616@svn.freebsd.org> From: Wen Heping Date: Sun, 7 Oct 2012 11:10:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305456 - head/textproc/p5-XML-Compile X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 11:10:22 -0000 Author: wen Date: Sun Oct 7 11:10:18 2012 New Revision: 305456 URL: http://svn.freebsd.org/changeset/ports/305456 Log: - Update to 1.28 Changes: http://cpansearch.perl.org/src/MARKOV/XML-Compile-1.28/ChangeLog - Trim Makefile headers Modified: head/textproc/p5-XML-Compile/Makefile head/textproc/p5-XML-Compile/distinfo Modified: head/textproc/p5-XML-Compile/Makefile ============================================================================== --- head/textproc/p5-XML-Compile/Makefile Sun Oct 7 11:06:56 2012 (r305455) +++ head/textproc/p5-XML-Compile/Makefile Sun Oct 7 11:10:18 2012 (r305456) @@ -1,15 +1,10 @@ -# New ports collection makefile for: p5-XML-Compile -# Date created: 2006-08-29 -# Whom: Jin-Shan Tseng -# +# Created by: Jin-Shan Tseng # $FreeBSD$ -# PORTNAME= XML-Compile -PORTVERSION= 1.27 +PORTVERSION= 1.28 CATEGORIES= textproc perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:MARKOV PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org Modified: head/textproc/p5-XML-Compile/distinfo ============================================================================== --- head/textproc/p5-XML-Compile/distinfo Sun Oct 7 11:06:56 2012 (r305455) +++ head/textproc/p5-XML-Compile/distinfo Sun Oct 7 11:10:18 2012 (r305456) @@ -1,2 +1,2 @@ -SHA256 (XML-Compile-1.27.tar.gz) = 59ea6d337a26c5b8304a24c380fd5f9b932363c89c1e2b12a5f23abec64d2aaa -SIZE (XML-Compile-1.27.tar.gz) = 188267 +SHA256 (XML-Compile-1.28.tar.gz) = 37c13e9ccd160965548dbc1dbd174c03c8292f080e4cd4ef00a1dba03edddbc4 +SIZE (XML-Compile-1.28.tar.gz) = 188680 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 11:16:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13EBD106566B; Sun, 7 Oct 2012 11:16:08 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D7D698FC0A; Sun, 7 Oct 2012 11:16: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 q97BG7II087470; Sun, 7 Oct 2012 11:16:07 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97BG7hF087468; Sun, 7 Oct 2012 11:16:07 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201210071116.q97BG7hF087468@svn.freebsd.org> From: Koop Mast Date: Sun, 7 Oct 2012 11:16:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305457 - in head/net/samba4-devel: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 11:16:08 -0000 Author: kwm Date: Sun Oct 7 11:16:07 2012 New Revision: 305457 URL: http://svn.freebsd.org/changeset/ports/305457 Log: Unbreak by using bundled tevent. While here update header and switch USE_PKGCONFIG. PR: ports/171614 Submitted by: John Hein Approved by: maintainer Deleted: head/net/samba4-devel/files/patch-source4-min__versions.m4 Modified: head/net/samba4-devel/Makefile Modified: head/net/samba4-devel/Makefile ============================================================================== --- head/net/samba4-devel/Makefile Sun Oct 7 11:10:18 2012 (r305456) +++ head/net/samba4-devel/Makefile Sun Oct 7 11:16:07 2012 (r305457) @@ -1,12 +1,9 @@ -# New ports collection makefile for: samba4 -# Date created: 28 Jun 2006 -# Whom: timur@FreeBSD.org -# +# Created by: timur@FreeBSD.org # $FreeBSD$ -# + PORTNAME?= ${SAMBA_PORTNAME} PORTVERSION?= ${SAMBA_VERSION} -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SAMBA} MASTER_SITE_SUBDIR= samba4 @@ -16,8 +13,6 @@ DISTNAME= ${SAMBA_DISTNAME} MAINTAINER?= timur@FreeBSD.org COMMENT?= A free SMB and CIFS client and server for UNIX -BROKEN= does not configure - CONFLICTS?= ldb-1.* SAMBA_PORTNAME= samba4 @@ -39,7 +34,7 @@ USE_PYTHON= yes USE_GMAKE= yes USE_ICONV= yes GNU_CONFIGURE= yes -USE_GNOME= pkgconfig +USE_PKGCONFIG= build USE_LDCONFIG= ${SAMBA_LIBDIR} USE_AUTOTOOLS= autoconf autoheader # Flags @@ -91,8 +86,10 @@ CONFIGURE_ARGS+= --enable-external-libtd LIB_DEPENDS+= talloc.2:${PORTSDIR}/devel/talloc CONFIGURE_ARGS+= --enable-external-libtalloc # tevent -LIB_DEPENDS+= tevent.0:${PORTSDIR}/devel/tevent -CONFIGURE_ARGS+= --enable-external-libtevent +#LIB_DEPENDS+= tevent.0:${PORTSDIR}/devel/tevent +#CONFIGURE_ARGS+= --enable-external-libtevent +# tevent - use internal libtevent since FreeBSD's port is at +# 0.9.15 and samba4.alpha11 claims to want exactly 0.9.8 OPTIONS= \ DEBUG "With debug info" off \ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 11:29:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 461431065670; Sun, 7 Oct 2012 11:29:07 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2F4A18FC12; Sun, 7 Oct 2012 11:29: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 q97BT7S1089165; Sun, 7 Oct 2012 11:29:07 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97BT6M5089161; Sun, 7 Oct 2012 11:29:06 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210071129.q97BT6M5089161@svn.freebsd.org> From: Wen Heping Date: Sun, 7 Oct 2012 11:29:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305458 - head/textproc/p5-XML-Compile-Cache X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 11:29:07 -0000 Author: wen Date: Sun Oct 7 11:29:06 2012 New Revision: 305458 URL: http://svn.freebsd.org/changeset/ports/305458 Log: - Update to 0.99.2 Changes: http://cpansearch.perl.org/src/MARKOV/XML-Compile-Cache-0.992/ChangeLog - Trim Makefile headers Modified: head/textproc/p5-XML-Compile-Cache/Makefile head/textproc/p5-XML-Compile-Cache/distinfo Modified: head/textproc/p5-XML-Compile-Cache/Makefile ============================================================================== --- head/textproc/p5-XML-Compile-Cache/Makefile Sun Oct 7 11:16:07 2012 (r305457) +++ head/textproc/p5-XML-Compile-Cache/Makefile Sun Oct 7 11:29:06 2012 (r305458) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-XML-Compile-Cache -# Date created: 2009-01-11 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= XML-Compile-Cache -PORTVERSION= 0.99.1 +PORTVERSION= 0.99.2 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/textproc/p5-XML-Compile-Cache/distinfo ============================================================================== --- head/textproc/p5-XML-Compile-Cache/distinfo Sun Oct 7 11:16:07 2012 (r305457) +++ head/textproc/p5-XML-Compile-Cache/distinfo Sun Oct 7 11:29:06 2012 (r305458) @@ -1,2 +1,2 @@ -SHA256 (XML-Compile-Cache-0.991.tar.gz) = 20dfd1480bd6c733bf412334e237ae436ca98d9f3430963bce1239f3fd162ab2 -SIZE (XML-Compile-Cache-0.991.tar.gz) = 13373 +SHA256 (XML-Compile-Cache-0.992.tar.gz) = dcefc31affada130376634444815ba6937106ae0e0201f445dd818eb2ebd2127 +SIZE (XML-Compile-Cache-0.992.tar.gz) = 14327 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 11:29:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C42A1065741; Sun, 7 Oct 2012 11:29:25 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DF64B8FC0A; Sun, 7 Oct 2012 11:29: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 q97BTOm6089318; Sun, 7 Oct 2012 11:29:24 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97BTOWS089313; Sun, 7 Oct 2012 11:29:24 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210071129.q97BTOWS089313@svn.freebsd.org> From: Carlo Strub Date: Sun, 7 Oct 2012 11:29:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305459 - in head/graphics/apvlv: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 11:29:25 -0000 Author: cs Date: Sun Oct 7 11:29:24 2012 New Revision: 305459 URL: http://svn.freebsd.org/changeset/ports/305459 Log: - Update to 0.1.4 - Convert to new options framework - Update maintainer's e-mail address - Cleanup COMMENT and pkg-descr PR: ports/172360 Submitted by: Maxim Samsonov (maintainer) Added: head/graphics/apvlv/files/patch-src_CMakeLists.txt (contents, props changed) Deleted: head/graphics/apvlv/files/patch-poppler-0.18 head/graphics/apvlv/files/patch-src_ApvlvDir.cpp head/graphics/apvlv/files/patch-src_ApvlvFile.cpp Modified: head/graphics/apvlv/Makefile head/graphics/apvlv/distinfo head/graphics/apvlv/pkg-descr Modified: head/graphics/apvlv/Makefile ============================================================================== --- head/graphics/apvlv/Makefile Sun Oct 7 11:29:06 2012 (r305458) +++ head/graphics/apvlv/Makefile Sun Oct 7 11:29:24 2012 (r305459) @@ -6,14 +6,13 @@ # PORTNAME= apvlv -PORTVERSION= 0.1.2 -PORTREVISION= 2 +PORTVERSION= 0.1.4 CATEGORIES= graphics MASTER_SITES= http://cloud.github.com/downloads/naihe2010/apvlv/ DISTNAME= ${PORTNAME}-${PORTVERSION}-Source -MAINTAINER= xors@imap.cc -COMMENT= Apvlv is a PDF/DJVU Viewer and its behaviour like Vim +MAINTAINER= xors@mailup.net +COMMENT= PDF/DJVU Viewer that behaves like Vim LICENSE= GPLv2 @@ -25,19 +24,30 @@ MAKE_JOBS_SAFE= yes CMAKE_ARGS+= -DSYSCONFDIR=${PREFIX}/etc \ -DMANDIR=${MANPREFIX}/man \ -DDOCDIR=${DOCSDIR} \ - -DAPVLV_WITH_UMD=OFF + -DAPVLV_WITH_UMD=OFF \ + -DAPVLV_WITH_TXT=ON MAN1= apvlv.1 -OPTIONS= DJVU "Enable DJVU support" off +OPTIONS_DEFINE= DJVU WEBKIT + +DJVU_DESC= Build with DjVu support +WEBKIT_DESC= Build with WebKit support .include -.if defined(WITHOUT_DJVU) -CMAKE_ARGS+= -DAPVLV_WITH_DJVU=OFF -.else +.if ${PORT_OPTIONS:MDJVU} CMAKE_ARGS+= -DAPVLV_WITH_DJVU=ON LIB_DEPENDS+= djvulibre:${PORTSDIR}/graphics/djvulibre +.else +CMAKE_ARGS+= -DAPVLV_WITH_DJVU=OFF +.endif + +.if ${PORT_OPTIONS:MWEBKIT} +CMAKE_ARGS+= -DAPVLV_WITH_HTML=ON +LIB_DEPENDS+= webkitgtk-1.0:${PORTSDIR}/www/webkit-gtk2 +.else +CMAKE_ARGS+= -DAPVLV_WITH_HTML=OFF .endif .include Modified: head/graphics/apvlv/distinfo ============================================================================== --- head/graphics/apvlv/distinfo Sun Oct 7 11:29:06 2012 (r305458) +++ head/graphics/apvlv/distinfo Sun Oct 7 11:29:24 2012 (r305459) @@ -1,2 +1,2 @@ -SHA256 (apvlv-0.1.2-Source.tar.gz) = 65f010287dd98644d25997f95054bc95abc22fd8d5e2d7bc3b3b59978fbb470a -SIZE (apvlv-0.1.2-Source.tar.gz) = 331595 +SHA256 (apvlv-0.1.4-Source.tar.gz) = f803de89aed82fea08f9386a6d6ddec999d0c96bb68c85e4cd527803838d17cd +SIZE (apvlv-0.1.4-Source.tar.gz) = 337182 Added: head/graphics/apvlv/files/patch-src_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/apvlv/files/patch-src_CMakeLists.txt Sun Oct 7 11:29:24 2012 (r305459) @@ -0,0 +1,43 @@ +--- src/CMakeLists.txt.orig 2012-06-13 07:44:28.000000000 +0400 ++++ src/CMakeLists.txt 2012-10-05 01:07:49.000000000 +0400 +@@ -17,17 +17,14 @@ + PKG_CHECK_MODULES (GTK2 gtk+-2.0 REQUIRED) + PKG_CHECK_MODULES (GLIB2 glib-2.0 REQUIRED) + PKG_CHECK_MODULES (GTHREAD2 gthread-2.0 REQUIRED) +-PKG_CHECK_MODULES (WEBKIT1 webkit-1.0 QUIET) + INCLUDE_DIRECTORIES (${FREETYPE2_INCLUDE_DIRS} + ${GTK2_INCLUDE_DIRS} + ${GLIB2_INCLUDE_DIRS} +- ${GTHREAD2_INCLUDE_DIRS} +- ${WEBKIT1_INCLUDE_DIRS}) ++ ${GTHREAD2_INCLUDE_DIRS}) + LINK_DIRECTORIES (${FREETYPE2_LIBRARY_DIRS} + ${GTK2_LIBRARY_DIRS} + ${GLIB2_LIBRARY_DIRS} +- ${GTHREAD2_LIBRARY_DIRS} +- ${WEBKIT1_LIBRARY_DIRS}) ++ ${GTHREAD2_LIBRARY_DIRS}) + + IF (WIN32) + SET (POPPLER_DIR ${CMAKE_HOME_DIRECTORY}/win32/poppler-src) +@@ -128,6 +125,12 @@ + IF (APVLV_WITH_HTML) + ADD_DEFINITIONS (-DAPVLV_WITH_HTML) + ++ PKG_CHECK_MODULES (WEBKIT1 webkit-1.0 REQUIRED) ++ INCLUDE_DIRECTORIES (${WEBKIT1_INCLUDE_DIRS}) ++ LINK_DIRECTORIES (${WEBKIT1_LIBRARY_DIRS}) ++ SET (APVLV_REQ_LIBRARIES ${WEBKIT1_LIBRARIES} ++ ${APVLV_REQ_LIBRARIES}) ++ + SET (HEADERS ${HEADERS} ApvlvHtm.h) + SET (SOURCES ${SOURCES} ApvlvHtm.cc) + ENDIF (APVLV_WITH_HTML) +@@ -138,7 +141,6 @@ + ${GTK2_LIBRARIES} + ${GLIB2_LIBRARIES} + ${GTHREAD2_LIBRARIES} +- ${WEBKIT1_LIBRARIES} + ${APVLV_REQ_LIBRARIES}) + + IF (WIN32) \ No newline at end of file Modified: head/graphics/apvlv/pkg-descr ============================================================================== --- head/graphics/apvlv/pkg-descr Sun Oct 7 11:29:06 2012 (r305458) +++ head/graphics/apvlv/pkg-descr Sun Oct 7 11:29:24 2012 (r305459) @@ -1,3 +1,3 @@ -Apvlv is a PDF/DJVU Viewer and its behaviour like Vim. +Apvlv is a PDF/DJVU Viewer and its behaviour is like Vim's. WWW: http://naihe2010.github.com/apvlv/ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 11:31:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93EB51065670; Sun, 7 Oct 2012 11:31:55 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 750AD8FC0A; Sun, 7 Oct 2012 11:31: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 q97BVtRu089769; Sun, 7 Oct 2012 11:31:55 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97BVtft089765; Sun, 7 Oct 2012 11:31:55 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210071131.q97BVtft089765@svn.freebsd.org> From: Carlo Strub Date: Sun, 7 Oct 2012 11:31:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305460 - head/x11-toolkits/scintilla X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 11:31:55 -0000 Author: cs Date: Sun Oct 7 11:31:54 2012 New Revision: 305460 URL: http://svn.freebsd.org/changeset/ports/305460 Log: - Update to 3.2.2 - Cleanup header of Makefile - Cleanup COMMENT and pkg-descr PR: ports/172442 Submitted by: Naram Qashat (maintainer) Modified: head/x11-toolkits/scintilla/Makefile head/x11-toolkits/scintilla/distinfo head/x11-toolkits/scintilla/pkg-descr Modified: head/x11-toolkits/scintilla/Makefile ============================================================================== --- head/x11-toolkits/scintilla/Makefile Sun Oct 7 11:29:24 2012 (r305459) +++ head/x11-toolkits/scintilla/Makefile Sun Oct 7 11:31:54 2012 (r305460) @@ -1,19 +1,15 @@ -# New ports collection makefile for: scintilla -# Date created: 27 November 2000 -# Whom: Maxim Sobolev -# +# Created by: Maxim Sobolev # $FreeBSD$ -# $MCom: ports/x11-toolkits/scintilla/Makefile,v 1.3 2006/09/17 21:58:56 marcus Exp $ PORTNAME= scintilla -PORTVERSION= 3.2.1 +PORTVERSION= 3.2.2 CATEGORIES= x11-toolkits MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= scite${PORTVERSION:S/.//g} EXTRACT_SUFX= .tgz MAINTAINER= cyberbotx@cyberbotx.com -COMMENT= A full-featured free source code editing component for GTK+ +COMMENT= Full-featured free source code editing component for GTK+ WRKSRC= ${WRKDIR}/${PORTNAME}/gtk Modified: head/x11-toolkits/scintilla/distinfo ============================================================================== --- head/x11-toolkits/scintilla/distinfo Sun Oct 7 11:29:24 2012 (r305459) +++ head/x11-toolkits/scintilla/distinfo Sun Oct 7 11:31:54 2012 (r305460) @@ -1,2 +1,2 @@ -SHA256 (scite321.tgz) = f95c89074fd73a22b783b5582d3b23cdbd4b7eb38ab407721a702c4a1bcb678c -SIZE (scite321.tgz) = 2043490 +SHA256 (scite322.tgz) = 9f17fe2a5dc294bd1077bf64f713bb06733eec271bab770841e55474e6c781c8 +SIZE (scite322.tgz) = 2048866 Modified: head/x11-toolkits/scintilla/pkg-descr ============================================================================== --- head/x11-toolkits/scintilla/pkg-descr Sun Oct 7 11:29:24 2012 (r305459) +++ head/x11-toolkits/scintilla/pkg-descr Sun Oct 7 11:31:54 2012 (r305460) @@ -2,10 +2,10 @@ Scintilla is a free source code editing standard text editing components, Scintilla includes features especially useful when editing and debugging source code. These include support for syntax styling, error indicators, code completion and call tips. The selection margin -can contain markers like those used in debuggers to indicate breakpoints and -the current line. Styling choices are more open than with many editors, -allowing the use of proportional fonts, bold and italics, multiple foreground -and background colours and multiple fonts. It comes with complete source code -and may be used in any free project or commercial product. +can contain markers like those used in debuggers to indicate breakpoints and the +current line. Styling choices are more open than with many editors, allowing the +use of proportional fonts, bold and italics, multiple foreground and background +colours and multiple fonts. It comes with complete source code and may be used +in any free project or commercial product. WWW: http://www.scintilla.org/ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 11:33:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 930FA106564A; Sun, 7 Oct 2012 11:33:04 +0000 (UTC) (envelope-from kozlov@ravenloft.kiev.ua) Received: from ravenloft.kiev.ua (ravenloft.kiev.ua [94.244.131.95]) by mx1.freebsd.org (Postfix) with ESMTP id 2B4EC8FC08; Sun, 7 Oct 2012 11:33:03 +0000 (UTC) Date: Sun, 7 Oct 2012 14:33:02 +0300 From: Alex Kozlov To: Boris Samorodov Message-ID: <20121007113302.GA75223@ravenloft.kiev.ua> References: <201210062105.q96L5Dth040796@svn.freebsd.org> <50713F44.5010603@passap.ru> <20121007094519.GA23625@ravenloft.kiev.ua> <50715F3E.8020201@passap.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <50715F3E.8020201@passap.ru> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305403 - head/graphics/eos-movrec X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 11:33:04 -0000 On Sun, Oct 07, 2012 at 02:53:50PM +0400, Boris Samorodov wrote: > 07.10.2012 13:45, Alex Kozlov пишет: > > On Sun, Oct 07, 2012 at 12:37:24PM +0400, Boris Samorodov wrote: > >> Hello Alex, > >> > >>> Log: > >>> - Convert Makefile headers to new style > >>> - Add DESKTOP_ENTRIES > >>> - Pass maintainership to nemysis > >> As for me this is too simplified commit log. May be added: > >> > >> - Use bzip2 instead of zip tarball (greatly reduses the size) > >> - Remove duplicate PORTREVISION > >> - Remove the indefinite article from COMMENT > >> - Remove shlib version from the dependency > >> - convert and install icon *.png from *.ico > > Apologies, I forgot to update message file. > There is absolutely no need to apologize. We are all learning something > new everyday. ;-) You're too kind. > >>> Modified: head/graphics/eos-movrec/Makefile > >>> ============================================================================== > >>> --- head/graphics/eos-movrec/Makefile Sat Oct 6 20:50:12 2012 (r305402) > >>> +++ head/graphics/eos-movrec/Makefile Sat Oct 6 21:05:12 2012 (r305403) > >>> @@ -1,34 +1,42 @@ > >>> -# New ports collection makefile for: EOS camera movie record > >>> -# Date created: 15 Aug 2011 > >>> -# Whom: Alexey Dokuchaev > >>> -# > >>> # $FreeBSD$ > >>> -# > >>> +# Created by: Alexey Dokuchaev > >> Imho this line should be the first one. > > At the moment there are three or four variants of Makefile headers in the tree. > > I try to be as close as possible to the official version: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-samplem.html > OK, here is the official announcement about new header style: > http://goo.gl/r31Bb So, the porters handbook and announcement contradict each other. This should be fixed. I will implement all your and makc@ suggestions except for headers order. For them I will wait until documentation would be harmonised. -- Alex From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 11:43:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9D11F1065672; Sun, 7 Oct 2012 11:43:25 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8347B8FC0C; Sun, 7 Oct 2012 11:43:25 +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 q97BhP7l091372; Sun, 7 Oct 2012 11:43:25 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97BhPRp091368; Sun, 7 Oct 2012 11:43:25 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210071143.q97BhPRp091368@svn.freebsd.org> From: Wen Heping Date: Sun, 7 Oct 2012 11:43:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305461 - head/net/p5-XML-Compile-SOAP X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 11:43:25 -0000 Author: wen Date: Sun Oct 7 11:43:24 2012 New Revision: 305461 URL: http://svn.freebsd.org/changeset/ports/305461 Log: - Update to 2.30 Changes: http://cpansearch.perl.org/src/MARKOV/XML-Compile-SOAP-2.30/ChangeLog - Trim Makefile headers Modified: head/net/p5-XML-Compile-SOAP/Makefile head/net/p5-XML-Compile-SOAP/distinfo Modified: head/net/p5-XML-Compile-SOAP/Makefile ============================================================================== --- head/net/p5-XML-Compile-SOAP/Makefile Sun Oct 7 11:31:54 2012 (r305460) +++ head/net/p5-XML-Compile-SOAP/Makefile Sun Oct 7 11:43:24 2012 (r305461) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-XML-Compile-SOAP -# Date created: 2008-01-07 -# Whom: Jin-Shan Tseng -# +# Created by: Jin-Shan Tseng # $FreeBSD$ -# PORTNAME= XML-Compile-SOAP -PORTVERSION= 2.29 +PORTVERSION= 2.30 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-XML-Compile-SOAP/distinfo ============================================================================== --- head/net/p5-XML-Compile-SOAP/distinfo Sun Oct 7 11:31:54 2012 (r305460) +++ head/net/p5-XML-Compile-SOAP/distinfo Sun Oct 7 11:43:24 2012 (r305461) @@ -1,2 +1,2 @@ -SHA256 (XML-Compile-SOAP-2.29.tar.gz) = 58bb8003e554d06effc8b560a5bafe7d0eabd2d40b953cb966f277051317ca91 -SIZE (XML-Compile-SOAP-2.29.tar.gz) = 106937 +SHA256 (XML-Compile-SOAP-2.30.tar.gz) = 07ac613a8eccf1417a4ab5d5b9f4ee525bf0fb9deb3536f876f45b3c3842cf60 +SIZE (XML-Compile-SOAP-2.30.tar.gz) = 107211 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 08:38:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0185810656C0; Sun, 7 Oct 2012 08:38:00 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward15.mail.yandex.net (forward15.mail.yandex.net [IPv6:2a02:6b8:0:801::5]) by mx1.freebsd.org (Postfix) with ESMTP id E5AE28FC08; Sun, 7 Oct 2012 08:37:58 +0000 (UTC) Received: from smtp14.mail.yandex.net (smtp14.mail.yandex.net [95.108.131.192]) by forward15.mail.yandex.net (Yandex) with ESMTP id C30379E1D17; Sun, 7 Oct 2012 12:37:36 +0400 (MSK) Received: from smtp14.mail.yandex.net (localhost [127.0.0.1]) by smtp14.mail.yandex.net (Yandex) with ESMTP id 69B6D1B60514; Sun, 7 Oct 2012 12:37:36 +0400 (MSK) Received: from 93.91.2.124.tel.ru (93.91.2.124.tel.ru [93.91.2.124]) by smtp14.mail.yandex.net (nwsmtp/Yandex) with ESMTP id bOruRSpA-bXrWOuuV; Sun, 7 Oct 2012 12:37:33 +0400 Message-ID: <50713F44.5010603@passap.ru> Date: Sun, 07 Oct 2012 12:37:24 +0400 From: Boris Samorodov Organization: =?UTF-8?B?0JfQkNCeICLQktCQ0KDQoiI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: Alex Kozlov , nemysis@gmx.ch References: <201210062105.q96L5Dth040796@svn.freebsd.org> In-Reply-To: <201210062105.q96L5Dth040796@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Sun, 07 Oct 2012 11:48:57 +0000 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305403 - head/graphics/eos-movrec X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 08:38:00 -0000 Hello Alex, 07.10.2012 01:05, Alex Kozlov пишет: nice to see the port to become better. However there are some notes about the commit. > Author: ak > Date: Sat Oct 6 21:05:12 2012 > New Revision: 305403 > URL: http://svn.freebsd.org/changeset/ports/305403 > > Log: > - Convert Makefile headers to new style > - Add DESKTOP_ENTRIES > - Pass maintainership to nemysis As for me this is too simplified commit log. May be added: - Use bzip2 instead of zip tarball (greatly reduses the size) - Remove duplicate PORTREVISION - Remove the indefinite article from COMMENT - Remove shlib version from the dependency - convert and install icon *.png from *.ico And those changes are definitely demand a PORTREVISION bump. There are some notes inline. > PR: ports/172342 Since you committed a different patch it's better to point this out. > Submitted by: nemysis > > Modified: > head/graphics/eos-movrec/Makefile (contents, props changed) > head/graphics/eos-movrec/distinfo (contents, props changed) > > Modified: head/graphics/eos-movrec/Makefile > ============================================================================== > --- head/graphics/eos-movrec/Makefile Sat Oct 6 20:50:12 2012 (r305402) > +++ head/graphics/eos-movrec/Makefile Sat Oct 6 21:05:12 2012 (r305403) > @@ -1,34 +1,42 @@ > -# New ports collection makefile for: EOS camera movie record > -# Date created: 15 Aug 2011 > -# Whom: Alexey Dokuchaev > -# > # $FreeBSD$ > -# > +# Created by: Alexey Dokuchaev Imho this line should be the first one. > PORTNAME= eos-movrec > DISTVERSION= 0.3.1_beta > PORTREVISION= 1 > CATEGORIES= graphics I'm not sure, but may be this port belongs to multimedia? > -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.3_beta > +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.3_beta/ > > -MAINTAINER= ports@FreeBSD.org > -COMMENT= A program to capture short movies with Canon DSLR camera > +MAINTAINER= nemysis@gmx.ch > +COMMENT= Program to capture short movies with Canon DSLR camera May be this is a matter of taste but I'll say that "Program to" may be trimmed too. > LICENSE= GPLv2 > > -LIB_DEPENDS= gphoto2.2:${PORTSDIR}/graphics/libgphoto2 > +LIB_DEPENDS= gphoto2:${PORTSDIR}/graphics/libgphoto2 > +BUILD_DEPENDS= pnmtopng:${PORTSDIR}/graphics/netpbm > > -USE_ZIP= yes > +USE_BZIP2= yes > USE_CMAKE= yes > +CMAKE_VERBOSE= yes Seems to be a diagnistic only tool. Is it necessary for every build? > USE_QT4= qmake_build moc_build rcc_build uic_build gui > > WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} > DISTVERSIONSUFFIX= -src > -PORTREVISION= 1 > > -PLIST_FILES= bin/eos_movrec > +PLIST_FILES= bin/eos_movrec \ > + share/pixmaps/${PORTNAME}.png > + > +DESKTOP_ENTRIES= "EOS Camera Movie Record" "${COMMENT}" "${PORTNAME}" \ > + "${PORTNAME:S/-/_/}" "Application;Graphics;" ${FALSE} > > post-patch: > @${REINPLACE_CMD} -e 's,GLIBC,${OPSYS},' ${WRKSRC}/os_api.h > > +post-build: > + @(cd ${WRKSRC} && ${LOCALBASE}/bin/winicontoppm -bestqual eos-movrec2.ico | \ > + ${LOCALBASE}/bin/pnmtopng > eos-movrec.png) This is an interesting trick. Is it documented anywhere? > + > +post-install: > + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.png ${PREFIX}/share/pixmaps/ > + > .include > > Modified: head/graphics/eos-movrec/distinfo > ============================================================================== > --- head/graphics/eos-movrec/distinfo Sat Oct 6 20:50:12 2012 (r305402) > +++ head/graphics/eos-movrec/distinfo Sat Oct 6 21:05:12 2012 (r305403) > @@ -1,2 +1,2 @@ > -SHA256 (eos-movrec-0.3.1_beta-src.zip) = 25897e7d173d6baa0cfa94a8e0ff5f3decf809d2644ddf2a492677c068efc0c3 > -SIZE (eos-movrec-0.3.1_beta-src.zip) = 5183470 > +SHA256 (eos-movrec-0.3.1_beta-src.tar.bz2) = 044cf8b6428d66d6d03c3df53103f985e5b669cad3c8f78a94f9ef308259deea > +SIZE (eos-movrec-0.3.1_beta-src.tar.bz2) = 3955037 -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:08:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18D97106566C; Sun, 7 Oct 2012 12:08:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 028C18FC1A; Sun, 7 Oct 2012 12:08: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 q97C8hKb094880; Sun, 7 Oct 2012 12:08:43 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97C8hAg094878; Sun, 7 Oct 2012 12:08:43 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071208.q97C8hAg094878@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 12:08:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305462 - head/Mk X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:08:44 -0000 Author: sunpoet Date: Sun Oct 7 12:08:43 2012 New Revision: 305462 URL: http://svn.freebsd.org/changeset/ports/305462 Log: - Add shared PLUGINS description Modified: head/Mk/bsd.options.desc.mk Modified: head/Mk/bsd.options.desc.mk ============================================================================== --- head/Mk/bsd.options.desc.mk Sun Oct 7 11:43:24 2012 (r305461) +++ head/Mk/bsd.options.desc.mk Sun Oct 7 12:08:43 2012 (r305462) @@ -243,6 +243,7 @@ PGSQL_DESC?= PostgreSQL database PGSQL_JDBC_DESC?= JDBC connection to PostgreSQL databases PHP_DESC?= PHP binding/support PIXBUF_DESC?= GDK-PixBuf library +PLUGINS_DESC?= Install plugins PNG_DESC?= PNG image format PNM_DESC?= PNM image format POPPLER_DESC?= PDF and PS file From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:09:32 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 899AC106566C; Sun, 7 Oct 2012 12:09:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 733C48FC16; Sun, 7 Oct 2012 12:09:32 +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 q97C9WNu095040; Sun, 7 Oct 2012 12:09:32 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97C9WNr095038; Sun, 7 Oct 2012 12:09:32 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071209.q97C9WNr095038@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 12:09:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305463 - head/devel/shapelib X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:09:32 -0000 Author: sunpoet Date: Sun Oct 7 12:09:31 2012 New Revision: 305463 URL: http://svn.freebsd.org/changeset/ports/305463 Log: - Convert to new options framework - Cleanup Makefile header Modified: head/devel/shapelib/Makefile (contents, props changed) Modified: head/devel/shapelib/Makefile ============================================================================== --- head/devel/shapelib/Makefile Sun Oct 7 12:08:43 2012 (r305462) +++ head/devel/shapelib/Makefile Sun Oct 7 12:09:31 2012 (r305463) @@ -1,9 +1,5 @@ -# New ports collection makefile for: shapelib for reading ARC Shape Files -# Date created: 23 Apr 2001 -# Whom: Randall Hopper -# +# Created by: Randall Hopper # $FreeBSD$ -# PORTNAME= shapelib PORTVERSION= 1.3.0 @@ -19,18 +15,17 @@ COMMENT= C API for reading and writing A MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes -OPTIONS= DEBUG "Debugging" off \ - PROJ "Cartographic Projections library" off +OPTIONS_DEFINE= DEBUG DOCS PROJ .include -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} DEBUG= -DDEBUG -DDEBUG2 -g .else DEBUG= # empty .endif -.if defined(WITH_PROJ) +.if ${PORT_OPTIONS:MPROJ} LIB_DEPENDS+= proj:${PORTSDIR}/graphics/proj PLIST_SUB+= PROJ="" PROJ= -DPROJ4 @@ -58,7 +53,7 @@ post-patch: post-install: ${LN} -s libshp.so.1 ${PREFIX}/lib/libshp.so -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ ${INSTALL_DATA} ${WRKSRC}/web/*.html ${DOCSDIR}/ .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:09:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D540A10656C3; Sun, 7 Oct 2012 12:09:41 +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 8DE708FC19; Sun, 7 Oct 2012 12:09:41 +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 q97C9fFF095113; Sun, 7 Oct 2012 12:09:41 GMT (envelope-from osa@svn.freebsd.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97C9fHj095111; Sun, 7 Oct 2012 12:09:41 GMT (envelope-from osa@svn.freebsd.org) Message-Id: <201210071209.q97C9fHj095111@svn.freebsd.org> From: "Sergey A. Osokin" Date: Sun, 7 Oct 2012 12:09:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305464 - head/astro/xearth/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:09:42 -0000 Author: osa Date: Sun Oct 7 12:09:41 2012 New Revision: 305464 URL: http://svn.freebsd.org/changeset/ports/305464 Log: Update my day time location. Modified: head/astro/xearth/files/freebsd.committers.markers Modified: head/astro/xearth/files/freebsd.committers.markers ============================================================================== --- head/astro/xearth/files/freebsd.committers.markers Sun Oct 7 12:09:31 2012 (r305463) +++ head/astro/xearth/files/freebsd.committers.markers Sun Oct 7 12:09:41 2012 (r305464) @@ -68,7 +68,7 @@ 55.8, 37.6, "ache,bsam,demon,maxim,rik,skv,vsevolod,yar" # Moscow, Russia 55.768764, 37.588938, "sergei" # Moscow, Russia 55.750799, 37.565689, "krion" # Moscow, Russia - 55.79285, 37.5624, "osa" # Moscow, Russia + 55.775821, 37.55302, "osa" # Moscow, Russia 55.7203, 37.4314, "sat" # Moscow, Russia 48.464722, 35.046111, "mav" # Dniepropetrovsk, Ukraine 44.95, 34.1, "phantom,ru" # Simferopol, Ukraine From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:12:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AC50106564A; Sun, 7 Oct 2012 12:12:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2B10D8FC0A; Sun, 7 Oct 2012 12:12:22 +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 q97CCM8b095569; Sun, 7 Oct 2012 12:12:22 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97CCLI2095566; Sun, 7 Oct 2012 12:12:21 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071212.q97CCLI2095566@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 12:12:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305465 - head/audio/libfishsound X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:12:22 -0000 Author: sunpoet Date: Sun Oct 7 12:12:21 2012 New Revision: 305465 URL: http://svn.freebsd.org/changeset/ports/305465 Log: - Cleanup Makefile header - Convert to new options framework Modified: head/audio/libfishsound/Makefile (contents, props changed) head/audio/libfishsound/pkg-descr (contents, props changed) Modified: head/audio/libfishsound/Makefile ============================================================================== --- head/audio/libfishsound/Makefile Sun Oct 7 12:09:41 2012 (r305464) +++ head/audio/libfishsound/Makefile Sun Oct 7 12:12:21 2012 (r305465) @@ -1,9 +1,5 @@ -# New ports collection makefile for: libfishsound -# Date created: 2010-05-28 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= libfishsound PORTVERSION= 1.0.0 @@ -23,17 +19,17 @@ GNU_CONFIGURE= yes USE_GNOME= gnomehack pkgconfig USE_LDCONFIG= yes -OPTIONS= DOXYGEN "Doxygen is required for generating documents" off +OPTIONS_DEFINE= DOCS DOXYGEN .include -.if !defined(NOPORTDOCS) && defined(WITH_DOXYGEN) +.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN} BUILD_DEPENDS+= ${LOCALBASE}/bin/doxygen:${PORTSDIR}/devel/doxygen PORTDOCS= * .endif post-patch: -.if defined(NOPORTDOCS) || !defined(WITH_DOXYGEN) +.if empty(PORT_OPTIONS:MDOCS) || empty(PORT_OPTIONS:MDOXYGEN) @${REINPLACE_CMD} -e '/^SUBDIRS = / s| doc||' ${WRKSRC}/Makefile.in .endif Modified: head/audio/libfishsound/pkg-descr ============================================================================== --- head/audio/libfishsound/pkg-descr Sun Oct 7 12:09:41 2012 (r305464) +++ head/audio/libfishsound/pkg-descr Sun Oct 7 12:12:21 2012 (r305465) @@ -13,4 +13,4 @@ encapsulation, though it is most commonl decode or encode FLAC, Speex or Vorbis audio tracks in Ogg files, including Ogg Theora and Annodex. -WWW: http://www.xiph.org/fishsound/ +WWW: http://www.xiph.org/fishsound/ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:23:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D694F106566B; Sun, 7 Oct 2012 12:23:07 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C12CB8FC0C; Sun, 7 Oct 2012 12:23: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 q97CN7NJ097172; Sun, 7 Oct 2012 12:23:07 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97CN7ae097170; Sun, 7 Oct 2012 12:23:07 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210071223.q97CN7ae097170@svn.freebsd.org> From: Alex Kozlov Date: Sun, 7 Oct 2012 12:23:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305466 - head/graphics/eos-movrec X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:23:07 -0000 Author: ak Date: Sun Oct 7 12:23:07 2012 New Revision: 305466 URL: http://svn.freebsd.org/changeset/ports/305466 Log: - Improve COMMENT - Add secondary category multimedia - Remove CMAKE_VERBOSE - Bump PORTREVISION Suggested by: bsam Approved by: nemysis (maintainer) Modified: head/graphics/eos-movrec/Makefile Modified: head/graphics/eos-movrec/Makefile ============================================================================== --- head/graphics/eos-movrec/Makefile Sun Oct 7 12:12:21 2012 (r305465) +++ head/graphics/eos-movrec/Makefile Sun Oct 7 12:23:07 2012 (r305466) @@ -3,12 +3,12 @@ PORTNAME= eos-movrec DISTVERSION= 0.3.1_beta -PORTREVISION= 1 -CATEGORIES= graphics +PORTREVISION= 2 +CATEGORIES= graphics multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.3_beta/ MAINTAINER= nemysis@gmx.ch -COMMENT= Program to capture short movies with Canon DSLR camera +COMMENT= Capture short movies with Canon DSLR camera LICENSE= GPLv2 @@ -17,7 +17,6 @@ BUILD_DEPENDS= pnmtopng:${PORTSDIR}/grap USE_BZIP2= yes USE_CMAKE= yes -CMAKE_VERBOSE= yes USE_QT4= qmake_build moc_build rcc_build uic_build gui WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:30:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D5FCB106566B; Sun, 7 Oct 2012 12:30:40 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BE13E8FC17; Sun, 7 Oct 2012 12:30: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 q97CUeRV098321; Sun, 7 Oct 2012 12:30:40 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97CUe7V098317; Sun, 7 Oct 2012 12:30:40 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210071230.q97CUe7V098317@svn.freebsd.org> From: Wen Heping Date: Sun, 7 Oct 2012 12:30:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305467 - head/www/atutor X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:30:41 -0000 Author: wen Date: Sun Oct 7 12:30:40 2012 New Revision: 305467 URL: http://svn.freebsd.org/changeset/ports/305467 Log: - Update to 2.1 - Trim Makefile headers Modified: head/www/atutor/Makefile head/www/atutor/distinfo head/www/atutor/pkg-plist Modified: head/www/atutor/Makefile ============================================================================== --- head/www/atutor/Makefile Sun Oct 7 12:23:07 2012 (r305466) +++ head/www/atutor/Makefile Sun Oct 7 12:30:40 2012 (r305467) @@ -1,12 +1,8 @@ -# New ports collection makefile for: atutor -# Date created: 11 Feb 2008 -# Whom: Wen heping -# +# Created by: Wen heping # $FreeBSD$ -# PORTNAME= atutor -PORTVERSION= 2.0.3 +PORTVERSION= 2.1 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/ATutor%202 DISTNAME= ATutor-${PORTVERSION} Modified: head/www/atutor/distinfo ============================================================================== --- head/www/atutor/distinfo Sun Oct 7 12:23:07 2012 (r305466) +++ head/www/atutor/distinfo Sun Oct 7 12:30:40 2012 (r305467) @@ -1,2 +1,2 @@ -SHA256 (ATutor-2.0.3.tar.gz) = 1e6346fd58f1706fe1713dd630fd31af6d9e3a132c252bbc08c488f9c87f9ed9 -SIZE (ATutor-2.0.3.tar.gz) = 5558915 +SHA256 (ATutor-2.1.tar.gz) = c779b79bf9fd27ec9a37d9830147c81b93b47e251a0bb4e05ce6a77495d84b89 +SIZE (ATutor-2.1.tar.gz) = 6590718 Modified: head/www/atutor/pkg-plist ============================================================================== --- head/www/atutor/pkg-plist Sun Oct 7 12:23:07 2012 (r305466) +++ head/www/atutor/pkg-plist Sun Oct 7 12:30:40 2012 (r305467) @@ -1,3 +1,4 @@ +%%WWWDIR%%/.gitmodules %%WWWDIR%%/.htaccess %%WWWDIR%%/404.php %%WWWDIR%%/about.php @@ -15,6 +16,7 @@ %%WWWDIR%%/admin/index.php %%WWWDIR%%/bounce.php %%WWWDIR%%/browse.php +%%WWWDIR%%/bundle.sh %%WWWDIR%%/confirm.php %%WWWDIR%%/contact_instructor.php %%WWWDIR%%/content.php @@ -216,6 +218,7 @@ %%WWWDIR%%/images/AT_Logo_1_sm.psd %%WWWDIR%%/images/achecker.png %%WWWDIR%%/images/achecker_disabled.png +%%WWWDIR%%/images/add-course.png %%WWWDIR%%/images/after.gif %%WWWDIR%%/images/application_get.png %%WWWDIR%%/images/archive.gif @@ -468,6 +471,30 @@ %%WWWDIR%%/inbox/index.php %%WWWDIR%%/inbox/send_message.php %%WWWDIR%%/inbox/sent_messages.php +%%WWWDIR%%/include/classes/AContent_lcl/AContent_LiveContentLink.class.php +%%WWWDIR%%/include/classes/AContent_lcl/AContent_lcl_importxml.class.php +%%WWWDIR%%/include/classes/AContent_lcl/AContent_lcl_processxml.class.php +%%WWWDIR%%/include/classes/AContent_lcl/ContentDAO.class.php +%%WWWDIR%%/include/classes/AContent_lcl/DAO.class.php +%%WWWDIR%%/include/classes/AContent_lcl/TreeGenerator.class.php +%%WWWDIR%%/include/classes/AContent_lcl/Twitauth.class.php +%%WWWDIR%%/include/classes/AContent_lcl/Utils.php +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/index.html +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_collapse.gif +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_disabled.gif +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_end.gif +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_expand.gif +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_horizontal.gif +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_space.gif +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_split.gif +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_vertline.gif +%%WWWDIR%%/include/classes/AContent_lcl/images/tree/tree_white.gif +%%WWWDIR%%/include/classes/AContent_lcl/ims-blti/LICENSE.txt +%%WWWDIR%%/include/classes/AContent_lcl/ims-blti/OAuth.php +%%WWWDIR%%/include/classes/AContent_lcl/ims-blti/OAuthBody.php +%%WWWDIR%%/include/classes/AContent_lcl/ims-blti/TrivialOAuthDataStore.php +%%WWWDIR%%/include/classes/AContent_lcl/ims-blti/blti.php +%%WWWDIR%%/include/classes/AContent_lcl/ims-blti/blti_util.php %%WWWDIR%%/include/classes/CSVExport.class.php %%WWWDIR%%/include/classes/CSVImport.class.php %%WWWDIR%%/include/classes/ContentManager.class.php @@ -533,6 +560,33 @@ %%WWWDIR%%/include/html/release_date.inc.php %%WWWDIR%%/include/html/search.inc.php %%WWWDIR%%/include/index.html +%%WWWDIR%%/include/install/config_template.php +%%WWWDIR%%/include/install/db/atutor_convert_db_to_utf8.sql +%%WWWDIR%%/include/install/db/atutor_language_text.sql +%%WWWDIR%%/include/install/db/atutor_schema.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.4.1_to_1.4.2.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.4.2_to_1.4.3.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.4.3_to_1.5.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.4_to_1.4.1.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5.1_to_1.5.2.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5.2_to_1.5.3.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5.3.1_to_1.5.3.2.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5.3.2_to_1.5.3.3.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5.3.3_to_1.5.4.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5.3_to_1.5.3.1.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5.4_to_1.5.5.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5.5_to_1.6.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.5_to_1.5.1.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.6.1_to_1.6.2.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.6.2_to_1.6.3.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.6.3_to_1.6.4.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.6.4_to_2.0.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_1.6_to_1.6.1.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_2.0.1_to_2.0.2.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_2.0.2_to_2.0.3.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_2.0.3_to_2.1.sql +%%WWWDIR%%/include/install/db/atutor_upgrade_2.0_to_2.0.1.sql +%%WWWDIR%%/include/install/install.inc.php %%WWWDIR%%/include/lib/constants.inc.php %%WWWDIR%%/include/lib/html_resource_parser.inc.php %%WWWDIR%%/include/lib/json.inc.php @@ -545,6 +599,7 @@ %%WWWDIR%%/include/lib/tinymce_styles.css %%WWWDIR%%/include/lib/upload.php %%WWWDIR%%/include/lib/utf8.php +%%WWWDIR%%/include/lib/vital_funcs.inc.php %%WWWDIR%%/include/phpCache/ChangeLog %%WWWDIR%%/include/phpCache/LICENSE %%WWWDIR%%/include/phpCache/README @@ -599,44 +654,19 @@ %%WWWDIR%%/include/securimage/securimage.php %%WWWDIR%%/include/securimage/securimage_play.php %%WWWDIR%%/include/securimage/securimage_show.php +%%WWWDIR%%/include/session_keepalive.php %%WWWDIR%%/include/side_menu.inc.php %%WWWDIR%%/include/style_popup.css %%WWWDIR%%/include/unit_tests/AllTests.php %%WWWDIR%%/include/unit_tests/ContentOutputUtilsTest.php %%WWWDIR%%/include/vitals.inc.php %%WWWDIR%%/index.php -%%WWWDIR%%/install/db/atutor_convert_db_to_utf8.sql -%%WWWDIR%%/install/db/atutor_language_text.sql -%%WWWDIR%%/install/db/atutor_schema.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.4.1_to_1.4.2.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.4.2_to_1.4.3.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.4.3_to_1.5.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.4_to_1.4.1.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5.1_to_1.5.2.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5.2_to_1.5.3.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5.3.1_to_1.5.3.2.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5.3.2_to_1.5.3.3.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5.3.3_to_1.5.4.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5.3_to_1.5.3.1.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5.4_to_1.5.5.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5.5_to_1.6.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.5_to_1.5.1.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.6.1_to_1.6.2.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.6.2_to_1.6.3.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.6.3_to_1.6.4.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.6.4_to_2.0.sql -%%WWWDIR%%/install/db/atutor_upgrade_1.6_to_1.6.1.sql -%%WWWDIR%%/install/db/atutor_upgrade_2.0.1_to_2.0.2.sql -%%WWWDIR%%/install/db/atutor_upgrade_2.0.2_to_2.0.3.sql -%%WWWDIR%%/install/db/atutor_upgrade_2.0_to_2.0.1.sql %%WWWDIR%%/install/images/bad.gif %%WWWDIR%%/install/images/feedback.gif %%WWWDIR%%/install/images/question.gif %%WWWDIR%%/install/images/warning.png %%WWWDIR%%/install/include/classes/TableConversion.class.php -%%WWWDIR%%/install/include/classes/sqlutility.php %%WWWDIR%%/install/include/common.inc.php -%%WWWDIR%%/install/include/config_template.php %%WWWDIR%%/install/include/footer.php %%WWWDIR%%/install/include/header.php %%WWWDIR%%/install/include/step1.php @@ -646,7 +676,6 @@ %%WWWDIR%%/install/include/step5.php %%WWWDIR%%/install/include/step6.php %%WWWDIR%%/install/include/step7.php -%%WWWDIR%%/install/include/step8.php %%WWWDIR%%/install/include/upgrade_header.php %%WWWDIR%%/install/include/ustep1.php %%WWWDIR%%/install/include/ustep2.php @@ -680,6 +709,7 @@ %%WWWDIR%%/jscripts/ATutor_tiny_mce_plugins/swap_toolbar/img/bullet_arrow_down.png %%WWWDIR%%/jscripts/ATutor_tiny_mce_plugins/swap_toolbar/img/bullet_arrow_up.png %%WWWDIR%%/jscripts/ATutor_tiny_mce_plugins/swap_toolbar/langs/en.js +%%WWWDIR%%/jscripts/flash_detection.js %%WWWDIR%%/jscripts/infusion/InfusionAll.js %%WWWDIR%%/jscripts/infusion/README.txt %%WWWDIR%%/jscripts/infusion/components/inlineEdit/css/InlineEdit.css @@ -1212,12 +1242,17 @@ %%WWWDIR%%/jscripts/infusion/licenses/jQuery-LICENSE.txt %%WWWDIR%%/jscripts/infusion/licenses/swfobject-LICENSE.txt %%WWWDIR%%/jscripts/infusion/licenses/swfupload-LICENSE.txt +%%WWWDIR%%/jscripts/jQueryMobile/jquery.mobile-1.0b1.min.js %%WWWDIR%%/jscripts/lib/TILE.js %%WWWDIR%%/jscripts/lib/calendar.js %%WWWDIR%%/jscripts/lib/dd_question/interface.js %%WWWDIR%%/jscripts/lib/dd_question/jquery.js %%WWWDIR%%/jscripts/lib/dd_question/wz_jsgraphics.js +%%WWWDIR%%/jscripts/lib/jquery-ui.css +%%WWWDIR%%/jscripts/lib/jquery-ui.min.js %%WWWDIR%%/jscripts/lib/jquery.autoHeight.js +%%WWWDIR%%/jscripts/lib/jquery.sessionTimeout.1.0.min.js +%%WWWDIR%%/jscripts/mobile.js %%WWWDIR%%/jscripts/opensocial/activity.js %%WWWDIR%%/jscripts/opensocial/address.js %%WWWDIR%%/jscripts/opensocial/all_opensocial.php @@ -1236,7 +1271,6 @@ %%WWWDIR%%/jscripts/opensocial/phone.js %%WWWDIR%%/jscripts/opensocial/responseitem.js %%WWWDIR%%/jscripts/opensocial/url.js -%%WWWDIR%%/jscripts/tiny_mce/changelog.txt %%WWWDIR%%/jscripts/tiny_mce/langs/en.js %%WWWDIR%%/jscripts/tiny_mce/license.txt %%WWWDIR%%/jscripts/tiny_mce/plugins/acheck/editor_plugin.js @@ -1266,6 +1300,8 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/advlink/link.htm %%WWWDIR%%/jscripts/tiny_mce/plugins/advlist/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/advlist/editor_plugin_src.js +%%WWWDIR%%/jscripts/tiny_mce/plugins/autolink/editor_plugin.js +%%WWWDIR%%/jscripts/tiny_mce/plugins/autolink/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/autoresize/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/autoresize/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/autosave/editor_plugin.js @@ -1273,8 +1309,6 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/autosave/langs/en.js %%WWWDIR%%/jscripts/tiny_mce/plugins/bbcode/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/bbcode/editor_plugin_src.js -%%WWWDIR%%/jscripts/tiny_mce/plugins/compat2x/editor_plugin.js -%%WWWDIR%%/jscripts/tiny_mce/plugins/compat2x/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/contextmenu/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/directionality/editor_plugin.js @@ -1307,6 +1341,8 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/example/js/dialog.js %%WWWDIR%%/jscripts/tiny_mce/plugins/example/langs/en.js %%WWWDIR%%/jscripts/tiny_mce/plugins/example/langs/en_dlg.js +%%WWWDIR%%/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js +%%WWWDIR%%/jscripts/tiny_mce/plugins/example_dependency/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/fullpage/css/fullpage.css %%WWWDIR%%/jscripts/tiny_mce/plugins/fullpage/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/fullpage/editor_plugin_src.js @@ -1335,30 +1371,22 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/layer/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/legacyoutput/editor_plugin_src.js -%%WWWDIR%%/jscripts/tiny_mce/plugins/media/css/content.css +%%WWWDIR%%/jscripts/tiny_mce/plugins/lists/editor_plugin.js +%%WWWDIR%%/jscripts/tiny_mce/plugins/lists/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/media/css/media.css %%WWWDIR%%/jscripts/tiny_mce/plugins/media/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/media/editor_plugin_src.js -%%WWWDIR%%/jscripts/tiny_mce/plugins/media/img/flash.gif -%%WWWDIR%%/jscripts/tiny_mce/plugins/media/img/flv_player.swf -%%WWWDIR%%/jscripts/tiny_mce/plugins/media/img/quicktime.gif -%%WWWDIR%%/jscripts/tiny_mce/plugins/media/img/realmedia.gif -%%WWWDIR%%/jscripts/tiny_mce/plugins/media/img/shockwave.gif -%%WWWDIR%%/jscripts/tiny_mce/plugins/media/img/trans.gif -%%WWWDIR%%/jscripts/tiny_mce/plugins/media/img/windowsmedia.gif %%WWWDIR%%/jscripts/tiny_mce/plugins/media/js/embed.js %%WWWDIR%%/jscripts/tiny_mce/plugins/media/js/media.js %%WWWDIR%%/jscripts/tiny_mce/plugins/media/langs/en_dlg.js %%WWWDIR%%/jscripts/tiny_mce/plugins/media/media.htm +%%WWWDIR%%/jscripts/tiny_mce/plugins/media/moxieplayer.swf %%WWWDIR%%/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/noneditable/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/noneditable/editor_plugin_src.js -%%WWWDIR%%/jscripts/tiny_mce/plugins/pagebreak/css/content.css %%WWWDIR%%/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/pagebreak/editor_plugin_src.js -%%WWWDIR%%/jscripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif -%%WWWDIR%%/jscripts/tiny_mce/plugins/pagebreak/img/trans.gif %%WWWDIR%%/jscripts/tiny_mce/plugins/paste/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/paste/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/paste/js/pastetext.js @@ -1373,9 +1401,6 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/preview/preview.html %%WWWDIR%%/jscripts/tiny_mce/plugins/print/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/print/editor_plugin_src.js -%%WWWDIR%%/jscripts/tiny_mce/plugins/safari/blank.htm -%%WWWDIR%%/jscripts/tiny_mce/plugins/safari/editor_plugin.js -%%WWWDIR%%/jscripts/tiny_mce/plugins/safari/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/save/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/save/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css @@ -1394,6 +1419,7 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/style/js/props.js %%WWWDIR%%/jscripts/tiny_mce/plugins/style/langs/en_dlg.js %%WWWDIR%%/jscripts/tiny_mce/plugins/style/props.htm +%%WWWDIR%%/jscripts/tiny_mce/plugins/style/readme.txt %%WWWDIR%%/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/table/cell.htm @@ -1417,6 +1443,9 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/template/js/template.js %%WWWDIR%%/jscripts/tiny_mce/plugins/template/langs/en_dlg.js %%WWWDIR%%/jscripts/tiny_mce/plugins/template/template.htm +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js @@ -1447,7 +1476,16 @@ %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/editor_template_src.js %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/image.htm %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/flash.gif %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/icons.gif +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/iframe.gif +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/quicktime.gif +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/realmedia.gif +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/shockwave.gif +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/trans.gif +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/video.gif +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/js/about.js %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/js/anchor.js %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/js/charmap.js @@ -1458,6 +1496,7 @@ %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/langs/en.js %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/langs/en_dlg.js %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/link.htm +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/shortcuts.htm %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/default/content.css %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/default/dialog.css %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png @@ -1467,6 +1506,9 @@ %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/default/ui.css +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +%%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/highcontrast/ui.css %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/o2k7/content.css %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css %%WWWDIR%%/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png @@ -1753,6 +1795,7 @@ %%WWWDIR%%/mods/_core/modules/details.php %%WWWDIR%%/mods/_core/modules/index.php %%WWWDIR%%/mods/_core/modules/install_modules.php +%%WWWDIR%%/mods/_core/modules/js/modules.js %%WWWDIR%%/mods/_core/modules/module.php %%WWWDIR%%/mods/_core/modules/module.template.php %%WWWDIR%%/mods/_core/modules/module.xml @@ -1779,6 +1822,7 @@ %%WWWDIR%%/mods/_core/themes/import.php %%WWWDIR%%/mods/_core/themes/index.php %%WWWDIR%%/mods/_core/themes/install_themes.php +%%WWWDIR%%/mods/_core/themes/js/themes.js %%WWWDIR%%/mods/_core/themes/lib/theme_template.inc.php %%WWWDIR%%/mods/_core/themes/lib/themes.inc.php %%WWWDIR%%/mods/_core/themes/module.php @@ -1862,10 +1906,6 @@ %%WWWDIR%%/mods/_standard/basiclti/index_admin.php %%WWWDIR%%/mods/_standard/basiclti/index_instructor.php %%WWWDIR%%/mods/_standard/basiclti/launch/TrivialStore.php -%%WWWDIR%%/mods/_standard/basiclti/launch/ims-blti/LICENSE.txt -%%WWWDIR%%/mods/_standard/basiclti/launch/ims-blti/OAuth.php -%%WWWDIR%%/mods/_standard/basiclti/launch/ims-blti/blti.php -%%WWWDIR%%/mods/_standard/basiclti/launch/ims-blti/blti_util.php %%WWWDIR%%/mods/_standard/basiclti/launch/launch.php %%WWWDIR%%/mods/_standard/basiclti/launch/loadrows.php %%WWWDIR%%/mods/_standard/basiclti/launch/service.php @@ -2372,6 +2412,7 @@ %%WWWDIR%%/mods/_standard/tile_search/classes/ResultParser.class.php %%WWWDIR%%/mods/_standard/tile_search/import.php %%WWWDIR%%/mods/_standard/tile_search/index.php +%%WWWDIR%%/mods/_standard/tile_search/misc.php %%WWWDIR%%/mods/_standard/tile_search/module.php %%WWWDIR%%/mods/_standard/tile_search/module.xml %%WWWDIR%%/mods/_standard/tile_search/tile.php @@ -2396,6 +2437,7 @@ %%WWWDIR%%/mods/_standard/vimeo/module_format_content.php %%WWWDIR%%/mods/index.html %%WWWDIR%%/move_module.php +%%WWWDIR%%/newuser.sql %%WWWDIR%%/password_reminder.php %%WWWDIR%%/popuphelp.php %%WWWDIR%%/profile.php @@ -2405,6 +2447,29 @@ %%WWWDIR%%/sha-1factory.js %%WWWDIR%%/svn.php %%WWWDIR%%/switch_view.php +%%WWWDIR%%/themes/atspaces/Varela_Round.woff +%%WWWDIR%%/themes/atspaces/forms.css +%%WWWDIR%%/themes/atspaces/ie_styles.css +%%WWWDIR%%/themes/atspaces/images/atspaces_logo49.jpg +%%WWWDIR%%/themes/atspaces/images/edit.gif +%%WWWDIR%%/themes/atspaces/images/help.png +%%WWWDIR%%/themes/atspaces/images/hidemenu.gif +%%WWWDIR%%/themes/atspaces/images/mswitch_minus.gif +%%WWWDIR%%/themes/atspaces/images/mswitch_plus.gif +%%WWWDIR%%/themes/atspaces/images/next.png +%%WWWDIR%%/themes/atspaces/images/photos_arrange.png +%%WWWDIR%%/themes/atspaces/images/previous.png +%%WWWDIR%%/themes/atspaces/images/profile.gif +%%WWWDIR%%/themes/atspaces/images/resume.png +%%WWWDIR%%/themes/atspaces/images/showmenu.gif +%%WWWDIR%%/themes/atspaces/images/x.gif +%%WWWDIR%%/themes/atspaces/include/footer.tmpl.php +%%WWWDIR%%/themes/atspaces/include/header.tmpl.php +%%WWWDIR%%/themes/atspaces/safari.css +%%WWWDIR%%/themes/atspaces/screenshot.gif +%%WWWDIR%%/themes/atspaces/styles.css +%%WWWDIR%%/themes/atspaces/theme.cfg.php +%%WWWDIR%%/themes/atspaces/theme_info.xml %%WWWDIR%%/themes/blumin/content.tmpl.php %%WWWDIR%%/themes/blumin/forms.css %%WWWDIR%%/themes/blumin/ie_styles.css @@ -2458,7 +2523,60 @@ %%WWWDIR%%/themes/blumin/styles.css %%WWWDIR%%/themes/blumin/theme.cfg.php %%WWWDIR%%/themes/blumin/theme_info.xml +%%WWWDIR%%/themes/default/about.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/auto_enroll.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/course_categories.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/courses.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/create_course.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/default_mods.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/default_side.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/edit_course.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/enrollment.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/forum_add.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/forum_edit.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/forums.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/privileges.tmpl.php +%%WWWDIR%%/themes/default/admin/courses/scaffolds.tmpl.php +%%WWWDIR%%/themes/default/admin/fix_content.tmpl.php +%%WWWDIR%%/themes/default/admin/index.tmpl.php +%%WWWDIR%%/themes/default/admin/modules/details.tmpl.php +%%WWWDIR%%/themes/default/admin/modules/index.tmpl.php +%%WWWDIR%%/themes/default/admin/modules/install_modules.tmpl.php +%%WWWDIR%%/themes/default/admin/modules/version_history.tmpl.php +%%WWWDIR%%/themes/default/admin/my_edit.tmpl.php +%%WWWDIR%%/themes/default/admin/patcher/index_admin.tmpl.php +%%WWWDIR%%/themes/default/admin/patcher/myown_patches.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/add_feed.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/config_edit.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/cron_config.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/edit_feed.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/index.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/index_admin.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/language.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/language_add.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/language_edit.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/language_editor.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/language_import.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/language_translate.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/module_prefs.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/module_setup.tmpl.php +%%WWWDIR%%/themes/default/admin/system_preferences/preview.tmpl.php +%%WWWDIR%%/themes/default/admin/users/admin_email.tmpl.php +%%WWWDIR%%/themes/default/admin/users/create.tmpl.php +%%WWWDIR%%/themes/default/admin/users/default_preferences.tmpl.php +%%WWWDIR%%/themes/default/admin/users/edit.tmpl.php +%%WWWDIR%%/themes/default/admin/users/index.tmpl.php +%%WWWDIR%%/themes/default/admin/users/instructor_requests.tmpl.php +%%WWWDIR%%/themes/default/admin/users/log.tmpl.php +%%WWWDIR%%/themes/default/admin/users/master_list.tmpl.php +%%WWWDIR%%/themes/default/admin/users/master_list_edit.tmpl.php +%%WWWDIR%%/themes/default/admin/users/password.tmpl.php +%%WWWDIR%%/themes/default/admin/users/password_user.tmpl.php +%%WWWDIR%%/themes/default/admin/users/user_enrollment.tmpl.php +%%WWWDIR%%/themes/default/admin/users/users.tmpl.php +%%WWWDIR%%/themes/default/confirm.tmpl.php %%WWWDIR%%/themes/default/confirmmessage.tmpl.php +%%WWWDIR%%/themes/default/contact_instructor.tmpl.php %%WWWDIR%%/themes/default/content.tmpl.php %%WWWDIR%%/themes/default/directory.tmpl.php %%WWWDIR%%/themes/default/editor/arrange_content.tmpl.php @@ -2479,6 +2597,8 @@ %%WWWDIR%%/themes/default/images/back.gif %%WWWDIR%%/themes/default/images/continue.gif %%WWWDIR%%/themes/default/images/edit.gif +%%WWWDIR%%/themes/default/images/editor/arrange_content.tmpl.php +%%WWWDIR%%/themes/default/images/editor/edit_content_folder.tmpl.php %%WWWDIR%%/themes/default/images/help.png %%WWWDIR%%/themes/default/images/hidemenu.gif %%WWWDIR%%/themes/default/images/linkOpaque.gif @@ -2532,6 +2652,8 @@ %%WWWDIR%%/themes/default/images/user.gif %%WWWDIR%%/themes/default/images/visual_alternative.png %%WWWDIR%%/themes/default/images/x.gif +%%WWWDIR%%/themes/default/inbox/inbox.tmpl.php +%%WWWDIR%%/themes/default/inbox/sent_messages.tmpl.php %%WWWDIR%%/themes/default/include/box.tmpl.php %%WWWDIR%%/themes/default/include/fm_footer.tmpl.php %%WWWDIR%%/themes/default/include/fm_header.tmpl.php @@ -2543,6 +2665,52 @@ %%WWWDIR%%/themes/default/include/tm_header.tmpl.php %%WWWDIR%%/themes/default/index.tmpl.php %%WWWDIR%%/themes/default/infomessage.tmpl.php +%%WWWDIR%%/themes/default/instructor/announcements/add_news.tmpl.php +%%WWWDIR%%/themes/default/instructor/announcements/edit_news.tmpl.php +%%WWWDIR%%/themes/default/instructor/announcements/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/assignments/add_assignment.tmpl.php +%%WWWDIR%%/themes/default/instructor/assignments/index_instructor.tmpl.php +%%WWWDIR%%/themes/default/instructor/backups/create.tmpl.php +%%WWWDIR%%/themes/default/instructor/backups/edit.tmpl.php +%%WWWDIR%%/themes/default/instructor/backups/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/backups/restore.tmpl.php +%%WWWDIR%%/themes/default/instructor/backups/upload.tmpl.php +%%WWWDIR%%/themes/default/instructor/chat/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/chat/start_transcript.tmpl.php +%%WWWDIR%%/themes/default/instructor/content/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/content/page_student_stats.tmpl.php +%%WWWDIR%%/themes/default/instructor/content/tracker/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/content/tracker/student_usage.tmpl.php +%%WWWDIR%%/themes/default/instructor/course_email/course_email.tmpl.php +%%WWWDIR%%/themes/default/instructor/course_tools/modules.tmpl.php +%%WWWDIR%%/themes/default/instructor/course_tools/side_menu.tmpl.php +%%WWWDIR%%/themes/default/instructor/enrolment/create_course_list.tmpl.php +%%WWWDIR%%/themes/default/instructor/enrolment/export_course_list.tmpl.php +%%WWWDIR%%/themes/default/instructor/enrolment/import_course_list.tmpl.php +%%WWWDIR%%/themes/default/instructor/enrolment/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/enrolment/privileges.tmpl.php +%%WWWDIR%%/themes/default/instructor/faq/add_question.tmpl.php +%%WWWDIR%%/themes/default/instructor/faq/add_topic.tmpl.php +%%WWWDIR%%/themes/default/instructor/faq/edit_question.tmpl.php +%%WWWDIR%%/themes/default/instructor/faq/edit_topic.tmpl.php +%%WWWDIR%%/themes/default/instructor/faq/index_instructor.tmpl.php +%%WWWDIR%%/themes/default/instructor/forums/add_forum.tmpl.php +%%WWWDIR%%/themes/default/instructor/forums/edit_forum.tmpl.php +%%WWWDIR%%/themes/default/instructor/forums/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/glossary/add.tmpl.php +%%WWWDIR%%/themes/default/instructor/glossary/edit.tmpl.php +%%WWWDIR%%/themes/default/instructor/glossary/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/groups/create.tmpl.php +%%WWWDIR%%/themes/default/instructor/groups/create_automatic.tmpl.php +%%WWWDIR%%/themes/default/instructor/groups/create_manual.tmpl.php +%%WWWDIR%%/themes/default/instructor/groups/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/polls/add.tmpl.php +%%WWWDIR%%/themes/default/instructor/polls/edit.tmpl.php +%%WWWDIR%%/themes/default/instructor/polls/index.tmpl.php +%%WWWDIR%%/themes/default/instructor/reading_list/index_instructor.tmpl.php +%%WWWDIR%%/themes/default/instructor/statistics/course_stats.tmpl.php +%%WWWDIR%%/themes/default/instructor/statistics/tracker/my_stats.tmpl.php +%%WWWDIR%%/themes/default/instructor/student_tools/instructor_index.tmpl.php %%WWWDIR%%/themes/default/login.tmpl.php %%WWWDIR%%/themes/default/password_change.tmpl.php %%WWWDIR%%/themes/default/password_reminder.tmpl.php @@ -2563,7 +2731,9 @@ %%WWWDIR%%/themes/default/readme.txt %%WWWDIR%%/themes/default/registration.tmpl.php %%WWWDIR%%/themes/default/rtl.css +%%WWWDIR%%/themes/default/safari.css %%WWWDIR%%/themes/default/screenshot.gif +%%WWWDIR%%/themes/default/search.tmpl.php %%WWWDIR%%/themes/default/social/activities.tmpl.php %%WWWDIR%%/themes/default/social/admin/delete_applications.tmpl.php %%WWWDIR%%/themes/default/social/application_settings.tmpl.php @@ -2800,6 +2970,81 @@ %%WWWDIR%%/themes/default16/styles.css %%WWWDIR%%/themes/default16/theme.cfg.php %%WWWDIR%%/themes/default16/theme_info.xml +%%WWWDIR%%/themes/default20/forms.css +%%WWWDIR%%/themes/default20/ie_styles.css +%%WWWDIR%%/themes/default20/images/Thumbs.db +%%WWWDIR%%/themes/default20/images/arrow_ltr.gif +%%WWWDIR%%/themes/default20/images/arrow_rtl.gif +%%WWWDIR%%/themes/default20/images/atutor_head.jpg +%%WWWDIR%%/themes/default20/images/atutor_head.psd +%%WWWDIR%%/themes/default20/images/atutor_logo.png +%%WWWDIR%%/themes/default20/images/atutor_logo.psd +%%WWWDIR%%/themes/default20/images/atutor_logo2.png +%%WWWDIR%%/themes/default20/images/audio_alternative.png +%%WWWDIR%%/themes/default20/images/back.gif +%%WWWDIR%%/themes/default20/images/continue.gif +%%WWWDIR%%/themes/default20/images/edit.gif +%%WWWDIR%%/themes/default20/images/editor/arrange_content.tmpl.php +%%WWWDIR%%/themes/default20/images/editor/edit_content_folder.tmpl.php +%%WWWDIR%%/themes/default20/images/help.png +%%WWWDIR%%/themes/default20/images/hidemenu.gif +%%WWWDIR%%/themes/default20/images/linkOpaque.gif +%%WWWDIR%%/themes/default20/images/linkTransparent.gif +%%WWWDIR%%/themes/default20/images/mswitch_minus.gif +%%WWWDIR%%/themes/default20/images/mswitch_plus.gif +%%WWWDIR%%/themes/default20/images/newsitem_icon.gif +%%WWWDIR%%/themes/default20/images/next.png +%%WWWDIR%%/themes/default20/images/pause.png +%%WWWDIR%%/themes/default20/images/pencil_bottom.gif +%%WWWDIR%%/themes/default20/images/pencil_bottom_ds.gif +%%WWWDIR%%/themes/default20/images/pencil_bottom_ds.png +%%WWWDIR%%/themes/default20/images/pencil_top.gif +%%WWWDIR%%/themes/default20/images/pencil_top_ds.png +%%WWWDIR%%/themes/default20/images/pencils.gif +%%WWWDIR%%/themes/default20/images/pencils_up.jpg +%%WWWDIR%%/themes/default20/images/pencils_up_bottom.jpg +%%WWWDIR%%/themes/default20/images/pencils_up_top.jpg +%%WWWDIR%%/themes/default20/images/photos_arrange.png +%%WWWDIR%%/themes/default20/images/previous.gif +%%WWWDIR%%/themes/default20/images/previous.png +%%WWWDIR%%/themes/default20/images/profile.gif +%%WWWDIR%%/themes/default20/images/resume.png +%%WWWDIR%%/themes/default20/images/resume2.png +%%WWWDIR%%/themes/default20/images/rtl_tree/index.html +%%WWWDIR%%/themes/default20/images/rtl_tree/tree_collapse.gif +%%WWWDIR%%/themes/default20/images/rtl_tree/tree_end.gif +%%WWWDIR%%/themes/default20/images/rtl_tree/tree_expand.gif +%%WWWDIR%%/themes/default20/images/rtl_tree/tree_horizontal.gif +%%WWWDIR%%/themes/default20/images/rtl_tree/tree_split.gif +%%WWWDIR%%/themes/default20/images/rtl_tree/tree_vertline.gif +%%WWWDIR%%/themes/default20/images/showmenu.gif +%%WWWDIR%%/themes/default20/images/side_arrow.gif +%%WWWDIR%%/themes/default20/images/sign_lang_alternative.png +%%WWWDIR%%/themes/default20/images/sort.png +%%WWWDIR%%/themes/default20/images/text_alternative.png +%%WWWDIR%%/themes/default20/images/texture_bg.png +%%WWWDIR%%/themes/default20/images/tl_corner.gif +%%WWWDIR%%/themes/default20/images/top.gif +%%WWWDIR%%/themes/default20/images/tree/index.html +%%WWWDIR%%/themes/default20/images/tree/tree_collapse.gif +%%WWWDIR%%/themes/default20/images/tree/tree_disabled.gif +%%WWWDIR%%/themes/default20/images/tree/tree_end.gif +%%WWWDIR%%/themes/default20/images/tree/tree_expand.gif +%%WWWDIR%%/themes/default20/images/tree/tree_horizontal.gif +%%WWWDIR%%/themes/default20/images/tree/tree_space.gif +%%WWWDIR%%/themes/default20/images/tree/tree_split.gif +%%WWWDIR%%/themes/default20/images/tree/tree_vertline.gif +%%WWWDIR%%/themes/default20/images/up.png +%%WWWDIR%%/themes/default20/images/user-star.gif +%%WWWDIR%%/themes/default20/images/user.gif +%%WWWDIR%%/themes/default20/images/visual_alternative.png +%%WWWDIR%%/themes/default20/images/x.gif +%%WWWDIR%%/themes/default20/print.css +%%WWWDIR%%/themes/default20/rtl.css +%%WWWDIR%%/themes/default20/safari.css +%%WWWDIR%%/themes/default20/styles.css +%%WWWDIR%%/themes/default20/theme.cfg.php +%%WWWDIR%%/themes/default20/theme_info.xml %%WWWDIR%%/themes/default_classic/forms.css %%WWWDIR%%/themes/default_classic/ie_styles.css %%WWWDIR%%/themes/default_classic/images/edit.gif @@ -2999,20 +3244,111 @@ %%WWWDIR%%/themes/idi/theme_info.xml %%WWWDIR%%/themes/mobile/TeraWurflRemoteClient.php %%WWWDIR%%/themes/mobile/about.tmpl.php +%%WWWDIR%%/themes/mobile/admin/courses/courses.tmpl.php +%%WWWDIR%%/themes/mobile/admin/courses/create_course.tmpl.php +%%WWWDIR%%/themes/mobile/admin/courses/default_mods.tmpl.php +%%WWWDIR%%/themes/mobile/admin/courses/edit_course.tmpl.php +%%WWWDIR%%/themes/mobile/admin/courses/enrollment.tmpl.php +%%WWWDIR%%/themes/mobile/admin/courses/forum_add.tmpl.php +%%WWWDIR%%/themes/mobile/admin/courses/forums.tmpl.php +%%WWWDIR%%/themes/mobile/admin/courses/scaffolds.tmpl.php +%%WWWDIR%%/themes/mobile/admin/index.tmpl.php +%%WWWDIR%%/themes/mobile/admin/modules/details.tmpl.php +%%WWWDIR%%/themes/mobile/admin/modules/index.tmpl.php +%%WWWDIR%%/themes/mobile/admin/modules/install_modules.tmpl.php +%%WWWDIR%%/themes/mobile/admin/modules/version_history.tmpl.php +%%WWWDIR%%/themes/mobile/admin/my_edit.tmpl.php +%%WWWDIR%%/themes/mobile/admin/patcher/index_admin.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/add_feed.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/config_edit.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/cron_config.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/edit_feed.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/index.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/index_admin.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/language.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/language_add.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/language_edit.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/language_editor.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/language_import.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/language_translate.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/module_prefs.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/module_setup.tmpl.php +%%WWWDIR%%/themes/mobile/admin/system_preferences/preview.tmpl.php +%%WWWDIR%%/themes/mobile/admin/users/admin_email.tmpl.php +%%WWWDIR%%/themes/mobile/admin/users/create.tmpl.php +%%WWWDIR%%/themes/mobile/admin/users/index.tmpl.php +%%WWWDIR%%/themes/mobile/admin/users/instructor_requests.tmpl.php +%%WWWDIR%%/themes/mobile/admin/users/log.tmpl.php +%%WWWDIR%%/themes/mobile/admin/users/master_list.tmpl.php +%%WWWDIR%%/themes/mobile/admin/users/user_enrollment.tmpl.php +%%WWWDIR%%/themes/mobile/admin/users/users.tmpl.php %%WWWDIR%%/themes/mobile/android.css %%WWWDIR%%/themes/mobile/blackberry.css +%%WWWDIR%%/themes/mobile/confirm.tmpl.php %%WWWDIR%%/themes/mobile/content.tmpl.php +%%WWWDIR%%/themes/mobile/editor/edit_content_folder.tmpl.php +%%WWWDIR%%/themes/mobile/editor/page_student_stats.tmpl.php %%WWWDIR%%/themes/mobile/forms.css +%%WWWDIR%%/themes/mobile/images/arrow-up-black.png %%WWWDIR%%/themes/mobile/images/arrow-up.png +%%WWWDIR%%/themes/mobile/images/backarrow.jpg +%%WWWDIR%%/themes/mobile/images/clr.gif +%%WWWDIR%%/themes/mobile/images/down.png +%%WWWDIR%%/themes/mobile/images/edit.gif +%%WWWDIR%%/themes/mobile/images/idi_background.png +%%WWWDIR%%/themes/mobile/images/minus.png +%%WWWDIR%%/themes/mobile/images/navbar_back_button_insetShadow_right.png +%%WWWDIR%%/themes/mobile/images/navbar_normal_button_insetShadow-rev.png %%WWWDIR%%/themes/mobile/images/navbar_normal_button_insetShadow.png +%%WWWDIR%%/themes/mobile/images/photos_arrange.gif.png +%%WWWDIR%%/themes/mobile/images/photos_arrange.png +%%WWWDIR%%/themes/mobile/images/plus.png +%%WWWDIR%%/themes/mobile/images/profile.gif +%%WWWDIR%%/themes/mobile/images/up.png +%%WWWDIR%%/themes/mobile/images/white_listmenu_arrow.png +%%WWWDIR%%/themes/mobile/images/x.gif +%%WWWDIR%%/themes/mobile/inbox/inbox.tmpl.php +%%WWWDIR%%/themes/mobile/inbox/sent_messages.tmpl.php %%WWWDIR%%/themes/mobile/include/TeraWurflRemoteClient.php %%WWWDIR%%/themes/mobile/include/footer.tmpl.php %%WWWDIR%%/themes/mobile/include/header.tmpl.php %%WWWDIR%%/themes/mobile/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/announcements/add_news.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/announcements/edit_news.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/announcements/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/assignments/index_instructor.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/backups/edit.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/backups/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/chat/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/content/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/content/page_student_stats.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/content/tracker/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/content/tracker/student_usage.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/course_email/course_email.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/enrolment/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/faq/add_question.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/faq/add_topic.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/faq/edit_question.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/faq/edit_topic.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/faq/index_instructor.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/forums/add_forum.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/forums/edit_forum.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/forums/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/glossary/add.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/polls/add.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/polls/edit.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/polls/index.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/properties/course_properties.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/statistics/course_stats.tmpl.php +%%WWWDIR%%/themes/mobile/instructor/statistics/tracker/my_stats.tmpl.php %%WWWDIR%%/themes/mobile/iphone.css %%WWWDIR%%/themes/mobile/login.tmpl.php +%%WWWDIR%%/themes/mobile/mobile.css +%%WWWDIR%%/themes/mobile/moz.css +%%WWWDIR%%/themes/mobile/password_reminder.tmpl.php %%WWWDIR%%/themes/mobile/print.css %%WWWDIR%%/themes/mobile/readme.txt +%%WWWDIR%%/themes/mobile/registration.tmpl.php %%WWWDIR%%/themes/mobile/rtl.css %%WWWDIR%%/themes/mobile/screenshot.gif %%WWWDIR%%/themes/mobile/social/activities.tmpl.php @@ -3052,6 +3388,8 @@ %%WWWDIR%%/themes/mobile/social/sprofile.tmpl.php %%WWWDIR%%/themes/mobile/social/tiny_applications.tmpl.php %%WWWDIR%%/themes/mobile/social/tiny_sgroups.tmpl.php +%%WWWDIR%%/themes/mobile/tablet.css +%%WWWDIR%%/themes/mobile/tablet_others.css %%WWWDIR%%/themes/mobile/test.html %%WWWDIR%%/themes/mobile/theme.cfg.php %%WWWDIR%%/themes/mobile/theme_info.xml @@ -3063,6 +3401,172 @@ %%WWWDIR%%/themes/mobile/users/pref_wizard/initialize.tmpl.php %%WWWDIR%%/themes/mobile/users/preferences.tmpl.php %%WWWDIR%%/themes/mobile/users/profile.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/TeraWurflRemoteClient.php +%%WWWDIR%%/themes/simplified_desktop/about.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/courses/courses.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/courses/create_course.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/courses/default_mods.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/courses/edit_course.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/courses/enrollment.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/courses/forum_add.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/courses/forums.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/courses/scaffolds.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/modules/details.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/modules/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/modules/install_modules.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/modules/version_history.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/my_edit.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/patcher/index_admin.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/add_feed.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/config_edit.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/cron_config.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/edit_feed.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/index_admin.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/language.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/language_add.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/language_edit.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/language_editor.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/language_import.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/language_translate.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/module_prefs.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/module_setup.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/system_preferences/preview.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/users/admin_email.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/users/create.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/users/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/users/instructor_requests.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/users/log.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/users/master_list.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/users/user_enrollment.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/admin/users/users.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/android.css +%%WWWDIR%%/themes/simplified_desktop/blackberry.css +%%WWWDIR%%/themes/simplified_desktop/confirm.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/content.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/editor/edit_content_folder.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/editor/page_student_stats.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/forms.css +%%WWWDIR%%/themes/simplified_desktop/ie_styles.css +%%WWWDIR%%/themes/simplified_desktop/images/arrow-up-black.png +%%WWWDIR%%/themes/simplified_desktop/images/arrow-up.png +%%WWWDIR%%/themes/simplified_desktop/images/backarrow.jpg +%%WWWDIR%%/themes/simplified_desktop/images/clr.gif +%%WWWDIR%%/themes/simplified_desktop/images/down.png +%%WWWDIR%%/themes/simplified_desktop/images/edit.gif +%%WWWDIR%%/themes/simplified_desktop/images/idi_background.png +%%WWWDIR%%/themes/simplified_desktop/images/minus.png +%%WWWDIR%%/themes/simplified_desktop/images/navbar_back_button_insetShadow_right.png +%%WWWDIR%%/themes/simplified_desktop/images/navbar_normal_button_insetShadow-rev.png +%%WWWDIR%%/themes/simplified_desktop/images/navbar_normal_button_insetShadow.png +%%WWWDIR%%/themes/simplified_desktop/images/photos_arrange.gif.png +%%WWWDIR%%/themes/simplified_desktop/images/photos_arrange.png +%%WWWDIR%%/themes/simplified_desktop/images/plus.png +%%WWWDIR%%/themes/simplified_desktop/images/profile.gif +%%WWWDIR%%/themes/simplified_desktop/images/up.png +%%WWWDIR%%/themes/simplified_desktop/images/white_listmenu_arrow.png +%%WWWDIR%%/themes/simplified_desktop/images/x.gif +%%WWWDIR%%/themes/simplified_desktop/inbox/inbox.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/inbox/sent_messages.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/include/TeraWurflRemoteClient.php +%%WWWDIR%%/themes/simplified_desktop/include/footer.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/include/header.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/announcements/add_news.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/announcements/edit_news.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/announcements/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/assignments/index_instructor.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/backups/edit.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/backups/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/chat/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/content/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/content/page_student_stats.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/content/tracker/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/content/tracker/student_usage.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/course_email/course_email.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/enrolment/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/faq/add_question.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/faq/add_topic.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/faq/edit_question.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/faq/edit_topic.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/faq/index_instructor.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/forums/add_forum.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/forums/edit_forum.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/forums/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/glossary/add.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/polls/add.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/polls/edit.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/polls/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/properties/course_properties.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/statistics/course_stats.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/instructor/statistics/tracker/my_stats.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/iphone.css +%%WWWDIR%%/themes/simplified_desktop/login.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/mobile.css +%%WWWDIR%%/themes/simplified_desktop/moz.css +%%WWWDIR%%/themes/simplified_desktop/password_reminder.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/print.css +%%WWWDIR%%/themes/simplified_desktop/readme.txt +%%WWWDIR%%/themes/simplified_desktop/registration.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/rtl.css +%%WWWDIR%%/themes/simplified_desktop/safari.css +%%WWWDIR%%/themes/simplified_desktop/screenshot.gif +%%WWWDIR%%/themes/simplified_desktop/social/activities.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/admin/delete_applications.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/application_settings.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/applications.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/basic_profile.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/connections.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile/account_settings.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile/edit_additional.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile/edit_contact.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile/edit_education.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile/edit_personal.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile/edit_position.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile/edit_representation.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile/edit_websites.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/edit_profile.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/friend_list.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/index_public.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/individual_application.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/notifications.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/oauth/authorize.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/oauth/footer.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/oauth/header.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/profile_picture.html.php +%%WWWDIR%%/themes/simplified_desktop/social/settings/account_settings.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/settings/application_settings.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/settings/privacy_settings.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/settings/settings_menu.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/sgroup_create.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/sgroup_edit.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/sgroup_invite.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/sgroup_list.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/sgroup_search.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/sgroup_view.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/sgroups.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/sprofile.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/tiny_applications.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/social/tiny_sgroups.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/tablet.css +%%WWWDIR%%/themes/simplified_desktop/test.html +%%WWWDIR%%/themes/simplified_desktop/theme.cfg.php +%%WWWDIR%%/themes/simplified_desktop/theme_info.xml +%%WWWDIR%%/themes/simplified_desktop/users/browse.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/users/email_change.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/users/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/users/password_change.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/users/pref_wizard/index.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/users/pref_wizard/initialize.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/users/preferences.tmpl.php +%%WWWDIR%%/themes/simplified_desktop/users/profile.tmpl.php +%%WWWDIR%%/themes/tablet1/include/footer.tmpl.php +%%WWWDIR%%/themes/tablet1/include/header.tmpl.php +%%WWWDIR%%/themes/tablet1/jquery.mobile-1.0b1.css +%%WWWDIR%%/themes/tablet1/readme.txt +%%WWWDIR%%/themes/tablet1/theme.cfg.php +%%WWWDIR%%/themes/tablet1/theme_info.xml %%WWWDIR%%/themes/themes_readme.txt %%WWWDIR%%/tools/index.php %%WWWDIR%%/tools/prog.php @@ -3103,6 +3607,7 @@ @dirrm %%WWWDIR%%/documentation/instructor/fr @dirrm %%WWWDIR%%/documentation/instructor @dirrm %%WWWDIR%%/documentation +@dirrm %%WWWDIR%%/google_app @dirrm %%WWWDIR%%/help @dirrm %%WWWDIR%%/images/courses @dirrm %%WWWDIR%%/images/file_types @@ -3111,6 +3616,10 @@ @dirrm %%WWWDIR%%/images/tree @dirrm %%WWWDIR%%/images @dirrm %%WWWDIR%%/inbox +@dirrm %%WWWDIR%%/include/classes/AContent_lcl/images/tree +@dirrm %%WWWDIR%%/include/classes/AContent_lcl/images +@dirrm %%WWWDIR%%/include/classes/AContent_lcl/ims-blti +@dirrm %%WWWDIR%%/include/classes/AContent_lcl @dirrm %%WWWDIR%%/include/classes/ErrorHandler @dirrm %%WWWDIR%%/include/classes/Message @dirrm %%WWWDIR%%/include/classes/Savant2/Savant2 @@ -3126,6 +3635,8 @@ @dirrm %%WWWDIR%%/include/html/dropdowns @dirrm %%WWWDIR%%/include/html/frameset @dirrm %%WWWDIR%%/include/html +@dirrm %%WWWDIR%%/include/install/db +@dirrm %%WWWDIR%%/include/install @dirrm %%WWWDIR%%/include/lib @dirrm %%WWWDIR%%/include/phpCache @dirrm %%WWWDIR%%/include/securimage/audio @@ -3134,7 +3645,6 @@ @dirrm %%WWWDIR%%/include/securimage @dirrm %%WWWDIR%%/include/unit_tests @dirrm %%WWWDIR%%/include -@dirrm %%WWWDIR%%/install/db @dirrm %%WWWDIR%%/install/images @dirrm %%WWWDIR%%/install/include/classes @dirrm %%WWWDIR%%/install/include @@ -3201,7 +3711,6 @@ @dirrm %%WWWDIR%%/jscripts/infusion/framework/fss/images/themes/coal @dirrm %%WWWDIR%%/jscripts/infusion/framework/fss/images/themes/hc @dirrm %%WWWDIR%%/jscripts/infusion/framework/fss/images/themes/hci -@dirrm %%WWWDIR%%/jscripts/infusion/framework/fss/images/themes/high_contrast_bw @dirrm %%WWWDIR%%/jscripts/infusion/framework/fss/images/themes/iphone @dirrm %%WWWDIR%%/jscripts/infusion/framework/fss/images/themes/mist @dirrm %%WWWDIR%%/jscripts/infusion/framework/fss/images/themes/rust @@ -3269,6 +3778,7 @@ @dirrm %%WWWDIR%%/jscripts/infusion/lib @dirrm %%WWWDIR%%/jscripts/infusion/licenses @dirrm %%WWWDIR%%/jscripts/infusion +@dirrm %%WWWDIR%%/jscripts/jQueryMobile @dirrm %%WWWDIR%%/jscripts/lib/dd_question @dirrm %%WWWDIR%%/jscripts/lib @dirrm %%WWWDIR%%/jscripts/opensocial @@ -3291,12 +3801,11 @@ @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/advlink/langs @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/advlink @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/advlist +@dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/autolink @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/autoresize -@dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/autosave/images @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/autosave/langs @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/autosave @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/bbcode -@dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/compat2x @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/contextmenu @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/directionality @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/emotions/img @@ -3307,6 +3816,7 @@ @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/example/js @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/example/langs @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/example +@dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/example_dependency @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/fullpage/css @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/fullpage/js @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/fullpage/langs @@ -3320,15 +3830,13 @@ @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/insertdatetime @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/layer *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:34:56 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B2F41065673; Sun, 7 Oct 2012 12:34:56 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E0E368FC0A; Sun, 7 Oct 2012 12:34: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 q97CYtlU099012; Sun, 7 Oct 2012 12:34:55 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97CYtjP099009; Sun, 7 Oct 2012 12:34:55 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210071234.q97CYtjP099009@svn.freebsd.org> From: "Jason E. Hale" Date: Sun, 7 Oct 2012 12:34:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305468 - head/net-mgmt/p0f X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:34:56 -0000 Author: jhale Date: Sun Oct 7 12:34:55 2012 New Revision: 305468 URL: http://svn.freebsd.org/changeset/ports/305468 Log: - Update to 3.06b While here: - Trim Makefile header - Convert to new options framework - Remove LICENSE_FILES and extra installation of COPYING since the full LGPL21 license is included in the ports tree PR: ports/172394 Submitted by: Kurt Jaeger (maintainer) Approved by: makc, avilla (mentors implicit) Modified: head/net-mgmt/p0f/Makefile (contents, props changed) head/net-mgmt/p0f/distinfo (contents, props changed) Modified: head/net-mgmt/p0f/Makefile ============================================================================== --- head/net-mgmt/p0f/Makefile Sun Oct 7 12:30:40 2012 (r305467) +++ head/net-mgmt/p0f/Makefile Sun Oct 7 12:34:55 2012 (r305468) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p0f -# Date created: 2000-06-12 -# Whom: Trevor Johnson -# +# Created by: Trevor Johnson # $FreeBSD$ -# PORTNAME= p0f -PORTVERSION= 3.05b +PORTVERSION= 3.06b CATEGORIES= net-mgmt security MASTER_SITES= http://lcamtuf.coredump.cx/p0f3/releases/ \ http://fossies.org/unix/privat/ @@ -16,16 +12,17 @@ MAINTAINER= fbsd-ports@opsec.eu COMMENT= Passive OS fingerprinting tool LICENSE= LGPL21 -LICENSE_FILE= ${WRKSRC}/docs/COPYING PLIST_FILES= bin/p0f bin/p0f-client bin/p0f-sendsyn \ bin/p0f-sendsyn6 etc/p0f.fp -PORTDOCS= COPYING ChangeLog README TODO existential-notes.txt \ +PORTDOCS= ChangeLog README TODO existential-notes.txt \ extra-sigs.txt MAKE_JOBS_SAFE= yes MAKE_ARGS+= CC="${CC}" CFLAGS="${CFLAGS}" +.include + post-patch: @${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|g' ${WRKSRC}/README @${REINPLACE_CMD} -e 's|p0f.fp|${PREFIX}/etc/p0f.fp|g' ${WRKSRC}/config.h @@ -36,7 +33,7 @@ do-install: .endfor ${INSTALL_DATA} ${WRKSRC}/p0f.fp ${PREFIX}/etc/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} .for ii in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/docs/${ii} ${DOCSDIR} Modified: head/net-mgmt/p0f/distinfo ============================================================================== --- head/net-mgmt/p0f/distinfo Sun Oct 7 12:30:40 2012 (r305467) +++ head/net-mgmt/p0f/distinfo Sun Oct 7 12:34:55 2012 (r305468) @@ -1,2 +1,2 @@ -SHA256 (p0f-3.05b.tgz) = c4663e669fe43ef4f36f1f5935c4fab571ef19838c4aed90cf3b8bc2264f6b3b -SIZE (p0f-3.05b.tgz) = 91902 +SHA256 (p0f-3.06b.tgz) = d151931be2557ac45f9baa0a9384b8643979f4227c391ed395792874f2c6cde7 +SIZE (p0f-3.06b.tgz) = 92054 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:52:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AB341065672 for ; Sun, 7 Oct 2012 12:52:15 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 4E5AC8FC18 for ; Sun, 7 Oct 2012 12:52:15 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so3557816pad.13 for ; Sun, 07 Oct 2012 05:52:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=zcVeFJ94jp2XF6Ql5KRPR8K+aTD7Q0J/kCNK/9BjVwI=; b=kGd1MzyBHBYwI0rERuphLV7lnXGsI+ZnFRL/U+AUP1hKVbC7yHhtQR0AVvCYjym9dL 8/rtBRmf4tcPMSBdIyd9h+pcwku0U5qF0xcdR/T+OWvTkQFhxHFFC7bbr+4n1vyJagoU rqnsorymnOKAYxD09+2w+CRVDp35LGtoyeocM= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=zcVeFJ94jp2XF6Ql5KRPR8K+aTD7Q0J/kCNK/9BjVwI=; b=dB9OxoG2jl+UeB2cK2o90lei0fKYU/yWWL+xyZRlBpyRuHKyGc6/q2TJhd/TScK6so gR2KsyD75J3CUIJPfdeIgrBfLyA8duMRhikEei6wrxK/EQLzvL2AlHRKrfEfn8uUyxuk q4EHLT1o5tTN6lvqyfgkDuhqtOkRYzGmAD6aqoLuhJuDFBvLzV1HJsNzEYfTBKLD1MnQ tHF00jgNWwR0KICzV3Gh07b1agPYAZyV/748X4OXAV0ltn913NA1TqF0Cyp/cFKwYsOb vuQx2DdfhUPONuDUztsyUXSBGy2owajcC2D0lwzNJI7OYFOTPTioibtRua8MD1MzNtpb TKrw== Received: by 10.66.76.231 with SMTP id n7mr35339017paw.68.1349614329296; Sun, 07 Oct 2012 05:52:09 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.161.163 with HTTP; Sun, 7 Oct 2012 05:51:39 -0700 (PDT) In-Reply-To: <20121007113302.GA75223@ravenloft.kiev.ua> References: <201210062105.q96L5Dth040796@svn.freebsd.org> <50713F44.5010603@passap.ru> <20121007094519.GA23625@ravenloft.kiev.ua> <50715F3E.8020201@passap.ru> <20121007113302.GA75223@ravenloft.kiev.ua> From: Eitan Adler Date: Sun, 7 Oct 2012 08:51:39 -0400 X-Google-Sender-Auth: skEENZ7oRIZsD7JdeYMsXydqJxw Message-ID: To: Alex Kozlov Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQkyWAeUS6dlW4vTwHZMn+//bcy5d8M/BQdZSV1VKQNfGQ1aI1qIP5aTi+YpOFXmv1W74T69 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Boris Samorodov , ports-committers@freebsd.org Subject: Re: svn commit: r305403 - head/graphics/eos-movrec X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:52:15 -0000 On 7 October 2012 07:33, Alex Kozlov wrote: >> >>> Modified: head/graphics/eos-movrec/Makefile >> >>> ============================================================================== >> >>> --- head/graphics/eos-movrec/Makefile Sat Oct 6 20:50:12 2012 (r305402) >> >>> +++ head/graphics/eos-movrec/Makefile Sat Oct 6 21:05:12 2012 (r305403) >> >>> @@ -1,34 +1,42 @@ >> >>> -# New ports collection makefile for: EOS camera movie record >> >>> -# Date created: 15 Aug 2011 >> >>> -# Whom: Alexey Dokuchaev >> >>> -# >> >>> # $FreeBSD$ >> >>> -# >> >>> +# Created by: Alexey Dokuchaev >> >> Imho this line should be the first one. >> > At the moment there are three or four variants of Makefile headers in the tree. >> > I try to be as close as possible to the official version: >> > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-samplem.html >> OK, here is the official announcement about new header style: >> http://goo.gl/r31Bb > So, the porters handbook and announcement contradict each other. > This should be fixed. I'll handle this -- Eitan Adler Source & Ports committer X11, Bugbusting teams From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 12:57:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 174021065670; Sun, 7 Oct 2012 12:57:00 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0139D8FC0A; Sun, 7 Oct 2012 12:57:00 +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 q97CuxXK002238; Sun, 7 Oct 2012 12:56:59 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97Cux8O002236; Sun, 7 Oct 2012 12:56:59 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210071256.q97Cux8O002236@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 12:56:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305469 - head/net/click X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 12:57:00 -0000 Author: eadler Date: Sun Oct 7 12:56:59 2012 New Revision: 305469 URL: http://svn.freebsd.org/changeset/ports/305469 Log: Alpha is long since unsupported. Modified: head/net/click/Makefile Modified: head/net/click/Makefile ============================================================================== --- head/net/click/Makefile Sun Oct 7 12:34:55 2012 (r305468) +++ head/net/click/Makefile Sun Oct 7 12:56:59 2012 (r305469) @@ -94,10 +94,6 @@ XML_EXPAT_DESC= Enable XML support with .include -.if ${ARCH} == "alpha" -BROKEN= does not compile on alpha 4.x -.endif - .if ${PORT_OPTIONS:MXML_EXPAT} CONFIGURE_ARGS+= --with-expat=${LOCALBASE} LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 13:07:29 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD3371065670; Sun, 7 Oct 2012 13:07:29 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9CB148FC12; Sun, 7 Oct 2012 13:07: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 q97D7TXM003630; Sun, 7 Oct 2012 13:07:29 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97D7TdO003625; Sun, 7 Oct 2012 13:07:29 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201210071307.q97D7TdO003625@svn.freebsd.org> From: Marcus von Appen Date: Sun, 7 Oct 2012 13:07:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305470 - head/audio/sdl_sound X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 13:07:29 -0000 Author: mva Date: Sun Oct 7 13:07:29 2012 New Revision: 305470 URL: http://svn.freebsd.org/changeset/ports/305470 Log: - Convert to OptionsNG Submitted by: A.J. Kehoe IV (Nanoman) (via mail) Modified: head/audio/sdl_sound/Makefile (contents, props changed) Modified: head/audio/sdl_sound/Makefile ============================================================================== --- head/audio/sdl_sound/Makefile Sun Oct 7 12:56:59 2012 (r305469) +++ head/audio/sdl_sound/Makefile Sun Oct 7 13:07:29 2012 (r305470) @@ -22,69 +22,67 @@ USE_SDL= sdl CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS= FLAC "Enable FLAC decoding support" on \ - MIKMOD "Enable MOD decoding support using mikmod" on \ - MIDI "Enable software MIDI music" on \ - MODPLUG "Enable MOD decoding support using modplug" on \ - PHYSFS "Enable PhysicsFS support" on \ - SMPEG "Enable MP3 decoding support" on \ - SPEEX "Enable SPX decoding support" on \ - VORBIS "Enable Ogg Vorbis decoding support" on +OPTIONS_DEFINE= FLAC MIKMOD MIDI MODPLUG PHYSFS SMPEG SPEEX VORBIS +OPTIONS_DEFAULT= FLAC MIKMOD MIDI MODPLUG PHYSFS SMPEG SPEEX VORBIS + +MIDI_DESC= Software MIDI music +PHYSFS_DESC= PhysicsFS support +SMPEG_DESC= MP3 audio format .include -.if !defined(WITHOUT_FLAC) -LIB_DEPENDS+= FLAC.10:${PORTSDIR}/audio/flac +.if ${PORT_OPTIONS:MFLAC} +LIB_DEPENDS+= FLAC:${PORTSDIR}/audio/flac .else CONFIGURE_ARGS+=--disable-flac .endif -.if !defined(WITHOUT_MIKMOD) -LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod +.if ${PORT_OPTIONS:MMIKMOD} +LIB_DEPENDS+= mikmod:${PORTSDIR}/audio/libmikmod .else CONFIGURE_ARGS+=--disable-mikmod .endif -.if !defined(WITHOUT_MODPLUG) -LIB_DEPENDS+= modplug.1:${PORTSDIR}/audio/libmodplug +.if ${PORT_OPTIONS:MMODPLUG} +LIB_DEPENDS+= modplug:${PORTSDIR}/audio/libmodplug .else CONFIGURE_ARGS+=--disable-modplug .endif -.if !defined(WITHOUT_PHYSFS) -LIB_DEPENDS+= physfs.1:${PORTSDIR}/devel/physfs +.if ${PORT_OPTIONS:MPHYSFS} +LIB_DEPENDS+= physfs:${PORTSDIR}/devel/physfs .else CONFIGURE_ARGS+=--disable-physfs .endif -.if !defined(WITHOUT_SMPEG) -LIB_DEPENDS+= smpeg.1:${PORTSDIR}/multimedia/smpeg +.if ${PORT_OPTIONS:MSMPEG} +LIB_DEPENDS+= smpeg:${PORTSDIR}/multimedia/smpeg CONFIGURE_ARGS+=--disable-mpglib .else CONFIGURE_ARGS+=--disable-smpeg .endif -.if !defined(WITHOUT_SPEEX) -LIB_DEPENDS+= speex.1:${PORTSDIR}/audio/speex +.if ${PORT_OPTIONS:MSPEEX} +LIB_DEPENDS+= speex:${PORTSDIR}/audio/speex .else CONFIGURE_ARGS+=--disable-speex .endif -.if !defined(WITHOUT_MIDI) +.if ${PORT_OPTIONS:MMIDI} RUN_DEPENDS+= ${LOCALBASE}/lib/timidity/goemon.cfg:${PORTSDIR}/audio/timidity BUILD_DEPENDS+= ${LOCALBASE}/lib/timidity/goemon.cfg:${PORTSDIR}/audio/timidity .else CONFIGURE_ARGS+=--disable-midi .endif -.if !defined(WITHOUT_VORBIS) -LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis +.if ${PORT_OPTIONS:MVORBIS} +LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis .else CONFIGURE_ARGS+=--disable-ogg .endif -.if defined(WITHOUT_SMPEG) pre-everything:: +.if !${PORT_OPTIONS:MSMPEG} @${ECHO_CMD} @${ECHO_CMD} "WARNING: the built-in MP3 support is currently broken, consider enabling the SMPEG option to use that library instead." | ${FMT} @${ECHO_CMD} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 13:11:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 31826106566B; Sun, 7 Oct 2012 13:11:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1BA068FC12; Sun, 7 Oct 2012 13:11: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 q97DBK2V004143; Sun, 7 Oct 2012 13:11:20 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97DBK8a004141; Sun, 7 Oct 2012 13:11:20 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071311.q97DBK8a004141@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 13:11:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305471 - head/net/tintin++ X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 13:11:21 -0000 Author: sunpoet Date: Sun Oct 7 13:11:20 2012 New Revision: 305471 URL: http://svn.freebsd.org/changeset/ports/305471 Log: - Pet portlint: remove ABI version number from LIB_DEPENDS - Convert to new options framework - Cleanup Makefile header Modified: head/net/tintin++/Makefile (contents, props changed) Modified: head/net/tintin++/Makefile ============================================================================== --- head/net/tintin++/Makefile Sun Oct 7 13:07:29 2012 (r305470) +++ head/net/tintin++/Makefile Sun Oct 7 13:11:20 2012 (r305471) @@ -1,9 +1,5 @@ -# New ports collection makefile for: tintin++ -# Date created: 15 Nov 1994 -# Whom: ache -# +# Created by: ache # $FreeBSD$ -# PORTNAME= tintin++ PORTVERSION= 2.00.8 @@ -17,9 +13,10 @@ COMMENT= A client program to help playin LICENSE= GPLv2 -LIB_DEPENDS= pcre.1:${PORTSDIR}/devel/pcre +LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre -OPTIONS= BIG5 "Big5 support" off +OPTIONS_DEFINE= BIG5 DOCS +BIG5_DESC= Big5 support CONFIGURE_ARGS= --includedir=${LOCALBASE}/include \ --libdir=${LOCALBASE}/lib \ @@ -37,7 +34,7 @@ PORTDOCS= ${DOCS:T} .include -.if defined(WITH_BIG5) +.if ${PORT_OPTIONS:MBIG5} CONFIGURE_ARGS+=--enable-big5 .endif @@ -46,7 +43,7 @@ post-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tt++ ${PREFIX}/bin/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${INSTALL} -d ${DOCSDIR}/ cd ${WRKSRC}/../ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/ .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 13:13:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A9371065670; Sun, 7 Oct 2012 13:13:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 03F618FC0A; Sun, 7 Oct 2012 13:13:11 +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 q97DDAp7004455; Sun, 7 Oct 2012 13:13:10 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97DDA35004453; Sun, 7 Oct 2012 13:13:10 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071313.q97DDA35004453@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 13:13:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305472 - head/benchmarks/iperf X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 13:13:11 -0000 Author: sunpoet Date: Sun Oct 7 13:13:10 2012 New Revision: 305472 URL: http://svn.freebsd.org/changeset/ports/305472 Log: - Add LICENSE - Convert to new options framework - Cleanup Makefile header Modified: head/benchmarks/iperf/Makefile (contents, props changed) Modified: head/benchmarks/iperf/Makefile ============================================================================== --- head/benchmarks/iperf/Makefile Sun Oct 7 13:11:20 2012 (r305471) +++ head/benchmarks/iperf/Makefile Sun Oct 7 13:13:10 2012 (r305472) @@ -1,9 +1,5 @@ -# New ports collection makefile for: iperf -# Date Created: 20 May 2001 -# Whom: Pete Fritchman -# +# Created by: Pete Fritchman # $FreeBSD$ -# PORTNAME= iperf PORTVERSION= 2.0.5 @@ -13,8 +9,10 @@ MASTER_SITES= SF/${PORTNAME} MAINTAINER= sunpoet@FreeBSD.org COMMENT= A tool to measure maximum TCP and UDP bandwidth -OPTIONS= IPV6 "Enable support to IPv6" on \ - THREADS "Enable threads support" on +LICENSE= BSD + +OPTIONS_DEFINE= DOCS IPV6 THREADS +OPTIONS_DEFAULT=IPV6 THREADS GNU_CONFIGURE= yes @@ -24,22 +22,24 @@ PORTDOCS= * .include -.if defined(WITHOUT_IPV6) -CONFIGURE_ARGS+=--disable-ipv6 -.else +.if ${PORT_OPTIONS:MIPV6} CATEGORIES+= ipv6 +CONFIGURE_ARGS+=--enable-ipv6 +.else +CONFIGURE_ARGS+=--disable-ipv6 .endif -.if defined(WITHOUT_THREADS) -CONFIGURE_ARGS+=--disable-threads -.else +.if ${PORT_OPTIONS:MTHREADS} +CONFIGURE_ARGS+=--enable-threads LDFLAGS+= ${PTHREAD_LIBS} +.else +CONFIGURE_ARGS+=--disable-threads .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ - ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/doc/*.gif ${WRKSRC}/doc/*.html ${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} README doc/*.gif doc/*.html ${DOCSDIR}/ .endif .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 13:23:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7F8B106566B; Sun, 7 Oct 2012 13:23:27 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D114D8FC08; Sun, 7 Oct 2012 13:23:27 +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 q97DNR53005847; Sun, 7 Oct 2012 13:23:27 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97DNRv9005845; Sun, 7 Oct 2012 13:23:27 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210071323.q97DNRv9005845@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 13:23:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305473 - head/polish/gnugadu2 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 13:23:28 -0000 Author: eadler Date: Sun Oct 7 13:23:27 2012 New Revision: 305473 URL: http://svn.freebsd.org/changeset/ports/305473 Log: Convert to OptionsNG. Modified: head/polish/gnugadu2/Makefile Modified: head/polish/gnugadu2/Makefile ============================================================================== --- head/polish/gnugadu2/Makefile Sun Oct 7 13:13:10 2012 (r305472) +++ head/polish/gnugadu2/Makefile Sun Oct 7 13:23:27 2012 (r305473) @@ -1,9 +1,5 @@ -# Ports collection makefile for: gnugadu2 -# Date created: 12 january 2004 -# Whom: smyru@heron.pl -# +# Created by: smyru@heron.pl # $FreeBSD$ -# PORTNAME= gnugadu2 PORTVERSION= 2.3.0 @@ -49,32 +45,41 @@ CONFIGURE_ARGS= --disable-esdtest \ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS= TLEN "Enable Tlen.pl network plugin" off \ - JABBER "Enable Jabber loudmouth plugin" off \ - DBUS "Enable D-Bus plugin" off \ - DOCKLET "Enable fd.o docklet plugin" on \ - DOCKAPP "Enable WindowMaker dockapp plugin" off \ - GTKSPELL "Enable GTKSpell checker" off \ - XOSD "Enable On-Screen-Display messages" off \ - ARTS "Build with aRts sound server" off \ - ESOUND "Build with esound sound server" off +OPTIONS_DEFINE= ARTS AUTODETECT DBUS DOCKAPP DOCKLET ESOUND \ + GTKSPELL JABBER TLEN XOSD +OPTIONS_DEFAULT=DOCKLET -.include +AUTODETECT_DESC=Autodetect plugins +DOCKLET_DESC= Enable fd.o docklet plugin +DOCKAPP_DESC= Enable WindowMaker dockapp plugin +GTKSPELL_DESC= Enable GTKSpell checker +TLEN_DESC= Enable Tlen.pl network plugin +XOSD_DESC= Enable On-Screen-Display messages -.if (${HAVE_GNOME:Mesound}!="") && !defined(WITHOUT_ESOUND) -WITH_ESOUND= yes -.endif +#.if ${${HAVE_GNOME:Mesound}!="" && empty(PORT_OPTIONS:MESOUND) -# does not work with newer dbus versions -.if exists(${LOCALBASE}/lib/libdbus-1.so) && !defined(WITHOUT_DBUS) -WITH_DBUS= yes -.endif +.include # can't change this untile HAVE_GNOME has been fixed -.if exists(${LOCALBASE}/lib/libgtkspell.so) && !defined(WITHOUT_GTKSPELL) -WITH_GTKSPELL= yes +.if ${PORT_OPTIONS:MAUTODETECT} +#detect arts +.if exists(${LOCALBASE}/lib/libartsc.so) && !${PORT_OPTIONS:MARTS} +PORT_OPTIONS+= ARTS +.endif +#detect dbus - only works with old versions +.if exists(${LOCALBASE}/lib/libdbus-1.so) && !${PORT_OPTIONS:MDBUS} +PORT_OPTIONS+= DBUS +.endif +#detect esound +.if ${HAVE_GNOME:Mesound}!="" && !${PORT_OPTIONS:MESOUND} +PORT_OPTIONS+= ESOUND +.endif +#detect gtkspell +.if exists(${LOCALBASE}/lib/libgtkspell.so) && !${PORT_OPTIONS:MGTKSPELL} +PORT_OPTIONS+= GTKSPELL +.endif .endif -.if defined(WITH_TLEN) +.if ${PORT_OPTIONS:MTLEN} LIB_DEPENDS+= tlen.1:${PORTSDIR}/polish/libtlen CONFIGURE_ARGS+= --with-tlen PLIST_SUB+= TLEN:="" @@ -83,7 +88,7 @@ CONFIGURE_ARGS+= --without-tlen PLIST_SUB+= TLEN:="@comment " .endif -.if defined(WITH_JABBER) +.if ${PORT_OPTIONS:MJABBER} LIB_DEPENDS+= loudmouth-1.0:${PORTSDIR}/net-im/loudmouth CONFIGURE_ARGS+= --with-jabber PLIST_SUB+= JABBER:="" @@ -92,7 +97,7 @@ CONFIGURE_ARGS+= --without-jabber PLIST_SUB+= JABBER:="@comment " .endif -.if defined(WITHOUT_DOCKLET) +.if !${PORT_OPTIONS:MDOCKLET} CONFIGURE_ARGS+= --without-docklet-system-tray PLIST_SUB+= DOCKLET:="@comment " .else @@ -100,7 +105,7 @@ CONFIGURE_ARGS+= --with-docklet-system-t PLIST_SUB+= DOCKLET:="" .endif -.if defined(WITH_DOCKAPP) +.if ${PORT_OPTIONS:MDOCKAPP} CONFIGURE_ARGS+= --with-docklet_dockapp PLIST_SUB+= DOCKAPP:="" .else @@ -108,14 +113,14 @@ CONFIGURE_ARGS+= --without-docklet_docka PLIST_SUB+= DOCKAPP:="@comment " .endif -.if defined(WITH_GTKSPELL) +.if ${PORT_OPTIONS:MGTKSPELL} LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell CONFIGURE_ARGS+= --with-gtkspell .else CONFIGURE_ARGS+= --without-gtkspell .endif -.if defined(WITH_DBUS) +.if ${PORT_OPTIONS:MDBUS} LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus CONFIGURE_ARGS+= --with-dbus \ --with-dbus-dir=${PREFIX}/share/dbus-1/services @@ -125,7 +130,7 @@ CONFIGURE_ARGS+= --without-dbus PLIST_SUB+= DBUS:="@comment " .endif -.if defined(WITH_ESOUND) +.if ${PORT_OPTIONS:MESOUND} PKGNAMESUFFIX= -esound USE_GNOME+= esound CONFIGURE_ARGS+= --with-esd @@ -135,7 +140,7 @@ CONFIGURE_ARGS+= --without-esd PLIST_SUB+= ESOUND:="@comment " .endif -.if defined(WITH_ARTS) +.if ${PORT_OPTIONS:MARTS} LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts CONFIGURE_ARGS+= --with-arts PLIST_SUB+= ARTS:="" @@ -144,11 +149,10 @@ CONFIGURE_ARGS+= --without-arts PLIST_SUB+= ARTS:="@comment " .endif -.if defined(WITH_XOSD) +.if ${PORT_OPTIONS:MXOSD} LIB_DEPENDS+= xosd.4:${PORTSDIR}/misc/xosd CONFIGURE_ARGS+= --with-xosd -PLIST_SUB+= XOSD:="" -.else +PLIST_SUB+= XOSD:="".else CONFIGURE_ARGS+= --without-xosd PLIST_SUB+= XOSD:="@comment " .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 13:30:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A30A106564A; Sun, 7 Oct 2012 13:30:19 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 858308FC12; Sun, 7 Oct 2012 13:30: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 q97DUJYh006713; Sun, 7 Oct 2012 13:30:19 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97DUJjF006711; Sun, 7 Oct 2012 13:30:19 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210071330.q97DUJjF006711@svn.freebsd.org> From: Carlo Strub Date: Sun, 7 Oct 2012 13:30:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305474 - head/irc/unreal X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 13:30:19 -0000 Author: cs Date: Sun Oct 7 13:30:18 2012 New Revision: 305474 URL: http://svn.freebsd.org/changeset/ports/305474 Log: Patch to add chown modify at the end of the install. This will correctly assign the owner of the config, log, and run directories for the owner specified by the port (by default this is ircd:ircd) PR: ports/172184 Submitted by: Jr Aquino (maintainer) Modified: head/irc/unreal/Makefile Modified: head/irc/unreal/Makefile ============================================================================== --- head/irc/unreal/Makefile Sun Oct 7 13:23:27 2012 (r305473) +++ head/irc/unreal/Makefile Sun Oct 7 13:30:18 2012 (r305474) @@ -176,6 +176,9 @@ post-install: @[ -f ${CONFIGDIR}/help.conf ] || ${INSTALL_DATA} ${EXAMPLESDIR}/help.conf ${CONFIGDIR} @[ -f ${CONFIGDIR}/spamfilter.conf ] || ${INSTALL_DATA} ${EXAMPLESDIR}/spamfilter.conf ${CONFIGDIR} @[ -f ${CONFIGDIR}/unrealircd.conf ] || ${INSTALL_DATA} ${EXAMPLESDIR}/unrealircd.conf ${CONFIGDIR} + @${CHOWN} -R ${USERS}:${GROUPS} ${CONFIGDIR} + @${CHOWN} ${USERS}:${GROUPS} ${RUNDIR} + @${CHOWN} ${USERS}:${GROUPS} ${LOGDIR} .if defined(WITH_SQLMOD) @${CP} ${WRKSRC}/SQLMod/sample.conf ${CONFIGDIR}/m_sqlmod.conf @${CP} ${WRKSRC}/SQLMod/Changes ${DOCSDIR}/Changes.sqlmod From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 13:32:31 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 65B7D1065670; Sun, 7 Oct 2012 13:32:31 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4FF498FC14; Sun, 7 Oct 2012 13:32:31 +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 q97DWV0H007104; Sun, 7 Oct 2012 13:32:31 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97DWV3l007101; Sun, 7 Oct 2012 13:32:31 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210071332.q97DWV3l007101@svn.freebsd.org> From: Carlo Strub Date: Sun, 7 Oct 2012 13:32:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305475 - head/games/alephone X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 13:32:31 -0000 Author: cs Date: Sun Oct 7 13:32:30 2012 New Revision: 305475 URL: http://svn.freebsd.org/changeset/ports/305475 Log: Update to 20120514 PR: ports/172445 Submitted by: Green Dog (maintainer) Modified: head/games/alephone/Makefile head/games/alephone/distinfo Modified: head/games/alephone/Makefile ============================================================================== --- head/games/alephone/Makefile Sun Oct 7 13:30:18 2012 (r305474) +++ head/games/alephone/Makefile Sun Oct 7 13:32:30 2012 (r305475) @@ -6,10 +6,9 @@ # PORTNAME= alephone -PORTVERSION= 20120128 -PORTREVISION= 2 +PORTVERSION= 20120514 CATEGORIES= games -MASTER_SITES= SF/marathon/Aleph%20One/2012-01-28 +MASTER_SITES= SF/marathon/Aleph%20One/2012-05-14 DISTNAME= AlephOne-${PORTVERSION} MAINTAINER= fiziologus@gmail.com Modified: head/games/alephone/distinfo ============================================================================== --- head/games/alephone/distinfo Sun Oct 7 13:30:18 2012 (r305474) +++ head/games/alephone/distinfo Sun Oct 7 13:32:30 2012 (r305475) @@ -1,2 +1,2 @@ -SHA256 (AlephOne-20120128.tar.bz2) = 45a65f34074b93358bbba2e2f1232324f850f7f7d1a20512363d411e5c46298a -SIZE (AlephOne-20120128.tar.bz2) = 4578336 +SHA256 (AlephOne-20120514.tar.bz2) = 6a7797af74cf3fae7f5505e64ffe57c56f7331521cb569bcc8b7d7041cb3718b +SIZE (AlephOne-20120514.tar.bz2) = 4716348 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 13:34:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A55DF106566C; Sun, 7 Oct 2012 13:34:07 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3BFE38FC08; Sun, 7 Oct 2012 13:34: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 q97DY7ul007379; Sun, 7 Oct 2012 13:34:07 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97DY7uY007377; Sun, 7 Oct 2012 13:34:07 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210071334.q97DY7uY007377@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 13:34:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305476 - head/www/openacs X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 13:34:07 -0000 Author: eadler Date: Sun Oct 7 13:34:06 2012 New Revision: 305476 URL: http://svn.freebsd.org/changeset/ports/305476 Log: Convert to OptionsNG Modified: head/www/openacs/Makefile Modified: head/www/openacs/Makefile ============================================================================== --- head/www/openacs/Makefile Sun Oct 7 13:32:30 2012 (r305475) +++ head/www/openacs/Makefile Sun Oct 7 13:34:06 2012 (r305476) @@ -1,9 +1,5 @@ -# New ports collection makefile for: openACS -# Date created: July 2005 -# Whom: Aldert Nooitgedagt -# +# Created by: Aldert Nooitgedagt # $FreeBSD$ -# PORTNAME?= openacs DISTVERSION?= 5.7.0 @@ -50,10 +46,12 @@ PKGDEINSTALL= ${WRKDIR}/pkg-deinstall PORTDOCS= * -OPTIONS= TCLTHREAD "Depend on tclthread" on \ - TCLWEBTEST "Depend on tclwebteset" on +OPTIONS_DEFINE= DOCS TCLTHREAD TCLWEBTEST +OPTIONS_DEFAULT=TCLTHREAD TCLWEBTEST +TCLTHREAD_DESC= Depend on tclthread +TCLWEBTEST_DESC=Depend on tclwebtest -.include +.include # Parse ${PORTSDIR}/UIDs and GIDs for the defaults USER!= ${GREP} -E '^${OPENACS_USER}:' ${PORTSDIR}/UIDs | \ @@ -82,12 +80,12 @@ SUB_LIST+= OPENACS_USER=${OPENACS_USER} SU=${SU} PGREP=${PGREP} AWK=${AWK} CP=${CP} GREP=${GREP} \ PW=${PW} CHOWN=${CHOWN} CHMOD=${CHMOD} -.if !defined(WITHOUT_TCLTHREAD) +.if ${PORT_OPTIONS:MTCLTHREAD} TCLTHREAD_VER?= 2.6.7 RUN_DEPENDS+= ${LOCALBASE}/lib/thread${TCLTHREAD_VER}/libthread.so.1:${PORTSDIR}/devel/tclthread .endif -.if !defined(WITHOUT_TCLWEBTEST) +.if ${PORT_OPTIONS:MTCLWEBTEST} RUN_DEPENDS+= ${LOCALBASE}/bin/tclwebtest:${PORTSDIR}/www/tclwebtest .endif @@ -128,7 +126,7 @@ do-install: @ if ! [ -f ${OPENACSBASE}/etc/${PORTNAME}-config.tcl ]; then \ ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-config.tcl ${OPENACSBASE}/etc/${PORTNAME}-config.tcl ; \ fi -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @ ${ECHO} "Installing docs" @ ${MKDIR} ${DOCSDIR} .for FILE in ChangeLog readme.txt license.txt @@ -141,4 +139,4 @@ do-install: @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL @${CAT} ${PKGMESSAGE} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 13:59:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9DBE61065670; Sun, 7 Oct 2012 13:59:40 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7E0158FC08; Sun, 7 Oct 2012 13:59: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 q97DxedH010713; Sun, 7 Oct 2012 13:59:40 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97DxeFd010704; Sun, 7 Oct 2012 13:59:40 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210071359.q97DxeFd010704@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 7 Oct 2012 13:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305477 - in head: archivers/p7zip print/latex-ltablex print/lyx print/lyx16 sysutils/xstow x11-fonts/proggy_fonts-ttf x11-themes/gtk-oxygen-engine x11-themes/gtk3-oxygen-engine X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 13:59:40 -0000 Author: rakuco Date: Sun Oct 7 13:59:39 2012 New Revision: 305477 URL: http://svn.freebsd.org/changeset/ports/305477 Log: Clean up the headers of the ports I maintain. Modified: head/archivers/p7zip/Makefile head/print/latex-ltablex/Makefile head/print/lyx/Makefile head/print/lyx16/Makefile head/sysutils/xstow/Makefile head/x11-fonts/proggy_fonts-ttf/Makefile head/x11-themes/gtk-oxygen-engine/Makefile head/x11-themes/gtk3-oxygen-engine/Makefile Modified: head/archivers/p7zip/Makefile ============================================================================== --- head/archivers/p7zip/Makefile Sun Oct 7 13:34:06 2012 (r305476) +++ head/archivers/p7zip/Makefile Sun Oct 7 13:59:39 2012 (r305477) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p7zip -# Date created: Sun Jul 18 15:07:26 CEST 2004 -# Whom: Juergen Lock -# +# Created by: Juergen Lock # $FreeBSD$ -# PORTNAME= p7zip PORTVERSION= 9.20.1 Modified: head/print/latex-ltablex/Makefile ============================================================================== --- head/print/latex-ltablex/Makefile Sun Oct 7 13:34:06 2012 (r305476) +++ head/print/latex-ltablex/Makefile Sun Oct 7 13:59:39 2012 (r305477) @@ -1,7 +1,3 @@ -# New ports collection makefile for: print/latex-ltablex -# Date created: 14 April 2011 -# Whom: Raphael Kubo da Costa (kubito@gmail.com) -# # $FreeBSD$ PORTNAME= ltablex Modified: head/print/lyx/Makefile ============================================================================== --- head/print/lyx/Makefile Sun Oct 7 13:34:06 2012 (r305476) +++ head/print/lyx/Makefile Sun Oct 7 13:59:39 2012 (r305477) @@ -1,9 +1,5 @@ -# New ports collection makefile for: lyx -# Date created: Sa 12 Okt 1996 19:20:51 MET DST -# Whom: Andreas Klemm -# +# Created by: Klemm # $FreeBSD$ -# PORTNAME= lyx PORTVERSION= ${MAJOR_VERSION}.${MINOR_VERSION} Modified: head/print/lyx16/Makefile ============================================================================== --- head/print/lyx16/Makefile Sun Oct 7 13:34:06 2012 (r305476) +++ head/print/lyx16/Makefile Sun Oct 7 13:59:39 2012 (r305477) @@ -1,9 +1,5 @@ -# New ports collection makefile for: lyx -# Date created: Sa 12 Okt 1996 19:20:51 MET DST -# Whom: Andreas Klemm -# +# Created by: Andreas Klemm # $FreeBSD$ -# PORTNAME= lyx PORTVERSION= ${MAJOR_VERSION}.${MINOR_VERSION} Modified: head/sysutils/xstow/Makefile ============================================================================== --- head/sysutils/xstow/Makefile Sun Oct 7 13:34:06 2012 (r305476) +++ head/sysutils/xstow/Makefile Sun Oct 7 13:59:39 2012 (r305477) @@ -1,9 +1,5 @@ -# New ports collection makefile for: xstow -# Date created: 2002-12-31 -# Whom: Alan Eldridge -# +# Created by: Alan Eldridge # $FreeBSD$ -# PORTNAME= xstow PORTVERSION= 1.0.0 Modified: head/x11-fonts/proggy_fonts-ttf/Makefile ============================================================================== --- head/x11-fonts/proggy_fonts-ttf/Makefile Sun Oct 7 13:34:06 2012 (r305476) +++ head/x11-fonts/proggy_fonts-ttf/Makefile Sun Oct 7 13:59:39 2012 (r305477) @@ -1,9 +1,4 @@ -# New ports collection makefile for: proggy_fonts-x11 -# Date created: 22 October 2010 -# Whom: Raphael Kubo da Costa -# # $FreeBSD$ -# PORTNAME= proggy_fonts-ttf PORTVERSION= 1.0 Modified: head/x11-themes/gtk-oxygen-engine/Makefile ============================================================================== --- head/x11-themes/gtk-oxygen-engine/Makefile Sun Oct 7 13:34:06 2012 (r305476) +++ head/x11-themes/gtk-oxygen-engine/Makefile Sun Oct 7 13:59:39 2012 (r305477) @@ -1,9 +1,5 @@ -# New ports collection makefile for: gtk-oxygen-engine -# Date created: 2010-12-14 -# Whom: Max Brazhnikov -# +# Created by: Max Brazhnikov # $FreeBSD$ -# PORTNAME= oxygen PORTVERSION= 1.3.1 Modified: head/x11-themes/gtk3-oxygen-engine/Makefile ============================================================================== --- head/x11-themes/gtk3-oxygen-engine/Makefile Sun Oct 7 13:34:06 2012 (r305476) +++ head/x11-themes/gtk3-oxygen-engine/Makefile Sun Oct 7 13:59:39 2012 (r305477) @@ -1,9 +1,5 @@ -# New ports collection makefile for: gtk-oxygen-engine -# Date created: 2010-12-14 -# Whom: Max Brazhnikov -# +# Created by: Max Brazhnikov # $FreeBSD$ -# PORTNAME= oxygen PORTVERSION= 1.0.3 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:04:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3E841065673; Sun, 7 Oct 2012 14:04:10 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8371E8FC08; Sun, 7 Oct 2012 14:04: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 q97E4ANJ011355; Sun, 7 Oct 2012 14:04:10 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97E4Afd011353; Sun, 7 Oct 2012 14:04:10 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201210071404.q97E4Afd011353@svn.freebsd.org> From: Jimmy Olgeni Date: Sun, 7 Oct 2012 14:04:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305478 - head/lang/newlisp X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:04:10 -0000 Author: olgeni Date: Sun Oct 7 14:04:09 2012 New Revision: 305478 URL: http://svn.freebsd.org/changeset/ports/305478 Log: Convert to OptionsNG. Modified: head/lang/newlisp/Makefile (contents, props changed) Modified: head/lang/newlisp/Makefile ============================================================================== --- head/lang/newlisp/Makefile Sun Oct 7 13:59:39 2012 (r305477) +++ head/lang/newlisp/Makefile Sun Oct 7 14:04:09 2012 (r305478) @@ -1,9 +1,5 @@ -# New ports collection makefile for: newlisp -# Date created: 2006-09-13 -# Whom: Stanislav Sedov -# +# Created by: Stanislav Sedov # $FreeBSD$ -# PORTNAME= newlisp PORTVERSION= 10.3.3 @@ -18,7 +14,7 @@ COMMENT= LISP like scripting language HAS_CONFIGURE= yes ALL_TARGET= default -MAN1= newlisp.1 newlispdoc.1 +MAN1= newlisp.1 newlispdoc.1 REINPLACE_ARGS= -i "" @@ -30,11 +26,8 @@ DOCS= CHANGES CodePatterns.html Express manual_frame.html newLISPdoc.html \ newlisp_index.html newlisp_manual.html \ -OPTIONS= GMP "Enable GMP math library support" off \ - MYSQL "Build with mysql support" off \ - PGSQL "Build with postgresql support" off \ - SQLITE "Build with sqlite support" off \ - GUISERV "Install GUI server (in JAVA)" off +OPTIONS_DEFINE= GMP MYSQL PGSQL SQLITE GUISERV +GUISERV_DESC= Install GUI server (in Java) .include @@ -42,7 +35,7 @@ OPTIONS= GMP "Enable GMP math library su CFLAGS+= -DNEWLISP64 .endif -.if defined(WITH_GMP) +.if ${PORT_OPTIONS:MGMP} LIB_DEPENDS+= gmp.10:${PORTSDIR}/math/gmp MODULES+= gmp PLIST_SUB+= GMP="" @@ -50,7 +43,7 @@ PLIST_SUB+= GMP="" PLIST_SUB+= GMP="@comment " .endif -.if defined(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes MODULES+= mysql PLIST_SUB+= MYSQL="" @@ -58,23 +51,23 @@ PLIST_SUB+= MYSQL="" PLIST_SUB+= MYSQL="@comment " .endif -.if defined(WITH_PGSQL) -USE_PGSQL=yes +.if ${PORT_OPTIONS:MPGSQL} +USE_PGSQL= yes MODULES+= postgres PLIST_SUB+= PGSQL="" .else PLIST_SUB+= PGSQL="@comment " .endif -.if defined(WITH_SQLITE) -USE_SQLITE=3 +.if ${PORT_OPTIONS:MSQLITE} +USE_SQLITE= 3 MODULES+= sqlite3 PLIST_SUB+= SQLITE="" .else PLIST_SUB+= SQLITE="@comment " .endif -.if defined(WITH_GUISERV) +.if ${PORT_OPTIONS:MGUISERV} PLIST_SUB+= GUISERV="" .else PLIST_SUB+= GUISERV="@comment " @@ -135,7 +128,7 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/doc/newlisp.1 ${PREFIX}/man/man1/ ${INSTALL_MAN} ${WRKSRC}/doc/newlispdoc.1 ${PREFIX}/man/man1/ -.if defined(WITH_GUISERV) +.if ${PORT_OPTIONS:MGUISERV} ${MKDIR} ${DATADIR}/guiserver @(cd ${WRKSRC}/guiserver/ && ${COPYTREE_SHARE} \*.lsp \ ${DATADIR}/guiserver/ \ @@ -146,7 +139,7 @@ do-install: ${PREFIX}/bin/newlisp-edit .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ ${MKDIR} ${EXAMPLESDIR}/ @@ -154,12 +147,12 @@ do-install: ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/doc/,} ${DOCSDIR}/ -. if defined(WITH_GUISERV) +.if ${PORT_OPTIONS:MGUISERV} ${MKDIR} ${DOCSDIR}/guiserver ${INSTALL_DATA} ${WRKSRC}/guiserver/index.html \ ${WRKSRC}/guiserver/guiserver.lsp.html \ ${DOCSDIR}/guiserver/ -. endif +.endif .endif .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:15:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD14B106566C; Sun, 7 Oct 2012 14:15:58 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B6DB38FC08; Sun, 7 Oct 2012 14:15: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 q97EFwnI012835; Sun, 7 Oct 2012 14:15:58 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97EFwm3012833; Sun, 7 Oct 2012 14:15:58 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201210071415.q97EFwm3012833@svn.freebsd.org> From: Jimmy Olgeni Date: Sun, 7 Oct 2012 14:15:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305479 - head/x11/eterm X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:15:58 -0000 Author: olgeni Date: Sun Oct 7 14:15:58 2012 New Revision: 305479 URL: http://svn.freebsd.org/changeset/ports/305479 Log: Convert to OptionsNG and pet portlint. Modified: head/x11/eterm/Makefile (contents, props changed) Modified: head/x11/eterm/Makefile ============================================================================== --- head/x11/eterm/Makefile Sun Oct 7 14:04:09 2012 (r305478) +++ head/x11/eterm/Makefile Sun Oct 7 14:15:58 2012 (r305479) @@ -1,9 +1,5 @@ -# New ports collection makefile for: eterm -# Date created: 24 November 1997 -# Whom: Murray Stokely -# +# Created by: Murray Stokely # $FreeBSD$ -# PORTNAME= eterm PORTVERSION= 0.9.6 @@ -16,7 +12,7 @@ MAINTAINER?= olgeni@FreeBSD.org COMMENT?= X11 terminal emulator based on rxvt/xterm BUILD_DEPENDS= man2html:${PORTSDIR}/textproc/man2html -LIB_DEPENDS= ast.2:${PORTSDIR}/devel/libast +LIB_DEPENDS= ast:${PORTSDIR}/devel/libast USE_AUTOTOOLS= libtool USE_LDCONFIG= yes @@ -26,7 +22,9 @@ CONFIGURE_ARGS?=--enable-trans --enable- --enable-multi-charset CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS= MMX "With MMX instruction set" off + +OPTIONS_DEFINE= MMX + USE_XORG= x11 xt USE_ICONV= yes USE_EFL= imlib2 @@ -35,16 +33,16 @@ MAN1= Eterm.1 .include -.if defined(WITH_MMX) && (${ARCH} == "i386") +.if ${PORT_OPTIONS:MMMX} && (${ARCH} == "i386") CONFIGURE_ARGS+=--enable-mmx .endif post-patch: - @${FIND} ${WRKSRC} -name '*.orig' | ${XARGS} ${RM} + @${FIND} ${WRKSRC} -name '*.orig' -delete post-install: @${CHMOD} 4711 ${PREFIX}/bin/Eterm -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/ReleaseNotes ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/doc/Eterm_reference.html ${DOCSDIR} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:21:52 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E052B106566B; Sun, 7 Oct 2012 14:21:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B07348FC08; Sun, 7 Oct 2012 14:21:52 +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 q97ELqbm013659; Sun, 7 Oct 2012 14:21:52 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97ELqJP013656; Sun, 7 Oct 2012 14:21:52 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071421.q97ELqJP013656@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 14:21:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305480 - head/shells/ksh93 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:21:53 -0000 Author: sunpoet Date: Sun Oct 7 14:21:52 2012 New Revision: 305480 URL: http://svn.freebsd.org/changeset/ports/305480 Log: - Update to 2012-08-01 - Convert to new options framework Changes: http://www2.research.att.com/~gsf/download/gen/ast-ksh.html#ksh93 changes http://www2.research.att.com/~gsf/download/gen/INIT.html#INIT changes Modified: head/shells/ksh93/Makefile (contents, props changed) head/shells/ksh93/distinfo (contents, props changed) Modified: head/shells/ksh93/Makefile ============================================================================== --- head/shells/ksh93/Makefile Sun Oct 7 14:15:58 2012 (r305479) +++ head/shells/ksh93/Makefile Sun Oct 7 14:21:52 2012 (r305480) @@ -23,7 +23,7 @@ COMMENT= Official AT&T release of KornSh LICENSE= EPL -OPTIONS= STATIC "Static linking" off +OPTIONS_DEFINE= STATIC FETCH_ARGS= -Rr FETCH_ENV= HTTP_AUTH='basic:*:I accept www.opensource.org/licenses/cpl:.' @@ -32,12 +32,12 @@ NO_WRKSUBDIR= yes MAN1= ksh93.1 -INITVERSION= 2012-02-29 -KSHVERSION= 2012-02-29 +INITVERSION= 2012-08-01 +KSHVERSION= 2012-08-01 .include -.if defined(WITH_STATIC) +.if ${PORT_OPTIONS:MSTATIC} MAKE_ENV+= LDFLAGS+=-static .endif Modified: head/shells/ksh93/distinfo ============================================================================== --- head/shells/ksh93/distinfo Sun Oct 7 14:15:58 2012 (r305479) +++ head/shells/ksh93/distinfo Sun Oct 7 14:21:52 2012 (r305480) @@ -1,4 +1,4 @@ -SHA256 (ksh93/INIT.2012-02-29.tgz) = da4a886d28f75f8a011d522697272cd196cdcfb406f92d47f8b0a6608d786896 -SIZE (ksh93/INIT.2012-02-29.tgz) = 379873 -SHA256 (ksh93/ast-ksh.2012-02-29.tgz) = d09a2002bd458748960adf0899565b12c195e319101af08eb2f9f821581c8b4e -SIZE (ksh93/ast-ksh.2012-02-29.tgz) = 2027575 +SHA256 (ksh93/INIT.2012-08-01.tgz) = c40cf57e9b2186271a9c362a560aa4a6e25ba911a8258ab931d2bbdbce44cfe5 +SIZE (ksh93/INIT.2012-08-01.tgz) = 377769 +SHA256 (ksh93/ast-ksh.2012-08-01.tgz) = e6192cfa52a6a9fd20618cbaf3fa81f0cc9fd83525500757e83017275e962851 +SIZE (ksh93/ast-ksh.2012-08-01.tgz) = 2053532 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:22:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DFD781065701; Sun, 7 Oct 2012 14:22:14 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CA57E8FC19; Sun, 7 Oct 2012 14:22: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 q97EMEnR013755; Sun, 7 Oct 2012 14:22:14 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97EMEXh013753; Sun, 7 Oct 2012 14:22:14 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201210071422.q97EMEXh013753@svn.freebsd.org> From: Jimmy Olgeni Date: Sun, 7 Oct 2012 14:22:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305481 - head/devel/esdl X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:22:15 -0000 Author: olgeni Date: Sun Oct 7 14:22:14 2012 New Revision: 305481 URL: http://svn.freebsd.org/changeset/ports/305481 Log: Convert to OptionsNG. Modified: head/devel/esdl/Makefile Modified: head/devel/esdl/Makefile ============================================================================== --- head/devel/esdl/Makefile Sun Oct 7 14:21:52 2012 (r305480) +++ head/devel/esdl/Makefile Sun Oct 7 14:22:14 2012 (r305481) @@ -1,9 +1,5 @@ -# New ports collection makefile for: esdl -# Date Created: 2 January 2003 -# Whom: olgeni@FreeBSD.org -# +# Created by: olgeni@FreeBSD.org # $FreeBSD$ -# PORTNAME= esdl PORTVERSION= 1.0.1 @@ -29,19 +25,21 @@ ALL_TARGET= target PLIST_SUB= VERSION="${PORTVERSION}" MAKE_JOBS_SAFE= yes -OPTIONS= SDL_TTF "SDL_ttf support" on \ - SDL_IMAGE "SDL_image support" on +OPTIONS_DEFINE= SDL_TTF SDL_IMAGE +OPTIONS_DEFAULT=SDL_TTF SDL_IMAGE +SDL_TTF_DESC= SDL_ttf support +SDL_IMAGE_DESC= SDL_image support .include -.if !defined(WITHOUT_SDL_TTF) +.if ${PORT_OPTIONS:MSDL_TTF} USE_SDL+= ttf PLIST_SUB+= SDL_TTF="" .else PLIST_SUB+= SDL_TTF="@comment " .endif -.if !defined(WITHOUT_SDL_IMAGE) +.if ${PORT_OPTIONS:MSDL_IMAGE} USE_SDL+= image PLIST_SUB+= SDL_IMAGE="" .else @@ -53,10 +51,10 @@ post-extract: post-patch: @${REINPLACE_CMD} -Ee 's|addons|lib|' ${WRKSRC}/Makefile -.if !defined(WITHOUT_SDL_TTF) +.if ${PORT_OPTIONS:MSDL_TTF} @${REINPLACE_CMD} -e '/ENABLE_SDL_TTF = / s|no|yes|' ${WRKSRC}/Makefile .endif -.if !defined(WITHOUT_SDL_IMAGE) +.if ${PORT_OPTIONS:MSDL_IMAGE} @${REINPLACE_CMD} -e '/ENABLE_SDL_IMAGE = / s|no|yes|' ${WRKSRC}/Makefile .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:22:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 860A01065692; Sun, 7 Oct 2012 14:22:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6FDE28FC0A; Sun, 7 Oct 2012 14:22: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 q97EMerU013888; Sun, 7 Oct 2012 14:22:40 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97EMewV013885; Sun, 7 Oct 2012 14:22:40 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071422.q97EMewV013885@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 14:22:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305482 - head/devel/rubygem-listen X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:22:40 -0000 Author: sunpoet Date: Sun Oct 7 14:22:39 2012 New Revision: 305482 URL: http://svn.freebsd.org/changeset/ports/305482 Log: - Update to 0.5.3 Changes: https://github.com/guard/listen/blob/master/CHANGELOG.md Modified: head/devel/rubygem-listen/Makefile head/devel/rubygem-listen/distinfo Modified: head/devel/rubygem-listen/Makefile ============================================================================== --- head/devel/rubygem-listen/Makefile Sun Oct 7 14:22:14 2012 (r305481) +++ head/devel/rubygem-listen/Makefile Sun Oct 7 14:22:39 2012 (r305482) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= listen -PORTVERSION= 0.5.2 +PORTVERSION= 0.5.3 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-listen/distinfo ============================================================================== --- head/devel/rubygem-listen/distinfo Sun Oct 7 14:22:14 2012 (r305481) +++ head/devel/rubygem-listen/distinfo Sun Oct 7 14:22:39 2012 (r305482) @@ -1,2 +1,2 @@ -SHA256 (rubygem/listen-0.5.2.gem) = 2fa1d2072b8e842dce388ca2b83b19ec01a708f3534fc6bbc4f7bc79a0cf076e -SIZE (rubygem/listen-0.5.2.gem) = 19456 +SHA256 (rubygem/listen-0.5.3.gem) = b4cfede75867479f6370d9ad8cfc5aad54097f4cf0a02c373821981ef7e1d446 +SIZE (rubygem/listen-0.5.3.gem) = 19456 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:25:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E35B106566B; Sun, 7 Oct 2012 14:25:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EC3418FC0A; Sun, 7 Oct 2012 14:25:46 +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 q97EPkuH014334; Sun, 7 Oct 2012 14:25:46 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97EPk4K014331; Sun, 7 Oct 2012 14:25:46 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071425.q97EPk4K014331@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 14:25:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305483 - head/misc/pecl-timezonedb X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:25:47 -0000 Author: sunpoet Date: Sun Oct 7 14:25:46 2012 New Revision: 305483 URL: http://svn.freebsd.org/changeset/ports/305483 Log: - Update to 2012.6 - While I'm here, cleanup Makefile header Changes: http://pecl.php.net/package-changelog.php?package=timezonedb PR: ports/172345 Submitted by: John Marshall Modified: head/misc/pecl-timezonedb/Makefile head/misc/pecl-timezonedb/distinfo (contents, props changed) Modified: head/misc/pecl-timezonedb/Makefile ============================================================================== --- head/misc/pecl-timezonedb/Makefile Sun Oct 7 14:22:39 2012 (r305482) +++ head/misc/pecl-timezonedb/Makefile Sun Oct 7 14:25:46 2012 (r305483) @@ -1,12 +1,8 @@ -# Ports collection makefile for: pecl-timezonedb -# Date created: 20 Oct 2006 -# Whom: Marcus Alves Grando -# +# Created by: Marcus Alves Grando # $FreeBSD$ -# PORTNAME= timezonedb -DISTVERSION= 2012.5 +DISTVERSION= 2012.6 CATEGORIES= misc MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/misc/pecl-timezonedb/distinfo ============================================================================== --- head/misc/pecl-timezonedb/distinfo Sun Oct 7 14:22:39 2012 (r305482) +++ head/misc/pecl-timezonedb/distinfo Sun Oct 7 14:25:46 2012 (r305483) @@ -1,2 +1,2 @@ -SHA256 (PECL/timezonedb-2012.5.tgz) = 87c0b79d0b562ebf34dc540748c05c5a7dad4bb789e005935326b290708f9906 -SIZE (PECL/timezonedb-2012.5.tgz) = 193400 +SHA256 (PECL/timezonedb-2012.6.tgz) = 9523cec379a21fc21de92311d8e27c918799b1afd982d576453a595c02a254b7 +SIZE (PECL/timezonedb-2012.6.tgz) = 193715 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:28:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 00C87106566C; Sun, 7 Oct 2012 14:28:07 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DF8BE8FC08; Sun, 7 Oct 2012 14:28:06 +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 q97ES6ZP014700; Sun, 7 Oct 2012 14:28:06 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97ES6rn014698; Sun, 7 Oct 2012 14:28:06 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201210071428.q97ES6rn014698@svn.freebsd.org> From: Jimmy Olgeni Date: Sun, 7 Oct 2012 14:28:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305484 - head/lang/mit-scheme X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:28:07 -0000 Author: olgeni Date: Sun Oct 7 14:28:06 2012 New Revision: 305484 URL: http://svn.freebsd.org/changeset/ports/305484 Log: Convert to OptionsNG; sort DISTNAME according to portlint. Modified: head/lang/mit-scheme/Makefile (contents, props changed) Modified: head/lang/mit-scheme/Makefile ============================================================================== --- head/lang/mit-scheme/Makefile Sun Oct 7 14:25:46 2012 (r305483) +++ head/lang/mit-scheme/Makefile Sun Oct 7 14:28:06 2012 (r305484) @@ -1,9 +1,5 @@ -# New ports collection makefile for: MIT-Scheme -# Date created: Mar 26 1995 -# Whom: jmacd@FreeBSD.org -# +# Created by: jmacd@FreeBSD.org # $FreeBSD$ -# PORTNAME= mit-scheme PORTVERSION= 9.0.1 @@ -11,6 +7,7 @@ PORTREVISION= 1 CATEGORIES= lang scheme MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= mit-scheme/stable.pkg/${PORTVERSION} +DISTNAME= ${PORTNAME}-${PORTVERSION}-${MIT_SCHEME_ARCH} MAINTAINER= olgeni@FreeBSD.org COMMENT= MIT Scheme: includes runtime, compiler, and edwin binaries @@ -20,11 +17,11 @@ GNU_CONFIGURE= yes USE_GMAKE= yes WRKSRC= ${WRKDIR}/mit-scheme-${PORTVERSION}/src/ -OPTIONS= POSTGRESQL "Enable PostgreSQL support" off +OPTIONS_DEFINE= PGSQL .include -.if defined(WITH_POSTGRESQL) +.if ${PORT_OPTIONS:MPGSQL} PLIST_SUB+= POSTGRESQL="" CONFIGURE_ARGS+=--with-libpq .else @@ -34,7 +31,6 @@ CONFIGURE_ARGS+=--without-libpq MIT_SCHEME_ARCH=i386 -DISTNAME= ${PORTNAME}-${PORTVERSION}-${MIT_SCHEME_ARCH} PLIST_SUB+= MIT_SCHEME_ARCH=${MIT_SCHEME_ARCH} MAN1= scheme.1 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:28:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B9464106564A; Sun, 7 Oct 2012 14:28:55 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A3A7D8FC17; Sun, 7 Oct 2012 14:28: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 q97EStHL014848; Sun, 7 Oct 2012 14:28:55 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97EStLW014846; Sun, 7 Oct 2012 14:28:55 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201210071428.q97EStLW014846@svn.freebsd.org> From: Jimmy Olgeni Date: Sun, 7 Oct 2012 14:28:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305485 - head X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:28:55 -0000 Author: olgeni Date: Sun Oct 7 14:28:55 2012 New Revision: 305485 URL: http://svn.freebsd.org/changeset/ports/305485 Log: Add note about lang/mit-scheme and the latest OptionsNG changes. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun Oct 7 14:28:06 2012 (r305484) +++ head/UPDATING Sun Oct 7 14:28:55 2012 (r305485) @@ -5,6 +5,14 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20121007: + AFFECTS: users of lang/mit-scheme + AUTHOR: olgeni@FreeBSD.org + + The lang/mit-scheme port was converted to OptionsNG, and now uses + the standard PGSQL knob rather than POSTGRESQL. Be sure to check + your configuration before rebuilding. + 20121006: AFFECTS: users of devel/geany-plugins AUTHOR: makc@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 14:38:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 600F6106566C; Sun, 7 Oct 2012 14:38:40 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 307298FC08; Sun, 7 Oct 2012 14:38: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 q97EceEZ016139; Sun, 7 Oct 2012 14:38:40 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97EcdbZ016137; Sun, 7 Oct 2012 14:38:40 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210071438.q97EcdbZ016137@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 14:38:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305486 - head/astro/xplanet X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 14:38:40 -0000 Author: eadler Date: Sun Oct 7 14:38:39 2012 New Revision: 305486 URL: http://svn.freebsd.org/changeset/ports/305486 Log: Convert to OptionsNG Approved by: novel (maintainer) Modified: head/astro/xplanet/Makefile Modified: head/astro/xplanet/Makefile ============================================================================== --- head/astro/xplanet/Makefile Sun Oct 7 14:28:55 2012 (r305485) +++ head/astro/xplanet/Makefile Sun Oct 7 14:38:39 2012 (r305486) @@ -1,9 +1,5 @@ -# New ports collection makefile for: xplanet -# Date created: 22 Feb 2000 -# Whom: darius@dons.net.au -# +# Created by: darius@dons.net.au # $FreeBSD$ -# PORTNAME= xplanet PORTVERSION= 1.3.0 @@ -21,61 +17,56 @@ CONFIGURE_ARGS= --with-map-extension=jpg CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -lm" CPPFLAGS+= -I${LOCALBASE}/include -OPTIONS= FREETYPE "Enable Freetype support" on \ - PANGO "Enable PANGO support" on \ - GIF "Enable GIF support" on \ - JPEG "Enable JPEG support" on \ - PNG "Enable PNG support" on \ - PNM "Enable PNM support" on \ - TIFF "Enable TIFF support" on +OPTIONS_DEFINE= FREETYPE PANGO GIF JPEG PNG PNM TIFF +OPTIONS_DEFAULT= FREETYPE PANGO GIF JPEG PNG PNM TIFF MAN1= xplanet.1 .include -.if !defined(WITHOUT_FREETYPE) +.if ${PORT_OPTIONS:MFREETYPE} CONFIGURE_ARGS+= --with-freetype LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 .else CONFIGURE_ARGS+= --without-freetype .endif -.if !defined(WITHOUT_PANGO) +.if ${PORT_OPTIONS:MPANGO} CONFIGURE_ARGS+= --with-pango USE_GNOME+= pango .else CONFIGURE_ARGS+= --without-pango .endif -.if !defined(WITHOUT_GIF) +.if ${PORT_OPTIONS:MGIF} CONFIGURE_ARGS+= --with-gif LIB_DEPENDS+= gif.5:${PORTSDIR}/graphics/giflib .else CONFIGURE_ARGS+= --without-gif .endif -.if !defined(WITHOUT_JPEG) +.if ${PORT_OPTIONS:MJPEG} CONFIGURE_ARGS+= --with-jpeg LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg .else CONFIGURE_ARGS+= --without-jpeg .endif -.if !defined(WITHOUT_PNG) +.if ${PORT_OPTIONS:MPNG} CONFIGURE_ARGS+= --with-png LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png .else CONFIGURE_ARGS+= --without-png .endif -.if !defined(WITHOUT_PNM) +.if ${PORT_OPTIONS:MPNM} CONFIGURE_ARGS+= --with-pnm LIB_DEPENDS+= netpbm.1:${PORTSDIR}/graphics/netpbm .else CONFIGURE_ARGS+= --without-pnm .endif -.if !defined(WITHOUT_TIFF) +.if ${PORT_OPTIONS:MTIFF} CONFIGURE_ARGS+= --with-tiff LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff .else From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 15:07:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1E0F106564A; Sun, 7 Oct 2012 15:07:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 736CA8FC0A; Sun, 7 Oct 2012 15:07:26 +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 q97F7QnJ020314; Sun, 7 Oct 2012 15:07:26 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97F7QAO020310; Sun, 7 Oct 2012 15:07:26 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071507.q97F7QAO020310@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 15:07:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305487 - head/archivers/unrar X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 15:07:26 -0000 Author: sunpoet Date: Sun Oct 7 15:07:25 2012 New Revision: 305487 URL: http://svn.freebsd.org/changeset/ports/305487 Log: - Update to 4.20 (4.20.100.526) - Convert to new options framework - Cleanup Makefile header - Add SLAVEDIRS: archivers/unrar-iconv and chinese/unrar Modified: head/archivers/unrar/Makefile (contents, props changed) head/archivers/unrar/distinfo (contents, props changed) Modified: head/archivers/unrar/Makefile ============================================================================== --- head/archivers/unrar/Makefile Sun Oct 7 14:38:39 2012 (r305486) +++ head/archivers/unrar/Makefile Sun Oct 7 15:07:25 2012 (r305487) @@ -1,22 +1,21 @@ -# New ports collection makefile for: unrar -# Date created: 28 Dec 1994 -# Whom: ache -# +# Created by: ache # $FreeBSD$ -# PORTNAME= unrar PORTVERSION= 4.20 +PORTREVISION= 1 PORTEPOCH= 5 CATEGORIES+= archivers MASTER_SITES= http://www.rarlab.com/rar/ \ LOCAL/sunpoet -DISTNAME= unrarsrc-4.2.1 +DISTNAME= unrarsrc-4.2.4 MAINTAINER?= sunpoet@FreeBSD.org COMMENT= Extract, view & test RAR archives -OPTIONS= OPENSSL_AES "Use OpenSSL implementation of AES" on +OPTIONS_DEFINE= DOCS OPENSSL_AES +OPTIONS_DEFAULT=OPENSSL_AES +OPENSSL_AES_DESC= Use OpenSSL implementation of AES CONFLICTS?= zh-unrar-[0-9].* unrar-iconv-[0-9].* @@ -28,9 +27,11 @@ WRKSRC= ${WRKDIR}/${PORTNAME} PLIST_FILES= bin/unrar PORTDOCS= license.txt readme.txt +SLAVEDIRS= archivers/unrar-iconv chinese/unrar + .include -.if !defined(WITHOUT_OPENSSL_AES) +.if ${PORT_OPTIONS:MOPENSSL_AES} CPPFLAGS+= -DOPENSSL_AES -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} -lcrypto USE_OPENSSL= yes @@ -41,7 +42,7 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/unrar ${PREFIX}/bin/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ .endif Modified: head/archivers/unrar/distinfo ============================================================================== --- head/archivers/unrar/distinfo Sun Oct 7 14:38:39 2012 (r305486) +++ head/archivers/unrar/distinfo Sun Oct 7 15:07:25 2012 (r305487) @@ -1,2 +1,2 @@ -SHA256 (unrarsrc-4.2.1.tar.gz) = d5b59d98a6604ac41916311bc3b5dce1b94858008fc381aa975311d9248542c0 -SIZE (unrarsrc-4.2.1.tar.gz) = 161564 +SHA256 (unrarsrc-4.2.4.tar.gz) = 9432bf798e5f7123f3060f37b75b7c07f36f0091305f46473dcae9154f8cd686 +SIZE (unrarsrc-4.2.4.tar.gz) = 164641 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 15:08:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1CA4A106566B; Sun, 7 Oct 2012 15:08:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 07ED38FC12; Sun, 7 Oct 2012 15:08:53 +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 q97F8q5R020574; Sun, 7 Oct 2012 15:08:52 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97F8qR9020572; Sun, 7 Oct 2012 15:08:52 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071508.q97F8qR9020572@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 15:08:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305488 - head/graphics/lcms X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 15:08:53 -0000 Author: sunpoet Date: Sun Oct 7 15:08:52 2012 New Revision: 305488 URL: http://svn.freebsd.org/changeset/ports/305488 Log: - Convert to new options framework - Fix CONFIGURE_ARGS - Cleanup Makefile - Cosmetic change Modified: head/graphics/lcms/Makefile (contents, props changed) Modified: head/graphics/lcms/Makefile ============================================================================== --- head/graphics/lcms/Makefile Sun Oct 7 15:07:25 2012 (r305487) +++ head/graphics/lcms/Makefile Sun Oct 7 15:08:52 2012 (r305488) @@ -1,85 +1,71 @@ -# New ports collection makefile for: lcms -# Date created: October 30, 2000 -# Whom: Mikhail Teterin -# +# Created by: Mikhail Teterin # $FreeBSD$ -# PORTNAME= lcms PORTVERSION= 1.19 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= graphics -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/1.19 \ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ http://www.littlecms.com/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Light Color Management System -- a color management library -USE_GNOME= gnomehack lthack -GNU_CONFIGURE= yes +OPTIONS_DEFINE= DOCS JPEGICC TIFFICC +JPEGICC_DESC= Build color profile applier for JPEG +TIFFICC_DESC= Build color profile applier for TIFF + CPPFLAGS+= -I${LOCALBASE}/include +GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib -CFLAGS+= -I${LOCALBASE}/include +USE_GNOME= gnomehack lthack USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/lcms-1.19 - -OPTIONS= TIFFICC "Build color profile applier for tiff" off \ - JPEGICC "Build color profile applier for JPEG" off -.include +.include -.if defined(WITH_TIFFICC) -LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff -PLIST_SUB+= TIFFICC="" -MAN1+= tifficc.1 +.if ${PORT_OPTIONS:MJPEGICC} +LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg +CONFIGURE_ARGS+=--with-jpeg=${LOCALBASE} +MAN1+= jpegicc.1 +PLIST_SUB+= JPEGICC="" .else -CONFIGURE_ARGS= --without-tiff -PLIST_SUB+= TIFFICC="@comment " +CONFIGURE_ARGS+=--without-jpeg +PLIST_SUB+= JPEGICC="@comment " .endif -.if defined(WITH_JPEGICC) -LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg -PLIST_SUB+= JPEGICC="" -MAN1+= jpegicc.1 +.if ${PORT_OPTIONS:MTIFFICC} +LIB_DEPENDS+= tiff:${PORTSDIR}/graphics/tiff +CONFIGURE_ARGS= --with-tiff=${LOCALBASE} +MAN1+= tifficc.1 +PLIST_SUB+= TIFFICC="" .else -CONFIGURE_ARGS= --without-jpeg -PLIST_SUB+= JPEGICC="@comment " +CONFIGURE_ARGS+=--without-tiff +PLIST_SUB+= TIFFICC="@comment " .endif post-patch: - @${REINPLACE_CMD} -e \ - 's|^SUBDIRS =.*$$|SUBDIRS = src include|g' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e \ - 's|-O3||g' ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e '/^SUBDIRS = / s| python samples||' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e 's|^testcms_LDFLAGS = .*$$|& -static|' ${WRKSRC}/testbed/Makefile.in +.if empty(PORT_OPTIONS:MJPEGICC) + @${REINPLACE_CMD} -e '/^SUBDIRS = / s| jpegicc||' ${WRKSRC}/Makefile.in +.endif +.if empty(PORT_OPTIONS:MTIFFICC) + @${REINPLACE_CMD} -e '/^SUBDIRS = / s| tifficc||' ${WRKSRC}/Makefile.in +.endif -# -# Get rid of .la and static library files -# post-configure: - @${REINPLACE_CMD} -E -e \ - '/Install the pseudo-library/,/staticlibs=/s,^,#,' ${WRKSRC}/libtool +# Get rid of .la and static library files + @${REINPLACE_CMD} -E -e '/Install the pseudo-library/,/staticlibs=/s,^,#,' ${WRKSRC}/libtool post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in doc/LCMSAPI.TXT doc/TUTORIAL.TXT tifficc/tifficc.c \ - jpegicc/jpegicc.c jpegicc/iccjpeg.c samples/wtpt.c samples/icctrans.c - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif - -.if defined(WITH_TIFFICC) - @(cd ${WRKSRC}/tifficc && ${SETENV} ${MAKE_ENV} ${MAKE} \ - ${MAKE_FLAGS} Makefile all install) -.endif - -.if defined(WITH_JPEGICC) - @(cd ${WRKSRC}/jpegicc && ${SETENV} ${MAKE_ENV} ${MAKE} \ - ${MAKE_FLAGS} Makefile all install) +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} doc/LCMSAPI.TXT doc/TUTORIAL.TXT tifficc/tifficc.c \ + jpegicc/jpegicc.c jpegicc/iccjpeg.c samples/wtpt.c samples/icctrans.c ${DOCSDIR}/ .endif -post-build test: - cd ${WRKSRC}/testbed && ${SETENV} ${MAKE_ENV} ${MAKE} check +regression-test test: build + cd ${WRKSRC}/testbed/ && ${SETENV} ${MAKE_ENV} ${MAKE} check -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 15:09:51 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE02A106564A; Sun, 7 Oct 2012 15:09:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9F4378FC0A; Sun, 7 Oct 2012 15:09: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 q97F9pgV020772; Sun, 7 Oct 2012 15:09:51 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97F9p9Z020769; Sun, 7 Oct 2012 15:09:51 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071509.q97F9p9Z020769@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 15:09:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305489 - head/graphics/lcms2 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 15:09:51 -0000 Author: sunpoet Date: Sun Oct 7 15:09:51 2012 New Revision: 305489 URL: http://svn.freebsd.org/changeset/ports/305489 Log: - Update to 2.4 - Convert to new options framework - Fix CONFIGURE_ARGS - Cleanup Makefile - Cosmetic change Changes: https://github.com/mm2/Little-CMS/blob/master/ChangeLog Modified: head/graphics/lcms2/Makefile (contents, props changed) head/graphics/lcms2/distinfo (contents, props changed) Modified: head/graphics/lcms2/Makefile ============================================================================== --- head/graphics/lcms2/Makefile Sun Oct 7 15:08:52 2012 (r305488) +++ head/graphics/lcms2/Makefile Sun Oct 7 15:09:51 2012 (r305489) @@ -1,12 +1,8 @@ -# New ports collection makefile for: Little CMS (v2) -# Date created: 12/04/2010 -# Whom: Stanislav Sedov -# +# Created by: Stanislav Sedov # $FreeBSD$ -# PORTNAME= lcms2 -PORTVERSION= 2.3 +PORTVERSION= 2.4 CATEGORIES= graphics MASTER_SITES= SF/lcms/lcms/${PORTVERSION} \ http://www.littlecms.com/ @@ -16,8 +12,9 @@ COMMENT= Accurate, fast, and small-footp LICENSE= MIT -OPTIONS= TIFFICC "Build color profile applier for TIFF" off \ - JPEGICC "Build color profile applier for JPEG" off +OPTIONS_DEFINE= DOCS JPEGICC TIFFICC +JPEGICC_DESC= Build color profile applier for JPEG +TIFFICC_DESC= Build color profile applier for TIFF CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes @@ -25,63 +22,55 @@ LDFLAGS+= -L${LOCALBASE}/lib USE_GNOME= gnomehack lthack USE_LDCONFIG= yes -MAN1= transicc.1 psicc.1 linkicc.1 +MAN1= linkicc.1 psicc.1 transicc.1 PLIST_SUB= PORTVERSION=${PORTVERSION} -UTILS= transicc psicc linkicc +UTILS= linkicc psicc transicc .include -.if defined(WITH_TIFFICC) -LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff -UTILS+= tificc -MAN1+= tificc.1 -PLIST_SUB+= TIFFICC="" +.if ${PORT_OPTIONS:MJPEGICC} +LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg +CONFIGURE_ARGS+=--with-jpeg=${LOCALBASE} +MAN1+= jpegicc.1 +PLIST_SUB+= JPEGICC="" +UTILS+= jpgicc .else -CONFIGURE_ARGS= --without-tiff -PLIST_SUB+= TIFFICC="@comment " +CONFIGURE_ARGS+=--without-jpeg +PLIST_SUB+= JPEGICC="@comment " .endif -.if defined(WITH_JPEGICC) -LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg -UTILS+= jpgicc -MAN1+= jpgicc.1 -PLIST_SUB+= JPEGICC="" +.if ${PORT_OPTIONS:MTIFFICC} +LIB_DEPENDS+= tiff:${PORTSDIR}/graphics/tiff +CONFIGURE_ARGS= --with-tiff=${LOCALBASE} +MAN1+= tifficc.1 +PLIST_SUB+= TIFFICC="" +UTILS+= tificc .else -CONFIGURE_ARGS= --without-jpeg -PLIST_SUB+= JPEGICC="@comment " +CONFIGURE_ARGS+=--without-tiff +PLIST_SUB+= TIFFICC="@comment " .endif post-patch: - @${REINPLACE_CMD} -e 's|^SUBDIRS =.*$$|SUBDIRS = src include|' \ - ${WRKSRC}/Makefile.in +.if empty(PORT_OPTIONS:MJPEGICC) + @${REINPLACE_CMD} -e '/^SUBDIRS = / s| utils/jpgicc||' ${WRKSRC}/Makefile.in +.endif +.if empty(PORT_OPTIONS:MTIFFICC) + @${REINPLACE_CMD} -e '/^SUBDIRS = / s| utils/tificc||' ${WRKSRC}/Makefile.in +.endif post-configure: # Get rid of .la and static library files - @${REINPLACE_CMD} -E -e \ - '/Install the pseudo-library/,/staticlibs=/s,^,#,' \ - ${WRKSRC}/libtool - -post-build: -.for dir in ${UTILS} - @cd ${WRKSRC}/utils/${dir}/ && ${SETENV} ${MAKE_ENV} ${MAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} all -.endfor + @${REINPLACE_CMD} -E -e '/Install the pseudo-library/,/staticlibs=/s,^,#,' ${WRKSRC}/libtool post-install: -.for dir in ${UTILS} - @cd ${WRKSRC}/utils/${dir}/ && ${SETENV} ${MAKE_ENV} ${MAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} install -.endfor - ${INSTALL_MAN} ${WRKSRC}/utils/linkicc/linkicc.1 \ - ${WRKSRC}/utils/psicc/psicc.1 \ - ${WRKSRC}/utils/transicc/transicc.1 ${MANPREFIX}/man/man1 -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.pdf ${DOCSDIR} + cd ${WRKSRC}/utils/ && ${INSTALL_MAN} linkicc/linkicc.1 psicc/psicc.1 transicc/transicc.1 ${MANPREFIX}/man/man1/ +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/doc/*.pdf ${DOCSDIR}/ .endif regression-test test: build - @cd ${WRKSRC}/testbed/ && ${SETENV} ${MAKE_ENV} ${MAKE} check + cd ${WRKSRC}/testbed/ && ${SETENV} ${MAKE_ENV} ${MAKE} check .include Modified: head/graphics/lcms2/distinfo ============================================================================== --- head/graphics/lcms2/distinfo Sun Oct 7 15:08:52 2012 (r305488) +++ head/graphics/lcms2/distinfo Sun Oct 7 15:09:51 2012 (r305489) @@ -1,2 +1,2 @@ -SHA256 (lcms2-2.3.tar.gz) = 3ea177bbde947be5b9256b817d1cf98ab9c67c558b35703c48f5dbf8e0afafe4 -SIZE (lcms2-2.3.tar.gz) = 4461644 +SHA256 (lcms2-2.4.tar.gz) = 2a514d10eff26901505c191a15c2588c751eb7fb86577118f6c235aff0be37e8 +SIZE (lcms2-2.4.tar.gz) = 4293291 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 15:15:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF401106564A; Sun, 7 Oct 2012 15:15:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B041C8FC0C; Sun, 7 Oct 2012 15:15:53 +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 q97FFrBu021683; Sun, 7 Oct 2012 15:15:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97FFrv6021679; Sun, 7 Oct 2012 15:15:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071515.q97FFrv6021679@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 15:15:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305490 - head/devel/py-simplejson X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 15:15:54 -0000 Author: sunpoet Date: Sun Oct 7 15:15:53 2012 New Revision: 305490 URL: http://svn.freebsd.org/changeset/ports/305490 Log: - Update to 2.6.2 - Reformat pkg-descr - Change WWW to PyPI Changes: https://github.com/simplejson/simplejson/blob/master/CHANGES.txt Modified: head/devel/py-simplejson/Makefile (contents, props changed) head/devel/py-simplejson/distinfo (contents, props changed) head/devel/py-simplejson/pkg-descr (contents, props changed) Modified: head/devel/py-simplejson/Makefile ============================================================================== --- head/devel/py-simplejson/Makefile Sun Oct 7 15:09:51 2012 (r305489) +++ head/devel/py-simplejson/Makefile Sun Oct 7 15:15:53 2012 (r305490) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= simplejson -PORTVERSION= 2.6.1 +PORTVERSION= 2.6.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-simplejson/distinfo ============================================================================== --- head/devel/py-simplejson/distinfo Sun Oct 7 15:09:51 2012 (r305489) +++ head/devel/py-simplejson/distinfo Sun Oct 7 15:15:53 2012 (r305490) @@ -1,2 +1,2 @@ -SHA256 (simplejson-2.6.1.tar.gz) = b15befbd41157ec21795efcd960828be193cec6334b3e94bb99e02b32daad17c -SIZE (simplejson-2.6.1.tar.gz) = 53180 +SHA256 (simplejson-2.6.2.tar.gz) = 1b28d0896a76d4db1ab759204c039ab1ca4bf28bd30d6bf9c79172454e750dd3 +SIZE (simplejson-2.6.2.tar.gz) = 53228 Modified: head/devel/py-simplejson/pkg-descr ============================================================================== --- head/devel/py-simplejson/pkg-descr Sun Oct 7 15:09:51 2012 (r305489) +++ head/devel/py-simplejson/pkg-descr Sun Oct 7 15:15:53 2012 (r305490) @@ -5,11 +5,11 @@ dependencies. It covers the full JSON sp decoding, with unicode support. By default, encoding is done in an encoding neutral fashion (plain ASCII with \uXXXX escapes for unicode characters). -The encoder may be subclassed to provide serialization in any kind of -situation, without any special support by the objects to be serialized -(somewhat like pickle). +The encoder may be subclassed to provide serialization in any kind of situation, +without any special support by the objects to be serialized (somewhat like +pickle). -The decoder can handle incoming JSON strings of any specified encoding -(UTF-8 by default). +The decoder can handle incoming JSON strings of any specified encoding (UTF-8 by +default). -WWW: https://github.com/simplejson/simplejson +WWW: http://pypi.python.org/pypi/simplejson From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 15:22:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B1A5106566B; Sun, 7 Oct 2012 15:22:43 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 253398FC0A; Sun, 7 Oct 2012 15:22: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 q97FMgqJ022692; Sun, 7 Oct 2012 15:22:43 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97FMguT022690; Sun, 7 Oct 2012 15:22:42 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201210071522.q97FMguT022690@svn.freebsd.org> From: Boris Samorodov Date: Sun, 7 Oct 2012 15:22:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305491 - head/misc/mc-light X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 15:22:43 -0000 Author: bsam Date: Sun Oct 7 15:22:42 2012 New Revision: 305491 URL: http://svn.freebsd.org/changeset/ports/305491 Log: The option SUBSHELL has reversed logic. Bump PORTREVISION since the default dependency is changed. Pointed out by: Alexander Efimov (at freebsd-ports@) Modified: head/misc/mc-light/Makefile Modified: head/misc/mc-light/Makefile ============================================================================== --- head/misc/mc-light/Makefile Sun Oct 7 15:15:53 2012 (r305490) +++ head/misc/mc-light/Makefile Sun Oct 7 15:22:42 2012 (r305491) @@ -7,7 +7,7 @@ PORTNAME= mc-light PORTVERSION= 4.1.40.p9 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= misc shells MASTER_SITES= http://mc.linuxinside.com/Releases/ DISTNAME= mc-${PORTVERSION:S/.p9/-pre9/} @@ -39,7 +39,7 @@ MAN8= mcserv.8 .include -.if ${PORT_OPTIONS:MSUBSHELL} +.if ! ${PORT_OPTIONS:MSUBSHELL} CONFIGURE_ARGS+=--without-subshell .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 15:25:12 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 094EF106566B; Sun, 7 Oct 2012 15:25:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CF1458FC08; Sun, 7 Oct 2012 15:25:11 +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 q97FPBCM023096; Sun, 7 Oct 2012 15:25:11 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97FPBr3023094; Sun, 7 Oct 2012 15:25:11 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071525.q97FPBr3023094@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 15:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305492 - head/textproc/p5-XML-XML2JSON X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 15:25:12 -0000 Author: sunpoet Date: Sun Oct 7 15:25:11 2012 New Revision: 305492 URL: http://svn.freebsd.org/changeset/ports/305492 Log: - Add LICENSE - Convert to new options framework - Fix typo - Cleanup Makefile header Modified: head/textproc/p5-XML-XML2JSON/Makefile (contents, props changed) Modified: head/textproc/p5-XML-XML2JSON/Makefile ============================================================================== --- head/textproc/p5-XML-XML2JSON/Makefile Sun Oct 7 15:22:42 2012 (r305491) +++ head/textproc/p5-XML-XML2JSON/Makefile Sun Oct 7 15:25:11 2012 (r305492) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-XML-XML2JSON -# Date created: 2011-07-11 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= XML-XML2JSON PORTVERSION= 0.06 @@ -14,14 +10,19 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Convert XML into JSON (and back again) using XML::LibXML +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-XML-LibXML>=1.59:${PORTSDIR}/textproc/p5-XML-LibXML -RUN_DEPENDS= p5-XML-LibXML>=1.59:${PORTSDIR}/textproc/p5-XML-LibXML +RUN_DEPENDS:= ${BUILD_DEPENDS} # the order of options follows the search order of JSON module by XML::XML2JSON -OPTIONS= JSON_SYCK "Use JSON::Syck" on \ - JSON_XS "Use JSON::XS" off \ - JSON "Use JSON" off \ - JSON_DWIW "Use JSON::DWIW" off +OPTIONS_DEFINE= JSON_SYCK JSON_XS JSON JSON_DWIW +OPTIONS_DEFAULT=JSON_SYCK +JSON_SYCK_DESC= Use JSON::Syck +JSON_XS_DESC= Use JSON::XS +JSON_DESC= Use JSON +JSON_DWIW_DESC= Use JSON::DWIW PERL_CONFIGURE= yes @@ -29,26 +30,26 @@ MAN3= XML::XML2JSON.3 .include -.if defined(WITHOUT_JSON_SYCK) && !defined(WITH_JSON_XS) && !defined(WITH_JSON) && !defined(WITH_JSON_DWIW) +.if empty(PORT_OPTIONS:MJSON_SYCK) && empty(PORT_OPTIONS:MJSON_XS) && empty(PORT_OPTIONS:MJSON) && empty(PORT_OPTIONS:MJSON_DWIW) IGNORE= you must choose at least one JSON module .endif -.if !defined(WITHOUT_JSON_SYCK) +.if ${PORT_OPTIONS:MJSON_SYCK} BUILD_DEPENDS+= p5-YAML-Syck>=0:${PORTSDIR}/textproc/p5-YAML-Syck RUN_DEPENDS+= p5-YAML-Syck>=0:${PORTSDIR}/textproc/p5-YAML-Syck .endif -.if defined(WITH_JSON_XS) +.if ${PORT_OPTIONS:MJSON_XS} BUILD_DEPENDS+= p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS RUN_DEPENDS+= p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS .endif -.if defined(WITH_JSON) +.if ${PORT_OPTIONS:MJSON} BUILD_DEPENDS+= p5-JSON>=0:${PORTSDIR}/converters/p5-JSON RUN_DEPENDS+= p5-JSON>=0:${PORTSDIR}/converters/p5-JSON .endif -.if defined(WITH_JSON_) +.if ${PORT_OPTIONS:MJSON_DWIW} BUILD_DEPENDS+= p5-JSON-DWIW>=0:${PORTSDIR}/converters/p5-JSON-DWIW RUN_DEPENDS+= p5-JSON-DWIW>=0:${PORTSDIR}/converters/p5-JSON-DWIW .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 16:04:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF3E9106564A; Sun, 7 Oct 2012 16:04:27 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C7F3F8FC17; Sun, 7 Oct 2012 16:04:27 +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 q97G4Rx5028481; Sun, 7 Oct 2012 16:04:27 GMT (envelope-from olivierd@svn.freebsd.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97G4RoG028477; Sun, 7 Oct 2012 16:04:27 GMT (envelope-from olivierd@svn.freebsd.org) Message-Id: <201210071604.q97G4RoG028477@svn.freebsd.org> From: Olivier Duchateau Date: Sun, 7 Oct 2012 16:04:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305493 - in head/graphics/py-wand: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 16:04:28 -0000 Author: olivierd Date: Sun Oct 7 16:04:27 2012 New Revision: 305493 URL: http://svn.freebsd.org/changeset/ports/305493 Log: - Update to 0.2.2 - Remove patch, submitted and approved by upstream Approved by: rene, miwi (mentors) Deleted: head/graphics/py-wand/files/ Modified: head/graphics/py-wand/Makefile head/graphics/py-wand/distinfo (contents, props changed) Modified: head/graphics/py-wand/Makefile ============================================================================== --- head/graphics/py-wand/Makefile Sun Oct 7 15:25:11 2012 (r305492) +++ head/graphics/py-wand/Makefile Sun Oct 7 16:04:27 2012 (r305493) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Wand -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.2 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/graphics/py-wand/distinfo ============================================================================== --- head/graphics/py-wand/distinfo Sun Oct 7 15:25:11 2012 (r305492) +++ head/graphics/py-wand/distinfo Sun Oct 7 16:04:27 2012 (r305493) @@ -1,2 +1,2 @@ -SHA256 (Wand-0.2.1.tar.gz) = 202ffe8decfda4f7f29b4ac0043755cfb7bc23ad124ab023db1295ea9ffebdf0 -SIZE (Wand-0.2.1.tar.gz) = 20566 +SHA256 (Wand-0.2.2.tar.gz) = 73334ac7beab70ceee525cdb689f159d351e25dfe3b1402ef4df489b0b061ae1 +SIZE (Wand-0.2.2.tar.gz) = 23150 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 16:07:52 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA6EF106564A; Sun, 7 Oct 2012 16:07:52 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 93F5B8FC12; Sun, 7 Oct 2012 16:07:52 +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 q97G7qD9028975; Sun, 7 Oct 2012 16:07:52 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97G7q0Z028971; Sun, 7 Oct 2012 16:07:52 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210071607.q97G7q0Z028971@svn.freebsd.org> From: Mark Linimon Date: Sun, 7 Oct 2012 16:07:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305494 - in head/net-mgmt: argus-monitor bsnmp-regex X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 16:07:52 -0000 Author: linimon Date: Sun Oct 7 16:07:51 2012 New Revision: 305494 URL: http://svn.freebsd.org/changeset/ports/305494 Log: Reset maintainer at his request. We hope to see him back again sometime. While here, trim headers. Modified: head/net-mgmt/argus-monitor/Makefile head/net-mgmt/bsnmp-regex/Makefile Modified: head/net-mgmt/argus-monitor/Makefile ============================================================================== --- head/net-mgmt/argus-monitor/Makefile Sun Oct 7 16:04:27 2012 (r305493) +++ head/net-mgmt/argus-monitor/Makefile Sun Oct 7 16:07:51 2012 (r305494) @@ -1,9 +1,5 @@ -# New ports collection makefile for: argus-monitor -# Date created: 18 November 2006 -# Whom: brock@cotcomsol.com -# +# Created by: brock@cotcomsol.com # $FreeBSD$ -# PORTNAME= argus-monitor PORTVERSION= 20100109 @@ -13,7 +9,7 @@ MASTER_SITES= http://www.tcp4me.com/code DISTNAME= argus-dev-${PORTVERSION} EXTRACT_SUFX= .tgz -MAINTAINER= brock@cotcomsol.com +MAINTAINER= ports@FreeBSD.org COMMENT= Argus - The All Seeing System and Network Monitoring Software SUB_FILES= pkg-message apache.conf Modified: head/net-mgmt/bsnmp-regex/Makefile ============================================================================== --- head/net-mgmt/bsnmp-regex/Makefile Sun Oct 7 16:04:27 2012 (r305493) +++ head/net-mgmt/bsnmp-regex/Makefile Sun Oct 7 16:07:51 2012 (r305494) @@ -1,9 +1,5 @@ -# New ports collection makefile for: bsnmp-regex -# Date created: 11 February 2007 -# Whom: brock@cotcomsol.com -# +# Created by: brock@cotcomsol.com # $FreeBSD$ -# PORTNAME= bsnmp-regex PORTVERSION= 0.5 @@ -11,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://memberwebs.com/stef/software/bsnmp-regex/ -MAINTAINER= brock@cotcomsol.com +MAINTAINER= ports@FreeBSD.org COMMENT= A bsnmpd module allowing creation of counters from log files GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 17:27:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 20DC01065670; Sun, 7 Oct 2012 17:27:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E57258FC14; Sun, 7 Oct 2012 17:27:05 +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 q97HR5Jq039394; Sun, 7 Oct 2012 17:27:05 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97HR5A2039391; Sun, 7 Oct 2012 17:27:05 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071727.q97HR5A2039391@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 17:27:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305495 - head/devel/p5-Test-Spec X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 17:27:06 -0000 Author: sunpoet Date: Sun Oct 7 17:27:05 2012 New Revision: 305495 URL: http://svn.freebsd.org/changeset/ports/305495 Log: - Update to 0.46 - Cleanup Makefile header Changes: http://search.cpan.org/dist/Test-Spec/Changes Modified: head/devel/p5-Test-Spec/Makefile (contents, props changed) head/devel/p5-Test-Spec/distinfo (contents, props changed) Modified: head/devel/p5-Test-Spec/Makefile ============================================================================== --- head/devel/p5-Test-Spec/Makefile Sun Oct 7 16:07:51 2012 (r305494) +++ head/devel/p5-Test-Spec/Makefile Sun Oct 7 17:27:05 2012 (r305495) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Test-Spec -# Date created: 2011-09-10 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= Test-Spec -PORTVERSION= 0.45 +PORTVERSION= 0.46 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -21,10 +17,7 @@ BUILD_DEPENDS= p5-Package-Stash>=0.23:${ p5-Test-Deep>=0.103:${PORTSDIR}/devel/p5-Test-Deep \ p5-Test-Trap>=0:${PORTSDIR}/devel/p5-Test-Trap \ p5-Tie-IxHash>=0:${PORTSDIR}/devel/p5-Tie-IxHash -RUN_DEPENDS= p5-Package-Stash>=0.23:${PORTSDIR}/devel/p5-Package-Stash \ - p5-Test-Deep>=0.103:${PORTSDIR}/devel/p5-Test-Deep \ - p5-Test-Trap>=0:${PORTSDIR}/devel/p5-Test-Trap \ - p5-Tie-IxHash>=0:${PORTSDIR}/devel/p5-Tie-IxHash +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes Modified: head/devel/p5-Test-Spec/distinfo ============================================================================== --- head/devel/p5-Test-Spec/distinfo Sun Oct 7 16:07:51 2012 (r305494) +++ head/devel/p5-Test-Spec/distinfo Sun Oct 7 17:27:05 2012 (r305495) @@ -1,2 +1,2 @@ -SHA256 (Test-Spec-0.45.tar.gz) = 724a64054f5c41f7b4e901e8afbaf370a8c34335c147a56795ab74bbf4c7be6b -SIZE (Test-Spec-0.45.tar.gz) = 32268 +SHA256 (Test-Spec-0.46.tar.gz) = 44b2ffbe7d381dab75d4010d1c294e2a625c5ee6a7c58b3b22097c95614e7deb +SIZE (Test-Spec-0.46.tar.gz) = 33401 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 17:37:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DA2711065670; Sun, 7 Oct 2012 17:37:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C457D8FC19; Sun, 7 Oct 2012 17:37:03 +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 q97Hb3oE040818; Sun, 7 Oct 2012 17:37:03 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97Hb3ks040815; Sun, 7 Oct 2012 17:37:03 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071737.q97Hb3ks040815@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 17:37:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305496 - head/net/gssdp X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 17:37:04 -0000 Author: sunpoet Date: Sun Oct 7 17:37:03 2012 New Revision: 305496 URL: http://svn.freebsd.org/changeset/ports/305496 Log: - Update to 0.13.0 - Cleanup Makefile header Changes: http://git.gnome.org/browse/gssdp/tree/NEWS Modified: head/net/gssdp/Makefile head/net/gssdp/distinfo (contents, props changed) Modified: head/net/gssdp/Makefile ============================================================================== --- head/net/gssdp/Makefile Sun Oct 7 17:27:05 2012 (r305495) +++ head/net/gssdp/Makefile Sun Oct 7 17:37:03 2012 (r305496) @@ -1,12 +1,8 @@ -# New ports collection makefile for: gssdp -# Date created: 2009-12-26 -# Whom: Martin Wilke -# +# Created by: Martin Wilke # $FreeBSD$ -# PORTNAME= gssdp -PORTVERSION= 0.12.2 +PORTVERSION= 0.13.0 CATEGORIES= net MASTER_SITES= GNOME Modified: head/net/gssdp/distinfo ============================================================================== --- head/net/gssdp/distinfo Sun Oct 7 17:27:05 2012 (r305495) +++ head/net/gssdp/distinfo Sun Oct 7 17:37:03 2012 (r305496) @@ -1,2 +1,2 @@ -SHA256 (gssdp-0.12.2.tar.xz) = af1308b674319e0f069952f858641ee6a512b61a48dc3a8fbfc334f337d40def -SIZE (gssdp-0.12.2.tar.xz) = 272608 +SHA256 (gssdp-0.13.0.tar.xz) = d4bdd7d25d31108a5b97e357cbc23e401c73ba305ff73d48568eb413c7448200 +SIZE (gssdp-0.13.0.tar.xz) = 272848 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 17:59:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0DAF31065672; Sun, 7 Oct 2012 17:59:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B08508FC0A; Sun, 7 Oct 2012 17:59:46 +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 q97HxkDX043794; Sun, 7 Oct 2012 17:59:46 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97Hxkir043790; Sun, 7 Oct 2012 17:59:46 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071759.q97Hxkir043790@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 17:59:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305497 - head/multimedia/libquvi-scripts X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 17:59:47 -0000 Author: sunpoet Date: Sun Oct 7 17:59:46 2012 New Revision: 305497 URL: http://svn.freebsd.org/changeset/ports/305497 Log: - Update to 0.4.9 - Cleanup Makefile header Changes: http://repo.or.cz/w/libquvi-scripts.git/blob/HEAD:/NEWS Modified: head/multimedia/libquvi-scripts/Makefile head/multimedia/libquvi-scripts/distinfo (contents, props changed) head/multimedia/libquvi-scripts/pkg-plist (contents, props changed) Modified: head/multimedia/libquvi-scripts/Makefile ============================================================================== --- head/multimedia/libquvi-scripts/Makefile Sun Oct 7 17:37:03 2012 (r305496) +++ head/multimedia/libquvi-scripts/Makefile Sun Oct 7 17:59:46 2012 (r305497) @@ -1,12 +1,8 @@ -# New ports collection makefile for: libquvi-scripts -# Date created: 2011-10-06 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= libquvi-scripts -PORTVERSION= 0.4.8 +PORTVERSION= 0.4.9 CATEGORIES= multimedia devel MASTER_SITES= SF/quvi/${PORTVERSION:R}/${PORTNAME}/ \ GOOGLE_CODE Modified: head/multimedia/libquvi-scripts/distinfo ============================================================================== --- head/multimedia/libquvi-scripts/distinfo Sun Oct 7 17:37:03 2012 (r305496) +++ head/multimedia/libquvi-scripts/distinfo Sun Oct 7 17:59:46 2012 (r305497) @@ -1,2 +1,2 @@ -SHA256 (libquvi-scripts-0.4.8.tar.xz) = c26268dd2378e2d3b772d964a1e97da9bf38382006db97fa18b33f43b7d9cdb4 -SIZE (libquvi-scripts-0.4.8.tar.xz) = 106020 +SHA256 (libquvi-scripts-0.4.9.tar.xz) = e04023639c44fc77ab7797ea09ddffb939681c1ab14096173c5c683bfadc6b28 +SIZE (libquvi-scripts-0.4.9.tar.xz) = 109300 Modified: head/multimedia/libquvi-scripts/pkg-plist ============================================================================== --- head/multimedia/libquvi-scripts/pkg-plist Sun Oct 7 17:37:03 2012 (r305496) +++ head/multimedia/libquvi-scripts/pkg-plist Sun Oct 7 17:59:46 2012 (r305497) @@ -7,24 +7,27 @@ libdata/pkgconfig/libquvi-scripts.pc %%DATADIR%%/lua/website/101greatgoals.lua %%DATADIR%%/lua/website/1tvru.lua %%DATADIR%%/lua/website/academicearth.lua -%%DATADIR%%/lua/website/arte.lua %%DATADIR%%/lua/website/audioboo.lua %%DATADIR%%/lua/website/bbc.lua +%%NSFW%%%%DATADIR%%/lua/website/beeg.lua %%DATADIR%%/lua/website/break.lua %%DATADIR%%/lua/website/canalplus.lua %%DATADIR%%/lua/website/cbsnews.lua %%DATADIR%%/lua/website/charlierose.lua %%DATADIR%%/lua/website/clipfish.lua -%%DATADIR%%/lua/website/collegehumor.lua %%DATADIR%%/lua/website/dailymotion.lua +%%NSFW%%%%DATADIR%%/lua/website/deviantclip.lua %%NSFW%%%%DATADIR%%/lua/website/empflix.lua +%%NSFW%%%%DATADIR%%/lua/website/fastjizz.lua %%DATADIR%%/lua/website/foxnews.lua %%DATADIR%%/lua/website/funnyordie.lua %%DATADIR%%/lua/website/gaskrank.lua %%DATADIR%%/lua/website/golem.lua %%DATADIR%%/lua/website/guardian.lua %%DATADIR%%/lua/website/imdb.lua +%%NSFW%%%%DATADIR%%/lua/website/jizzhut.lua %%DATADIR%%/lua/website/justintv.lua +%%NSFW%%%%DATADIR%%/lua/website/keezmovies.lua %%DATADIR%%/lua/website/lego.lua %%DATADIR%%/lua/website/liveleak.lua %%DATADIR%%/lua/website/metacafe.lua @@ -33,6 +36,7 @@ libdata/pkgconfig/libquvi-scripts.pc %%DATADIR%%/lua/website/publicsenat.lua %%DATADIR%%/lua/website/quvi/bit.lua %%DATADIR%%/lua/website/quvi/const.lua +%%DATADIR%%/lua/website/quvi/html.lua %%DATADIR%%/lua/website/quvi/url.lua %%DATADIR%%/lua/website/quvi/util.lua %%NSFW%%%%DATADIR%%/lua/website/redtube.lua @@ -43,6 +47,7 @@ libdata/pkgconfig/libquvi-scripts.pc %%NSFW%%%%DATADIR%%/lua/website/spankwire.lua %%DATADIR%%/lua/website/spiegel.lua %%DATADIR%%/lua/website/tagtele.lua +%%DATADIR%%/lua/website/tapuz.lua %%NSFW%%%%DATADIR%%/lua/website/tcmag.lua %%DATADIR%%/lua/website/ted.lua %%DATADIR%%/lua/website/theonion.lua @@ -55,6 +60,7 @@ libdata/pkgconfig/libquvi-scripts.pc %%DATADIR%%/lua/website/videobash.lua %%DATADIR%%/lua/website/vimeo.lua %%NSFW%%%%DATADIR%%/lua/website/xhamster.lua +%%NSFW%%%%DATADIR%%/lua/website/xnxx.lua %%NSFW%%%%DATADIR%%/lua/website/xvideos.lua %%DATADIR%%/lua/website/yfrog.lua %%NSFW%%%%DATADIR%%/lua/website/youjizz.lua From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 18:00:32 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E39481065680; Sun, 7 Oct 2012 18:00:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CDEF18FC1D; Sun, 7 Oct 2012 18:00:32 +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 q97I0W6L043956; Sun, 7 Oct 2012 18:00:32 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97I0W38043953; Sun, 7 Oct 2012 18:00:32 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071800.q97I0W38043953@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 18:00:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305498 - head/databases/rubygem-redis X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 18:00:33 -0000 Author: sunpoet Date: Sun Oct 7 18:00:32 2012 New Revision: 305498 URL: http://svn.freebsd.org/changeset/ports/305498 Log: - Update to 3.0.2 - Cleanup Makefile header Changes: https://github.com/redis/redis-rb/blob/master/CHANGELOG.md Modified: head/databases/rubygem-redis/Makefile (contents, props changed) head/databases/rubygem-redis/distinfo (contents, props changed) Modified: head/databases/rubygem-redis/Makefile ============================================================================== --- head/databases/rubygem-redis/Makefile Sun Oct 7 17:59:46 2012 (r305497) +++ head/databases/rubygem-redis/Makefile Sun Oct 7 18:00:32 2012 (r305498) @@ -1,12 +1,8 @@ -# New ports collection makefile for: rubygem-redis -# Date created: 2011-11-10 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= redis -PORTVERSION= 3.0.1 +PORTVERSION= 3.0.2 CATEGORIES= databases rubygems MASTER_SITES= RG Modified: head/databases/rubygem-redis/distinfo ============================================================================== --- head/databases/rubygem-redis/distinfo Sun Oct 7 17:59:46 2012 (r305497) +++ head/databases/rubygem-redis/distinfo Sun Oct 7 18:00:32 2012 (r305498) @@ -1,2 +1,2 @@ -SHA256 (rubygem/redis-3.0.1.gem) = 719a11e1339dbdfc70158287de46bfd14a76cc791e0015b96c94446a0a10ffb8 -SIZE (rubygem/redis-3.0.1.gem) = 58368 +SHA256 (rubygem/redis-3.0.2.gem) = 01b7ab619177b48d40a065edc5b0d6de797e8e9df77ce77023707f1dbdfdd8d1 +SIZE (rubygem/redis-3.0.2.gem) = 60416 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 18:10:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 079FD1065688; Sun, 7 Oct 2012 18:10:26 +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 D30DE8FC0C; Sun, 7 Oct 2012 18:10:24 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1642849bkc.13 for ; Sun, 07 Oct 2012 11:10:18 -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=sZt4l1a5z4S4RwEt+Nd+aKExlsWx15dDMXDOHjxqTgg=; b=OlepIK0IOriKs3Ub0YbaKNO8Oxti67K2QYiJcNfn58m1asprKiMPBEKJxBLaniH0mO lDj+SINSz+S16XArjFp4Xyy0s/m3B07XZMjMco2RNAHhpyW39APSpJagfwYcR2yOe0tB yBQyr2U9u6yPBPYw8fdBkd7E9TBKYjgC2UcuL32EN/0Gkq6M8Y00JwBurLNQ6nGFypIY i9JaEwSWb818QkXfhXjHUtox78tivKqo010piZPJ+qmVdWgDD7zErbE7fcF1Rm/RWZi7 ye5YSJ2gWoabqIWo6J+gn0SK9pFivNscsXxKbAiuzzoX0WCSjC03PyMixlySNRsR7dui L4lw== Received: by 10.204.4.200 with SMTP id 8mr4668348bks.81.1349633418340; Sun, 07 Oct 2012 11:10:18 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Sun, 7 Oct 2012 11:09:48 -0700 (PDT) In-Reply-To: <5070AD5F.5020002@FreeBSD.org> References: <201209242123.q8OLNp8Q002624@svn.freebsd.org> <5070A2F6.205@FreeBSD.org> <20121006220758.GC22164@ithaqua.etoilebsd.net> <5070AD5F.5020002@FreeBSD.org> From: Chris Rees Date: Sun, 7 Oct 2012 19:09:48 +0100 X-Google-Sender-Auth: FpxV2yvMspaU2sEOdfsvC3g_MxA Message-ID: To: Doug Barton Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r304800 - in head: . textproc textproc/aspell textproc/aspell-without-dicten textproc/en-aspell X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 18:10:26 -0000 On 6 October 2012 23:14, Doug Barton wrote: > On 10/06/2012 15:07, Baptiste Daroussin wrote: >> On Sat, Oct 06, 2012 at 02:30:30PM -0700, Doug Barton wrote: >>> On 09/24/2012 14:23, Baptiste Daroussin wrote: >>>> No longer install the english dictionary (please use textproc/en-aspell if you >>>> want the english dictionary) >>> >>> What was the motivation for this change? >>> >> Motivation is simplifying binary package, this was stupid to have 2 different >> ports for aspell + one port for the dictionary, when we do not lose any features >> with having a single aspell port not incompatible with another one. > > Makes sense, thanks for the explanation. > > It would probably have been useful to include that in the commit > message, for future reference. Ideally commit messages should be roughly > 2/3 "why", and 1/3 "what." > 3/3 "why", 0/3 "what"-- we have inline SVN diffs nowadays! Chris From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 18:32:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26197106567A; Sun, 7 Oct 2012 18:32:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 107E38FC21; Sun, 7 Oct 2012 18:32:26 +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 q97IWP25048560; Sun, 7 Oct 2012 18:32:25 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97IWPoX048558; Sun, 7 Oct 2012 18:32:25 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071832.q97IWPoX048558@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 18:32:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305499 - head/chinese/tintin++ X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 18:32:26 -0000 Author: sunpoet Date: Sun Oct 7 18:32:25 2012 New Revision: 305499 URL: http://svn.freebsd.org/changeset/ports/305499 Log: - Convert to new options framework - Cleanup Makefile header Modified: head/chinese/tintin++/Makefile (contents, props changed) Modified: head/chinese/tintin++/Makefile ============================================================================== --- head/chinese/tintin++/Makefile Sun Oct 7 18:00:32 2012 (r305498) +++ head/chinese/tintin++/Makefile Sun Oct 7 18:32:25 2012 (r305499) @@ -1,9 +1,5 @@ -# New ports collection makefile for: tintin++ with Chinese(Big5) support. -# Date created: Tue 26, 2000 -# Whom: Foxfair Hu -# +# Created by: Foxfair Hu # $FreeBSD$ -# CATEGORIES= chinese @@ -11,7 +7,7 @@ MAINTAINER= sunpoet@FreeBSD.org MASTERDIR= ${.CURDIR}/../../net/tintin++ -WITH_BIG5= yes +OPTIONS_FILE_SET= BIG5 NO_LATEST_LINK= yes From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 18:33:29 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E7A01065679; Sun, 7 Oct 2012 18:33:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 066B38FC0C; Sun, 7 Oct 2012 18:33: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 q97IXSAh048765; Sun, 7 Oct 2012 18:33:28 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97IXSGO048763; Sun, 7 Oct 2012 18:33:28 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210071833.q97IXSGO048763@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 7 Oct 2012 18:33:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305500 - head/net/tintin++ X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 18:33:29 -0000 Author: sunpoet Date: Sun Oct 7 18:33:28 2012 New Revision: 305500 URL: http://svn.freebsd.org/changeset/ports/305500 Log: - Add SLAVEDIRS: chinese/tintin++ Modified: head/net/tintin++/Makefile Modified: head/net/tintin++/Makefile ============================================================================== --- head/net/tintin++/Makefile Sun Oct 7 18:32:25 2012 (r305499) +++ head/net/tintin++/Makefile Sun Oct 7 18:33:28 2012 (r305500) @@ -32,6 +32,8 @@ DOCS= CREDITS FAQ README SCRIPTS TODO \ PLIST_FILES= bin/tt++ PORTDOCS= ${DOCS:T} +SLAVEDIRS= chinese/tintin++ + .include .if ${PORT_OPTIONS:MBIG5} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 18:44:45 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4F12B106572F; Sun, 7 Oct 2012 18:44:45 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 37CE68FC26; Sun, 7 Oct 2012 18:44:45 +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 q97IijKY050618; Sun, 7 Oct 2012 18:44:45 GMT (envelope-from ohauer@svn.freebsd.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97IijMf050611; Sun, 7 Oct 2012 18:44:45 GMT (envelope-from ohauer@svn.freebsd.org) Message-Id: <201210071844.q97IijMf050611@svn.freebsd.org> From: Olli Hauer Date: Sun, 7 Oct 2012 18:44:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305501 - in head/net-mgmt/argus-monitor: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 18:44:45 -0000 Author: ohauer Date: Sun Oct 7 18:44:44 2012 New Revision: 305501 URL: http://svn.freebsd.org/changeset/ports/305501 Log: - rewrite for options NG framework - /USE_APACHE/USE_APACHE_RUN/ - make usage of ETCDIR, WWWDIR instead PREFIX/(etc|www)/PORTNAME - add pkg-install script to adjust directory file mode, else they differ when installed by package - use @dirrmtry to preserve existing stats ... - bump PORTREVISION PR: 171475 Submitted by: ohauer Approved by: (old) maintainer timeout (port was moved today to ports@) Added: head/net-mgmt/argus-monitor/files/pkg-install.in (contents, props changed) Modified: head/net-mgmt/argus-monitor/Makefile (contents, props changed) head/net-mgmt/argus-monitor/files/apache.conf.in (contents, props changed) head/net-mgmt/argus-monitor/files/argusd.in (contents, props changed) head/net-mgmt/argus-monitor/files/pkg-message.in (contents, props changed) head/net-mgmt/argus-monitor/pkg-plist (contents, props changed) Modified: head/net-mgmt/argus-monitor/Makefile ============================================================================== --- head/net-mgmt/argus-monitor/Makefile Sun Oct 7 18:33:28 2012 (r305500) +++ head/net-mgmt/argus-monitor/Makefile Sun Oct 7 18:44:44 2012 (r305501) @@ -3,7 +3,7 @@ PORTNAME= argus-monitor PORTVERSION= 20100109 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-mgmt MASTER_SITES= http://www.tcp4me.com/code/argus-archive/ DISTNAME= argus-dev-${PORTVERSION} @@ -12,7 +12,7 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Argus - The All Seeing System and Network Monitoring Software -SUB_FILES= pkg-message apache.conf +SUB_FILES= pkg-message apache.conf pkg-install SUB_LIST= PORTNAME=${PORTNAME} APACHEETCDIR=${APACHEETCDIR} PKGMESSAGE= ${WRKDIR}/pkg-message EXTRA_PATCHES= ${FILESDIR}/patch.001 @@ -23,44 +23,49 @@ WRKSRC= ${WRKDIR}/${DISTNAME} USE_PERL5= yes USE_RC_SUBR= argusd HAS_CONFIGURE= yes -USE_APACHE= 22+ +USE_APACHE_RUN= 22+ CONFIGURE_SCRIPT= Configure -CONFIGURE_ARGS= --bin_dir=${PREFIX}/bin --sbin_dir=${PREFIX}/sbin \ - --lib_dir=${PREFIX}/lib/argus-monitor --data_dir=${PREFIX}/etc/argus-monitor \ - --cgi_dir=${PREFIX}/www/${PORTNAME}/cgi-bin -OPTIONS= QPAGE "qpage support" Off \ - FPING "fping support" Off \ - GD "GD graphics support" On +OPTIONS_DEFINE= QPAGE FPING GD +OPTIONS_DEFAULT=GD -.include +QPAGE_DESC= qpage support +FPING_DESC= fping support -.if defined(WITH_QPAGE) -RUN_DEPENDS+= qpage:${PORTSDIR}/comms/qpage +.include + +.if ${PORT_OPTIONS:MQPAGE} BUILD_DEPENDS+= qpage:${PORTSDIR}/comms/qpage +RUN_DEPENDS+= qpage:${PORTSDIR}/comms/qpage .endif -.if defined(WITH_FPING) -RUN_DEPENDS+= fping:${PORTSDIR}/net/fping +.if ${PORT_OPTIONS:MFPING} BUILD_DEPENDS+= fping:${PORTSDIR}/net/fping +RUN_DEPENDS+= fping:${PORTSDIR}/net/fping .endif -.if !defined(WITHOUT_GD) +.if ${PORT_OPTIONS:MGD} BUILD_DEPENDS+= p5-GD>=0:${PORTSDIR}/graphics/p5-GD RUN_DEPENDS+= p5-GD>=0:${PORTSDIR}/graphics/p5-GD .endif +CONFIGURE_ARGS= --bin_dir=${PREFIX}/bin \ + --sbin_dir=${PREFIX}/sbin \ + --lib_dir=${PREFIX}/lib/argus-monitor \ + --data_dir=${ETCDIR} \ + --cgi_dir=${WWWDIR}/cgi-bin + post-install: - ${MKDIR} ${PREFIX}/www/${PORTNAME} ${PREFIX}/www/${PORTNAME}/docroot ${PREFIX}/www/${PORTNAME}/docroot/img ${PREFIX}/www/${PORTNAME}/docroot/sound ${PREFIX}/etc/argus-monitor/notify - ${CP} ${WRKSRC}/misc/argus.css ${WRKSRC}/misc/argus.js ${PREFIX}/www/${PORTNAME}/docroot - ${CP} ${WRKSRC}/misc/argus.logo.gif ${WRKSRC}/misc/nospkr.gif ${WRKSRC}/misc/sad.gif ${WRKSRC}/misc/sadred.gif ${WRKSRC}/misc/smile.gif ${PREFIX}/www/${PORTNAME}/docroot/img - ${CP} ${WRKSRC}/misc/whoopwhoop.wav ${PREFIX}/www/${PORTNAME}/docroot/sound - ${TOUCH} ${PREFIX}/etc/argus-monitor/notno ${PREFIX}/etc/argus-monitor/log - ${CHMOD} 755 ${PREFIX}/www/${PORTNAME} ${PREFIX}/www/${PORTNAME}/docroot ${PREFIX}/www/${PORTNAME}/docroot/img ${PREFIX}/www/${PORTNAME}/docroot/sound ${PREFIX}/etc/argus-monitor/notify - ${CHMOD} 644 ${PREFIX}/www/${PORTNAME}/docroot/argus.* ${PREFIX}/www/${PORTNAME}/docroot/img/*.gif ${PREFIX}/www/${PORTNAME}/docroot/sound/*.wav ${PREFIX}/etc/argus-monitor/notno ${PREFIX}/etc/argus-monitor/log - ${MKDIR} ${PREFIX}/${APACHEETCDIR}/Includes - ${INSTALL_DATA} ${WRKDIR}/apache.conf ${PREFIX}/${APACHEETCDIR}/Includes/${PORTNAME}.conf.sample + @${INSTALL} -m 755 -d ${WWWDIR} ${WWWDIR}/docroot ${WWWDIR}/docroot/img ${WWWDIR}/docroot/sound ${ETCDIR}/notify + @${CP} ${WRKSRC}/misc/argus.css ${WRKSRC}/misc/argus.js ${WWWDIR}/docroot/ + @${CP} ${WRKSRC}/misc/argus.logo.gif ${WRKSRC}/misc/nospkr.gif ${WRKSRC}/misc/sad.gif \ + ${WRKSRC}/misc/sadred.gif ${WRKSRC}/misc/smile.gif ${WWWDIR}/docroot/img/ + @${CP} ${WRKSRC}/misc/whoopwhoop.wav ${WWWDIR}/docroot/sound/ + @${TOUCH} ${ETCDIR}/notno ${ETCDIR}/log + @${MKDIR} ${PREFIX}/${APACHEETCDIR}/Includes + @${INSTALL_DATA} ${WRKDIR}/apache.conf ${PREFIX}/${APACHEETCDIR}/Includes/${PORTNAME}.conf.sample + @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL @${ECHO_CMD} @${CAT} ${PKGMESSAGE} -.include +.include Modified: head/net-mgmt/argus-monitor/files/apache.conf.in ============================================================================== --- head/net-mgmt/argus-monitor/files/apache.conf.in Sun Oct 7 18:33:28 2012 (r305500) +++ head/net-mgmt/argus-monitor/files/apache.conf.in Sun Oct 7 18:44:44 2012 (r305501) @@ -4,10 +4,10 @@ # cgi-bin directory; we single this URL out from # the normal alias parsing below. # -ScriptAliasMatch ^/argus/$ "%%PREFIX%%/www/%%PORTNAME%%/cgi-bin/arguscgi" -ScriptAlias ^/argus/cgi-bin/$ "%%PREFIX%%/www/%%PORTNAME%%/cgi-bin/" +ScriptAliasMatch ^/argus/$ "%%WWWDIR%%/cgi-bin/arguscgi" +ScriptAlias ^/argus/cgi-bin/$ "%%WWWDIR%%/cgi-bin/" - + options ExecCGI AllowOverride none allow from all @@ -18,9 +18,9 @@ ScriptAlias ^/argus/cgi-bin/$ "%%PREFIX% # /img/sad.gif, /img/nospkr.gif and on top level /argus.css and # optionally /argus.js. # -Alias /argus/ "%%PREFIX%%/www/%%PORTNAME%%/docroot/" +Alias /argus/ "%%WWWDIR%%/docroot/" - + options none AllowOverride none allow from all Modified: head/net-mgmt/argus-monitor/files/argusd.in ============================================================================== --- head/net-mgmt/argus-monitor/files/argusd.in Sun Oct 7 18:33:28 2012 (r305500) +++ head/net-mgmt/argus-monitor/files/argusd.in Sun Oct 7 18:44:44 2012 (r305501) @@ -17,14 +17,14 @@ rcvar=argusd_enable command=%%PREFIX%%/sbin/${name} # pidfile=/var/run/${name}.pid required_files=" - %%PREFIX%%/etc/argus-monitor/log \ - %%PREFIX%%/etc/argus-monitor/notno \ - %%PREFIX%%/etc/argus-monitor/config \ - %%PREFIX%%/etc/argus-monitor/users" + %%ETCDIR%%/log \ + %%ETCDIR%%/notno \ + %%ETCDIR%%/config \ + %%ETCDIR%%/users" stop_cmd="%%PREFIX%%/sbin/argusctl shutdown reason=\"rc.argusd stop\"" -start_precmd="/usr/bin/touch %%PREFIX%%/etc/argus-monitor/log" +start_precmd="/usr/bin/touch %%ETCDIR%%/log" extra_commands="console hup" console_cmd="%%PREFIX%%/sbin/argusctl -k console" hup_cmd="%%PREFIX%%/sbin/argusctl -k hup" Added: head/net-mgmt/argus-monitor/files/pkg-install.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/argus-monitor/files/pkg-install.in Sun Oct 7 18:44:44 2012 (r305501) @@ -0,0 +1,22 @@ +#!/bin/sh +# +# $FreeBSD$ + +ETCDIR=%%ETCDIR%% +WWWDIR=%%WWWDIR%% + +if [ "$2" = "POST-INSTALL" ]; then + [ ! -d ${ETCDIR}/gcache ] && mkdir ${ETCDIR}/gcache + [ ! -d ${ETCDIR}/gdata ] && mkdir ${ETCDIR}/gdata + [ ! -d ${ETCDIR}/html ] && mkdir ${ETCDIR}/html + [ ! -d ${ETCDIR}/locale ] && mkdir ${ETCDIR}/locale + [ ! -d ${ETCDIR}/perl ] && mkdir ${ETCDIR}/perl + + chmod a+rwx ${ETCDIR}/gcache ${ETCDIR}/gdata ${ETCDIR}/perl + chmod a+rx ${ETCDIR}/locale + chmod a+r ${ETCDIR}/html + chmod 755 ${WWWDIR} ${WWWDIR}/docroot ${WWWDIR}/docroot/img \ + ${WWWDIR}/docroot/sound ${ETCDIR} ${ETCDIR}/notify + chmod 644 ${WWWDIR}/docroot/argus.* ${WWWDIR}/docroot/img/*.gif \ + ${WWWDIR}/docroot/sound/*.wav ${ETCDIR}/notno ${ETCDIR}/log +fi Modified: head/net-mgmt/argus-monitor/files/pkg-message.in ============================================================================== --- head/net-mgmt/argus-monitor/files/pkg-message.in Sun Oct 7 18:33:28 2012 (r305500) +++ head/net-mgmt/argus-monitor/files/pkg-message.in Sun Oct 7 18:44:44 2012 (r305501) @@ -2,16 +2,15 @@ An apache configuration file has been created which maps /%%PORTNAME%%/: %%PREFIX%%/%%APACHEETCDIR%%/Includes/%%PORTNAME%%.conf.sample - %%PREFIX%%/%%APACHEETCDIR%%/Includes/%%PORTNAME%%.conf.sample Edit it, move it in place. Next move and edit - %%PREFIX%%/etc/%%PORTNAME%%/config.example - %%PREFIX%%/etc/%%PORTNAME%%/users.example + %%ETCDIR%%/config.example + %%ETCDIR%%/users.example into place, then restart apache. -Ensure that ensure that argus_enable=YES is set in your rc.conf prior to +Ensure that argus_enable=YES is set in your rc.conf prior to starting the argusd daemon. ================================================================================ Modified: head/net-mgmt/argus-monitor/pkg-plist ============================================================================== --- head/net-mgmt/argus-monitor/pkg-plist Sun Oct 7 18:33:28 2012 (r305500) +++ head/net-mgmt/argus-monitor/pkg-plist Sun Oct 7 18:44:44 2012 (r305501) @@ -1,29 +1,44 @@ bin/argus-config -etc/argus-monitor/config.example -etc/argus-monitor/locale/de_DE -etc/argus-monitor/locale/el_gr -etc/argus-monitor/locale/fr_fr -etc/argus-monitor/locale/lt_LT -etc/argus-monitor/locale/nl_NL -etc/argus-monitor/locale/ru_RU -etc/argus-monitor/locale/piglatin -etc/argus-monitor/locale/sp_ar -etc/argus-monitor/locale/template -etc/argus-monitor/log -etc/argus-monitor/notno -etc/argus-monitor/users.example +%%APACHEETCDIR%%/Includes/argus-monitor.conf.sample +%%ETCDIR%%/config.example +%%ETCDIR%%/locale/de_DE +%%ETCDIR%%/locale/el_gr +%%ETCDIR%%/locale/fr_fr +%%ETCDIR%%/locale/lt_LT +%%ETCDIR%%/locale/nl_NL +%%ETCDIR%%/locale/piglatin +%%ETCDIR%%/locale/ru_RU +%%ETCDIR%%/locale/sp_ar +%%ETCDIR%%/locale/template +%%ETCDIR%%/log +%%ETCDIR%%/notno +%%ETCDIR%%/users.example lib/argus-monitor/Alias.pm lib/argus-monitor/Argus/Agent.pm +lib/argus-monitor/Argus/Archive.pm +lib/argus-monitor/Argus/Archivist.pm lib/argus-monitor/Argus/Asterisk.pm +lib/argus-monitor/Argus/Compute.pm lib/argus-monitor/Argus/Ctl.pm lib/argus-monitor/Argus/Encode.pm +lib/argus-monitor/Argus/Freeswitch.pm +lib/argus-monitor/Argus/Graph/Data.pm +lib/argus-monitor/Argus/HashDir.pm lib/argus-monitor/Argus/IP.pm +lib/argus-monitor/Argus/MonEl/Expand.pm +lib/argus-monitor/Argus/MonEl/Noise.pm +lib/argus-monitor/Argus/MonEl/Trans.pm lib/argus-monitor/Argus/RPC.pm lib/argus-monitor/Argus/RPC/TCP.pm lib/argus-monitor/Argus/RPC/UDP.pm +lib/argus-monitor/Argus/ReadConfig.pm lib/argus-monitor/Argus/SIP.pm lib/argus-monitor/Argus/SIP/TCP.pm lib/argus-monitor/Argus/SIP/UDP.pm +lib/argus-monitor/Argus/SNMP.pm +lib/argus-monitor/Argus/SNMP/Helper.pm +lib/argus-monitor/Argus/Schedule.pm +lib/argus-monitor/Argus/Web/Overview.pm lib/argus-monitor/Artistic lib/argus-monitor/BaseIO.pm lib/argus-monitor/Chart/Strip.pm @@ -32,11 +47,20 @@ lib/argus-monitor/Conf.pm lib/argus-monitor/Configable.pm lib/argus-monitor/Control.pm lib/argus-monitor/Cron.pm +lib/argus-monitor/DARP.pm +lib/argus-monitor/DARP/Conf.pm +lib/argus-monitor/DARP/Master.pm +lib/argus-monitor/DARP/Misc.pm +lib/argus-monitor/DARP/Service.pm +lib/argus-monitor/DARP/Slave.pm +lib/argus-monitor/DARP/Watch.pm lib/argus-monitor/DNS.pm lib/argus-monitor/DNS/TCP.pm lib/argus-monitor/DNS/UDP.pm lib/argus-monitor/DataBase.pm lib/argus-monitor/Doc.pm +lib/argus-monitor/Encoding/BER.pm +lib/argus-monitor/Encoding/BER/SNMP.pm lib/argus-monitor/Error.pm lib/argus-monitor/Graph.pm lib/argus-monitor/Group.pm @@ -77,68 +101,44 @@ lib/argus-monitor/web_notify.pl lib/argus-monitor/web_override.pl lib/argus-monitor/web_page.pl lib/argus-monitor/web_utils.pl -lib/argus-monitor/Argus/HashDir.pm -lib/argus-monitor/Argus/MonEl/Expand.pm -lib/argus-monitor/Argus/MonEl/Noise.pm -lib/argus-monitor/Argus/MonEl/Trans.pm -lib/argus-monitor/Argus/Archivist.pm -lib/argus-monitor/Argus/Archive.pm -lib/argus-monitor/Argus/Web/Overview.pm -lib/argus-monitor/Argus/ReadConfig.pm -lib/argus-monitor/Argus/Schedule.pm -lib/argus-monitor/Argus/SNMP.pm -lib/argus-monitor/Argus/SNMP/Helper.pm -lib/argus-monitor/Argus/Freeswitch.pm -lib/argus-monitor/Argus/Compute.pm -lib/argus-monitor/Argus/Graph/Data.pm -lib/argus-monitor/Encoding/BER.pm -lib/argus-monitor/Encoding/BER/SNMP.pm -lib/argus-monitor/DARP.pm -lib/argus-monitor/DARP/Master.pm -lib/argus-monitor/DARP/Slave.pm -lib/argus-monitor/DARP/Service.pm -lib/argus-monitor/DARP/Conf.pm -lib/argus-monitor/DARP/Watch.pm -lib/argus-monitor/DARP/Misc.pm lib/argus-monitor/web_web20.pl sbin/argus-agent sbin/argusctl sbin/argusd -%%APACHEETCDIR%%/Includes/argus-monitor.conf.sample -www/argus-monitor/docroot/argus.css -www/argus-monitor/docroot/argus.js -www/argus-monitor/docroot/img/argus.logo.gif -www/argus-monitor/docroot/img/nospkr.gif -www/argus-monitor/docroot/img/sad.gif -www/argus-monitor/docroot/img/sadred.gif -www/argus-monitor/docroot/img/smile.gif -www/argus-monitor/docroot/sound/whoopwhoop.wav -www/argus-monitor/cgi-bin/arguscgi -www/argus-monitor/cgi-bin/argusvxml -@dirrmtry %%APACHEETCDIR%%/Includes +%%WWWDIR%%/cgi-bin/arguscgi +%%WWWDIR%%/cgi-bin/argusvxml +%%WWWDIR%%/docroot/argus.css +%%WWWDIR%%/docroot/argus.js +%%WWWDIR%%/docroot/img/argus.logo.gif +%%WWWDIR%%/docroot/img/nospkr.gif +%%WWWDIR%%/docroot/img/sad.gif +%%WWWDIR%%/docroot/img/sadred.gif +%%WWWDIR%%/docroot/img/smile.gif +%%WWWDIR%%/docroot/sound/whoopwhoop.wav +@dirrm %%WWWDIR%%/docroot/sound +@dirrm %%WWWDIR%%/docroot/img +@dirrm %%WWWDIR%%/docroot +@dirrm %%WWWDIR%%/cgi-bin +@dirrmtry %%WWWDIR%% +@dirrm lib/argus-monitor/Encoding/BER +@dirrm lib/argus-monitor/Encoding @dirrm lib/argus-monitor/DNS +@dirrm lib/argus-monitor/DARP @dirrm lib/argus-monitor/Chart +@dirrm lib/argus-monitor/Argus/Web +@dirrm lib/argus-monitor/Argus/SNMP @dirrm lib/argus-monitor/Argus/SIP @dirrm lib/argus-monitor/Argus/RPC @dirrm lib/argus-monitor/Argus/MonEl -@dirrm lib/argus-monitor/Argus/Web -@dirrm lib/argus-monitor/Argus/SNMP @dirrm lib/argus-monitor/Argus/Graph @dirrm lib/argus-monitor/Argus -@dirrm lib/argus-monitor/DARP -@dirrm lib/argus-monitor/Encoding/BER -@dirrm lib/argus-monitor/Encoding @dirrm lib/argus-monitor -@dirrm etc/argus-monitor/stats -@dirrm etc/argus-monitor/perl -@dirrm etc/argus-monitor/notify -@dirrm etc/argus-monitor/locale -@dirrm etc/argus-monitor/html -@dirrm etc/argus-monitor/gdata -@dirrm etc/argus-monitor/gcache -@dirrm etc/argus-monitor -@dirrm www/argus-monitor/docroot/img -@dirrm www/argus-monitor/docroot/sound -@dirrm www/argus-monitor/docroot -@dirrm www/argus-monitor/cgi-bin -@dirrm www/argus-monitor +@dirrmtry %%ETCDIR%%/stats +@dirrmtry %%ETCDIR%%/perl +@dirrmtry %%ETCDIR%%/notify +@dirrm %%ETCDIR%%/locale +@dirrmtry %%ETCDIR%%/html +@dirrmtry %%ETCDIR%%/gdata +@dirrmtry %%ETCDIR%%/gcache +@dirrmtry %%ETCDIR%% +@dirrmtry %%APACHEETCDIR%%/Includes From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 18:46:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by hub.freebsd.org (Postfix) with ESMTP id 70993106564A; Sun, 7 Oct 2012 18:46:19 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from opti.dougb.net (hub.freebsd.org [69.147.83.54]) by mx2.freebsd.org (Postfix) with ESMTP id 24C9C14D8AD; Sun, 7 Oct 2012 18:46:19 +0000 (UTC) Message-ID: <5071CDFA.4000807@FreeBSD.org> Date: Sun, 07 Oct 2012 11:46:18 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20121001 Thunderbird/15.0.1 MIME-Version: 1.0 To: Chris Rees References: <201209242123.q8OLNp8Q002624@svn.freebsd.org> <5070A2F6.205@FreeBSD.org> <20121006220758.GC22164@ithaqua.etoilebsd.net> <5070AD5F.5020002@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.4.4 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r304800 - in head: . textproc textproc/aspell textproc/aspell-without-dicten textproc/en-aspell X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 18:46:19 -0000 On 10/07/2012 11:09, Chris Rees wrote: > On 6 October 2012 23:14, Doug Barton wrote: >> On 10/06/2012 15:07, Baptiste Daroussin wrote: >>> On Sat, Oct 06, 2012 at 02:30:30PM -0700, Doug Barton wrote: >>>> On 09/24/2012 14:23, Baptiste Daroussin wrote: >>>>> No longer install the english dictionary (please use textproc/en-aspell if you >>>>> want the english dictionary) >>>> >>>> What was the motivation for this change? >>>> >>> Motivation is simplifying binary package, this was stupid to have 2 different >>> ports for aspell + one port for the dictionary, when we do not lose any features >>> with having a single aspell port not incompatible with another one. >> >> Makes sense, thanks for the explanation. >> >> It would probably have been useful to include that in the commit >> message, for future reference. Ideally commit messages should be roughly >> 2/3 "why", and 1/3 "what." >> > > 3/3 "why", 0/3 "what"-- we have inline SVN diffs nowadays! Yeah, but they don't show up in the logs. -- I am only one, but I am one. I cannot do everything, but I can do something. And I will not let what I cannot do interfere with what I can do. -- Edward Everett Hale, (1822 - 1909) From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 18:47:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CFC2D1065673 for ; Sun, 7 Oct 2012 18:47:35 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3A69B8FC1A for ; Sun, 7 Oct 2012 18:47:35 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id wc20so4168284obb.13 for ; Sun, 07 Oct 2012 11:47:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=FSncDINrX2us96bQoS1sFFILc0FD33d4TOlh/I2RFtw=; b=gpX2XDTRArkzU+1n/gdsP2JyroeVnsi7v8QqTTeNgHA8xzaaZ+OIeHEN/vPiwVBoVf 898c6nwIJzXcYyqdhAMzImTUQr0/6npTF+Jw+ijqdJq87C35TLOVjkuZcPgaqIf++Zti qVMJbKkQ5BoqyuNm5LpiDmyFZO0Crol5xSGFbfIaX4J5KPXfMS+6OEzqqRNxX8f5wTbv Wj6IEUVjFGwEDbW6SM+NAq8ybmk54k3FsOiEHMLN8IjM7Jz9vYucR6XzdjmwwCANr8ia NpwLtJ8/yKPVJyslFbsMgUsA6xKoGOY0KcmLSrLizm06UHA28E4dJMKfKAAnUG2JWfpA motg== Received: by 10.182.0.1 with SMTP id 1mr11367655oba.18.1349635654607; Sun, 07 Oct 2012 11:47:34 -0700 (PDT) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.182.38.129 with HTTP; Sun, 7 Oct 2012 11:47:14 -0700 (PDT) In-Reply-To: <201210070719.q977JcCF046205@svn.freebsd.org> References: <201210070719.q977JcCF046205@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 8 Oct 2012 02:47:14 +0800 X-Google-Sender-Auth: IoNZcghsRkYSHBIbGje2KXRfkFo Message-ID: To: Wen Heping Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQknCgvL3H43uQ/vaBvjVjojeBaTEXTGvhNBhHvnwIWecvGQdyBrCfUjnFhX3RoaNSJFdqnO Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305435 - head/www/mediawiki X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 18:47:35 -0000 On Sun, Oct 7, 2012 at 3:19 PM, Wen Heping wrote: > Author: wen > Date: Sun Oct 7 07:19:37 2012 > New Revision: 305435 > URL: http://svn.freebsd.org/changeset/ports/305435 > > Modified: head/www/mediawiki/Makefile > ============================================================================== > +MEMCACHED_DESCR=use memcached > +APC_DESCR= use pecl-APC(Mediawiki recommended) > +EACCEL_DESCR= use eAccelerator (instead of pecl-APC) > +IMAGICK_DESCR= use ImageMagick FYI, it should be *_DESC. Regards, sunpoet From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 18:53:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 256D9106564A; Sun, 7 Oct 2012 18:53:26 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0FD368FC12; Sun, 7 Oct 2012 18:53:26 +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 q97IrP7B051909; Sun, 7 Oct 2012 18:53:25 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97IrPqG051907; Sun, 7 Oct 2012 18:53:25 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201210071853.q97IrPqG051907@svn.freebsd.org> From: Doug Barton Date: Sun, 7 Oct 2012 18:53:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305502 - head/security/libotr X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 18:53:26 -0000 Author: dougb Date: Sun Oct 7 18:53:25 2012 New Revision: 305502 URL: http://svn.freebsd.org/changeset/ports/305502 Log: silence reinplace command from last commit Modified: head/security/libotr/Makefile Modified: head/security/libotr/Makefile ============================================================================== --- head/security/libotr/Makefile Sun Oct 7 18:44:44 2012 (r305501) +++ head/security/libotr/Makefile Sun Oct 7 18:53:25 2012 (r305502) @@ -42,7 +42,7 @@ post-patch: ${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.am .if ${OSVERSION} >= 800000 && ${OSVERSION} < 1000000 - ${REINPLACE_CMD} -e 's#OTR_CHECK_CFLAGS(.*stack-protector.*#dnl &#' \ + @${REINPLACE_CMD} -e 's#OTR_CHECK_CFLAGS(.*stack-protector.*#dnl &#' \ ${WRKSRC}/configure.ac .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 19:31:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C6DDE1065678; Sun, 7 Oct 2012 19:31:20 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A11B28FC1B; Sun, 7 Oct 2012 19:31:17 +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 q97JVHfZ057151; Sun, 7 Oct 2012 19:31:17 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97JVHuB057149; Sun, 7 Oct 2012 19:31:17 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201210071931.q97JVHuB057149@svn.freebsd.org> From: Doug Barton Date: Sun, 7 Oct 2012 19:31:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305503 - head/security/libpreludedb X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 19:31:20 -0000 Author: dougb Date: Sun Oct 7 19:31:17 2012 New Revision: 305503 URL: http://svn.freebsd.org/changeset/ports/305503 Log: Restore option descriptions to what the maintainer actually put in the PR Pointy hat to: eadler PR: ports/172426 Submitted by: Michael Gmelin (maintainer) Modified: head/security/libpreludedb/Makefile Modified: head/security/libpreludedb/Makefile ============================================================================== --- head/security/libpreludedb/Makefile Sun Oct 7 18:53:25 2012 (r305502) +++ head/security/libpreludedb/Makefile Sun Oct 7 19:31:17 2012 (r305503) @@ -23,6 +23,11 @@ PORTDOCS= * OPTIONS_DEFINE= DOCS MYSQL PERL PGSQL PYTHON SQLITE OPTIONS_DEFAULT=MYSQL +PERL_DESC= Include Perl bindings +PYTHON_DESC= Include Python bindings +MYSQL_DESC= Use MySQL backend +PGSQL_DESC= Use PostgreSQL backend +SQLITE_DESC= Use SQLite backend .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 19:33:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8EF171065677; Sun, 7 Oct 2012 19:33:20 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 01FDE8FC17; Sun, 7 Oct 2012 19:33:20 +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 q97JXJDE057485; Sun, 7 Oct 2012 19:33:19 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97JXJmb057483; Sun, 7 Oct 2012 19:33:19 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210071933.q97JXJmb057483@svn.freebsd.org> From: Mark Linimon Date: Sun, 7 Oct 2012 19:33:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305504 - head/Mk X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 19:33:20 -0000 Author: linimon Date: Sun Oct 7 19:33:19 2012 New Revision: 305504 URL: http://svn.freebsd.org/changeset/ports/305504 Log: Introduce the new semantic USE_GCC=any, which can be set in any port Makefile. For systems where CC is gcc, this has no effect. For systems where CC is clang, this forces the use of the base GCC suite. (Some forward compatibility is also covered in the patch.) Confirmed to have no ill-effects via multiple runs with gcc as CC: http://pointyhat-west.isc.freebsd.org/errorlogs/amd64-errorlogs/e.8-exp-bcm.20121006012556.pointyhat-west/ and clang as CC: http://pointyhat-west.isc.freebsd.org/errorlogs/amd64-errorlogs/e.9-exp-clang.20121005165436.pointyhat-west/ This change is necessary (but insufficient) for the upcoming switch to clang as CC for the tier-1 architectures. Finally, accept FORCE_BASE_CC_FOR_TESTING as an override for USE_GCC, for those who wish to help debug ports with clang. It is an absolute override; it overrides not only the value "any" but also any value such as "4.4+". Reviewed by: brooks, gerald Approved by: maintainer (gerald) Modified: head/Mk/bsd.gcc.mk Modified: head/Mk/bsd.gcc.mk ============================================================================== --- head/Mk/bsd.gcc.mk Sun Oct 7 19:31:17 2012 (r305503) +++ head/Mk/bsd.gcc.mk Sun Oct 7 19:33:19 2012 (r305504) @@ -100,7 +100,16 @@ MAKE_ENV+= F77="${F77}" FC="${FC}" FFLA .endif -.if defined(USE_GCC) +.if defined(USE_GCC) && !defined(FORCE_BASE_CC_FOR_TESTING) + +. if ${USE_GCC} == any + +# enable the clang-is-cc workaround. default to the last gcc imported +# into base. +_USE_GCC:= 4.2 +_GCC_ORLATER:= true + +. else # ${USE_GCC} == any # See if we can use a later version or exclusively the one specified. _USE_GCC:= ${USE_GCC:S/+//} @@ -108,6 +117,8 @@ _USE_GCC:= ${USE_GCC:S/+//} _GCC_ORLATER:= true .endif +. endif # ${USE_GCC} == any + # Check if USE_GCC points to a valid version. .for v in ${GCCVERSIONS} . for j in ${GCCVERSION_${v}} @@ -200,9 +211,17 @@ FFLAGS+= -Wl,-rpath=${_GCC_RUNTIME} # The following is for the sakes of some ports which use this without # ever telling us; to be fixed. _GCC_BUILD_DEPENDS:= ${_GCC_PORT_DEPENDS} +. endif # ${_USE_GCC} != 3.4 +. else # ${OSVERSION} < ${_GCCVERSION_${v}_L} || ${OSVERSION} > ${_GCCVERSION_${v}_R} +CC:= gcc +CXX:= g++ +. if exists(/usr/bin/gcpp) +CPP:= gcpp +. else +CPP:= cpp . endif -. endif -. endif +. endif # ${OSVERSION} < ${_GCCVERSION_${v}_L} || ${OSVERSION} > ${_GCCVERSION_${v}_R} +. endif # ${_USE_GCC} == ${_GCCVERSION_${v}_V} .endfor .undef V @@ -217,7 +236,7 @@ USE_BINUTILS= yes . endif . endif .endif -.endif # defined(_USE_GCC) +.endif # defined(_USE_GCC) && !defined(FORCE_BASE_CC_FOR_TESTING) test-gcc: From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 20:09:52 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68FCE106574B; Sun, 7 Oct 2012 20:09:52 +0000 (UTC) (envelope-from thierry@pompo.net) Received: from mx1a.lautre.net (mx1a.lautre.net [80.67.160.71]) by mx1.freebsd.org (Postfix) with ESMTP id C1D088FC16; Sun, 7 Oct 2012 20:09:51 +0000 (UTC) Received: from graf.pompo.net (graf.pompo.net [78.225.128.39]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: thierry@pompo.net) by mx1a.lautre.net (Postfix) with ESMTPSA id 1A6FC40A8D; Sun, 7 Oct 2012 22:09:45 +0200 (CEST) Received: by graf.pompo.net (Postfix, from userid 1001) id 003D511467; Sun, 7 Oct 2012 22:09:27 +0200 (CEST) Date: Sun, 7 Oct 2012 22:09:27 +0200 From: Thierry Thomas To: Baptiste Daroussin Message-ID: <20121007200927.GB74099@graf.pompo.net> Mail-Followup-To: Baptiste Daroussin , Doug Barton , ports-committers@FreeBSD.org, svn-ports-all@FreeBSD.org, svn-ports-head@FreeBSD.org References: <201209242123.q8OLNp8Q002624@svn.freebsd.org> <5070A2F6.205@FreeBSD.org> <20121006220758.GC22164@ithaqua.etoilebsd.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="p4qYPpj5QlsIQJ0K" Content-Disposition: inline In-Reply-To: <20121006220758.GC22164@ithaqua.etoilebsd.net> User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 9.0-STABLE i386 Organization: Kabbale Eros X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: X-PGP: 0xC71405A2 Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, Doug Barton , ports-committers@FreeBSD.org Subject: Re: svn commit: r304800 - in head: . textproc textproc/aspell textproc/aspell-without-dicten textproc/en-aspell X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 20:09:52 -0000 --p4qYPpj5QlsIQJ0K Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le dim 7 oct 12 =E0 0:07:58 +0200, Baptiste Daroussin =E9crivait=A0: > On Sat, Oct 06, 2012 at 02:30:30PM -0700, Doug Barton wrote: > > On 09/24/2012 14:23, Baptiste Daroussin wrote: > > > No longer install the english dictionary (please use textproc/en-aspe= ll if you > > > want the english dictionary) > >=20 > > What was the motivation for this change? > Motivation is simplifying binary package, this was stupid to have 2 diffe= rent > ports for aspell + one port for the dictionary, when we do not lose any f= eatures > with having a single aspell port not incompatible with another one. Years ago, I created textproc/aspell-without-dicten during the split between the engine and its dictionaries, and kept aspell with the english dictionaries, as it was previously (POLA...). A better solution would have been to repocopy aspell to aspell-engine, and to transform aspell into a metaport of aspell-engine + en-aspell, and then to change the dependency from aspell to aspell-engine in the consumers ports, but, in these days, recopies were expensive. --=20 Th. Thomas. --p4qYPpj5QlsIQJ0K Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (FreeBSD) iEYEARECAAYFAlBx4XcACgkQc95pjMcUBaJUUgCguQQv3FSIBf2rrsFKpCasxDwC ZOwAoIu4JHxsQ0sEn26LtN6JEpSKx+1e =AXat -----END PGP SIGNATURE----- --p4qYPpj5QlsIQJ0K-- From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 20:21:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B9D9A106566C; Sun, 7 Oct 2012 20:21:36 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A44388FC12; Sun, 7 Oct 2012 20:21:36 +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 q97KLaWL063787; Sun, 7 Oct 2012 20:21:36 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97KLasv063784; Sun, 7 Oct 2012 20:21:36 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201210072021.q97KLasv063784@svn.freebsd.org> From: Boris Samorodov Date: Sun, 7 Oct 2012 20:21:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305505 - head/graphics/icoutils X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 20:21:36 -0000 Author: bsam Date: Sun Oct 7 20:21:35 2012 New Revision: 305505 URL: http://svn.freebsd.org/changeset/ports/305505 Log: . update to version 0.30.0; . trim headers; . remove LICENSE_FILE for the standard (GPLv3) license. Modified: head/graphics/icoutils/Makefile head/graphics/icoutils/distinfo Modified: head/graphics/icoutils/Makefile ============================================================================== --- head/graphics/icoutils/Makefile Sun Oct 7 19:33:19 2012 (r305504) +++ head/graphics/icoutils/Makefile Sun Oct 7 20:21:35 2012 (r305505) @@ -1,13 +1,8 @@ -# New ports collection makefile for: icoutils -# Date created: Sun Jun 12 10:19:46 UTC 2005 -# Whom: Mario Sergio Fujikawa Ferreira -# +# Created by: Mario Sergio Fujikawa Ferreira # $FreeBSD$ -# PORTNAME= icoutils -PORTVERSION= 0.29.1 -PORTREVISION= 1 +PORTVERSION= 0.30.0 CATEGORIES= graphics MASTER_SITES= SAVANNAH @@ -15,7 +10,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Convert/extract images in Microsoft Windows(R) icon/cursor files LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= png15:${PORTSDIR}/graphics/png RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww Modified: head/graphics/icoutils/distinfo ============================================================================== --- head/graphics/icoutils/distinfo Sun Oct 7 19:33:19 2012 (r305504) +++ head/graphics/icoutils/distinfo Sun Oct 7 20:21:35 2012 (r305505) @@ -1,2 +1,2 @@ -SHA256 (icoutils-0.29.1.tar.bz2) = 646c33e5ecefb2faa254fca01c816ceae3c854855f9dfe9e896e301fc8c61ea0 -SIZE (icoutils-0.29.1.tar.bz2) = 456955 +SHA256 (icoutils-0.30.0.tar.bz2) = b62956462db3f5dc2961469279dab89f41098fd47537a17e781fd553dbaa21c0 +SIZE (icoutils-0.30.0.tar.bz2) = 462718 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 20:28:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 552D5106566B for ; Sun, 7 Oct 2012 20:28:16 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 1C8CC8FC20 for ; Sun, 7 Oct 2012 20:28:15 +0000 (UTC) Received: by mail-pb0-f54.google.com with SMTP id rp8so3815397pbb.13 for ; Sun, 07 Oct 2012 13:28:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=rj6pMKAgOBisncvY4BjLqO08KVa39o+346DVh8NlH/0=; b=M/EtZ6AXEqPwLLebPSZ0k+lIkffjUkNdvAj8W9zYOxWzlkosm/o6LfZWJUoSZdraKK FkkUv7reJX09c4iwoTNR4GF3GdEVvCLddQBkmR+sm2CxMNl670ZnM1j1xoKE6Bx4cS2O +zJG0OyEl9jE9VHGZRZtbZSaV582C5C7eJSeY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=rj6pMKAgOBisncvY4BjLqO08KVa39o+346DVh8NlH/0=; b=RqA+4VnvPdEaLnCKpJB7e7dkVmQg5TWapWxsW2TK2sCn7dyVWq/V3fZxKlK26haYyW wLSuyu17ZJIB/4kmZchn4vfltTgpAeaUL0h/btJUzDsVVKheF9253Rxic2ce74ECKM1S nXM54Hz7FUW+mJZkbDw0lVfw7MX3b7Ea+ZStQQY9orhlDqI0MyVmbz55FmfDi8LMhfgi mpC/dZFN1sUG9Zm9n8I5DQChnl7egMBDKMUttr5hXTi6/gg2/rwt+mWIhVhCDd1otou4 ZrIsYfclxBg3AOjFMb18li+awG6XaZd2BGvtnE0TS7QFfuwbhMT1zrsivGsakBcH7RjL DYqA== Received: by 10.68.200.72 with SMTP id jq8mr47543629pbc.38.1349641695711; Sun, 07 Oct 2012 13:28:15 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.161.163 with HTTP; Sun, 7 Oct 2012 13:27:45 -0700 (PDT) In-Reply-To: <201210071931.q97JVHuB057149@svn.freebsd.org> References: <201210071931.q97JVHuB057149@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 16:27:45 -0400 X-Google-Sender-Auth: NqD8m6dzN0lhXRgZIKwJNDAIIos Message-ID: To: Doug Barton Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQlCTtRN4BCaVOtEYu49FCz8k0aVxrH1ScWtixA+E4wc6qh3Nfb/eHcHFGRwkflbm8YxTPnv Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305503 - head/security/libpreludedb X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 20:28:16 -0000 On 7 October 2012 15:31, Doug Barton wrote: > Author: dougb > Date: Sun Oct 7 19:31:17 2012 > New Revision: 305503 > URL: http://svn.freebsd.org/changeset/ports/305503 > > Log: > Restore option descriptions to what the maintainer actually put in the PR I'm sorry, did you read the PR or the port maintainer? > Pointy hat to: eadler This belongs to you. -- Eitan Adler Source & Ports committer X11, Bugbusting teams From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 20:35:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6C2D1065691; Sun, 7 Oct 2012 20:35:26 +0000 (UTC) (envelope-from nox@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B72E28FC17; Sun, 7 Oct 2012 20:35:26 +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 q97KZQgs066501; Sun, 7 Oct 2012 20:35:26 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97KZQwZ066499; Sun, 7 Oct 2012 20:35:26 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201210072035.q97KZQwZ066499@svn.freebsd.org> From: Juergen Lock Date: Sun, 7 Oct 2012 20:35:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305506 - head/multimedia/libxine X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 20:35:27 -0000 Author: nox Date: Sun Oct 7 20:35:26 2012 New Revision: 305506 URL: http://svn.freebsd.org/changeset/ports/305506 Log: Typo fix. Modified: head/multimedia/libxine/Makefile Modified: head/multimedia/libxine/Makefile ============================================================================== --- head/multimedia/libxine/Makefile Sun Oct 7 20:21:35 2012 (r305505) +++ head/multimedia/libxine/Makefile Sun Oct 7 20:35:26 2012 (r305506) @@ -1,4 +1,4 @@ -# Creates by: alex +# Created by: alex # $FreeBSD$ PORTNAME= xine From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 20:43:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EE73106564A; Sun, 7 Oct 2012 20:43:22 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E333B8FC08; Sun, 7 Oct 2012 20:43: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 q97KhLUF067667; Sun, 7 Oct 2012 20:43:21 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97KhLpS067663; Sun, 7 Oct 2012 20:43:21 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210072043.q97KhLpS067663@svn.freebsd.org> From: "Jason E. Hale" Date: Sun, 7 Oct 2012 20:43:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305507 - in head/security/binwalk: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 20:43:22 -0000 Author: jhale Date: Sun Oct 7 20:43:21 2012 New Revision: 305507 URL: http://svn.freebsd.org/changeset/ports/305507 Log: - Update to 0.4.5 [1] - Drop specific ABI version numbers from LIB_DEPENDS [2] - Trim Makefile header [2] - Convert to new options framework [2] - Fix build on 7.x [2] PR: ports/172395 Submitted by: Kurt Jaeger (maintainer) [1] Approved by: makc (mentor), maintainer [2] Added: head/security/binwalk/files/ head/security/binwalk/files/patch-binwalk.c (contents, props changed) Modified: head/security/binwalk/Makefile (contents, props changed) head/security/binwalk/distinfo (contents, props changed) Modified: head/security/binwalk/Makefile ============================================================================== --- head/security/binwalk/Makefile Sun Oct 7 20:35:26 2012 (r305506) +++ head/security/binwalk/Makefile Sun Oct 7 20:43:21 2012 (r305507) @@ -1,11 +1,7 @@ -# New ports collection makefile for: binwalk -# Date created: 6 February 2012 -# Whom: Kurt Jaeger -# # $FreeBSD$ PORTNAME= binwalk -PORTVERSION= 0.4.3 +PORTVERSION= 0.4.5 CATEGORIES= security MASTER_SITES= GOOGLE_CODE @@ -14,25 +10,26 @@ COMMENT= Search binary images for embedd LICENSE= MIT -LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl +LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl PLIST_FILES= bin/binwalk \ etc/binwalk/magic.binarch \ etc/binwalk/magic.bincast \ etc/binwalk/magic.binwalk \ - etc/binwalk/magic.o PLIST_DIRS= etc/binwalk PORTDOCS= README GNU_CONFIGURE= yes -CFLAGS+= -I${LOCALBASE}/include +CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src +.include + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/docs/README ${DOCSDIR} .endif Modified: head/security/binwalk/distinfo ============================================================================== --- head/security/binwalk/distinfo Sun Oct 7 20:35:26 2012 (r305506) +++ head/security/binwalk/distinfo Sun Oct 7 20:43:21 2012 (r305507) @@ -1,2 +1,2 @@ -SHA256 (binwalk-0.4.3.tar.gz) = 2eceb316bfb65d43c3422caf5cdd3752ec5d79b1fed57253f47e8513cd9dcaac -SIZE (binwalk-0.4.3.tar.gz) = 701052 +SHA256 (binwalk-0.4.5.tar.gz) = 0797173ef20f581e7573976c70e4b2575656d56b482a9392a8795714436da2f0 +SIZE (binwalk-0.4.5.tar.gz) = 112526 Added: head/security/binwalk/files/patch-binwalk.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/binwalk/files/patch-binwalk.c Sun Oct 7 20:43:21 2012 (r305507) @@ -0,0 +1,15 @@ +--- ./binwalk.c.orig 2012-10-07 07:44:55.000000000 -0400 ++++ ./binwalk.c 2012-10-07 07:57:58.000000000 -0400 +@@ -78,7 +78,12 @@ + + /* Initialize default configuration settings */ + /* Thanks to dannyb for these flags - much improved scan times! */ ++#include ++#if __FreeBSD_version >= 800086 + config.flags = MAGIC_NO_CHECK_TEXT | MAGIC_NO_CHECK_ENCODING; ++#else ++ config.flags = MAGIC_NO_CHECK_ASCII; ++#endif + config.align = DEFAULT_BYTE_ALIGN; + config.smart = 1; + From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 20:44:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 09E711065676 for ; Sun, 7 Oct 2012 20:44:36 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id AA06F8FC1E for ; Sun, 7 Oct 2012 20:44:35 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so3751937pad.13 for ; Sun, 07 Oct 2012 13:44:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=ezsWo8iI2sJE0gcGY5Vxeff3KPpEjhsGCB5njuiK6O8=; b=n4FBVvmYAtfWwx8URNz9Kf9RzdOH4e5nO0F0xD8HZlhP14RLzqD3PBnMipai2jlDrL ZpUud0evJPHGxJ1XXUT0HoRzixl4v+ow024kneGN09OKqFH4pY5qoGok4/ReTUHNpt7c 8puJ4KicCX36VAHgDb7i1zNU6A05yyHmWu7R8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=ezsWo8iI2sJE0gcGY5Vxeff3KPpEjhsGCB5njuiK6O8=; b=WA6HPh2fa+8dJWzScUz+Zk3LSpeku9szbps8lMai/bWVFHz9W7PE3Kx6Pgly5hXyd2 6Te/sRHDsaZQx7SROUnkB4BvPEEZsNO4qGeBfSKv7LOY2x36M2J4+R6UZiIUD1+Lpw6g NEkOJDVkj5SWJKeH6gWGapAQTykhGJKCeved0gOo5DNtSv+FePppoZZOZr7IhmSroo4W rB0mIeWJpOtpQ8R7f0m8JBiDsS7CNSa3nSMe8qp+4Xu2mxg1cXQ09ajsvG0xf47mpwQF iyYK2Vzog/wyCyg6gmVPdjahftkZVeQWB3j/+7pY25s7h8oyKtpNmQoVaBLPb7cWRe59 Bd2Q== Received: by 10.68.242.231 with SMTP id wt7mr47602330pbc.99.1349642675047; Sun, 07 Oct 2012 13:44:35 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.161.163 with HTTP; Sun, 7 Oct 2012 13:44:04 -0700 (PDT) In-Reply-To: References: <201209242123.q8OLNp8Q002624@svn.freebsd.org> <5070A2F6.205@FreeBSD.org> <20121006220758.GC22164@ithaqua.etoilebsd.net> <5070AD5F.5020002@FreeBSD.org> From: Eitan Adler Date: Sun, 7 Oct 2012 16:44:04 -0400 X-Google-Sender-Auth: eh_6SzxcheLLMQbgWrqU3a4bfdg Message-ID: To: Chris Rees Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmdLCyo2PQsMjXR3apV5U2btRH7Pot5s6XVZfc6uKrjqIsL6gRV07fhU4a6aob++eponbUt Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , Doug Barton , svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r304800 - in head: . textproc textproc/aspell textproc/aspell-without-dicten textproc/en-aspell X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 20:44:36 -0000 On 7 October 2012 14:09, Chris Rees wrote: > 3/3 "why", 0/3 "what"-- we have inline SVN diffs nowadays! it helps to have a quick summary of *what* changed so you don't need to go wadding through lots of diffs. :) -- Eitan Adler Source & Ports committer X11, Bugbusting teams From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 20:48:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6ABEC106564A; Sun, 7 Oct 2012 20:48:21 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 545438FC0A; Sun, 7 Oct 2012 20:48: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 q97KmLWE068383; Sun, 7 Oct 2012 20:48:21 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97KmLVo068380; Sun, 7 Oct 2012 20:48:21 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210072048.q97KmLVo068380@svn.freebsd.org> From: Eitan Adler Date: Sun, 7 Oct 2012 20:48:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305508 - in head: devel/cdecl sysutils/x86info X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 20:48:21 -0000 Author: eadler Date: Sun Oct 7 20:48:20 2012 New Revision: 305508 URL: http://svn.freebsd.org/changeset/ports/305508 Log: These ports do not build with clang. Use the recently added USE_GCC=any as a result. Modified: head/devel/cdecl/Makefile head/sysutils/x86info/Makefile Modified: head/devel/cdecl/Makefile ============================================================================== --- head/devel/cdecl/Makefile Sun Oct 7 20:43:21 2012 (r305507) +++ head/devel/cdecl/Makefile Sun Oct 7 20:48:20 2012 (r305508) @@ -12,6 +12,7 @@ COMMENT= Explains complicated C/C++ decl USE_CSTD= c89 +USE_GCC= any ALL_TARGET= ${PORTNAME} MAN1= cdecl.1 MLINKS= cdecl.1 c++decl.1 Modified: head/sysutils/x86info/Makefile ============================================================================== --- head/sysutils/x86info/Makefile Sun Oct 7 20:43:21 2012 (r305507) +++ head/sysutils/x86info/Makefile Sun Oct 7 20:48:20 2012 (r305508) @@ -16,6 +16,7 @@ LIB_DEPENDS= pci:${PORTSDIR}/devel/libpc ONLY_FOR_ARCHS= i386 amd64 +USE_GCC= any USE_GMAKE= yes ALL_TARGET= x86info lsmsr USE_PKGCONFIG= build From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 21:03:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93CCA1065670; Sun, 7 Oct 2012 21:03:16 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6EEA18FC0A; Sun, 7 Oct 2012 21:03:16 +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 q97L3GJo070358; Sun, 7 Oct 2012 21:03:16 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97L3Gnf070356; Sun, 7 Oct 2012 21:03:16 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210072103.q97L3Gnf070356@svn.freebsd.org> From: "Jason E. Hale" Date: Sun, 7 Oct 2012 21:03:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305509 - head/security/binwalk X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 21:03:16 -0000 Author: jhale Date: Sun Oct 7 21:03:15 2012 New Revision: 305509 URL: http://svn.freebsd.org/changeset/ports/305509 Log: - Fix typo Noticed by: bsam Approved by: makc (mentor implicit) Modified: head/security/binwalk/Makefile Modified: head/security/binwalk/Makefile ============================================================================== --- head/security/binwalk/Makefile Sun Oct 7 20:48:20 2012 (r305508) +++ head/security/binwalk/Makefile Sun Oct 7 21:03:15 2012 (r305509) @@ -15,7 +15,7 @@ LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl PLIST_FILES= bin/binwalk \ etc/binwalk/magic.binarch \ etc/binwalk/magic.bincast \ - etc/binwalk/magic.binwalk \ + etc/binwalk/magic.binwalk PLIST_DIRS= etc/binwalk PORTDOCS= README From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 22:02:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E2B811065672; Sun, 7 Oct 2012 22:02:06 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CD92A8FC08; Sun, 7 Oct 2012 22:02:06 +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 q97M26hd078103; Sun, 7 Oct 2012 22:02:06 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97M26pd078101; Sun, 7 Oct 2012 22:02:06 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210072202.q97M26pd078101@svn.freebsd.org> From: "Jason E. Hale" Date: Sun, 7 Oct 2012 22:02:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305510 - head/games/bzflag X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 22:02:07 -0000 Author: jhale Date: Sun Oct 7 22:02:06 2012 New Revision: 305510 URL: http://svn.freebsd.org/changeset/ports/305510 Log: - Mark MAKE_JOBS_UNSAFE - Add LICENSE While here: - Trim Makefile header PR: ports/172462 Submitted by: Kevin Zheng (maintainer) Approved by: makc, avilla (mentors implicit) Modified: head/games/bzflag/Makefile Modified: head/games/bzflag/Makefile ============================================================================== --- head/games/bzflag/Makefile Sun Oct 7 21:03:15 2012 (r305509) +++ head/games/bzflag/Makefile Sun Oct 7 22:02:06 2012 (r305510) @@ -1,9 +1,4 @@ -# New ports collection makefile for: bzflag -# Date created: 2000/08/12 -# Whom: makeport.pl -# # $FreeBSD$ -# PORTNAME= bzflag PORTVERSION= 2.4.2 @@ -13,12 +8,15 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= kevinz5000@gmail.com COMMENT= A multiplayer 3D tank battle game +LICENSE= LGPL21 + LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl GNU_CONFIGURE= yes USE_BZIP2= yes USE_GL= glew USE_SDL= sdl +MAKE_JOBS_UNSAFE= yes CONFIGURE_ARGS= --enable-ares-build CPPFLAGS+= -I ${LOCALBASE}/include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 23:05:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B82621065674; Sun, 7 Oct 2012 23:05:24 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A1BAA8FC0C; Sun, 7 Oct 2012 23:05: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 q97N5OtB086570; Sun, 7 Oct 2012 23:05:24 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97N5OAe086568; Sun, 7 Oct 2012 23:05:24 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210072305.q97N5OAe086568@svn.freebsd.org> From: "Jason E. Hale" Date: Sun, 7 Oct 2012 23:05:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305511 - head/www/validator X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 23:05:24 -0000 Author: jhale Date: Sun Oct 7 23:05:24 2012 New Revision: 305511 URL: http://svn.freebsd.org/changeset/ports/305511 Log: - Convert to new options framework - Trim Makefile header PR: ports/172460 Submitted by: Naram Qashat (maintainer) Approved by: makc, avilla (mentors implicit) Modified: head/www/validator/Makefile (contents, props changed) Modified: head/www/validator/Makefile ============================================================================== --- head/www/validator/Makefile Sun Oct 7 22:02:06 2012 (r305510) +++ head/www/validator/Makefile Sun Oct 7 23:05:24 2012 (r305511) @@ -1,9 +1,5 @@ -# New ports collection makefile for: w3c-validator -# Date created: 13 September 2005 -# Whom: Naram Qashat -# +# Created by: Naram Qashat # $FreeBSD$ -# PORTNAME= validator PORTVERSION= 1.3 @@ -34,11 +30,13 @@ USE_PERL5_RUN= 5.8.0+ SUB_FILES= pkg-message validator.conf.sample -OPTIONS= HTML_TIDY "Enable HTML Markup Cleaning" On +OPTIONS_DEFINE= HTML_TIDY +OPTIONS_DEFAULT=HTML_TIDY +HTML_TIDY_DESC= Enable HTML Markup Cleaning .include -.if !defined(WITHOUT_HTML_TIDY) +.if ${PORT_OPTIONS:MHTML_TIDY} RUN_DEPENDS+= p5-HTML-Tidy>=0:${PORTSDIR}/textproc/p5-HTML-Tidy .endif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 7 23:21:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92F86106564A; Sun, 7 Oct 2012 23:21:41 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7BEBA8FC14; Sun, 7 Oct 2012 23:21:41 +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 q97NLfkY088662; Sun, 7 Oct 2012 23:21:41 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q97NLfYb088655; Sun, 7 Oct 2012 23:21:41 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210072321.q97NLfYb088655@svn.freebsd.org> From: "Jason E. Hale" Date: Sun, 7 Oct 2012 23:21:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305512 - in head/devel: . clanlib22 clanlib22/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Oct 2012 23:21:41 -0000 Author: jhale Date: Sun Oct 7 23:21:40 2012 New Revision: 305512 URL: http://svn.freebsd.org/changeset/ports/305512 Log: - Repocopy devel/clanlib -> devel/clanlib22 - Update to 2.2.12 PR: ports/172292 Submitted by: Chris Petrik Approved by: makc (mentor) Added: head/devel/clanlib22/ - copied from r305423, head/devel/clanlib/ Modified: head/devel/Makefile head/devel/clanlib22/Makefile head/devel/clanlib22/distinfo head/devel/clanlib22/files/patch-Sources__Core__System__Unix__init_linux.cpp head/devel/clanlib22/files/patch-Sources__Network__Socket__unix_socket.cpp head/devel/clanlib22/pkg-plist Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 7 23:05:24 2012 (r305511) +++ head/devel/Makefile Sun Oct 7 23:21:40 2012 (r305512) @@ -219,6 +219,7 @@ SUBDIR += cl-uffi-sbcl SUBDIR += clanlib SUBDIR += clanlib1 + SUBDIR += clanlib22 SUBDIR += clewn SUBDIR += clig SUBDIR += clint Modified: head/devel/clanlib22/Makefile ============================================================================== --- head/devel/clanlib/Makefile Sat Oct 6 23:01:46 2012 (r305423) +++ head/devel/clanlib22/Makefile Sun Oct 7 23:21:40 2012 (r305512) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= clanlib -PORTVERSION= 2.3.6 -PORTEPOCH= 1 +PORTVERSION= 2.2.12 CATEGORIES= devel MASTER_SITES= http://www.clanlib.org/download/releases-2.0/ DISTNAME= ClanLib-${PORTVERSION} @@ -25,8 +24,9 @@ LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/j fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ pcre:${PORTSDIR}/devel/pcre +LATEST_LINK= ${PORTNAME}22 + USE_GMAKE= yes -USE_GCC= 4.6+ USE_XORG= x11 USE_GNOME= gnomehack USE_LDCONFIG= yes @@ -58,7 +58,7 @@ PLIST_SUB+= VER=${PORTVERSION:R} \ SHORT_VER=${PORTVERSION:R:R}${PORTVERSION:R:E} post-patch: - @${REINPLACE_CMD} -e 's|LIBS="-lsqlite3 -ldl"|LIBS="-lsqlite3"|g' \ + @${REINPLACE_CMD} -e '/^extra_LIBS_clanSqlite/s|-ldl||g' \ ${WRKSRC}/configure .include Modified: head/devel/clanlib22/distinfo ============================================================================== --- head/devel/clanlib/distinfo Sat Oct 6 23:01:46 2012 (r305423) +++ head/devel/clanlib22/distinfo Sun Oct 7 23:21:40 2012 (r305512) @@ -1,2 +1,2 @@ -SHA256 (ClanLib-2.3.6.tgz) = b8dc9b41028bf16c0a6082aa15cdee5d8b1ecd5256797576970f09a63e3fafde -SIZE (ClanLib-2.3.6.tgz) = 25605576 +SHA256 (ClanLib-2.2.12.tgz) = fd6ebe34c24b14f9e00caf1f6d2889ac27a77fa08153352e66942849df73d569 +SIZE (ClanLib-2.2.12.tgz) = 26139745 Modified: head/devel/clanlib22/files/patch-Sources__Core__System__Unix__init_linux.cpp ============================================================================== --- head/devel/clanlib/files/patch-Sources__Core__System__Unix__init_linux.cpp Sat Oct 6 23:01:46 2012 (r305423) +++ head/devel/clanlib22/files/patch-Sources__Core__System__Unix__init_linux.cpp Sun Oct 7 23:21:40 2012 (r305512) @@ -1,6 +1,14 @@ ---- ./Sources/Core/System/Unix/init_linux.cpp.orig 2012-03-05 06:24:31.000000000 -0500 -+++ ./Sources/Core/System/Unix/init_linux.cpp 2012-09-25 07:42:19.000000000 -0400 -@@ -111,7 +111,7 @@ +--- ./Sources/Core/System/Unix/init_linux.cpp.orig 2011-01-13 06:15:25.000000000 -0500 ++++ ./Sources/Core/System/Unix/init_linux.cpp 2012-10-07 17:20:55.000000000 -0400 +@@ -39,6 +39,7 @@ + #include + #include + #include ++#include + #include "init_linux.h" + // note: this cannot be replaced by ! (timeval needs to be defined) + #include +@@ -110,7 +111,7 @@ #else #ifndef PROC_EXE_PATH Modified: head/devel/clanlib22/files/patch-Sources__Network__Socket__unix_socket.cpp ============================================================================== --- head/devel/clanlib/files/patch-Sources__Network__Socket__unix_socket.cpp Sat Oct 6 23:01:46 2012 (r305423) +++ head/devel/clanlib22/files/patch-Sources__Network__Socket__unix_socket.cpp Sun Oct 7 23:21:40 2012 (r305512) @@ -1,5 +1,5 @@ ---- ./Sources/Network/Socket/unix_socket.cpp.orig 2012-09-25 07:45:17.000000000 -0400 -+++ ./Sources/Network/Socket/unix_socket.cpp 2012-09-25 08:00:41.000000000 -0400 +--- ./Sources/Network/Socket/unix_socket.cpp.orig 2011-01-27 05:27:59.000000000 -0500 ++++ ./Sources/Network/Socket/unix_socket.cpp 2012-10-06 21:26:11.000000000 -0400 @@ -39,7 +39,7 @@ #include #include @@ -9,12 +9,19 @@ # define SOL_TCP IPPROTO_TCP // Fix for BSD systems. --NDT #endif -@@ -140,7 +140,7 @@ +@@ -140,6 +140,7 @@ void CL_UnixSocket::set_keep_alive(bool enable, int timeout, int interval) { --#ifndef __APPLE__ +#if !(defined(__APPLE__) || defined(__FreeBSD__)) int value = enable ? 1 : 0; int result = setsockopt(handle, SOL_SOCKET, SO_KEEPALIVE, (const char *) &value, sizeof(int)); throw_if_failed(result); +@@ -149,6 +150,7 @@ + setsockopt(handle, SOL_TCP, TCP_KEEPIDLE, (const char *) &timeout, sizeof(int)); + setsockopt(handle, SOL_TCP, TCP_KEEPINTVL, (const char *) &interval, sizeof(int)); + } ++#endif + } + + void CL_UnixSocket::bind(const CL_SocketName &socketname, bool reuse_address) Modified: head/devel/clanlib22/pkg-plist ============================================================================== --- head/devel/clanlib/pkg-plist Sat Oct 6 23:01:46 2012 (r305423) +++ head/devel/clanlib22/pkg-plist Sun Oct 7 23:21:40 2012 (r305512) @@ -1,86 +1,6 @@ include/ClanLib-%%VER%%/ClanLib/App/api_app.h include/ClanLib-%%VER%%/ClanLib/App/clanapp.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_background_attachment.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_background_clip.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_background_color.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_background_image.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_background_origin.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_background_position.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_background_repeat.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_background_size.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_collapse.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_color.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_image_outset.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_image_repeat.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_image_slice.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_image_source.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_image_width.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_radius.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_spacing.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_style.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_border_width.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_bottom.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_caption_side.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_clear.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_clip.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_color.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_content.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_counter_increment.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_counter_reset.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_cursor.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_decoration_break.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_direction.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_display.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_empty_cells.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_float.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_font_family.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_font_size.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_font_style.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_font_variant.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_font_weight.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_height.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_left.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_letter_spacing.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_line_height.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_list_style_image.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_list_style_position.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_list_style_type.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_margin_width.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_max_height.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_max_width.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_min_height.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_min_width.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_orphans.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_outline_color.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_outline_style.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_outline_width.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_overflow.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_padding_width.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_page_break_after.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_page_break_before.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_page_break_inside.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_position.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_quotes.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_right.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_shadow.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_table_layout.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_text_align.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_text_decoration.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_text_indent.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_text_transform.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_top.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_unicode_bidi.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_vertical_align.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_visibility.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_white_space.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_widows.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_width.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_word_spacing.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes/css_box_z_index.h include/ClanLib-%%VER%%/ClanLib/CSSLayout/api_csslayout.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/css_box_length.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/css_box_properties.h -include/ClanLib-%%VER%%/ClanLib/CSSLayout/css_box_property.h include/ClanLib-%%VER%%/ClanLib/CSSLayout/css_document2.h include/ClanLib-%%VER%%/ClanLib/CSSLayout/css_hit_test_result.h include/ClanLib-%%VER%%/ClanLib/CSSLayout/css_layout.h @@ -98,29 +18,12 @@ include/ClanLib-%%VER%%/ClanLib/Core/CSS include/ClanLib-%%VER%%/ClanLib/Core/CSS/css_property.h include/ClanLib-%%VER%%/ClanLib/Core/CSS/css_token.h include/ClanLib-%%VER%%/ClanLib/Core/CSS/css_tokenizer.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/aes128_decrypt.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/aes128_encrypt.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/aes192_decrypt.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/aes192_encrypt.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/aes256_decrypt.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/aes256_encrypt.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/md5.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/random.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/rsa.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/secret.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/sha224.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/sha256.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/sha384.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/sha512.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/sha512_224.h -include/ClanLib-%%VER%%/ClanLib/Core/Crypto/sha512_256.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/access_control_list.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/cl_endian.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/directory.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/directory_scanner.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/file.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/file_help.h -include/ClanLib-%%VER%%/ClanLib/Core/IOData/html_url.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/iodevice.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/iodevice_memory.h include/ClanLib-%%VER%%/ClanLib/Core/IOData/iodevice_provider.h @@ -203,7 +106,6 @@ include/ClanLib-%%VER%%/ClanLib/Core/Sig include/ClanLib-%%VER%%/ClanLib/Core/Signals/virtual_function_v4.h include/ClanLib-%%VER%%/ClanLib/Core/Signals/virtual_function_v5.h include/ClanLib-%%VER%%/ClanLib/Core/System/block_allocator.h -include/ClanLib-%%VER%%/ClanLib/Core/System/cl_platform.h include/ClanLib-%%VER%%/ClanLib/Core/System/command_line.h include/ClanLib-%%VER%%/ClanLib/Core/System/console_window.h include/ClanLib-%%VER%%/ClanLib/Core/System/databuffer.h @@ -224,7 +126,6 @@ include/ClanLib-%%VER%%/ClanLib/Core/Sys include/ClanLib-%%VER%%/ClanLib/Core/System/thread.h include/ClanLib-%%VER%%/ClanLib/Core/System/thread_local_storage.h include/ClanLib-%%VER%%/ClanLib/Core/System/timer.h -include/ClanLib-%%VER%%/ClanLib/Core/System/uniqueptr.h include/ClanLib-%%VER%%/ClanLib/Core/System/weakptr.h include/ClanLib-%%VER%%/ClanLib/Core/Text/console.h include/ClanLib-%%VER%%/ClanLib/Core/Text/console_logger.h @@ -264,7 +165,6 @@ include/ClanLib-%%VER%%/ClanLib/Core/XML include/ClanLib-%%VER%%/ClanLib/Core/XML/xml_tokenizer.h include/ClanLib-%%VER%%/ClanLib/Core/XML/xml_writer.h include/ClanLib-%%VER%%/ClanLib/Core/XML/xpath_evaluator.h -include/ClanLib-%%VER%%/ClanLib/Core/XML/xpath_exception.h include/ClanLib-%%VER%%/ClanLib/Core/XML/xpath_object.h include/ClanLib-%%VER%%/ClanLib/Core/Zip/zip_archive.h include/ClanLib-%%VER%%/ClanLib/Core/Zip/zip_file_entry.h @@ -272,6 +172,11 @@ include/ClanLib-%%VER%%/ClanLib/Core/Zip include/ClanLib-%%VER%%/ClanLib/Core/Zip/zip_writer.h include/ClanLib-%%VER%%/ClanLib/Core/api_core.h include/ClanLib-%%VER%%/ClanLib/Core/core_iostream.h +include/ClanLib-%%VER%%/ClanLib/Core/IOData/datatypes.h +include/ClanLib-%%VER%%/ClanLib/Core/System/autoptr.h +include/ClanLib-%%VER%%/ClanLib/Core/System/memory_pool.h +include/ClanLib-%%VER%%/ClanLib/Core/System/static_memory_pool.h +include/ClanLib-%%VER%%/ClanLib/Core/System/fixed_memory_pool.h include/ClanLib-%%VER%%/ClanLib/Database/api_database.h include/ClanLib-%%VER%%/ClanLib/Database/db_command.h include/ClanLib-%%VER%%/ClanLib/Database/db_command_provider.h @@ -282,7 +187,6 @@ include/ClanLib-%%VER%%/ClanLib/Database include/ClanLib-%%VER%%/ClanLib/Database/db_transaction.h include/ClanLib-%%VER%%/ClanLib/Database/db_transaction_provider.h include/ClanLib-%%VER%%/ClanLib/Database/db_value.h -include/ClanLib-%%VER%%/ClanLib/Display/2D/collidable_sprite.h include/ClanLib-%%VER%%/ClanLib/Display/2D/color.h include/ClanLib-%%VER%%/ClanLib/Display/2D/color_hsl.h include/ClanLib-%%VER%%/ClanLib/Display/2D/color_hsl2.h @@ -417,7 +321,6 @@ include/ClanLib-%%VER%%/ClanLib/GUI/Comp include/ClanLib-%%VER%%/ClanLib/GUI/Components/listview_selected_item.h include/ClanLib-%%VER%%/ClanLib/GUI/Components/main_window.h include/ClanLib-%%VER%%/ClanLib/GUI/Components/menubar.h -include/ClanLib-%%VER%%/ClanLib/GUI/Components/message_box.h include/ClanLib-%%VER%%/ClanLib/GUI/Components/openfiledialog.h include/ClanLib-%%VER%%/ClanLib/GUI/Components/popupmenu.h include/ClanLib-%%VER%%/ClanLib/GUI/Components/popupmenu_item.h @@ -488,8 +391,15 @@ include/ClanLib-%%VER%%/ClanLib/Network/ include/ClanLib-%%VER%%/ClanLib/Network/Web/http_request_handler_provider.h include/ClanLib-%%VER%%/ClanLib/Network/Web/http_server.h include/ClanLib-%%VER%%/ClanLib/Network/Web/http_server_connection.h -include/ClanLib-%%VER%%/ClanLib/Network/Web/web_request.h -include/ClanLib-%%VER%%/ClanLib/Network/Web/web_response.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/http_client_connection.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/http_header_help.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/soap_help.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/url_help.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/webservice_exception.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/webservice_message.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/webservice_part.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/webservice_client.h +include/ClanLib-%%VER%%/ClanLib/Network/Web/wsdl_document.h include/ClanLib-%%VER%%/ClanLib/Network/api_network.h include/ClanLib-%%VER%%/ClanLib/Network/setupnetwork.h include/ClanLib-%%VER%%/ClanLib/RegExp/api_regexp.h @@ -673,10 +583,8 @@ libdata/pkgconfig/clanVorbis-%%VER%%.pc @dirrm include/ClanLib-%%VER%%/ClanLib/Core/Resources @dirrm include/ClanLib-%%VER%%/ClanLib/Core/Math @dirrm include/ClanLib-%%VER%%/ClanLib/Core/IOData -@dirrm include/ClanLib-%%VER%%/ClanLib/Core/Crypto @dirrm include/ClanLib-%%VER%%/ClanLib/Core/CSS @dirrm include/ClanLib-%%VER%%/ClanLib/Core -@dirrm include/ClanLib-%%VER%%/ClanLib/CSSLayout/PropertyTypes @dirrm include/ClanLib-%%VER%%/ClanLib/CSSLayout @dirrm include/ClanLib-%%VER%%/ClanLib/App @dirrm include/ClanLib-%%VER%%/ClanLib From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 01:07:51 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B8E16106566B; Mon, 8 Oct 2012 01:07:51 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A2B938FC16; Mon, 8 Oct 2012 01:07: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 q9817pBj001861; Mon, 8 Oct 2012 01:07:51 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9817pp5001859; Mon, 8 Oct 2012 01:07:51 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210080107.q9817pp5001859@svn.freebsd.org> From: Eitan Adler Date: Mon, 8 Oct 2012 01:07:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305513 - head/audio/libaacplus X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 01:07:52 -0000 Author: eadler Date: Mon Oct 8 01:07:51 2012 New Revision: 305513 URL: http://svn.freebsd.org/changeset/ports/305513 Log: Convert to OptionsNG Trim the headers PR: ports/172467 Submitted by: Takefu (maintainer) Modified: head/audio/libaacplus/Makefile Modified: head/audio/libaacplus/Makefile ============================================================================== --- head/audio/libaacplus/Makefile Sun Oct 7 23:21:40 2012 (r305512) +++ head/audio/libaacplus/Makefile Mon Oct 8 01:07:51 2012 (r305513) @@ -1,9 +1,5 @@ -# New ports collection makefile for: libaacplus -# Date created: 2010-05-18 -# Whom: takefu -# +# Created by: takefu # $FreeBSD$ -# PORTNAME= libaacplus PORTVERSION= 2.0.2 @@ -39,11 +35,13 @@ LIBTOOLIZE_ARGS=--automake MAN1= aacplusenc.1 -OPTIONS= FFTW3 "USE_FFTW3" on +OPTIONS_DEFINE= FFTW3 +OPTIONS_DEFAULT= FFTW3 +FFTW3_DESC= Use FFTW3 .include -.if !defined(WITHOUT_FFTW3) +.if ${PORT_OPTIONS:MFFTW3} LIB_DEPENDS+= fftw3:${PORTSDIR}/math/fftw3\ fftw3f:${PORTSDIR}/math/fftw3-float CONFIGURE_ARGS+=--with-fftw3=yes \ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 01:15:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93064106564A; Mon, 8 Oct 2012 01:15:22 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7DB598FC0A; Mon, 8 Oct 2012 01:15:22 +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 q981FMHf002933; Mon, 8 Oct 2012 01:15:22 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q981FMxk002930; Mon, 8 Oct 2012 01:15:22 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210080115.q981FMxk002930@svn.freebsd.org> From: Wen Heping Date: Mon, 8 Oct 2012 01:15:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305514 - in head/www: mediawiki moodle2 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 01:15:22 -0000 Author: wen Date: Mon Oct 8 01:15:21 2012 New Revision: 305514 URL: http://svn.freebsd.org/changeset/ports/305514 Log: - s/_DESCR/_DESC/g in Makefile Thanks to: sunpoet@ Modified: head/www/mediawiki/Makefile head/www/moodle2/Makefile Modified: head/www/mediawiki/Makefile ============================================================================== --- head/www/mediawiki/Makefile Mon Oct 8 01:07:51 2012 (r305513) +++ head/www/mediawiki/Makefile Mon Oct 8 01:15:21 2012 (r305514) @@ -24,10 +24,10 @@ NO_BUILD= yes OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL IMAGICK OPTIONS_DEFAULT=MYSQL APC -MEMCACHED_DESCR=use memcached -APC_DESCR= use pecl-APC(Mediawiki recommended) -EACCEL_DESCR= use eAccelerator (instead of pecl-APC) -IMAGICK_DESCR= use ImageMagick +MEMCACHED_DESC= use memcached +APC_DESC= use pecl-APC(Mediawiki recommended) +EACCEL_DESC= use eAccelerator (instead of pecl-APC) +IMAGICK_DESC= use ImageMagick .include Modified: head/www/moodle2/Makefile ============================================================================== --- head/www/moodle2/Makefile Mon Oct 8 01:07:51 2012 (r305513) +++ head/www/moodle2/Makefile Mon Oct 8 01:15:21 2012 (r305514) @@ -22,8 +22,8 @@ WRKSRC= ${WRKDIR}/moodle OPTIONS_DEFINE= MYSQL PGSQL MSSQL LDAP MIMETEX OPTIONS_DEFAULT=MYSQL -MSSQL_DESCR= MS SQL Server support -MIMETEX_DESCR= mimeTeX filter functionality support +MSSQL_DESC= MS SQL Server support +MIMETEX_DESC= mimeTeX filter functionality support .include From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 02:36:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 67987106564A; Mon, 8 Oct 2012 02:36:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 51A318FC0A; Mon, 8 Oct 2012 02:36: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 q982a79D012717; Mon, 8 Oct 2012 02:36:07 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q982a7E9012713; Mon, 8 Oct 2012 02:36:07 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210080236.q982a7E9012713@svn.freebsd.org> From: Steve Wills Date: Mon, 8 Oct 2012 02:36:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305515 - head/x11/xpra X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 02:36:07 -0000 Author: swills Date: Mon Oct 8 02:36:06 2012 New Revision: 305515 URL: http://svn.freebsd.org/changeset/ports/305515 Log: - Update to 0.6.4 Modified: head/x11/xpra/Makefile head/x11/xpra/distinfo (contents, props changed) head/x11/xpra/pkg-plist (contents, props changed) Modified: head/x11/xpra/Makefile ============================================================================== --- head/x11/xpra/Makefile Mon Oct 8 01:15:21 2012 (r305514) +++ head/x11/xpra/Makefile Mon Oct 8 02:36:06 2012 (r305515) @@ -6,7 +6,7 @@ # PORTNAME= xpra -PORTVERSION= 0.4.0 +PORTVERSION= 0.6.4 CATEGORIES= x11 MASTER_SITES= http://xpra.org/src/ @@ -30,10 +30,10 @@ USE_BZIP2= yes USE_PYTHON= yes USE_XORG= x11 xext xtst xfixes xcomposite xdamage -do-build: - ( cd ${WRKSRC} ; ./do-build ) +NO_BUILD= yes do-install: + ( cd ${WRKSRC} ; ./do-build ) ${INSTALL_SCRIPT} ${WRKSRC}/install/bin/xpra ${PREFIX}/bin ${RM} -rf ${WRKSRC}/install/lib/python/xpra/win32 ${RM} -rf ${WRKSRC}/install/lib/python/xpra/darwin Modified: head/x11/xpra/distinfo ============================================================================== --- head/x11/xpra/distinfo Mon Oct 8 01:15:21 2012 (r305514) +++ head/x11/xpra/distinfo Mon Oct 8 02:36:06 2012 (r305515) @@ -1,2 +1,2 @@ -SHA256 (xpra-0.4.0.tar.bz2) = b3ffb0521d2e3c57d6aeeaa6c37eba1cd641f87483b4d087192e8110843fee24 -SIZE (xpra-0.4.0.tar.bz2) = 1128877 +SHA256 (xpra-0.6.4.tar.bz2) = 3c47e16555325417e8be19dfcfd0c9c9f07d7a6e2e203d0bad46f68ac059f5d6 +SIZE (xpra-0.6.4.tar.bz2) = 456613 Modified: head/x11/xpra/pkg-plist ============================================================================== --- head/x11/xpra/pkg-plist Mon Oct 8 01:15:21 2012 (r305514) +++ head/x11/xpra/pkg-plist Mon Oct 8 02:36:06 2012 (r305515) @@ -1,10 +1,15 @@ bin/xpra +etc/xpra/xorg.conf +etc/xpra/xpra.conf %%PYTHON_SITELIBDIR%%/wimpiggy/__init__.py %%PYTHON_SITELIBDIR%%/wimpiggy/__init__.pyc %%PYTHON_SITELIBDIR%%/wimpiggy/composite.py %%PYTHON_SITELIBDIR%%/wimpiggy/composite.pyc %%PYTHON_SITELIBDIR%%/wimpiggy/error.py %%PYTHON_SITELIBDIR%%/wimpiggy/error.pyc +%%PYTHON_SITELIBDIR%%/wimpiggy/gdk/__init__.py +%%PYTHON_SITELIBDIR%%/wimpiggy/gdk/__init__.pyc +%%PYTHON_SITELIBDIR%%/wimpiggy/gdk/gdk_atoms.so %%PYTHON_SITELIBDIR%%/wimpiggy/gobject_compat.py %%PYTHON_SITELIBDIR%%/wimpiggy/gobject_compat.pyc %%PYTHON_SITELIBDIR%%/wimpiggy/keys.py @@ -14,6 +19,8 @@ bin/xpra %%PYTHON_SITELIBDIR%%/wimpiggy/lowlevel/__init__.py %%PYTHON_SITELIBDIR%%/wimpiggy/lowlevel/__init__.pyc %%PYTHON_SITELIBDIR%%/wimpiggy/lowlevel/bindings.so +%%PYTHON_SITELIBDIR%%/wimpiggy/lowlevel/send_wm.py +%%PYTHON_SITELIBDIR%%/wimpiggy/lowlevel/send_wm.pyc %%PYTHON_SITELIBDIR%%/wimpiggy/prop.py %%PYTHON_SITELIBDIR%%/wimpiggy/prop.pyc %%PYTHON_SITELIBDIR%%/wimpiggy/selection.py @@ -26,12 +33,18 @@ bin/xpra %%PYTHON_SITELIBDIR%%/wimpiggy/wm.pyc %%PYTHON_SITELIBDIR%%/wimpiggy/world_window.py %%PYTHON_SITELIBDIR%%/wimpiggy/world_window.pyc +%%PYTHON_SITELIBDIR%%/wimpiggy/xsettings_prop.py +%%PYTHON_SITELIBDIR%%/wimpiggy/xsettings_prop.pyc %%PYTHON_SITELIBDIR%%/xpra/__init__.py %%PYTHON_SITELIBDIR%%/xpra/__init__.pyc +%%PYTHON_SITELIBDIR%%/xpra/batch_delay_calculator.py +%%PYTHON_SITELIBDIR%%/xpra/batch_delay_calculator.pyc %%PYTHON_SITELIBDIR%%/xpra/bencode.py %%PYTHON_SITELIBDIR%%/xpra/bencode.pyc %%PYTHON_SITELIBDIR%%/xpra/build_info.py %%PYTHON_SITELIBDIR%%/xpra/build_info.pyc +%%PYTHON_SITELIBDIR%%/xpra/bytestreams.py +%%PYTHON_SITELIBDIR%%/xpra/bytestreams.pyc %%PYTHON_SITELIBDIR%%/xpra/client.py %%PYTHON_SITELIBDIR%%/xpra/client.pyc %%PYTHON_SITELIBDIR%%/xpra/client_base.py @@ -54,22 +67,29 @@ bin/xpra %%PYTHON_SITELIBDIR%%/xpra/gtk_view_keyboard.pyc %%PYTHON_SITELIBDIR%%/xpra/keys.py %%PYTHON_SITELIBDIR%%/xpra/keys.pyc +%%PYTHON_SITELIBDIR%%/xpra/maths.py +%%PYTHON_SITELIBDIR%%/xpra/maths.pyc %%PYTHON_SITELIBDIR%%/xpra/nested_main.py %%PYTHON_SITELIBDIR%%/xpra/nested_main.pyc +%%PYTHON_SITELIBDIR%%/xpra/pixbuf_to_rgb.py +%%PYTHON_SITELIBDIR%%/xpra/pixbuf_to_rgb.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__init__.py %%PYTHON_SITELIBDIR%%/xpra/platform/__init__.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/client_extras_base.py %%PYTHON_SITELIBDIR%%/xpra/platform/client_extras_base.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/clipboard_base.py %%PYTHON_SITELIBDIR%%/xpra/platform/clipboard_base.pyc -%%PYTHON_SITELIBDIR%%/xpra/platform/default_clipboard.py -%%PYTHON_SITELIBDIR%%/xpra/platform/default_clipboard.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/gdk_clipboard.py +%%PYTHON_SITELIBDIR%%/xpra/platform/gdk_clipboard.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/gui.py %%PYTHON_SITELIBDIR%%/xpra/platform/gui.pyc %%PYTHON_SITELIBDIR%%/xpra/protocol.py %%PYTHON_SITELIBDIR%%/xpra/protocol.pyc %%PYTHON_SITELIBDIR%%/xpra/proxy.py %%PYTHON_SITELIBDIR%%/xpra/proxy.pyc +%%PYTHON_SITELIBDIR%%/xpra/rencode/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/rencode/__init__.pyc +%%PYTHON_SITELIBDIR%%/xpra/rencode/_rencode.so %%PYTHON_SITELIBDIR%%/xpra/scripts/__init__.py %%PYTHON_SITELIBDIR%%/xpra/scripts/__init__.pyc %%PYTHON_SITELIBDIR%%/xpra/scripts/client_launcher.py @@ -90,6 +110,8 @@ bin/xpra %%PYTHON_SITELIBDIR%%/xpra/wait_for_x_server.so %%PYTHON_SITELIBDIR%%/xpra/window_backing.py %%PYTHON_SITELIBDIR%%/xpra/window_backing.pyc +%%PYTHON_SITELIBDIR%%/xpra/window_source.py +%%PYTHON_SITELIBDIR%%/xpra/window_source.pyc %%PYTHON_SITELIBDIR%%/xpra/x264/__init__.py %%PYTHON_SITELIBDIR%%/xpra/x264/__init__.pyc %%PYTHON_SITELIBDIR%%/xpra/x264/codec.so @@ -101,17 +123,18 @@ bin/xpra %%PYTHON_SITELIBDIR%%/xpra/xposix/gui.pyc %%PYTHON_SITELIBDIR%%/xpra/xposix/test_xsettings.py %%PYTHON_SITELIBDIR%%/xpra/xposix/test_xsettings.pyc -%%PYTHON_SITELIBDIR%%/xpra/xposix/xclipboard.py -%%PYTHON_SITELIBDIR%%/xpra/xposix/xclipboard.pyc %%PYTHON_SITELIBDIR%%/xpra/xposix/xroot_props.py %%PYTHON_SITELIBDIR%%/xpra/xposix/xroot_props.pyc %%PYTHON_SITELIBDIR%%/xpra/xposix/xsettings.py %%PYTHON_SITELIBDIR%%/xpra/xposix/xsettings.pyc @dirrm %%PYTHON_SITELIBDIR%%/xpra/platform +@dirrm %%PYTHON_SITELIBDIR%%/xpra/rencode @dirrm %%PYTHON_SITELIBDIR%%/xpra/scripts @dirrm %%PYTHON_SITELIBDIR%%/xpra/vpx @dirrm %%PYTHON_SITELIBDIR%%/xpra/x264 @dirrm %%PYTHON_SITELIBDIR%%/xpra/xposix @dirrm %%PYTHON_SITELIBDIR%%/xpra @dirrm %%PYTHON_SITELIBDIR%%/wimpiggy/lowlevel +@dirrm %%PYTHON_SITELIBDIR%%/wimpiggy/gdk @dirrm %%PYTHON_SITELIBDIR%%/wimpiggy +@dirrmtry etc/xpra From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 03:17:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB72D106566B; Mon, 8 Oct 2012 03:17:03 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 942D08FC0C; Mon, 8 Oct 2012 03:17:03 +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 q983H3nc018754; Mon, 8 Oct 2012 03:17:03 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q983H3Xw018750; Mon, 8 Oct 2012 03:17:03 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210080317.q983H3Xw018750@svn.freebsd.org> From: Wen Heping Date: Mon, 8 Oct 2012 03:17:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305516 - head/biology/pycogent X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 03:17:03 -0000 Author: wen Date: Mon Oct 8 03:17:02 2012 New Revision: 305516 URL: http://svn.freebsd.org/changeset/ports/305516 Log: - Update to 1.5.3 - Trim Makefile headers Modified: head/biology/pycogent/Makefile head/biology/pycogent/distinfo head/biology/pycogent/pkg-plist Modified: head/biology/pycogent/Makefile ============================================================================== --- head/biology/pycogent/Makefile Mon Oct 8 02:36:06 2012 (r305515) +++ head/biology/pycogent/Makefile Mon Oct 8 03:17:02 2012 (r305516) @@ -1,12 +1,8 @@ -# New ports collection makefile for: pycogent -# Date created: 20 June, 2009 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= pycogent -PORTVERSION= 1.5.1 +PORTVERSION= 1.5.3 CATEGORIES= biology python MASTER_SITES= SF/${PORTNAME}/PyCogent/${PORTVERSION} DISTNAME= PyCogent-${PORTVERSION} Modified: head/biology/pycogent/distinfo ============================================================================== --- head/biology/pycogent/distinfo Mon Oct 8 02:36:06 2012 (r305515) +++ head/biology/pycogent/distinfo Mon Oct 8 03:17:02 2012 (r305516) @@ -1,2 +1,2 @@ -SHA256 (PyCogent-1.5.1.tgz) = 572345eb5f9ef0c4c5307145d27c2c69277dc7dffdbb772219532dce749513d7 -SIZE (PyCogent-1.5.1.tgz) = 3057837 +SHA256 (PyCogent-1.5.3.tgz) = ad883cf4f8bbedd797b934a6ba75a20df2313736e84bff3d5a0e54ac41ea425c +SIZE (PyCogent-1.5.3.tgz) = 3360039 Modified: head/biology/pycogent/pkg-plist ============================================================================== --- head/biology/pycogent/pkg-plist Mon Oct 8 02:36:06 2012 (r305515) +++ head/biology/pycogent/pkg-plist Mon Oct 8 03:17:02 2012 (r305516) @@ -25,9 +25,6 @@ %%PYTHON_SITELIBDIR%%/cogent/align/pairwise.py %%PYTHON_SITELIBDIR%%/cogent/align/pairwise.pyc %%PYTHON_SITELIBDIR%%/cogent/align/pairwise.pyo -%%PYTHON_SITELIBDIR%%/cogent/align/partial_order_graph.py -%%PYTHON_SITELIBDIR%%/cogent/align/partial_order_graph.pyc -%%PYTHON_SITELIBDIR%%/cogent/align/partial_order_graph.pyo %%PYTHON_SITELIBDIR%%/cogent/align/progressive.py %%PYTHON_SITELIBDIR%%/cogent/align/progressive.pyc %%PYTHON_SITELIBDIR%%/cogent/align/progressive.pyo @@ -52,6 +49,12 @@ %%PYTHON_SITELIBDIR%%/cogent/app/blast.py %%PYTHON_SITELIBDIR%%/cogent/app/blast.pyc %%PYTHON_SITELIBDIR%%/cogent/app/blast.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/blat.py +%%PYTHON_SITELIBDIR%%/cogent/app/blat.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/blat.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/bwa.py +%%PYTHON_SITELIBDIR%%/cogent/app/bwa.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/bwa.pyo %%PYTHON_SITELIBDIR%%/cogent/app/carnac.py %%PYTHON_SITELIBDIR%%/cogent/app/carnac.pyc %%PYTHON_SITELIBDIR%%/cogent/app/carnac.pyo @@ -103,6 +106,9 @@ %%PYTHON_SITELIBDIR%%/cogent/app/gctmpca.py %%PYTHON_SITELIBDIR%%/cogent/app/gctmpca.pyc %%PYTHON_SITELIBDIR%%/cogent/app/gctmpca.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/guppy.py +%%PYTHON_SITELIBDIR%%/cogent/app/guppy.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/guppy.pyo %%PYTHON_SITELIBDIR%%/cogent/app/ilm.py %%PYTHON_SITELIBDIR%%/cogent/app/ilm.pyc %%PYTHON_SITELIBDIR%%/cogent/app/ilm.pyo @@ -127,21 +133,33 @@ %%PYTHON_SITELIBDIR%%/cogent/app/muscle.py %%PYTHON_SITELIBDIR%%/cogent/app/muscle.pyc %%PYTHON_SITELIBDIR%%/cogent/app/muscle.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/muscle_v38.py +%%PYTHON_SITELIBDIR%%/cogent/app/muscle_v38.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/muscle_v38.pyo %%PYTHON_SITELIBDIR%%/cogent/app/nupack.py %%PYTHON_SITELIBDIR%%/cogent/app/nupack.pyc %%PYTHON_SITELIBDIR%%/cogent/app/nupack.pyo %%PYTHON_SITELIBDIR%%/cogent/app/parameters.py %%PYTHON_SITELIBDIR%%/cogent/app/parameters.pyc %%PYTHON_SITELIBDIR%%/cogent/app/parameters.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/parsinsert.py +%%PYTHON_SITELIBDIR%%/cogent/app/parsinsert.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/parsinsert.pyo %%PYTHON_SITELIBDIR%%/cogent/app/pfold.py %%PYTHON_SITELIBDIR%%/cogent/app/pfold.pyc %%PYTHON_SITELIBDIR%%/cogent/app/pfold.pyo %%PYTHON_SITELIBDIR%%/cogent/app/pknotsrg.py %%PYTHON_SITELIBDIR%%/cogent/app/pknotsrg.pyc %%PYTHON_SITELIBDIR%%/cogent/app/pknotsrg.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/pplacer.py +%%PYTHON_SITELIBDIR%%/cogent/app/pplacer.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/pplacer.pyo %%PYTHON_SITELIBDIR%%/cogent/app/raxml.py %%PYTHON_SITELIBDIR%%/cogent/app/raxml.pyc %%PYTHON_SITELIBDIR%%/cogent/app/raxml.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/raxml_v730.py +%%PYTHON_SITELIBDIR%%/cogent/app/raxml_v730.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/raxml_v730.pyo %%PYTHON_SITELIBDIR%%/cogent/app/rdp_classifier.py %%PYTHON_SITELIBDIR%%/cogent/app/rdp_classifier.pyc %%PYTHON_SITELIBDIR%%/cogent/app/rdp_classifier.pyo @@ -160,6 +178,9 @@ %%PYTHON_SITELIBDIR%%/cogent/app/rnaview.py %%PYTHON_SITELIBDIR%%/cogent/app/rnaview.pyc %%PYTHON_SITELIBDIR%%/cogent/app/rnaview.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/rtax.py +%%PYTHON_SITELIBDIR%%/cogent/app/rtax.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/rtax.pyo %%PYTHON_SITELIBDIR%%/cogent/app/sfffile.py %%PYTHON_SITELIBDIR%%/cogent/app/sfffile.pyc %%PYTHON_SITELIBDIR%%/cogent/app/sfffile.pyo @@ -178,6 +199,9 @@ %%PYTHON_SITELIBDIR%%/cogent/app/unafold.py %%PYTHON_SITELIBDIR%%/cogent/app/unafold.pyc %%PYTHON_SITELIBDIR%%/cogent/app/unafold.pyo +%%PYTHON_SITELIBDIR%%/cogent/app/usearch.py +%%PYTHON_SITELIBDIR%%/cogent/app/usearch.pyc +%%PYTHON_SITELIBDIR%%/cogent/app/usearch.pyo %%PYTHON_SITELIBDIR%%/cogent/app/util.py %%PYTHON_SITELIBDIR%%/cogent/app/util.pyc %%PYTHON_SITELIBDIR%%/cogent/app/util.pyo @@ -337,6 +361,9 @@ %%PYTHON_SITELIBDIR%%/cogent/draw/dinuc.py %%PYTHON_SITELIBDIR%%/cogent/draw/dinuc.pyc %%PYTHON_SITELIBDIR%%/cogent/draw/dinuc.pyo +%%PYTHON_SITELIBDIR%%/cogent/draw/distribution_plots.py +%%PYTHON_SITELIBDIR%%/cogent/draw/distribution_plots.pyc +%%PYTHON_SITELIBDIR%%/cogent/draw/distribution_plots.pyo %%PYTHON_SITELIBDIR%%/cogent/draw/dotplot.py %%PYTHON_SITELIBDIR%%/cogent/draw/dotplot.pyc %%PYTHON_SITELIBDIR%%/cogent/draw/dotplot.pyo @@ -418,6 +445,9 @@ %%PYTHON_SITELIBDIR%%/cogent/format/alignment.py %%PYTHON_SITELIBDIR%%/cogent/format/alignment.pyc %%PYTHON_SITELIBDIR%%/cogent/format/alignment.pyo +%%PYTHON_SITELIBDIR%%/cogent/format/bedgraph.py +%%PYTHON_SITELIBDIR%%/cogent/format/bedgraph.pyc +%%PYTHON_SITELIBDIR%%/cogent/format/bedgraph.pyo %%PYTHON_SITELIBDIR%%/cogent/format/clustal.py %%PYTHON_SITELIBDIR%%/cogent/format/clustal.pyc %%PYTHON_SITELIBDIR%%/cogent/format/clustal.pyo From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 03:56:21 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 3FC95106566B; Mon, 8 Oct 2012 03:56:21 +0000 (UTC) Date: Mon, 8 Oct 2012 03:56:21 +0000 From: Alexey Dokuchaev To: Doug Barton Message-ID: <20121008035621.GA91369@FreeBSD.org> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <5070A018.9010302@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: svn-ports-head@FreeBSD.org, Baptiste Daroussin , svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: svn commit: r305288 - head/Mk X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 03:56:21 -0000 On Sat, Oct 06, 2012 at 02:18:16PM -0700, Doug Barton wrote: > If you actually look at them in an options dialog they make just as much > sense with or without the word "support." While they keep the sense, it takes few more brain cycles to parse IMHO. Also "support" is nice placeholder word for generic support (as opposed to some specific usage for particular feature, or when words like "use" are being used). > Meanwhile, whatever changes you propose have to take into account the > options for ports like www/firefox on stable/8. Before my fix they were > utterly broken (as in, the dialog was totally blank). Now they work just > fine. That's because OptionsNG poorly implement mutually exclusive options. I hope that eventually dialog's --radiolist would be utilized for proper handling, and sane knobs names would be restored. Sounds like a nice port junior hacker project. ./danfe From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 04:01:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id DC3BE106566C; Mon, 8 Oct 2012 04:01:54 +0000 (UTC) Date: Mon, 8 Oct 2012 04:01:54 +0000 From: Alexey Dokuchaev To: Baptiste Daroussin Message-ID: <20121008040154.GB91369@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <201210061123.q96BNHVx053948@svn.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305357 - head/net/ssvnc X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 04:01:55 -0000 On Sat, Oct 06, 2012 at 11:23:17AM +0000, Baptiste Daroussin wrote: > New Revision: 305357 > URL: http://svn.freebsd.org/changeset/ports/305357 > > Log: > fix sense of a test > > -.if ${PORT_OPTIONS:MULTRAFTP} > +.if empty(PORT_OPTIONS:MULTRAFTP) That looks weird, and commit message is pretty cryptic as well. Could you explain what went wrong here so others would not fall in the same pitfall? Thanks. ./danfe From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 04:31:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 80596106566C; Mon, 8 Oct 2012 04:31:57 +0000 (UTC) Date: Mon, 8 Oct 2012 04:31:57 +0000 From: Alexey Dokuchaev To: Eitan Adler Message-ID: <20121008043157.GC91369@FreeBSD.org> References: <201210061726.q96HQsof005040@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <201210061726.q96HQsof005040@svn.freebsd.org> User-Agent: Mutt/1.4.2.1i Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305387 - head/sysutils/duff X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 04:31:57 -0000 On Sat, Oct 06, 2012 at 05:26:54PM +0000, Eitan Adler wrote: > New Revision: 305387 > URL: http://svn.freebsd.org/changeset/ports/305387 > > Log: > Add 'GPL' as the ZLIB license is compatible. Perhaps it makes sense to add ZLIB to the list of standard licenses? ./danfe From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 04:59:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 10141106566C; Mon, 8 Oct 2012 04:59:06 +0000 (UTC) Date: Mon, 8 Oct 2012 04:59:06 +0000 From: Alexey Dokuchaev To: Baptiste Daroussin Message-ID: <20121008045905.GD91369@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20121008040154.GB91369@FreeBSD.org> User-Agent: Mutt/1.4.2.1i Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305357 - head/net/ssvnc X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 04:59:06 -0000 On Mon, Oct 08, 2012 at 04:01:54AM +0000, Alexey Dokuchaev wrote: > On Sat, Oct 06, 2012 at 11:23:17AM +0000, Baptiste Daroussin wrote: > > New Revision: 305357 > > URL: http://svn.freebsd.org/changeset/ports/305357 > > > > Log: > > fix sense of a test > > > > -.if ${PORT_OPTIONS:MULTRAFTP} > > +.if empty(PORT_OPTIONS:MULTRAFTP) > > That looks weird, and commit message is pretty cryptic as well. Could you > explain what went wrong here so others would not fall in the same pitfall? Err, I read is as ! vs. empty() test. Still, I've noticved some arguments on the syntax, would be nice to know if ! ${PORT_OPTIONS:M...} has issues other than purely stylish. Thanks, ./danfe From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 05:02:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx2.freebsd.org (mx2.freebsd.org [69.147.83.53]) by hub.freebsd.org (Postfix) with ESMTP id B2526106564A; Mon, 8 Oct 2012 05:02:23 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from opti.dougb.net (hub.freebsd.org [69.147.83.54]) by mx2.freebsd.org (Postfix) with ESMTP id 4DF4C14D954; Mon, 8 Oct 2012 05:02:23 +0000 (UTC) Message-ID: <50725E5E.1080009@FreeBSD.org> Date: Sun, 07 Oct 2012 22:02:22 -0700 From: Doug Barton Organization: http://SupersetSolutions.com/ User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20121001 Thunderbird/15.0.1 MIME-Version: 1.0 To: Eitan Adler References: <201210071931.q97JVHuB057149@svn.freebsd.org> In-Reply-To: X-Enigmail-Version: 1.4.4 OpenPGP: id=1A1ABC84 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305503 - head/security/libpreludedb X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 05:02:23 -0000 On 10/07/2012 13:27, Eitan Adler wrote: > On 7 October 2012 15:31, Doug Barton wrote: >> Author: dougb >> Date: Sun Oct 7 19:31:17 2012 >> New Revision: 305503 >> URL: http://svn.freebsd.org/changeset/ports/305503 >> >> Log: >> Restore option descriptions to what the maintainer actually put in the PR > > I'm sorry, did you read the PR or the port maintainer? I had assumed that the person submitting the PR, and taking the time to ask about how you handled it on ports@ was the maintainer. I did not look closely enough at that, so my apologies for the unclear commit message. Nevertheless, the descriptions in the PR were better than the defaults, and you had no business changing them without at least giving the PR submitter the courtesy of asking about his reasoning. >> Pointy hat to: eadler > > This belongs to you. You already whined about me to both portmgr AND core, so I will not engage you about this further in public. Doug -- I am only one, but I am one. I cannot do everything, but I can do something. And I will not let what I cannot do interfere with what I can do. -- Edward Everett Hale, (1822 - 1909) From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 05:16:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F4AF106564A; Mon, 8 Oct 2012 05:16:59 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 607CF8FC12; Mon, 8 Oct 2012 05:16:59 +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 q985GxEm036372; Mon, 8 Oct 2012 05:16:59 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q985GxZf036367; Mon, 8 Oct 2012 05:16:59 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210080516.q985GxZf036367@svn.freebsd.org> From: TAKATSU Tomonari Date: Mon, 8 Oct 2012 05:16:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305517 - head/textproc/rubygem-coderay X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 05:16:59 -0000 Author: tota Date: Mon Oct 8 05:16:58 2012 New Revision: 305517 URL: http://svn.freebsd.org/changeset/ports/305517 Log: - Update to 1.0.8 - Convert to new Makefile header - Trim WWW: line in pkg-descr Modified: head/textproc/rubygem-coderay/Makefile head/textproc/rubygem-coderay/distinfo head/textproc/rubygem-coderay/pkg-descr Modified: head/textproc/rubygem-coderay/Makefile ============================================================================== --- head/textproc/rubygem-coderay/Makefile Mon Oct 8 03:17:02 2012 (r305516) +++ head/textproc/rubygem-coderay/Makefile Mon Oct 8 05:16:58 2012 (r305517) @@ -1,12 +1,8 @@ -# New ports collection makefile for: rubygem-coderay -# Date created: 2011-08-01 -# Whom: TAKATSU Tomonari -# +# Created by: TAKATSU Tomonari # $FreeBSD$ -# PORTNAME= coderay -PORTVERSION= 1.0.7 +PORTVERSION= 1.0.8 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/rubygem-coderay/distinfo ============================================================================== --- head/textproc/rubygem-coderay/distinfo Mon Oct 8 03:17:02 2012 (r305516) +++ head/textproc/rubygem-coderay/distinfo Mon Oct 8 05:16:58 2012 (r305517) @@ -1,2 +1,2 @@ -SHA256 (rubygem/coderay-1.0.7.gem) = a0ae226dae519441989478c56256d13e253e675a48de896d376744b5aaac3c8e -SIZE (rubygem/coderay-1.0.7.gem) = 88576 +SHA256 (rubygem/coderay-1.0.8.gem) = 35c515a17ba7a20f97a383e1c5acf53e5c9c8ef09761892e8f9cbeedd4dc0f71 +SIZE (rubygem/coderay-1.0.8.gem) = 88576 Modified: head/textproc/rubygem-coderay/pkg-descr ============================================================================== --- head/textproc/rubygem-coderay/pkg-descr Mon Oct 8 03:17:02 2012 (r305516) +++ head/textproc/rubygem-coderay/pkg-descr Mon Oct 8 05:16:58 2012 (r305517) @@ -13,4 +13,4 @@ Syntax Highlighting... * is what everybody should have on their website * solves all your problems and makes the girls run after you -WWW: http://coderay.rubychan.de/ +WWW: http://coderay.rubychan.de/ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 06:12:53 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0A591065670; Mon, 8 Oct 2012 06:12:53 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 87EA08FC0A; Mon, 8 Oct 2012 06:12:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q986Crav077730; Mon, 8 Oct 2012 06:12:53 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q986CrY1077729; Mon, 8 Oct 2012 06:12:53 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Mon, 8 Oct 2012 08:12:50 +0200 From: Baptiste Daroussin To: Alexey Dokuchaev Message-ID: <20121008061249.GA47691@ithaqua.etoilebsd.net> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="huq684BweRXVnRxX" Content-Disposition: inline In-Reply-To: <20121008035621.GA91369@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, Doug Barton , ports-committers@FreeBSD.org Subject: Re: svn commit: r305288 - head/Mk X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 06:12:53 -0000 --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > On Sat, Oct 06, 2012 at 02:18:16PM -0700, Doug Barton wrote: > > If you actually look at them in an options dialog they make just as much > > sense with or without the word "support." >=20 > While they keep the sense, it takes few more brain cycles to parse IMHO. > Also "support" is nice placeholder word for generic support (as opposed to > some specific usage for particular feature, or when words like "use" are > being used). >=20 > > Meanwhile, whatever changes you propose have to take into account the > > options for ports like www/firefox on stable/8. Before my fix they were > > utterly broken (as in, the dialog was totally blank). Now they work just > > fine. >=20 > That's because OptionsNG poorly implement mutually exclusive options. I > hope that eventually dialog's --radiolist would be utilized for proper > handling, and sane knobs names would be restored. >=20 > Sounds like a nice port junior hacker project. Not hat junior dialog(1) can't mix radiolist and classic checklist that is = why it doesn't use it, using libdialog(3), it would be easiy to implement, but = that won't be usable for a while (until all supported version of freebsd has it. Bapt --huq684BweRXVnRxX Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBybuEACgkQ8kTtMUmk6EyldQCdESbOMjyPipLPW6rHm/+G6kR2 23oAoIK6oxHsVJL1zF5BzHD6oJIVTS0Q =7iiH -----END PGP SIGNATURE----- --huq684BweRXVnRxX-- From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 06:58:46 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60149106564A; Mon, 8 Oct 2012 06:58:46 +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 404178FC0A; Mon, 8 Oct 2012 06:58:46 +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 q986wka6049942; Mon, 8 Oct 2012 06:58:46 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q986wkn4049936; Mon, 8 Oct 2012 06:58:46 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210080658.q986wkn4049936@svn.freebsd.org> From: Guido Falsi Date: Mon, 8 Oct 2012 06:58:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305518 - in head/x11-wm: libwraster windowmaker windowmaker/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 06:58:46 -0000 Author: madpilot Date: Mon Oct 8 06:58:45 2012 New Revision: 305518 URL: http://svn.freebsd.org/changeset/ports/305518 Log: - Update to 0.95.3 - Convert to new options framework - Reset PORTREVISION in slave port - Trim Makefile headers PR: ports/172421 Submitted by: Chris Petrik (maintainer) Deleted: head/x11-wm/windowmaker/files/ Modified: head/x11-wm/libwraster/Makefile (contents, props changed) head/x11-wm/windowmaker/Makefile (contents, props changed) head/x11-wm/windowmaker/distinfo (contents, props changed) head/x11-wm/windowmaker/pkg-plist (contents, props changed) Modified: head/x11-wm/libwraster/Makefile ============================================================================== --- head/x11-wm/libwraster/Makefile Mon Oct 8 05:16:58 2012 (r305517) +++ head/x11-wm/libwraster/Makefile Mon Oct 8 06:58:45 2012 (r305518) @@ -1,11 +1,8 @@ -# New ports collection makefile for: libwraster -# Date created: August 17, 2009 -# Whom: Doug Barton -# +# Created by: Doug Barton # $FreeBSD$ PORTNAME= libwraster -PORTREVISION= 1 +PORTREVISION= 0 COMMENT= libwraster from Window Maker Modified: head/x11-wm/windowmaker/Makefile ============================================================================== --- head/x11-wm/windowmaker/Makefile Mon Oct 8 05:16:58 2012 (r305517) +++ head/x11-wm/windowmaker/Makefile Mon Oct 8 06:58:45 2012 (r305518) @@ -1,12 +1,9 @@ -# New ports collection makefile for: Window Maker -# Date created: August 13, 1997 -# Whom: Brian Handy -# +# Created by: Brian Handy # $FreeBSD$ PORTNAME?= windowmaker -PORTVERSION= 0.95.2 -PORTREVISION?= 4 +PORTVERSION= 0.95.3 +PORTREVISION?= 0 CATEGORIES= x11-wm windowmaker MASTER_SITES= http://windowmaker.org/pub/%SUBDIR%/ MASTER_SITE_SUBDIR= source/release @@ -23,14 +20,12 @@ LIB_DEPENDS= gif:${PORTSDIR}/graphics/gi .if !defined(LWR_SLAVE) RUN_DEPENDS= ${LOCALBASE}/share/WindowMaker/Themes/LeetWM.themed/style:${PORTSDIR}/graphics/wmicons USE_PERL5= yes - -OPTIONS= XRANDR "xrandr support (EXPERIMENTAL)" off +OPTIONS_DEFINE= XRANDR .endif MAKE_JOBS_SAFE= yes USE_AUTOTOOLS= libtool -USE_BZIP2= yes USE_GNOME= gnomehack USE_XORG= xft xinerama xmu xpm USE_GETTEXT= yes @@ -60,16 +55,29 @@ CONFIGURE_ENV+= ac_cv_c_inline_asm=no BROKEN= does not compile on FreeBSD 7.X .endif -.if defined(WITH_XRANDR) +.if ${PORT_OPTIONS:MXRANDR} USE_XORG+= xrandr CONFIGURE_ARGS+= --enable-xrandr .endif CONFLICTS= libwraster-0.* -MANLANG= "" cs ru sk -MAN1= geticonset.1x getstyle.1x seticons.1x setstyle.1x wdwrite.1x \ - wmaker.1x wmsetbg.1x wxcopy.1x wxpaste.1x +MANLANG= "" cs sk ru +MAN1_EN= geticonset.1x getstyle.1x seticons.1x setstyle.1x wdwrite.1x \ + wmaker.1x wmsetbg.1x wxcopy.1x wxpaste.1x get-wings-flags.1 \ + get-wraster-flags.1 get-wutil-flags.1 wdread.1 WindowMaker.1x \ + wmagnify.1x wmgenmenu.1 wmmenugen.1 WPrefs.1x + +MAN8_EN= upgrade-windowmaker-defaults.8 + +MAN1_CS= geticonset.1x setstyle.1x wxpaste.1x getstyle.1x wdwrite.1x \ + wmsetbg.1x seticons.1x wmaker.1x wxcopy.1x + +MAN1_SK= geticonset.1x setstyle.1x wxpaste.1x getstyle.1x wdwrite.1x \ + wmsetbg.1x seticons.1x wmaker.1x wxcopy.1x + +MAN1_RU= geticonset.1x setstyle.1x wxpaste.1x getstyle.1x wdwrite.1x \ + wmsetbg.1x seticons.1x wmaker.1x wxcopy.1x PORTDOCS= AUTHORS BUGFORM BUGS ChangeLog FAQ FAQ.I18N INSTALL \ INSTALL-WMAKER NEWS README README.definable-cursor TODO @@ -77,7 +85,7 @@ PORTDOCS= AUTHORS BUGFORM BUGS ChangeLog LINGUAS= be bg bs ca cs da de el es et fi fr gl hr hu hy it ja ko ms nl no pl pt ro ru sk sv tr zh_CN zh_TW CONFIGURE_ENV+= LINGUAS="${LINGUAS}" -pre-patch: +post-patch: .for f in WINGs/wapplication.c WPrefs.app/Menu.c WPrefs.app/Paths.c \ WindowMaker/*menu* @${REINPLACE_CMD} -e "s#/usr/local#${PREFIX}#g" ${WRKSRC}/${f} Modified: head/x11-wm/windowmaker/distinfo ============================================================================== --- head/x11-wm/windowmaker/distinfo Mon Oct 8 05:16:58 2012 (r305517) +++ head/x11-wm/windowmaker/distinfo Mon Oct 8 06:58:45 2012 (r305518) @@ -1,2 +1,2 @@ -SHA256 (WindowMaker-0.95.2.tar.bz2) = 65b5dee5d87103292fd6afc039a81ed3287e4a545d149a33a50b303a9a9cc94b -SIZE (WindowMaker-0.95.2.tar.bz2) = 2190825 +SHA256 (WindowMaker-0.95.3.tar.gz) = b5eb88eccbf9a196a617594717797aa38f5c38d13d2ee40e914e153d09c9975a +SIZE (WindowMaker-0.95.3.tar.gz) = 2780245 Modified: head/x11-wm/windowmaker/pkg-plist ============================================================================== --- head/x11-wm/windowmaker/pkg-plist Mon Oct 8 05:16:58 2012 (r305517) +++ head/x11-wm/windowmaker/pkg-plist Mon Oct 8 06:58:45 2012 (r305518) @@ -101,6 +101,7 @@ include/WINGs/WINGs.h include/WINGs/WINGsP.h include/WINGs/WUtil.h include/wraster.h +include/WMaker.h lib/libWINGs.a lib/libWINGs.la lib/libWINGs.so @@ -113,6 +114,10 @@ lib/libwraster.a lib/libwraster.la lib/libwraster.so lib/libwraster.so.4 +lib/libWMaker.so.1 +lib/libWMaker.so +lib/libWMaker.la +lib/libWMaker.a libdata/pkgconfig/WINGs.pc libdata/pkgconfig/wrlib.pc share/WINGs/Images.tiff @@ -331,6 +336,7 @@ share/locale/no/LC_MESSAGES/WindowMaker. share/locale/pl/LC_MESSAGES/WindowMaker.mo share/locale/pt/LC_MESSAGES/WPrefs.mo share/locale/pt/LC_MESSAGES/WindowMaker.mo +share/locale/pt/LC_MESSAGES/wmgenmenu.mo share/locale/ro/LC_MESSAGES/WindowMaker.mo share/locale/ru/LC_MESSAGES/WPrefs.mo share/locale/ru/LC_MESSAGES/WindowMaker.mo From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 07:16:45 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60CD6106564A; Mon, 8 Oct 2012 07:16:45 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4266F8FC16; Mon, 8 Oct 2012 07:16:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q987GjRq090284; Mon, 8 Oct 2012 07:16:45 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q987GjiW090283; Mon, 8 Oct 2012 07:16:45 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Mon, 8 Oct 2012 09:16:42 +0200 From: Baptiste Daroussin To: Alexey Dokuchaev Message-ID: <20121008071642.GA91360@ithaqua.etoilebsd.net> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TB36FDmn/VVEgNH/" Content-Disposition: inline In-Reply-To: <20121008045905.GD91369@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: svn commit: r305357 - head/net/ssvnc X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 07:16:45 -0000 --TB36FDmn/VVEgNH/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 08, 2012 at 04:59:06AM +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 04:01:54AM +0000, Alexey Dokuchaev wrote: > > On Sat, Oct 06, 2012 at 11:23:17AM +0000, Baptiste Daroussin wrote: > > > New Revision: 305357 > > > URL: http://svn.freebsd.org/changeset/ports/305357 > > >=20 > > > Log: > > > fix sense of a test > > > =20 > > > -.if ${PORT_OPTIONS:MULTRAFTP} > > > +.if empty(PORT_OPTIONS:MULTRAFTP) > >=20 > > That looks weird, and commit message is pretty cryptic as well. Could = you > > explain what went wrong here so others would not fall in the same pitfa= ll? >=20 > Err, I read is as ! vs. empty() test. Still, I've noticved some arguments > on the syntax, would be nice to know if ! ${PORT_OPTIONS:M...} has issues > other than purely stylish. >=20 No it hasn't (as far as I know) Bapt --TB36FDmn/VVEgNH/ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlByfdoACgkQ8kTtMUmk6ExlTQCdHHEfLgnyFE1Vax5xlqTYuDtJ w+gAoKN2jVhTeXWiChZPhhYEEBs9C9j/ =qP1w -----END PGP SIGNATURE----- --TB36FDmn/VVEgNH/-- From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 07:26:12 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 34DC2106566C; Mon, 8 Oct 2012 07:26:12 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 113E38FC0C; Mon, 8 Oct 2012 07:26:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q987QBJe090990; Mon, 8 Oct 2012 07:26:11 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q987QBfn090989; Mon, 8 Oct 2012 07:26:11 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Mon, 8 Oct 2012 09:26:09 +0200 From: Baptiste Daroussin To: Alberto Villa Message-ID: <20121008072609.GC91360@ithaqua.etoilebsd.net> References: <201210061435.q96EZklE081553@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ghzN8eJ9Qlbqn3iT" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, Eitan Adler , ports-committers@FreeBSD.org Subject: Re: svn commit: r305369 - in head: deskutils/launchy devel/adime devel/cdecl devel/csmith devel/delta devel/p5-Benchmark-Timer devel/p5-File-Append-TempFile devel/readline devel/smake devel/stlfilt dns... X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 07:26:12 -0000 --ghzN8eJ9Qlbqn3iT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Oct 06, 2012 at 05:35:44PM +0200, Alberto Villa wrote: > On Sat, Oct 6, 2012 at 5:32 PM, Eitan Adler wrote: > > I didn't follow any of the header flamewars, so I have no idea. >=20 > Actually, in the official announcement tabthorpe@ requested to avoid > header-only commits. Yes it was asked to trim the headers during regular updates: "As before, we ask this header only be updated in conjunction with a regular update, as we do not want any unnecessary churn to the repo prior to the pe= nding Ports Feature Freeze." regards, Bapt --ghzN8eJ9Qlbqn3iT Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlBygBEACgkQ8kTtMUmk6ExvtQCfehen5olmzBVfDyzDXbMHkKjG VjgAn29yjo7zoiSWMS79EPPEKppB8u7j =qJAy -----END PGP SIGNATURE----- --ghzN8eJ9Qlbqn3iT-- From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 07:47:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ECB83106566C; Mon, 8 Oct 2012 07:47:13 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D89158FC0C; Mon, 8 Oct 2012 07:47: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 q987lD7Q057140; Mon, 8 Oct 2012 07:47:13 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q987lDij057138; Mon, 8 Oct 2012 07:47:13 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210080747.q987lDij057138@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 8 Oct 2012 07:47:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305519 - head/lang/tcl86 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 07:47:14 -0000 Author: gahr Date: Mon Oct 8 07:47:13 2012 New Revision: 305519 URL: http://svn.freebsd.org/changeset/ports/305519 Log: - Do not create DATADIR when building threaded version Reported by: PH (via linimon) Modified: head/lang/tcl86/Makefile Modified: head/lang/tcl86/Makefile ============================================================================== --- head/lang/tcl86/Makefile Mon Oct 8 06:58:45 2012 (r305518) +++ head/lang/tcl86/Makefile Mon Oct 8 07:47:13 2012 (r305519) @@ -766,11 +766,11 @@ post-install: .if defined(WITH_TZDATA) @cd ${WRKSRC} && ${MAKE} -f Makefile install-tzdata ${MAKE_ENV} .endif - ${MKDIR} ${DATADIR} .if !defined(NO_INSTALL_MANPAGES) ${MKDIR} ${MANPREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/../doc/tclsh.1 ${MANPREFIX}/man/man1/tclsh${TCL_VER}${THREADS_SUFFIX}.1 .if !defined(BUILDING_TCL_THREADS) && defined(WITH_TCL86_MAN) + ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/../doc/man.macros ${DATADIR} . for mp in ${MAN3} ${MANN} @${REINPLACE_CMD} -e 's|^.so man.macros|.so ${DATADIR}/man.macros|' \ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 08:13:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B970B106564A; Mon, 8 Oct 2012 08:13:05 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A2C6B8FC0A; Mon, 8 Oct 2012 08:13:05 +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 q988D5lY060802; Mon, 8 Oct 2012 08:13:05 GMT (envelope-from sbz@svn.freebsd.org) Received: (from sbz@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q988D5pK060799; Mon, 8 Oct 2012 08:13:05 GMT (envelope-from sbz@svn.freebsd.org) Message-Id: <201210080813.q988D5pK060799@svn.freebsd.org> From: Sofian Brabez Date: Mon, 8 Oct 2012 08:13:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305520 - head/security/dsniff X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 08:13:05 -0000 Author: sbz Date: Mon Oct 8 08:13:05 2012 New Revision: 305520 URL: http://svn.freebsd.org/changeset/ports/305520 Log: - Convert to new option framework - Add LICENSE - Update MASTER_SITES - Update pkg-descr Modified: head/security/dsniff/Makefile (contents, props changed) head/security/dsniff/pkg-descr (contents, props changed) Modified: head/security/dsniff/Makefile ============================================================================== --- head/security/dsniff/Makefile Mon Oct 8 07:47:13 2012 (r305519) +++ head/security/dsniff/Makefile Mon Oct 8 08:13:05 2012 (r305520) @@ -1,28 +1,31 @@ -# New ports collection makefile for: dsniff -# Date created: 08 Jan 2000 -# Whom: kris@FreeBSD.org -# +# Created by: kris@FreeBSD.org # $FreeBSD$ -# PORTNAME= dsniff PORTVERSION= 2.3 PORTREVISION= 4 CATEGORIES= security -MASTER_SITES= http://naughty.monkey.org/~dugsong/dsniff/ +MASTER_SITES= http://www.monkey.org/~dugsong/${PORTNAME}/ \ + LOCAL/sbz MAINTAINER= sbz@FreeBSD.org COMMENT= Various sniffing utilities for penetration testing +LICENSE= BSD + BUILD_DEPENDS= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet10 \ ${LOCALBASE}/lib/libnids.a:${PORTSDIR}/net/libnids GNU_CONFIGURE= yes WANT_GNOME= yes -OPTIONS= X11 "Enable X11 support" on +OPTIONS_DEFINE= X11 + +OPTIONS_DEFAULT= X11 + +.include -MAN8= arpspoof.8 dsniff.8 macof.8 mailsnarf.8 tcpkill.8 \ +MAN8= arpspoof.8 ${PORTNAME}.8 macof.8 mailsnarf.8 tcpkill.8 \ tcpnice.8 urlsnarf.8 filesnarf.8 dnsspoof.8 msgsnarf.8 \ sshmitm.8 webmitm.8 @@ -41,7 +44,7 @@ LIBNIDS_GLIB2!= nm -u ${LOCALBASE}/lib/l USE_GNOME+= glib20 .endif -.if !defined(WITHOUT_X11) +.if empty(PORT_OPTIONS:MX11) USE_XORG= x11 xmu PLIST_SUB+= X11='' MAN8+= webspy.8 Modified: head/security/dsniff/pkg-descr ============================================================================== --- head/security/dsniff/pkg-descr Mon Oct 8 07:47:13 2012 (r305519) +++ head/security/dsniff/pkg-descr Mon Oct 8 08:13:05 2012 (r305520) @@ -1,26 +1,9 @@ -Various tools for network penetration testing. Please do not abuse them. - -arpspoof redirect packets from a target host (or all hosts) on the LAN - intended for another host on the LAN by forging ARP replies. -dnsspoof forge replies to arbitrary DNS address / pointer queries on - the LAN. -dsniff simple password sniffer. -filesnarf saves selected files sniffed from NFS traffic in the current - working directory. -macof flood the local network with random MAC addresses. -mailsnarf a fast and easy way to violate the Electronic Communications - Privacy Act of 1986 (18 USC 2701-2711), be careful. -msgsnarf record selected messages from sniffed AOL Instant Messenger, - ICQ 2000, IRC, and Yahoo! Messenger chat sessions. -sshmitm SSH monkey-in-the-middle. -tcpkill kills specified in-progress TCP connections. -tcpnice slow down specified TCP connections via "active" traffic - shaping. -urlsnarf output all requested URLs sniffed from HTTP traffic in CLF - (Common Log Format, used by almost all web servers), suitable - for offline post-processing -webmitm HTTP / HTTPS monkey-in-the-middle. -webspy sends URLs sniffed from a client to your local Netscape - browser for display, a fun party trick +dsniff is a collection of tools for network auditing and penetration testing. +dsniff, filesnarf, mailsnarf, msgsnarf, urlsnarf, and webspy passively monitor +a network for interesting data (passwords, e-mail, files, etc.). arpspoof, +dnsspoof, and macof facilitate the interception of network traffic normally +unavailable to an attacker (e.g, due to layer-2 switching). sshmitm and webmitm +implement active monkey-in-the-middle attacks against redirected SSH and HTTPS +sessions by exploiting weak bindings in ad-hoc PKI. WWW: http://www.monkey.org/~dugsong/dsniff/ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 08:15:29 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 54B51106566B; Mon, 8 Oct 2012 08:15:29 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 33FCB8FC0C; Mon, 8 Oct 2012 08:15: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 q988FTEo061178; Mon, 8 Oct 2012 08:15:29 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q988FTpi061175; Mon, 8 Oct 2012 08:15:29 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201210080815.q988FTpi061175@svn.freebsd.org> From: Doug Barton Date: Mon, 8 Oct 2012 08:15:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305521 - in head/net-mgmt/nrpe2: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 08:15:29 -0000 Author: dougb Date: Mon Oct 8 08:15:28 2012 New Revision: 305521 URL: http://svn.freebsd.org/changeset/ports/305521 Log: Fix the currently-broken rc.d script: 1. Tidy up the header 2. nrpe2 runs as an unpriviliged user, so REQUIRE: LOGIN is manadatory 3. Move load_rc_config up higher 4. Since _enable and _configfile are mandatory they should use := 5. Only sets command_args once, and puts -d last as is traditional. 6. Pulls the pidfile from nrpe.cfg, which means it only has to be set once. Modified: head/net-mgmt/nrpe2/Makefile head/net-mgmt/nrpe2/files/nrpe2.in Modified: head/net-mgmt/nrpe2/Makefile ============================================================================== --- head/net-mgmt/nrpe2/Makefile Mon Oct 8 08:13:05 2012 (r305520) +++ head/net-mgmt/nrpe2/Makefile Mon Oct 8 08:15:28 2012 (r305521) @@ -1,13 +1,10 @@ -# New ports collection makefile for: nrpe -# Date created: 1 Aug 2002 -# Whom: Paul Dlug +# Created by: Paul Dlug # # $FreeBSD$ -# PORTNAME= nrpe DISTVERSION= 2.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= SF/nagios/${PORTNAME}-2.x/${PORTNAME}-${PORTVERSION} Modified: head/net-mgmt/nrpe2/files/nrpe2.in ============================================================================== --- head/net-mgmt/nrpe2/files/nrpe2.in Mon Oct 8 08:13:05 2012 (r305520) +++ head/net-mgmt/nrpe2/files/nrpe2.in Mon Oct 8 08:15:28 2012 (r305521) @@ -1,39 +1,54 @@ #!/bin/sh -# + # $FreeBSD$ # - # PROVIDE: nrpe2 -# REQUIRE: NETWORKING +# REQUIRE: LOGIN # KEYWORD: shutdown - # # Add the following lines to /etc/rc.conf to enable nrpe2: # nrpe2_enable (bool): Set to "NO" by default. # Set it to "YES" to enable nrpe2. -# nrpe2_flags (str): Set to "" by default. +# nrpe2_flags (str): Not set by default. # nrpe2_configfile (str): Set to "%%PREFIX%%/etc/nrpe.cfg" by default. -# nrpe2_pidfile (str): Set to "%%NAGIOSDIR%%/nrpe2.pid" by default. -# . /etc/rc.subr -name="nrpe2" +name=nrpe2 rcvar=nrpe2_enable -: ${nrpe2_enable=NO} -: ${nrpe2_configfile=%%PREFIX%%/etc/nrpe.cfg} -pidfile=${nrpe2_pidfile:-/var/run/nrpe2/nrpe2.pid} +load_rc_config "${name}" + +: ${nrpe2_enable:=NO} +: ${nrpe2_configfile:=%%PREFIX%%/etc/nrpe.cfg} + +required_files="${nrpe2_configfile}" command="%%PREFIX%%/sbin/nrpe2" -command_args="-d" +command_args="-c ${nrpe2_configfile} -d" extra_commands="reload" -start_precmd="install -d -o ${nrpe_user:-nagios} ${pidfile%/*}" sig_reload=HUP -load_rc_config "${name}" +start_precmd=nrpe2_prestart +stop_precmd=find_pidfile -required_files="${nrpe2_configfile}" -command_args="${command_args} -c ${nrpe2_configfile}" +find_pidfile() +{ + [ -n "$nrpe2_pidfile" ] && + warn "No longer necessary to set nrpe2_pidfile in rc.conf[.local]" + + if type get_pidfile_from_conf >/dev/null 2>&1 && + get_pidfile_from_conf pid_file %%PREFIX%%/etc/nrpe.cfg; then + pidfile="$_pidfile_from_conf" + else + pidfile='/var/run/nrpe2/nrpe2.pid' + fi +} + +nrpe2_prestart() +{ + find_pidfile + install -d -o ${nrpe_user:-nagios} ${pidfile%/*} +} run_rc_command "$1" From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 08:26:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C0A6106564A; Mon, 8 Oct 2012 08:26:23 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5580C8FC14; Mon, 8 Oct 2012 08:26: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 q988QN6v062704; Mon, 8 Oct 2012 08:26:23 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q988QNaA062701; Mon, 8 Oct 2012 08:26:23 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201210080826.q988QNaA062701@svn.freebsd.org> From: Doug Barton Date: Mon, 8 Oct 2012 08:26:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305522 - head/net-p2p/qbittorrent X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 08:26:23 -0000 Author: dougb Date: Mon Oct 8 08:26:22 2012 New Revision: 305522 URL: http://svn.freebsd.org/changeset/ports/305522 Log: * Sun Oct 7 2012 - Christophe Dumez - v3.0.6 - BUGFIX: Do not store created torrent in memory before writing to a file - BUGFIX: No longer fallback to ANY interface if the user-selected interface cannot be found - BUGFIX: Fix timezone parsing in RSS - BUGFIX: Fix cookie support for RSS feeds Modified: head/net-p2p/qbittorrent/Makefile head/net-p2p/qbittorrent/distinfo Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Mon Oct 8 08:15:28 2012 (r305521) +++ head/net-p2p/qbittorrent/Makefile Mon Oct 8 08:26:22 2012 (r305522) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qbittorrent -PORTVERSION= 3.0.5 +PORTVERSION= 3.0.6 PORTREVISION?= 0 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/ Modified: head/net-p2p/qbittorrent/distinfo ============================================================================== --- head/net-p2p/qbittorrent/distinfo Mon Oct 8 08:15:28 2012 (r305521) +++ head/net-p2p/qbittorrent/distinfo Mon Oct 8 08:26:22 2012 (r305522) @@ -1,2 +1,2 @@ -SHA256 (qbittorrent-3.0.5.tar.gz) = 1a67d0cd22974d1d356f7ce40cf3b7f00a4873dfa8794573cbb2ee152ce5e482 -SIZE (qbittorrent-3.0.5.tar.gz) = 4912114 +SHA256 (qbittorrent-3.0.6.tar.gz) = b2308f4500000ae2ebbf9722ef8a09d6524fd016bd746fa2a0fe07516353fb15 +SIZE (qbittorrent-3.0.6.tar.gz) = 4910077 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 09:05:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A4774106564A; Mon, 8 Oct 2012 09:05:30 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8CE958FC08; Mon, 8 Oct 2012 09:05: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 q9895UJm067944; Mon, 8 Oct 2012 09:05:30 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9895UPB067940; Mon, 8 Oct 2012 09:05:30 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210080905.q9895UPB067940@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 8 Oct 2012 09:05:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305523 - head/java/netbeans-devel X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 09:05:30 -0000 Author: gahr Date: Mon Oct 8 09:05:29 2012 New Revision: 305523 URL: http://svn.freebsd.org/changeset/ports/305523 Log: - Update to 7.3.b Modified: head/java/netbeans-devel/Makefile head/java/netbeans-devel/distinfo head/java/netbeans-devel/pkg-plist Modified: head/java/netbeans-devel/Makefile ============================================================================== --- head/java/netbeans-devel/Makefile Mon Oct 8 08:26:22 2012 (r305522) +++ head/java/netbeans-devel/Makefile Mon Oct 8 09:05:29 2012 (r305523) @@ -1,15 +1,12 @@ -# New ports collection Makefile for: netbeans-devel -# Date created: 15 August 2008 -# Whom: gahr -# +# Created by: gahr # $FreeBSD$ PORTNAME= netbeans -DISTVERSION= 7.1beta +DISTVERSION= 7.3beta CATEGORIES= java devel -MASTER_SITES= http://dlc.sun.com.edgesuite.net/netbeans/7.1/beta/zip/ +MASTER_SITES= http://dlc.sun.com.edgesuite.net/netbeans/7.3/beta/zip/ PKGNAMESUFFIX= -devel -DISTNAME= netbeans-${DISTVERSION}-201109252201-ml +DISTNAME= netbeans-${DISTVERSION}-201210011125 MAINTAINER= gahr@FreeBSD.org COMMENT= A full-featured integrated environment for Java @@ -24,7 +21,7 @@ PREFIXDIR= ${PREFIX}/netbeans-${PORTVERS PLIST_SUB+= PORTVERSION=${PORTVERSION} -IGNORE= No development version available right now. Please use java/netbeans instead. +#IGNORE= No development version available right now. Please use java/netbeans instead. post-patch: @${REINPLACE_CMD} -i "" -e '19s|#||;19s|/path/to/jdk|${JAVA_HOME}|' \ Modified: head/java/netbeans-devel/distinfo ============================================================================== --- head/java/netbeans-devel/distinfo Mon Oct 8 08:26:22 2012 (r305522) +++ head/java/netbeans-devel/distinfo Mon Oct 8 09:05:29 2012 (r305523) @@ -1,2 +1,2 @@ -SHA256 (netbeans-7.1beta-201109252201-ml.zip) = 709b9343e860dbbca95fafc7a1cf203045b80689e716d4b4dbc559e21dff7439 -SIZE (netbeans-7.1beta-201109252201-ml.zip) = 262545559 +SHA256 (netbeans-7.3beta-201210011125.zip) = 7577fd6a3f54c200e08b935ad506d340f7e8bcf0b48fd710fb2f711243bc5f2d +SIZE (netbeans-7.3beta-201210011125.zip) = 330579915 Modified: head/java/netbeans-devel/pkg-plist ============================================================================== --- head/java/netbeans-devel/pkg-plist Mon Oct 8 08:26:22 2012 (r305522) +++ head/java/netbeans-devel/pkg-plist Mon Oct 8 09:05:29 2012 (r305523) @@ -1,7 +1,5 @@ bin/netbeans-%%PORTVERSION%% netbeans-%%PORTVERSION%%/CREDITS.html -netbeans-%%PORTVERSION%%/DISTRIBUTION.txt -netbeans-%%PORTVERSION%%/LEGALNOTICE.txt netbeans-%%PORTVERSION%%/LICENSE.txt netbeans-%%PORTVERSION%%/README.html netbeans-%%PORTVERSION%%/THIRDPARTYLICENSE.txt @@ -18,6 +16,7 @@ netbeans-%%PORTVERSION%%/apisupport/conf netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-paintapp.xml netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-project.xml netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-refactoring.xml +netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-apisupport-wizards.xml netbeans-%%PORTVERSION%%/apisupport/config/Modules/org-netbeans-modules-maven-apisupport.xml netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-ant_ja.jar netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-ant_pt_BR.jar @@ -59,6 +58,10 @@ netbeans-%%PORTVERSION%%/apisupport/modu netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-refactoring_pt_BR.jar netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-refactoring_ru.jar netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-refactoring_zh_CN.jar +netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-wizards_ja.jar +netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-wizards_pt_BR.jar +netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-wizards_ru.jar +netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-apisupport-wizards_zh_CN.jar netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-maven-apisupport_ja.jar netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-maven-apisupport_pt_BR.jar netbeans-%%PORTVERSION%%/apisupport/modules/locale/org-netbeans-modules-maven-apisupport_ru.jar @@ -73,6 +76,7 @@ netbeans-%%PORTVERSION%%/apisupport/modu netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-paintapp.jar netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-project.jar netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-refactoring.jar +netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-apisupport-wizards.jar netbeans-%%PORTVERSION%%/apisupport/modules/org-netbeans-modules-maven-apisupport.jar netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-ant.xml netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-crudsample.xml @@ -84,9 +88,11 @@ netbeans-%%PORTVERSION%%/apisupport/upda netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-paintapp.xml netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-project.xml netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-refactoring.xml +netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-apisupport-wizards.xml netbeans-%%PORTVERSION%%/apisupport/update_tracking/org-netbeans-modules-maven-apisupport.xml netbeans-%%PORTVERSION%%/bin/netbeans netbeans-%%PORTVERSION%%/bin/netbeans.exe +netbeans-%%PORTVERSION%%/bin/netbeans64.exe netbeans-%%PORTVERSION%%/cnd/.lastModified netbeans-%%PORTVERSION%%/cnd/VERSION.txt netbeans-%%PORTVERSION%%/cnd/bin/GdbKillProc.exe @@ -98,6 +104,8 @@ netbeans-%%PORTVERSION%%/cnd/bin/Linux-x netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86_64/rfs_controller netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86_64/rfs_preload.so netbeans-%%PORTVERSION%%/cnd/bin/Linux-x86_64/rfs_test_env +netbeans-%%PORTVERSION%%/cnd/bin/MacOSX-x86/libBuildTrace.dylib +netbeans-%%PORTVERSION%%/cnd/bin/MacOSX-x86_64/libBuildTrace.dylib netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc/libBuildTrace.so netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc/rfs_controller netbeans-%%PORTVERSION%%/cnd/bin/SunOS-sparc/rfs_preload.so @@ -138,6 +146,7 @@ netbeans-%%PORTVERSION%%/cnd/config/Modu netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-kit.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-lexer.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-litemodel.xml +netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-makeproject-source-bridge.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-makeproject.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-model-services.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-modeldiscovery.xml @@ -147,10 +156,12 @@ netbeans-%%PORTVERSION%%/cnd/config/Modu netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-navigation.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-qnavigator.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-refactoring.xml +netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-remote-projectui.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-remote.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-repository-api.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-repository.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-script.xml +netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-search.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-simpleunit.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-source.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd-spellchecker-bindings.xml @@ -160,14 +171,6 @@ netbeans-%%PORTVERSION%%/cnd/config/Modu netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-cnd.xml netbeans-%%PORTVERSION%%/cnd/config/Modules/org-netbeans-modules-jellytools-cnd.xml netbeans-%%PORTVERSION%%/cnd/modules/docs/org-netbeans-modules-cnd.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-lib-terminalemulator_ja.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-lib-terminalemulator_pt_BR.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-lib-terminalemulator_ru.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-lib-terminalemulator_zh_CN.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr3_ja.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr3_pt_BR.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr3_ru.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr3_zh_CN.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr_ja.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-antlr_ru.jar @@ -212,18 +215,10 @@ netbeans-%%PORTVERSION%%/cnd/modules/loc netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common2_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common2_ru.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common2_zh_CN.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common_ja.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common_pt_BR.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common_ru.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-common_zh_CN.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb2_ja.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb2_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb2_ru.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb2_zh_CN.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb_ja.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb_pt_BR.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb_ru.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-debugger-gdb_zh_CN.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-discovery_ja.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-discovery_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-discovery_ru.jar @@ -244,10 +239,6 @@ netbeans-%%PORTVERSION%%/cnd/modules/loc netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-folding_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-folding_ru.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-folding_zh_CN.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gizmo_ja.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gizmo_pt_BR.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gizmo_ru.jar -netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gizmo_zh_CN.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gotodeclaration_ja.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gotodeclaration_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-gotodeclaration_ru.jar @@ -268,6 +259,10 @@ netbeans-%%PORTVERSION%%/cnd/modules/loc netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-litemodel_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-litemodel_ru.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-litemodel_zh_CN.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-makeproject-source-bridge_ja.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-makeproject-source-bridge_pt_BR.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-makeproject-source-bridge_ru.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-makeproject-source-bridge_zh_CN.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-makeproject_ja.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-makeproject_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-makeproject_ru.jar @@ -304,6 +299,10 @@ netbeans-%%PORTVERSION%%/cnd/modules/loc netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-refactoring_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-refactoring_ru.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-refactoring_zh_CN.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-remote-projectui_ja.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-remote-projectui_pt_BR.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-remote-projectui_ru.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-remote-projectui_zh_CN.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-remote_ja.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-remote_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-remote_ru.jar @@ -320,6 +319,10 @@ netbeans-%%PORTVERSION%%/cnd/modules/loc netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-script_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-script_ru.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-script_zh_CN.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-search_ja.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-search_pt_BR.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-search_ru.jar +netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-search_zh_CN.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-simpleunit_ja.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-simpleunit_pt_BR.jar netbeans-%%PORTVERSION%%/cnd/modules/locale/org-netbeans-modules-cnd-simpleunit_ru.jar @@ -374,6 +377,7 @@ netbeans-%%PORTVERSION%%/cnd/modules/org netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-kit.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-lexer.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-litemodel.jar +netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-makeproject-source-bridge.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-makeproject.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-model-services.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-modeldiscovery.jar @@ -383,10 +387,12 @@ netbeans-%%PORTVERSION%%/cnd/modules/org netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-navigation.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-qnavigator.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-refactoring.jar +netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-remote-projectui.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-remote.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-repository-api.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-repository.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-script.jar +netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-search.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-simpleunit.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-source.jar netbeans-%%PORTVERSION%%/cnd/modules/org-netbeans-modules-cnd-spellchecker-bindings.jar @@ -417,6 +423,7 @@ netbeans-%%PORTVERSION%%/cnd/update_trac netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-kit.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-lexer.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-litemodel.xml +netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-makeproject-source-bridge.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-makeproject.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-model-services.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-modeldiscovery.xml @@ -426,10 +433,12 @@ netbeans-%%PORTVERSION%%/cnd/update_trac netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-navigation.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-qnavigator.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-refactoring.xml +netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-remote-projectui.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-remote.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-repository-api.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-repository.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-script.xml +netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-search.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-simpleunit.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-source.xml netbeans-%%PORTVERSION%%/cnd/update_tracking/org-netbeans-modules-cnd-spellchecker-bindings.xml @@ -445,54 +454,7 @@ netbeans-%%PORTVERSION%%/dlight/config/M netbeans-%%PORTVERSION%%/dlight/config/Modules/org-netbeans-modules-dlight-remote-impl.xml netbeans-%%PORTVERSION%%/dlight/config/Modules/org-netbeans-modules-dlight-remote.xml netbeans-%%PORTVERSION%%/dlight/config/Modules/org-netbeans-modules-dlight-util.xml -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-annotationsupport_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-annotationsupport_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-annotationsupport_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-annotationsupport_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-collector-procfs_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-collector-procfs_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-collector-procfs_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-collector-procfs_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-collector-stdout_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-collector-stdout_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-collector-stdout_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-collector-stdout_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-core-stack_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-core-stack_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-core-stack_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-core-stack_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-core-ui_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-core-ui_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-core-ui_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-core-ui_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-cpu_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-cpu_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-cpu_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-cpu_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-db-derby_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-db-derby_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-db-derby_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-db-derby_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-db-h2_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-db-h2_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-db-h2_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-db-h2_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-dtrace_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-dtrace_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-dtrace_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-dtrace_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-extras_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-extras_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-extras_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-extras_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-fops_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-fops_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-fops_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-fops_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-indicators_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-indicators_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-indicators_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-indicators_zh_CN.jar +netbeans-%%PORTVERSION%%/dlight/config/Modules/org-netbeans-modules-remotefs-versioning.xml netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-kit_ja.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-kit_pt_BR.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-kit_ru.jar @@ -501,38 +463,6 @@ netbeans-%%PORTVERSION%%/dlight/modules/ netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-libs-common_pt_BR.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-libs-common_ru.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-libs-common_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-libs-h2_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-libs-h2_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-libs-h2_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-libs-h2_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-management_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-management_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-management_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-management_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-memory_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-memory_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-memory_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-memory_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-msa-support_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-msa-support_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-msa-support_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-msa-support_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-msa_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-msa_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-msa_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-msa_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-nativeexecution_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-nativeexecution_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-nativeexecution_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-nativeexecution_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-perfan_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-perfan_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-perfan_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-perfan_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-procfs_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-procfs_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-procfs_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-procfs_zh_CN.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-remote-impl_ja.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-remote-impl_pt_BR.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-remote-impl_ru.jar @@ -541,52 +471,26 @@ netbeans-%%PORTVERSION%%/dlight/modules/ netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-remote_pt_BR.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-remote_ru.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-remote_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-spi_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-spi_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-spi_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-spi_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-sync_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-sync_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-sync_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-sync_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-threadmap-support_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-threadmap-support_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-threadmap-support_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-threadmap-support_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-threads_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-threads_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-threads_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-threads_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-tools_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-tools_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-tools_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-tools_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-toolsui_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-toolsui_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-toolsui_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-toolsui_zh_CN.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-util_ja.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-util_pt_BR.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-util_ru.jar netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-util_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-visualizers_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-visualizers_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-visualizers_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight-visualizers_zh_CN.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight_ja.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight_pt_BR.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight_ru.jar -netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-dlight_zh_CN.jar +netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-remotefs-versioning_ja.jar +netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-remotefs-versioning_pt_BR.jar +netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-remotefs-versioning_ru.jar +netbeans-%%PORTVERSION%%/dlight/modules/locale/org-netbeans-modules-remotefs-versioning_zh_CN.jar netbeans-%%PORTVERSION%%/dlight/modules/org-netbeans-modules-dlight-kit.jar netbeans-%%PORTVERSION%%/dlight/modules/org-netbeans-modules-dlight-libs-common.jar netbeans-%%PORTVERSION%%/dlight/modules/org-netbeans-modules-dlight-remote-impl.jar netbeans-%%PORTVERSION%%/dlight/modules/org-netbeans-modules-dlight-remote.jar netbeans-%%PORTVERSION%%/dlight/modules/org-netbeans-modules-dlight-util.jar +netbeans-%%PORTVERSION%%/dlight/modules/org-netbeans-modules-remotefs-versioning.jar netbeans-%%PORTVERSION%%/dlight/update_tracking/org-netbeans-modules-dlight-kit.xml netbeans-%%PORTVERSION%%/dlight/update_tracking/org-netbeans-modules-dlight-libs-common.xml netbeans-%%PORTVERSION%%/dlight/update_tracking/org-netbeans-modules-dlight-remote-impl.xml netbeans-%%PORTVERSION%%/dlight/update_tracking/org-netbeans-modules-dlight-remote.xml netbeans-%%PORTVERSION%%/dlight/update_tracking/org-netbeans-modules-dlight-util.xml +netbeans-%%PORTVERSION%%/dlight/update_tracking/org-netbeans-modules-remotefs-versioning.xml netbeans-%%PORTVERSION%%/enterprise/.lastModified netbeans-%%PORTVERSION%%/enterprise/VERSION.txt netbeans-%%PORTVERSION%%/enterprise/ant/extra/jspcompile.jar @@ -595,22 +499,22 @@ netbeans-%%PORTVERSION%%/enterprise/ant/ netbeans-%%PORTVERSION%%/enterprise/ant/nblib/locale/org-netbeans-modules-j2ee-ant_ru.jar netbeans-%%PORTVERSION%%/enterprise/ant/nblib/locale/org-netbeans-modules-j2ee-ant_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/ant/nblib/org-netbeans-modules-j2ee-ant.jar -netbeans-%%PORTVERSION%%/enterprise/ant/nblib/org-netbeans-modules-web-client-javascript-debugger-ant.jar netbeans-%%PORTVERSION%%/enterprise/ant/sources/org/netbeans/modules/web/project/ant/JspC.java netbeans-%%PORTVERSION%%/enterprise/ant/sources/org/netbeans/modules/web/project/ant/JspCSingle.java netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-api-web-webmodule.xml +netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-libs-amazon.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-libs-commons_fileupload.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-libs-elimpl.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-libs-glassfish_logging.xml -netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-apisupport-facebooksample.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-apisupport-restsample.xml +netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-cloud-amazon.xml +netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-cloud-common.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-el-lexer.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-glassfish-eecommon.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-glassfish-javaee.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-hibernateweb.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-j2ee-ant.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-j2ee-api-ejbmodule.xml -netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-j2ee-archive.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-j2ee-clientproject.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-j2ee-common.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-j2ee-core.xml @@ -647,7 +551,7 @@ netbeans-%%PORTVERSION%%/enterprise/conf netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-spring-webmvc.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-tomcat5.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-web-beans.xml -netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-web-client-javascript-debugger-ant.xml +netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-web-client-rest.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-web-core-syntax.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-web-core.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-web-debug.xml @@ -698,31 +602,35 @@ netbeans-%%PORTVERSION%%/enterprise/conf netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-websvc-websvcapi.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-websvc-wsitconf.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-websvc-wsitmodelext.xml -netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-websvc-wsstack-jaxws.xml netbeans-%%PORTVERSION%%/enterprise/config/Modules/org-netbeans-modules-websvc-wsstackapi.xml netbeans-%%PORTVERSION%%/enterprise/docs/javaee6-doc-api.zip -netbeans-%%PORTVERSION%%/enterprise/docs/jersey-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/jersey-apache-client-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/jersey-atom-abdera-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/jersey-guice-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/jersey-multipart-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/jersey-simple-server-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/jersey-spring-1.8-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/jersey-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/jersey-apache-client-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/jersey-atom-abdera-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/jersey-guice-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/jersey-multipart-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/jersey-simple-server-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/jersey-spring-1.13-javadoc.zip netbeans-%%PORTVERSION%%/enterprise/docs/jsf-api-docs.zip netbeans-%%PORTVERSION%%/enterprise/docs/jsf12-tlddoc.zip netbeans-%%PORTVERSION%%/enterprise/docs/jsr311-api-1.1.1-javadoc.zip netbeans-%%PORTVERSION%%/enterprise/docs/jstl11-doc.zip netbeans-%%PORTVERSION%%/enterprise/docs/metro-1.4-doc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/oauth-client-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/oauth-server-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/oauth-signature-1.8-javadoc.zip -netbeans-%%PORTVERSION%%/enterprise/docs/struts-1.3.8-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/oauth-client-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/oauth-server-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/oauth-signature-1.13-javadoc.zip +netbeans-%%PORTVERSION%%/enterprise/docs/struts-1.3.10-javadoc.zip netbeans-%%PORTVERSION%%/enterprise/docs/struts-tags.zip netbeans-%%PORTVERSION%%/enterprise/docs/syntaxref20.zip netbeans-%%PORTVERSION%%/enterprise/modules/docs/org-netbeans-modules-j2ee-platform.jar netbeans-%%PORTVERSION%%/enterprise/modules/docs/org-netbeans-modules-tomcat5.jar netbeans-%%PORTVERSION%%/enterprise/modules/docs/org-netbeans-modules-web-helpset.jar netbeans-%%PORTVERSION%%/enterprise/modules/docs/org-netbeans-modules-web-monitor.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/aws-sdk/aws-java-sdk-1.2.1.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/aws-sdk/commons-codec-1.3.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/aws-sdk/commons-logging-1.1.1.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/aws-sdk/httpclient-4.1.1.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/aws-sdk/httpcore-4.1.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/build-ws.xml netbeans-%%PORTVERSION%%/enterprise/modules/ext/commons-fileupload-1.0.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/el-impl.jar @@ -747,18 +655,11 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-1_2/commons-logging.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-1_2/jsf-api.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-1_2/jsf-impl.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-2_1/LICENSE-APACHE.txt -netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-2_1/LICENSE.TXT -netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-2_1/THIRDPARTYLICENSEREADME.txt -netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-2_1/jsf-api.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-2_1/jsf-impl.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-2_1/javax.faces.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsf-2_1/license.txt netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsp-parser-ext.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/jsr88javax.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/jstl.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/locale/appsrvbridge_ja.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/locale/appsrvbridge_pt_BR.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/locale/appsrvbridge_ru.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/locale/appsrvbridge_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/locale/org-netbeans-modules-web-httpmonitor_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/locale/org-netbeans-modules-web-httpmonitor_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/locale/org-netbeans-modules-web-httpmonitor_ru.jar @@ -769,34 +670,35 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/ext/metro/webservices-rt.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/metro/webservices-tools.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/org-netbeans-modules-web-httpmonitor.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/primefaces/primefaces-2.2.1.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/primefaces/primefaces-3.4.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/asm-3.1.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jackson-core-asl-1.7.1.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jackson-jaxrs-1.7.1.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jackson-mapper-asl-1.7.1.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jackson-xc-1.7.1.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-apache-client-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-atom-abdera-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-client-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-core-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-guice-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-json-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-multipart-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-server-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-simple-server-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-spring-1.8.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jackson-core-asl-1.9.2.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jackson-jaxrs-1.9.2.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jackson-mapper-asl-1.9.2.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jackson-xc-1.9.2.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-apache-client-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-atom-abdera-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-client-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-core-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-guice-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-json-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-multipart-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-server-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-servlet-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-simple-server-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jersey-spring-1.13.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jettison-1.1.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/jsr311-api-1.1.1.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/oauth-client-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/oauth-server-1.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/oauth-signature-1.8.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/oauth-client-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/oauth-server-1.13.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/rest/oauth-signature-1.13.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/servlet3.0-jsp2.2-api.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/spring/spring-webmvc-2.5.6.SEC01.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/spring/spring-webmvc-2.5.6.SEC03.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/standard.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/antlr-2.7.2.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/bsf-2.3.0.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/commons-beanutils-1.7.0.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/commons-chain-1.1.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/commons-beanutils-1.8.0.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/commons-chain-1.2.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/commons-digester-1.8.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/commons-fileupload-1.1.1.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/commons-io-1.1.jar @@ -804,19 +706,23 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/commons-validator-1.3.1.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/jstl-1.0.2.jar netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/oro-2.0.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/standard-1.0.2.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-core-1.3.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-el-1.3.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-extras-1.3.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-faces-1.3.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-mailreader-dao-1.3.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-scripting-1.3.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-taglib-1.3.8.jar -netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-tiles-1.3.8.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/standard-1.0.6.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-core-1.3.10.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-el-1.3.10.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-extras-1.3.10.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-faces-1.3.10.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-mailreader-dao-1.3.10.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-scripting-1.3.10.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-taglib-1.3.10.jar +netbeans-%%PORTVERSION%%/enterprise/modules/ext/struts/struts-tiles-1.3.10.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-api-web-webmodule_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-api-web-webmodule_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-api-web-webmodule_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-api-web-webmodule_zh_CN.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-amazon_ja.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-amazon_pt_BR.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-amazon_ru.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-amazon_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-commons_fileupload_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-commons_fileupload_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-commons_fileupload_ru.jar @@ -829,18 +735,18 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-glassfish_logging_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-glassfish_logging_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-glassfish_logging_zh_CN.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-httpunit_ja.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-httpunit_pt_BR.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-httpunit_ru.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-libs-httpunit_zh_CN.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-apisupport-facebooksample_ja.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-apisupport-facebooksample_pt_BR.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-apisupport-facebooksample_ru.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-apisupport-facebooksample_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-apisupport-restsample_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-apisupport-restsample_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-apisupport-restsample_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-apisupport-restsample_zh_CN.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-cloud-amazon_ja.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-cloud-amazon_pt_BR.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-cloud-amazon_ru.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-cloud-amazon_zh_CN.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-cloud-common_ja.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-cloud-common_pt_BR.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-cloud-common_ru.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-cloud-common_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-el-lexer_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-el-lexer_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-el-lexer_ru.jar @@ -865,10 +771,6 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-api-ejbmodule_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-api-ejbmodule_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-api-ejbmodule_zh_CN.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-archive_ja.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-archive_pt_BR.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-archive_ru.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-archive_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-clientproject_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-clientproject_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-clientproject_ru.jar @@ -933,10 +835,6 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-samples_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-samples_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-samples_zh_CN.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-sun-appsrv81_ja.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-sun-appsrv81_pt_BR.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-sun-appsrv81_ru.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-sun-appsrv81_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-sun-appsrv_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-sun-appsrv_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-j2ee-sun-appsrv_ru.jar @@ -969,6 +867,10 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-javaee-beanvalidation_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-javaee-beanvalidation_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-javaee-beanvalidation_zh_CN.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-javaee-specs-support_ja.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-javaee-specs-support_pt_BR.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-javaee-specs-support_ru.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-javaee-specs-support_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-jellytools-enterprise_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-jellytools-enterprise_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-jellytools-enterprise_ru.jar @@ -1013,10 +915,6 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-beans_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-beans_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-beans_zh_CN.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-client-javascript-debugger-ant_ja.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-client-javascript-debugger-ant_pt_BR.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-client-javascript-debugger-ant_ru.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-client-javascript-debugger-ant_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-core-syntax_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-core-syntax_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-core-syntax_ru.jar @@ -1049,6 +947,10 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-editor_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-editor_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-editor_zh_CN.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-icefaces_ja.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-icefaces_pt_BR.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-icefaces_ru.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-icefaces_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-kit_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-kit_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-kit_ru.jar @@ -1057,6 +959,10 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-navigation_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-navigation_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-navigation_zh_CN.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-richfaces_ja.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-richfaces_pt_BR.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-richfaces_ru.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf-richfaces_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf12_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf12_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-web-jsf12_ru.jar @@ -1161,6 +1067,10 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-metro-samples_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-metro-samples_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-metro-samples_zh_CN.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-owsm_ja.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-owsm_pt_BR.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-owsm_ru.jar +netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-owsm_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-projectapi_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-projectapi_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-projectapi_ru.jar @@ -1205,27 +1115,24 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsitmodelext_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsitmodelext_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsitmodelext_zh_CN.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsstack-jaxws_ja.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsstack-jaxws_pt_BR.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsstack-jaxws_ru.jar -netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsstack-jaxws_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsstackapi_ja.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsstackapi_pt_BR.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsstackapi_ru.jar netbeans-%%PORTVERSION%%/enterprise/modules/locale/org-netbeans-modules-websvc-wsstackapi_zh_CN.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-api-web-webmodule.jar +netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-libs-amazon.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-libs-commons_fileupload.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-libs-elimpl.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-libs-glassfish_logging.jar -netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-apisupport-facebooksample.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-apisupport-restsample.jar +netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-cloud-amazon.jar +netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-cloud-common.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-el-lexer.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-glassfish-eecommon.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-glassfish-javaee.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-hibernateweb.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-j2ee-ant.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-j2ee-api-ejbmodule.jar -netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-j2ee-archive.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-j2ee-clientproject.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-j2ee-common.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-j2ee-core.jar @@ -1262,7 +1169,7 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-spring-webmvc.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-tomcat5.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-web-beans.jar -netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-web-client-javascript-debugger-ant.jar +netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-web-client-rest.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-web-core-syntax.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-web-core.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-web-debug.jar @@ -1313,21 +1220,21 @@ netbeans-%%PORTVERSION%%/enterprise/modu netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-websvc-websvcapi.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-websvc-wsitconf.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-websvc-wsitmodelext.jar -netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-websvc-wsstack-jaxws.jar netbeans-%%PORTVERSION%%/enterprise/modules/org-netbeans-modules-websvc-wsstackapi.jar netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-api-web-webmodule.xml +netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-libs-amazon.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-libs-commons_fileupload.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-libs-elimpl.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-libs-glassfish_logging.xml -netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-apisupport-facebooksample.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-apisupport-restsample.xml +netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-cloud-amazon.xml +netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-cloud-common.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-el-lexer.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-glassfish-eecommon.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-glassfish-javaee.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-hibernateweb.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-j2ee-ant.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-j2ee-api-ejbmodule.xml -netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-j2ee-archive.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-j2ee-clientproject.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-j2ee-common.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-j2ee-core.xml @@ -1364,7 +1271,7 @@ netbeans-%%PORTVERSION%%/enterprise/upda netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-spring-webmvc.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-tomcat5.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-web-beans.xml -netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-web-client-javascript-debugger-ant.xml +netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-web-client-rest.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-web-core-syntax.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-web-core.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-web-debug.xml @@ -1415,7 +1322,6 @@ netbeans-%%PORTVERSION%%/enterprise/upda netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-websvc-websvcapi.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-websvc-wsitconf.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-websvc-wsitmodelext.xml -netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-websvc-wsstack-jaxws.xml netbeans-%%PORTVERSION%%/enterprise/update_tracking/org-netbeans-modules-websvc-wsstackapi.xml netbeans-%%PORTVERSION%%/ergonomics/.lastModified netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-apache-tools-ant-module.xml @@ -1428,7 +1334,6 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-ant-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-ant.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-crudsample.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-facebooksample.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-feedreader.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-installer.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-kit.xml @@ -1436,7 +1341,10 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-paintapp.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-project.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-restsample.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-apisupport-wizards.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-beans.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cloud-amazon.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cloud-common.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-antlr.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-api-model.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-apt.xml @@ -1462,8 +1370,10 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-navigation.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-qnavigator.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-refactoring.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-remote-projectui.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-repository-api.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-script.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-search.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-simpleunit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-source.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-cnd-testrunner.xml @@ -1474,10 +1384,12 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-debugger-jpda-ui.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-debugger-jpda-visual.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-dlight-kit.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-findbugs-installer.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-form-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-form.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-glassfish-javaee.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-editor.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-ejbproject.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-grails.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-grailsproject.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-gsp.xml @@ -1485,11 +1397,12 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-refactoring.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-samples.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-support.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-groovy-webproject.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-hibernate.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-html-navigator.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-i18n.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-ide-ergonomics.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-ant.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-archive.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-clientproject.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-common.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-ddloaders.xml @@ -1513,7 +1426,6 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-samples.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-sun-appsrv.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-sun-ddui.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-toplinklib.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2ee-weblogic9.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2me-cdc-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-j2me-cdc-platform-nokias80.xml @@ -1535,7 +1447,7 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-freeform.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-helpset.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-hints-declarative.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-hints-processor.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-hints-ui.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-hints.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-j2seplatform.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-j2seproject.xml @@ -1544,6 +1456,7 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-source-ant.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-source.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-sourceui.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-java-testrunner.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javacard-apdufile.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javacard-console.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javacard-kit.xml @@ -1555,19 +1468,23 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javadoc.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javaee-api.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javaee-beanvalidation.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javaee-specs-support.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javafx2-editor.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javafx2-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javafx2-platform.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javafx2-project.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javafx2-samples.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javafx2-scenebuilder.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javascript-jstestdriver.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-javawebstart.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-junit.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-languages-apacheconf.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-languages-ini.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-languages-neon.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-maven-checkstyle.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-maven-coverage.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-maven-grammar.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-maven-graph.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-maven-groovy.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-maven-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-maven-osgi.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-maven-refactoring.xml @@ -1576,7 +1493,6 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-antext.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-cldcplatform-catalog.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-cldcplatform.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-databindingme.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-deployment-ftpscp.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-deployment-sonyericsson.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-deployment-webdav.xml @@ -1585,58 +1501,54 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-javahelp.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-licensing.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-midpexamples.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-plugins-mpowerplayer.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-project-ant.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-project-bridge.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-project.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mobility-svgcore.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-mvd.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-options-java.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-apigen.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-composer.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-dbgp.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-doctrine2.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-editor.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-help.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-phpdoc-documentation.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-phpdoc.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-project.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-refactoring.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-samples.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-smarty.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-symfony.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-symfony2.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-twig.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-php-zend.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-drilldown.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-heapwalker.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-j2ee-generic.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-j2ee-jboss.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-j2ee-sunas.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-j2ee-tomcat.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-j2ee-weblogic.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-j2se-impl.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-nbimpl.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-options.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-oql-language.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-snaptracer.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-profiler-stp.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-projectimport-eclipse-core.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-refactoring-java.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-spring-beans.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-spring-webmvc.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-testng-ant.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-testng-maven.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-testng.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-tomcat5.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-analyzer.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-codegen.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-components-midp-pda.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-components-midp-wma.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-components-midp.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-components-svg.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-componentssupport.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-flow.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-game.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-inspector.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-io-javame.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-io.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-kit.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-midp-converter.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-midp.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-midpnb.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-model.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-palette.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-properties.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-screen.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-vmd-structure.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-beans.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-client-rest.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-clientproject-helpset.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-clientproject.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-core-syntax.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-core.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-debug.xml @@ -1644,6 +1556,8 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-examples.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-freeform.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-helpset.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-inspect.xml +netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-javascript-debugger.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-jsf-editor.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-jsf-icefaces.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-web-jsf-kit.xml @@ -1685,19 +1599,16 @@ netbeans-%%PORTVERSION%%/ergonomics/conf netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-kit.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-amazon.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-delicious.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-facebook.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-flickr.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-google.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-strikeiron.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-twitter.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-weatherbug.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-yahoo.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-zillow.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-services-zvents.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-saas-ui.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-websvcapi.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-wsitconf.xml -netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-wsstack-jaxws.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-websvc-wsstackapi.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-xml-jaxb.xml netbeans-%%PORTVERSION%%/ergonomics/config/Modules/org-netbeans-modules-xml-tools-java.xml @@ -1713,6 +1624,7 @@ netbeans-%%PORTVERSION%%/etc/netbeans.im netbeans-%%PORTVERSION%%/groovy/.lastModified netbeans-%%PORTVERSION%%/groovy/VERSION.txt netbeans-%%PORTVERSION%%/groovy/config/Modules/org-netbeans-modules-groovy-editor.xml +netbeans-%%PORTVERSION%%/groovy/config/Modules/org-netbeans-modules-groovy-ejbproject.xml netbeans-%%PORTVERSION%%/groovy/config/Modules/org-netbeans-modules-groovy-grails.xml *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 09:38:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77990106564A; Mon, 8 Oct 2012 09:38:23 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 624B88FC08; Mon, 8 Oct 2012 09:38: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 q989cNKW072545; Mon, 8 Oct 2012 09:38:23 GMT (envelope-from sbz@svn.freebsd.org) Received: (from sbz@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q989cNUu072543; Mon, 8 Oct 2012 09:38:23 GMT (envelope-from sbz@svn.freebsd.org) Message-Id: <201210080938.q989cNUu072543@svn.freebsd.org> From: Sofian Brabez Date: Mon, 8 Oct 2012 09:38:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305524 - head/security/dsniff X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 09:38:23 -0000 Author: sbz Date: Mon Oct 8 09:38:22 2012 New Revision: 305524 URL: http://svn.freebsd.org/changeset/ports/305524 Log: - Fix logic problem Modified: head/security/dsniff/Makefile Modified: head/security/dsniff/Makefile ============================================================================== --- head/security/dsniff/Makefile Mon Oct 8 09:05:29 2012 (r305523) +++ head/security/dsniff/Makefile Mon Oct 8 09:38:22 2012 (r305524) @@ -44,7 +44,7 @@ LIBNIDS_GLIB2!= nm -u ${LOCALBASE}/lib/l USE_GNOME+= glib20 .endif -.if empty(PORT_OPTIONS:MX11) +.if ${PORT_OPTIONS:MX11} USE_XORG= x11 xmu PLIST_SUB+= X11='' MAN8+= webspy.8 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 09:44:56 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3812C106564A; Mon, 8 Oct 2012 09:44:56 +0000 (UTC) (envelope-from sbrabez@gmail.com) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 616C58FC0A; Mon, 8 Oct 2012 09:44:55 +0000 (UTC) Received: by mail-wg0-f50.google.com with SMTP id 16so3205759wgi.31 for ; Mon, 08 Oct 2012 02:44:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=P0nwPn16Hp/Qp3ktyrpDxFEXyzBeI8s0UVJj5WwldB8=; b=Vna3DlVz7Ci0g6Of8ZZGA8Tji6UwcMPvcjzJjzkQ59zBJr9uOhTLeMi1iXWFccAII1 dClslwjPSPF28ph7Z6cJZjj2yBWGBSXcpgknyURCygkZFzMIDs2/fuSTGePlSE6rfxOR eMrPkCOizNeUGTS9mqtYJJdWZyYh1Ofwr5TimEovb1HpYxl7FhyWUKqxw5lNlEYM3sPU W34Xu2IozNkXVT6B5TVfmUvdW6sKQFWFavVocLnCX+3gwysP/D9frkIOApnqfTnGgi+F mklg0YENW76Yp5j9AkAZ3fIbAoobSlLi9doPs+VmTTd16f5MmCtvON5rtQkdID2PWmZ9 p4mA== Received: by 10.216.213.100 with SMTP id z78mr9754206weo.180.1349689493768; Mon, 08 Oct 2012 02:44:53 -0700 (PDT) Received: from ogoshi.int.nbs-system.com (home.6dev.net. [88.191.118.8]) by mx.google.com with ESMTPS id a10sm21082484wiz.4.2012.10.08.02.44.52 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 08 Oct 2012 02:44:53 -0700 (PDT) Sender: Sofian Brabez Date: Mon, 8 Oct 2012 11:44:50 +0200 From: Sofian Brabez To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <20121008094450.GA10937@ogoshi.int.nbs-system.com> References: <201210080813.q988D5pK060799@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3MwIy2ne0vdjdPXF" Content-Disposition: inline In-Reply-To: <201210080813.q988D5pK060799@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: Re: svn commit: r305520 - head/security/dsniff X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 09:44:56 -0000 --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 08, 2012 at 08:13:05AM +0000, Sofian Brabez wrote: > Author: sbz > Date: Mon Oct 8 08:13:05 2012 > New Revision: 305520 > URL: http://svn.freebsd.org/changeset/ports/305520 >=20 > Log: > - Convert to new option framework > - Add LICENSE > - Update MASTER_SITES > - Update pkg-descr >=20 > Modified: > head/security/dsniff/Makefile (contents, props changed) > head/security/dsniff/pkg-descr (contents, props changed) >=20 > Modified: head/security/dsniff/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/security/dsniff/Makefile Mon Oct 8 07:47:13 2012 (r305519) > +++ head/security/dsniff/Makefile Mon Oct 8 08:13:05 2012 (r305520) > @@ -1,28 +1,31 @@ > -# New ports collection makefile for: dsniff > -# Date created: 08 Jan 2000 > -# Whom: kris@FreeBSD.org > -# > +# Created by: kris@FreeBSD.org > # $FreeBSD$ > -# > =20 > PORTNAME=3D dsniff > PORTVERSION=3D 2.3 > PORTREVISION=3D 4 > CATEGORIES=3D security > -MASTER_SITES=3D http://naughty.monkey.org/~dugsong/dsniff/ > +MASTER_SITES=3D http://www.monkey.org/~dugsong/${PORTNAME}/ \ > + LOCAL/sbz > =20 > MAINTAINER=3D sbz@FreeBSD.org > COMMENT=3D Various sniffing utilities for penetration testing > =20 > +LICENSE=3D BSD > + > BUILD_DEPENDS=3D ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet10 \ > ${LOCALBASE}/lib/libnids.a:${PORTSDIR}/net/libnids > =20 > GNU_CONFIGURE=3D yes > WANT_GNOME=3D yes > =20 > -OPTIONS=3D X11 "Enable X11 support" on > +OPTIONS_DEFINE=3D X11 > + > +OPTIONS_DEFAULT=3D X11 > + > +.include > =20 > -MAN8=3D arpspoof.8 dsniff.8 macof.8 mailsnarf.8 tcpkill.8 \ > +MAN8=3D arpspoof.8 ${PORTNAME}.8 macof.8 mailsnarf.8 tcpkill.8 \ > tcpnice.8 urlsnarf.8 filesnarf.8 dnsspoof.8 msgsnarf.8 \ > sshmitm.8 webmitm.8 > =20 > @@ -41,7 +44,7 @@ LIBNIDS_GLIB2!=3D nm -u ${LOCALBASE}/lib/l > USE_GNOME+=3D glib20 > .endif > =20 > -.if !defined(WITHOUT_X11) > +.if empty(PORT_OPTIONS:MX11) > USE_XORG=3D x11 xmu > PLIST_SUB+=3D X11=3D'' > MAN8+=3D webspy.8 Hi, !defined(WITHOUT_BLA) means defined(WITH_BLA) =3D=3D ${PORT_OPTIONS:MBLA}, = sorry for this dumb error, it's fixed in r305524. Regards --=20 Sofian Brabez --3MwIy2ne0vdjdPXF Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlByoJEACgkQc2NR9CSH5X5Q5wCeLGtAxiuKU0hV5phUWy0NkcZm /aAAnAsNhC9Hqa7YZ7Q0YAilkH9bzH9g =gO7b -----END PGP SIGNATURE----- --3MwIy2ne0vdjdPXF-- From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 09:46:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 37FD6106564A; Mon, 8 Oct 2012 09:46:54 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 22AC88FC0C; Mon, 8 Oct 2012 09:46: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 q989krtQ073700; Mon, 8 Oct 2012 09:46:53 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q989krxl073697; Mon, 8 Oct 2012 09:46:53 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210080946.q989krxl073697@svn.freebsd.org> From: Frederic Culot Date: Mon, 8 Oct 2012 09:46:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305525 - head/devel/p5-Term-Menus X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 09:46:54 -0000 Author: culot Date: Mon Oct 8 09:46:53 2012 New Revision: 305525 URL: http://svn.freebsd.org/changeset/ports/305525 Log: - Update to 2.18 Changes: http://search.cpan.org/dist/Term-Menus/ChangeLog Modified: head/devel/p5-Term-Menus/Makefile head/devel/p5-Term-Menus/distinfo Modified: head/devel/p5-Term-Menus/Makefile ============================================================================== --- head/devel/p5-Term-Menus/Makefile Mon Oct 8 09:38:22 2012 (r305524) +++ head/devel/p5-Term-Menus/Makefile Mon Oct 8 09:46:53 2012 (r305525) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Term-Menus -PORTVERSION= 2.17 +PORTVERSION= 2.18 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:REEDFISH Modified: head/devel/p5-Term-Menus/distinfo ============================================================================== --- head/devel/p5-Term-Menus/distinfo Mon Oct 8 09:38:22 2012 (r305524) +++ head/devel/p5-Term-Menus/distinfo Mon Oct 8 09:46:53 2012 (r305525) @@ -1,2 +1,2 @@ -SHA256 (Term-Menus-2.17.tar.gz) = a49afecc138859ba543a7efe959707771cbac41e21edfb881179851b5c295a7b -SIZE (Term-Menus-2.17.tar.gz) = 96569 +SHA256 (Term-Menus-2.18.tar.gz) = 5ca6f3e9b3dcda9b00204e51fcd6a486f45efc6b36d00d6d7441f85c47ac34fe +SIZE (Term-Menus-2.18.tar.gz) = 96638 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 10:38:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93FB2106566B; Mon, 8 Oct 2012 10:38:49 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7A9308FC0A; Mon, 8 Oct 2012 10:38:49 +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 q98AcnOv080977; Mon, 8 Oct 2012 10:38:49 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98Acm03080929; Mon, 8 Oct 2012 10:38:48 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201210081038.q98Acm03080929@svn.freebsd.org> From: Doug Barton Date: Mon, 8 Oct 2012 10:38:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305526 - in head: astro/xearth/files databases/mariadb-client databases/mariadb-scripts databases/mariadb-server databases/p5-DBD-mysql52 dns/bind-tools dns/bind96 dns/bind97 dns/bind9... X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 10:38:49 -0000 Author: dougb Date: Mon Oct 8 10:38:47 2012 New Revision: 305526 URL: http://svn.freebsd.org/changeset/ports/305526 Log: Throw my ports back in the pool, and make my intentions clear for the various ports that I've created. I bid fond fare well A chapter closes for me What opens for you? Modified: head/astro/xearth/files/freebsd.committers.markers head/databases/mariadb-client/Makefile head/databases/mariadb-scripts/Makefile head/databases/mariadb-server/Makefile head/databases/p5-DBD-mysql52/Makefile head/dns/bind-tools/Makefile head/dns/bind96/Makefile head/dns/bind97/Makefile head/dns/bind98/Makefile head/dns/bind99/Makefile head/dns/fpdns/Makefile head/dns/libbind/Makefile head/dns/p5-Net-DNS/Makefile head/editors/pico-alpine/Makefile head/editors/xml2rfc-xxe/Makefile head/editors/xxe/Makefile head/irc/sirc/Makefile head/mail/alpine/Makefile head/mail/alpine/files/patch-newuser head/mail/enigmail/Makefile head/mail/enigmail/distinfo head/mail/pine-pgp-filters/Makefile head/mail/pine-pgp-filters/pkg-descr head/misc/wmweather+/Makefile head/net-im/mbpurple/Makefile head/net-mgmt/hawk/Makefile head/net-mgmt/p5-Net-IP/Makefile head/net-p2p/libtorrent-rasterbar-15-python/Makefile head/net-p2p/libtorrent-rasterbar-15/Makefile head/net-p2p/libtorrent-rasterbar-16/Makefile head/net-p2p/qbittorrent/Makefile head/ports-mgmt/portmaster/Makefile head/ports-mgmt/portmaster/pkg-descr head/print/hpijs/Makefile head/security/libassuan/Makefile head/security/libotr/Makefile head/security/libotr3/Makefile head/security/pidgin-otr/Makefile head/sysutils/shlock/Makefile head/textproc/htdig/Makefile head/x11-wm/libwraster/Makefile head/x11-wm/obmenu/Makefile head/x11/aterm/Makefile head/x11/tint/Makefile head/x11/xscreensaver/Makefile Modified: head/astro/xearth/files/freebsd.committers.markers ============================================================================== --- head/astro/xearth/files/freebsd.committers.markers Mon Oct 8 09:46:53 2012 (r305525) +++ head/astro/xearth/files/freebsd.committers.markers Mon Oct 8 10:38:47 2012 (r305526) @@ -295,7 +295,6 @@ 33.66, -117.80, " dd,davidch"# Irvine, CA, USA 33.83, -118.22, " trevor," # Dominguez, CA, USA 34.11, -118.29, " kris," # Los Angeles, CA, USA - 33.979, -118.439, " dougb,"# Marina del Rey, CA USA 35.383, -120.659, "jgh" # San Luis Obispo, CA, USA 39.25, -121.02, "truckman" # Nevada City, CA, USA 37.104, -121.606, "jpaetzel" # San Martin, CA, USA Modified: head/databases/mariadb-client/Makefile ============================================================================== --- head/databases/mariadb-client/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/databases/mariadb-client/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,7 +1,3 @@ -# New ports collection makefile for: mariadb-client -# Date created: 30 May 2011 -# Whom: Doug Barton -# # $FreeBSD$ PORTNAME= mariadb Modified: head/databases/mariadb-scripts/Makefile ============================================================================== --- head/databases/mariadb-scripts/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/databases/mariadb-scripts/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,7 +1,3 @@ -# New ports collection makefile for: mariadb-scripts -# Date created: 30 May 2011 -# Whom: Doug Barton -# # $FreeBSD$ PORTNAME= mariadb Modified: head/databases/mariadb-server/Makefile ============================================================================== --- head/databases/mariadb-server/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/databases/mariadb-server/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,7 +1,3 @@ -# New ports collection makefile for: mariadb-server -# Date created: 30 May 2011 -# Whom: Doug Barton -# # $FreeBSD$ PORTNAME= mariadb Modified: head/databases/p5-DBD-mysql52/Makefile ============================================================================== --- head/databases/p5-DBD-mysql52/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/databases/p5-DBD-mysql52/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,7 +1,3 @@ -# New ports collection makefile for: p5-DBD-mysql52 -# Date created: 7 June 2011 -# Whom: Doug Barton -# # $FreeBSD$ PKGNAMESUFFIX= 52 Modified: head/dns/bind-tools/Makefile ============================================================================== --- head/dns/bind-tools/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/dns/bind-tools/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,13 +1,8 @@ -# New ports collection makefile for: BIND Tools -# Date created: 1 April 2010 -# Whom: dougb -# # $FreeBSD$ -# PORTNAME= bind-tools -COMMENT= The command line tools from BIND: dig, host, and nslookup +COMMENT= Command line tools from BIND: dig, host, and nslookup CONFIGURE_ARGS+= --disable-shared Modified: head/dns/bind96/Makefile ============================================================================== --- head/dns/bind96/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/dns/bind96/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,11 +1,5 @@ # $FreeBSD$ -# I stay very aware of developments with BIND in general, and with -# BIND 9 in particular. I frequently delay updating this port from -# a known-stable version due to concerns about stability of a newer -# version. If you are concerned about using the most recent ISC -# release you can generally build it cleanly from the source - Doug - PORTNAME= bind96 PORTVERSION= 9.6.3.1.ESV.R7.3 CATEGORIES= dns net ipv6 @@ -15,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like Modified: head/dns/bind97/Makefile ============================================================================== --- head/dns/bind97/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/dns/bind97/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -10,7 +10,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT?= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like Modified: head/dns/bind98/Makefile ============================================================================== --- head/dns/bind98/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/dns/bind98/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,11 +1,5 @@ # $FreeBSD$ -# I stay very aware of developments with BIND in general, and with -# BIND 9 in particular. I frequently delay updating this port from -# a known-stable version due to concerns about stability of a newer -# version. If you are concerned about using the most recent ISC -# release you can generally build it cleanly from the source - Doug - PORTNAME= bind98 PORTVERSION= 9.8.3.3 CATEGORIES= dns net ipv6 @@ -15,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/dns/bind99/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,11 +1,5 @@ # $FreeBSD$ -# I stay very aware of developments with BIND in general, and with -# BIND 9 in particular. I frequently delay updating this port from -# a known-stable version due to concerns about stability of a newer -# version. If you are concerned about using the most recent ISC -# release you can generally build it cleanly from the source - Doug - PORTNAME= bind99 PORTVERSION= 9.9.1.3 CATEGORIES= dns net ipv6 @@ -15,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like Modified: head/dns/fpdns/Makefile ============================================================================== --- head/dns/fpdns/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/dns/fpdns/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,6 +1,4 @@ -# New ports collection makefile for: fpdns -# Date Created: July 2 2004 -# Whom: Edwin Groothuis +# Created by: Edwin Groothuis # # $FreeBSD$ @@ -10,7 +8,7 @@ CATEGORIES= dns net perl5 MASTER_SITES= https://github.com/kirei/fpdns/tarball/${GITVERSION}/ DISTNAME= kirei-fpdns-${GITVERSION} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= FPDNS - Fingerprinting DNS servers FETCH_ARGS= -Fpr Modified: head/dns/libbind/Makefile ============================================================================== --- head/dns/libbind/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/dns/libbind/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,4 @@ -# New ports collection makefile for: libbind -# Date created: 9 August 2009 -# Whom: dougb -# # $FreeBSD$ -# PORTNAME= libbind PORTVERSION= 6.0 @@ -14,7 +9,7 @@ MASTER_SITE_SUBDIR= libbind/${PORTVERSIO DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Standard C resolver library MAKE_JOBS_UNSAFE= yes Modified: head/dns/p5-Net-DNS/Makefile ============================================================================== --- head/dns/p5-Net-DNS/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/dns/p5-Net-DNS/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,6 @@ -# New ports collection makefile for: p5-Net-DNS -# Date created: April 5th 1997 -# Whom: James FitzGibbon +# Created by: James FitzGibbon # # $FreeBSD$ -# PORTNAME= Net-DNS PORTVERSION= 0.68 @@ -11,7 +8,7 @@ CATEGORIES= dns net perl5 ipv6 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Perl5 interface to the DNS resolver, and dynamic updates # Warnings during build are harmless, the port does not need these to build Modified: head/editors/pico-alpine/Makefile ============================================================================== --- head/editors/pico-alpine/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/editors/pico-alpine/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,4 @@ -# New ports collection makefile for: pico-alpine -# Date created: December 21, 2007 -# Whom: Doug Barton -# # $FreeBSD$ -# PORTNAME= pico-alpine PORTREVISION= 1 Modified: head/editors/xml2rfc-xxe/Makefile ============================================================================== --- head/editors/xml2rfc-xxe/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/editors/xml2rfc-xxe/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,6 +1,4 @@ -# New ports collection makefile for: xml2rfc-xxe -# Date created: 9 December 2005 -# Whom: Bill Fenner +# Created by: Bill Fenner # # $FreeBSD$ @@ -10,7 +8,7 @@ CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMESUFFIX= ${XXE_VERSION} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= xml2rfc configuration for XMLMind XML editor RUN_DEPENDS= xxe:${PORTSDIR}/editors/xxe Modified: head/editors/xxe/Makefile ============================================================================== --- head/editors/xxe/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/editors/xxe/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -8,7 +8,7 @@ MASTER_SITES= http://www.xmlmind.net/xml PKGNAMESUFFIX= -eval DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION:S/./_/g} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Validating XML editor featuring a word processor-like view USE_JAVA= YES Modified: head/irc/sirc/Makefile ============================================================================== --- head/irc/sirc/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/irc/sirc/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,22 +1,16 @@ -# New ports collection makefile for: sirc -# Date created: 4 May 1998 -# Whom: Doug Barton -# # $FreeBSD$ PORTNAME= sirc PORTVERSION= 2.211 PORTREVISION= 1 CATEGORIES= irc ipv6 -MASTER_SITES= http://www.iagora.com/~espel/sirc/ \ - http://dougbarton.us/Downloads/sirc/ \ - http://www.iagora.com/~espel/sirc/scripts/:s \ - http://dougbarton.us/Downloads/sirc/scripts/:s +#MASTER_SITES= http://www.iagora.com/~espel/sirc/ \ +# http://www.iagora.com/~espel/sirc/scripts/:s \ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} DIST_SUBDIR= sirc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Small (150k), fast, perl-based IRC client USE_PERL5= yes Modified: head/mail/alpine/Makefile ============================================================================== --- head/mail/alpine/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/mail/alpine/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,4 @@ -# New ports collection makefile for: alpine -# Date created: December 21, 2007 -# Whom: Doug Barton -# # $FreeBSD$ -# PORTNAME?= alpine PORTVERSION= 2.00 @@ -12,7 +7,7 @@ CATEGORIES?= mail news ipv6 MASTER_SITES= ftp://ftp.cac.washington.edu/alpine/ DIST_SUBDIR= alpine-${PORTVERSION} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT?= Mail and news client descended from Pine OPTIONS+= THREADS "Compile with thread support" on \ Modified: head/mail/alpine/files/patch-newuser ============================================================================== --- head/mail/alpine/files/patch-newuser Mon Oct 8 09:46:53 2012 (r305525) +++ head/mail/alpine/files/patch-newuser Mon Oct 8 10:38:47 2012 (r305526) @@ -1,6 +1,6 @@ -diff -ur /home/dougb-f/alpine-2.00/alpine/Makefile.am ./alpine/Makefile.am ---- /home/dougb-f/alpine-2.00/alpine/Makefile.am 2008-06-03 08:54:15.000000000 -0700 -+++ ./alpine/Makefile.am 2011-05-22 14:43:01.000000000 -0700 +diff -ur alpine/Makefile.am alpine/Makefile.am +--- alpine/Makefile.am 2008-06-03 08:54:15.000000000 -0700 ++++ alpine/Makefile.am 2011-05-22 14:43:01.000000000 -0700 @@ -19,7 +19,7 @@ alpine_SOURCES = addrbook.c adrbkcmd.c after.c alpine.c arg.c busy.c colorconf.c \ confscroll.c context.c dispfilt.c flagmaint.c folder.c help.c imap.c \ @@ -10,9 +10,9 @@ diff -ur /home/dougb-f/alpine-2.00/alpin roleconf.c send.c setup.c signal.c status.c takeaddr.c titlebar.c smime.c alpine_LDADD = $(LDADD) $(INTLLIBS) -diff -ur /home/dougb-f/alpine-2.00/alpine/Makefile.in ./alpine/Makefile.in ---- /home/dougb-f/alpine-2.00/alpine/Makefile.in 2008-06-03 08:54:15.000000000 -0700 -+++ ./alpine/Makefile.in 2011-05-22 14:43:14.000000000 -0700 +diff -ur alpine/Makefile.in alpine/Makefile.in +--- alpine/Makefile.in 2008-06-03 08:54:15.000000000 -0700 ++++ alpine/Makefile.in 2011-05-22 14:43:14.000000000 -0700 @@ -68,7 +68,7 @@ help.$(OBJEXT) imap.$(OBJEXT) init.$(OBJEXT) kblock.$(OBJEXT) \ keymenu.$(OBJEXT) ldapconf.$(OBJEXT) listsel.$(OBJEXT) \ @@ -39,9 +39,9 @@ diff -ur /home/dougb-f/alpine-2.00/alpin @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pattern.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pipe.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print.Po@am__quote@ -diff -ur /home/dougb-f/alpine-2.00/alpine/alpine.c ./alpine/alpine.c ---- /home/dougb-f/alpine-2.00/alpine/alpine.c 2008-06-03 15:31:05.000000000 -0700 -+++ ./alpine/alpine.c 2011-05-22 14:42:15.000000000 -0700 +diff -ur alpine/alpine.c alpine/alpine.c +--- alpine/alpine.c 2008-06-03 15:31:05.000000000 -0700 ++++ alpine/alpine.c 2011-05-22 14:42:15.000000000 -0700 @@ -49,7 +49,6 @@ #include "init.h" #include "remote.h" @@ -58,9 +58,9 @@ diff -ur /home/dougb-f/alpine-2.00/alpin ClearScreen(); } -diff -ur /home/dougb-f/alpine-2.00/alpine/mailview.c ./alpine/mailview.c ---- /home/dougb-f/alpine-2.00/alpine/mailview.c 2008-08-01 17:32:26.000000000 -0700 -+++ ./alpine/mailview.c 2011-05-22 14:42:15.000000000 -0700 +diff -ur alpine/mailview.c alpine/mailview.c +--- alpine/mailview.c 2008-08-01 17:32:26.000000000 -0700 ++++ alpine/mailview.c 2011-05-22 14:42:15.000000000 -0700 @@ -177,7 +177,6 @@ int url_local_nntp(char *); int url_local_news(char *); @@ -92,9 +92,9 @@ diff -ur /home/dougb-f/alpine-2.00/alpin /* * Format editorial comment referencing screen offering * List-* header supplied commands -diff -ur /home/dougb-f/alpine-2.00/alpine/makefile.wnt ./alpine/makefile.wnt ---- /home/dougb-f/alpine-2.00/alpine/makefile.wnt 2007-10-24 14:58:00.000000000 -0700 -+++ ./alpine/makefile.wnt 2011-05-22 14:42:15.000000000 -0700 +diff -ur alpine/makefile.wnt alpine/makefile.wnt +--- alpine/makefile.wnt 2007-10-24 14:58:00.000000000 -0700 ++++ alpine/makefile.wnt 2011-05-22 14:42:15.000000000 -0700 @@ -44,13 +44,13 @@ addrbook.h adrbkcmd.h after.h alpine.h arg.h busy.h colorconf.h confscroll.h \ conftype.h context.h dispfilt.h flagmaint.h folder.h headers.h help.h imap.h \ @@ -111,9 +111,9 @@ diff -ur /home/dougb-f/alpine-2.00/alpin print.obj radio.obj remote.obj reply.obj roleconf.obj \ send.obj setup.obj signal.obj status.obj takeaddr.obj titlebar.obj -diff -ur /home/dougb-f/alpine-2.00/alpine/send.c ./alpine/send.c ---- /home/dougb-f/alpine-2.00/alpine/send.c 2008-06-30 15:03:35.000000000 -0700 -+++ ./alpine/send.c 2011-05-22 14:42:15.000000000 -0700 +diff -ur alpine/send.c alpine/send.c +--- alpine/send.c 2008-06-30 15:03:35.000000000 -0700 ++++ alpine/send.c 2011-05-22 14:42:15.000000000 -0700 @@ -70,8 +70,6 @@ PARAMETER *parameter; } BODY_PARTICULARS_S; @@ -187,9 +187,9 @@ diff -ur /home/dougb-f/alpine-2.00/alpin Set up fields for passing to pico. Assumes first text part is intended to be passed along for editing, and is in the form of of a storage object brought into existence sometime before pico_send(). -diff -ur /home/dougb-f/alpine-2.00/alpine/send.h ./alpine/send.h ---- /home/dougb-f/alpine-2.00/alpine/send.h 2007-08-16 15:25:10.000000000 -0700 -+++ ./alpine/send.h 2011-05-22 14:42:15.000000000 -0700 +diff -ur alpine/send.h alpine/send.h +--- alpine/send.h 2007-08-16 15:25:10.000000000 -0700 ++++ alpine/send.h 2011-05-22 14:42:15.000000000 -0700 @@ -41,7 +41,6 @@ void pine_send(ENVELOPE *, BODY **, char *, ACTION_S *, char *, REPLY_S *, REDRAFT_POS_S *, char *, PINEFIELD *, int); @@ -198,9 +198,9 @@ diff -ur /home/dougb-f/alpine-2.00/alpin void create_message_body(BODY **, PATMT *, int); char *pine_send_status(int, char *, char *, size_t, int *); int confirm_daemon_send(void); -diff -ur /home/dougb-f/alpine-2.00/pith/filter.c ./pith/filter.c ---- /home/dougb-f/alpine-2.00/pith/filter.c 2008-08-21 16:50:47.000000000 -0700 -+++ ./pith/filter.c 2011-05-22 14:42:15.000000000 -0700 +diff -ur pith/filter.c pith/filter.c +--- pith/filter.c 2008-08-21 16:50:47.000000000 -0700 ++++ pith/filter.c 2011-05-22 14:42:15.000000000 -0700 @@ -7510,8 +7510,6 @@ HD(f)->bitbucket = 0; else if(!strucmp(s, "running")) @@ -210,9 +210,9 @@ diff -ur /home/dougb-f/alpine-2.00/pith/ #ifdef _WINDOWS else if(!strucmp(s, "os_windows")) HD(f)->bitbucket = 0; -diff -ur /home/dougb-f/alpine-2.00/pith/pine.hlp ./pith/pine.hlp ---- /home/dougb-f/alpine-2.00/pith/pine.hlp 2008-08-22 17:07:05.000000000 -0700 -+++ ./pith/pine.hlp 2011-05-22 14:42:15.000000000 -0700 +diff -ur pith/pine.hlp pith/pine.hlp +--- pith/pine.hlp 2008-08-22 17:07:05.000000000 -0700 ++++ pith/pine.hlp 2011-05-22 14:42:15.000000000 -0700 @@ -1204,21 +1204,7 @@ We hope you will explore Alpine's many capabilities. From the MAIN MENU, select Setup/Config to see many of the options available to you. Also note @@ -279,9 +279,9 @@ diff -ur /home/dougb-f/alpine-2.00/pith/ -diff -ur /home/dougb-f/alpine-2.00/pith/send.c ./pith/send.c ---- /home/dougb-f/alpine-2.00/pith/send.c 2008-08-06 11:25:58.000000000 -0700 -+++ ./pith/send.c 2011-05-22 14:42:15.000000000 -0700 +diff -ur pith/send.c pith/send.c +--- pith/send.c 2008-08-06 11:25:58.000000000 -0700 ++++ pith/send.c 2011-05-22 14:42:15.000000000 -0700 @@ -209,13 +209,6 @@ @@ -345,9 +345,9 @@ diff -ur /home/dougb-f/alpine-2.00/pith/ /*---------------------------------------------------------------------- Call the mailer, SMTP, sendmail or whatever -diff -ur /home/dougb-f/alpine-2.00/pith/send.h ./pith/send.h ---- /home/dougb-f/alpine-2.00/pith/send.h 2008-06-30 15:03:35.000000000 -0700 -+++ ./pith/send.h 2011-05-22 14:42:15.000000000 -0700 +diff -ur pith/send.h pith/send.h +--- pith/send.h 2008-06-30 15:03:35.000000000 -0700 ++++ pith/send.h 2011-05-22 14:42:15.000000000 -0700 @@ -224,8 +224,6 @@ void pine_free_env(METAENV **); int check_addresses(METAENV *); @@ -357,9 +357,9 @@ diff -ur /home/dougb-f/alpine-2.00/pith/ int call_mailer(METAENV *, BODY *, char **, int, void (*)(char *, int), void (*)(PIPE_S *, int, void *)); int write_postponed(METAENV *, BODY *); -diff -ur /home/dougb-f/alpine-2.00/pith/state.h ./pith/state.h ---- /home/dougb-f/alpine-2.00/pith/state.h 2008-06-03 08:54:15.000000000 -0700 -+++ ./pith/state.h 2011-05-22 14:42:15.000000000 -0700 +diff -ur pith/state.h pith/state.h +--- pith/state.h 2008-06-03 08:54:15.000000000 -0700 ++++ pith/state.h 2011-05-22 14:42:15.000000000 -0700 @@ -187,7 +187,6 @@ unsigned force_prefer_plain:1; unsigned force_no_prefer_plain:1; @@ -368,9 +368,9 @@ diff -ur /home/dougb-f/alpine-2.00/pith/ unsigned painted_body_on_startup:1; unsigned painted_footer_on_startup:1; unsigned open_readonly_on_startup:1; -diff -ur /home/dougb-f/alpine-2.00/po/POTFILES.in ./po/POTFILES.in ---- /home/dougb-f/alpine-2.00/po/POTFILES.in 2008-06-03 12:27:23.000000000 -0700 -+++ ./po/POTFILES.in 2011-05-22 14:42:15.000000000 -0700 +diff -ur po/POTFILES.in po/POTFILES.in +--- po/POTFILES.in 2008-06-03 12:27:23.000000000 -0700 ++++ po/POTFILES.in 2011-05-22 14:42:15.000000000 -0700 @@ -50,7 +50,6 @@ alpine/context.c alpine/pine-use.c Modified: head/mail/enigmail/Makefile ============================================================================== --- head/mail/enigmail/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/mail/enigmail/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -6,7 +6,7 @@ # PORTNAME= enigmail -PORTVERSION?= 1.4.3 +PORTVERSION?= 1.4.4 PORTREVISION?= 0 CATEGORIES= mail security MASTER_SITES= http://www.mozilla-enigmail.org/download/source/ Modified: head/mail/enigmail/distinfo ============================================================================== --- head/mail/enigmail/distinfo Mon Oct 8 09:46:53 2012 (r305525) +++ head/mail/enigmail/distinfo Mon Oct 8 10:38:47 2012 (r305526) @@ -1,2 +1,2 @@ -SHA256 (enigmail-1.4.3.tar.gz) = 440035f19a22e8e234c530a0e78fb9ee74bb934fcf721777868de79324636d27 -SIZE (enigmail-1.4.3.tar.gz) = 1337811 +SHA256 (enigmail-1.4.4.tar.gz) = ec62bb701968f72ad35546660132e6e47d4ebe684df1d27fc615cb9010a203b8 +SIZE (enigmail-1.4.4.tar.gz) = 1269444 Modified: head/mail/pine-pgp-filters/Makefile ============================================================================== --- head/mail/pine-pgp-filters/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/mail/pine-pgp-filters/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,18 +1,13 @@ -# New ports collection makefile for: pine-pgp-filters -# Date created: 22 January 2003 -# Whom: dougb -# # $FreeBSD$ -# PORTNAME= pine-pgp-filters PORTVERSION= 1.8 CATEGORIES= mail security -MASTER_SITES= http://dougbarton.us/PGP/ppf/ +#MASTER_SITES= DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Simple /bin/sh-based filters to use GnuPG with Alpine PLIST_FILES= bin/ppf_mime bin/ppf_mime_decrypt \ Modified: head/mail/pine-pgp-filters/pkg-descr ============================================================================== --- head/mail/pine-pgp-filters/pkg-descr Mon Oct 8 09:46:53 2012 (r305525) +++ head/mail/pine-pgp-filters/pkg-descr Mon Oct 8 10:38:47 2012 (r305526) @@ -5,5 +5,3 @@ for inline messages, I added pseudo-filt that were sent using MIME encoding. See the INSTALL file for instructions on how to configure these filters. - -WWW: http://dougbarton.us/PGP/ppf/ Modified: head/misc/wmweather+/Makefile ============================================================================== --- head/misc/wmweather+/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/misc/wmweather+/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,6 +1,4 @@ -# New ports collection makefile for: wmweather+-2.4 -# Date created: 11 April 2003 -# Whom: Harald Wille +# Created by: Harald Wille # # $FreeBSD$ @@ -11,7 +9,7 @@ CATEGORIES= misc windowmaker geography MASTER_SITES= SF/wmweatherplus/wmweather%2B/ DISTNAME= wmweather%2B-${PORTVERSION} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Displays current conditions and forecasts with icons and text LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \ Modified: head/net-im/mbpurple/Makefile ============================================================================== --- head/net-im/mbpurple/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/net-im/mbpurple/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,7 +1,3 @@ -# New ports collection makefile for: mbpurple -# Date created: 30 June 2010 -# Whom: Doug Barton -# # $FreeBSD$ PORTNAME= mbpurple @@ -10,7 +6,7 @@ PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Integrate Twitter with Pidgin (AKA microblog-purple) BUILD_DEPENDS= ${LOCALBASE}/bin/pidgin:${PORTSDIR}/net-im/pidgin \ Modified: head/net-mgmt/hawk/Makefile ============================================================================== --- head/net-mgmt/hawk/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/net-mgmt/hawk/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,7 +1,3 @@ -# New ports collection makefile for: hawk -# Date created: 06 February 2012 -# Whom: Doug Barton -# # $FreeBSD$ PORTNAME= hawk @@ -10,7 +6,7 @@ PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/iphawk/iphawk/Hawk%20${PORTVERSION}/ -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Track uptime and DNS status for machines on your networks RUN_DEPENDS= p5-Net-Netmask>0:${PORTSDIR}/net-mgmt/p5-Net-Netmask \ Modified: head/net-mgmt/p5-Net-IP/Makefile ============================================================================== --- head/net-mgmt/p5-Net-IP/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/net-mgmt/p5-Net-IP/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,6 @@ -# New ports collection makefile for: p5-Net-IP -# Date created: 30 May 2002 -# Whom: Kimura Fuyuki +# Created by: Kimura Fuyuki # # $FreeBSD$ -# PORTNAME= Net-IP PORTVERSION= 1.25 @@ -12,7 +9,7 @@ CATEGORIES= net-mgmt perl5 ipv6 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Perl extension for manipulating IPv4/IPv6 addresses PERL_CONFIGURE= yes Modified: head/net-p2p/libtorrent-rasterbar-15-python/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar-15-python/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/net-p2p/libtorrent-rasterbar-15-python/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,8 +1,3 @@ -# New ports collection makefile for: libtorrent-rasterbar-15-python -# Date created: Mon Apr 29 01:53:20 UTC 2010 -# Whom: Mario Sergio Fujikawa Ferreira -# -# # $FreeBSD$ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net-p2p/libtorrent-rasterbar-15/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar-15/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/net-p2p/libtorrent-rasterbar-15/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,4 @@ -# New ports collection makefile for: libtorrent-rasterbar-15 -# Date created: 14 February 2010 -# Whom: dougb@FreeBSD.org -# # $FreeBSD$ -# PORTNAME= libtorrent-rasterbar PORTVERSION= 0.15.9 @@ -12,8 +7,8 @@ CATEGORIES?= net-p2p ipv6 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PROJECTHOST= libtorrent -MAINTAINER= dougb@FreeBSD.org -COMMENT?= A C++ library implementing a BitTorrent client +MAINTAINER= ports@FreeBSD.org +COMMENT?= C++ library implementing a BitTorrent client MAKE_JOBS_SAFE= yes Modified: head/net-p2p/libtorrent-rasterbar-16/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar-16/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/net-p2p/libtorrent-rasterbar-16/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -6,8 +6,8 @@ CATEGORIES?= net-p2p ipv6 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PROJECTHOST= libtorrent -MAINTAINER= dougb@FreeBSD.org -COMMENT?= A C++ library implementing a BitTorrent client +MAINTAINER= ports@FreeBSD.org +COMMENT?= C++ library implementing a BitTorrent client MAKE_JOBS_SAFE= yes Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/net-p2p/qbittorrent/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -6,7 +6,7 @@ PORTREVISION?= 0 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/ -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT?= Bittorrent client using Qt4 and libtorrent-rasterbar # lib versions specified on purpose Modified: head/ports-mgmt/portmaster/Makefile ============================================================================== --- head/ports-mgmt/portmaster/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/ports-mgmt/portmaster/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -3,11 +3,11 @@ PORTNAME= portmaster PORTVERSION= 3.14 CATEGORIES= ports-mgmt -MASTER_SITES= https://dougbarton.us/Downloads/ +#MASTER_SITES= DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Manage your ports without external databases or languages OPTIONS= BASH "Install programmable completions for Bash" off \ Modified: head/ports-mgmt/portmaster/pkg-descr ============================================================================== --- head/ports-mgmt/portmaster/pkg-descr Mon Oct 8 09:46:53 2012 (r305525) +++ head/ports-mgmt/portmaster/pkg-descr Mon Oct 8 10:38:47 2012 (r305526) @@ -18,5 +18,3 @@ Portmaster has the following features: * Options to list installed ports by category, and those with new versions * Packages can be used for installation either exclusively, if available, or only for build dependencies - -WWW: http://dougbarton.us/portmaster.html Modified: head/print/hpijs/Makefile ============================================================================== --- head/print/hpijs/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/print/hpijs/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,4 @@ -# New ports collection makefile for: hpijs -# Date created: 1 May 2002 -# Whom: ports@FreeBSD.org -# # $FreeBSD$ -# PORTNAME= hpijs PORTVERSION= 2.1.4 @@ -11,7 +6,7 @@ PORTREVISION= 6 CATEGORIES= print MASTER_SITES= SF/hpinkjet/${PORTNAME}/${PORTVERSION} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Drivers and support resources for HP Inkjet Printers LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg Modified: head/security/libassuan/Makefile ============================================================================== --- head/security/libassuan/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/security/libassuan/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,6 @@ -# New ports collection makefile for: libassuan -# Date created: 2004-04-19 -# Whom: Michael Nottebrock +# Created by: Michael Nottebrock # # $FreeBSD$ -# PORTNAME= libassuan PORTVERSION= 2.0.2 @@ -13,7 +10,7 @@ MASTER_SITE_SUBDIR=${PORTNAME} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= IPC library used by GnuPG and gpgme LIB_DEPENDS+= pth.20:${PORTSDIR}/devel/pth \ Modified: head/security/libotr/Makefile ============================================================================== --- head/security/libotr/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/security/libotr/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -10,7 +10,7 @@ MASTER_SITES= http://www.cypherpunks.ca/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Portable OTR Messaging Library and toolkit BUILD_DEPENDS= pkgconf>0:${PORTSDIR}/devel/pkgconf Modified: head/security/libotr3/Makefile ============================================================================== --- head/security/libotr3/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/security/libotr3/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -9,8 +9,8 @@ MASTER_SITES= http://www.cypherpunks.ca/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org -COMMENT= The portable OTR Messaging Library and toolkit +MAINTAINER= ports@FreeBSD.org +COMMENT= Portable OTR Messaging Library and toolkit BUILD_DEPENDS= pkgconf>0:${PORTSDIR}/devel/pkgconf LIB_DEPENDS= gpg-error.0:${PORTSDIR}/security/libgpg-error \ Modified: head/security/pidgin-otr/Makefile ============================================================================== --- head/security/pidgin-otr/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/security/pidgin-otr/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -11,7 +11,7 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Allows deniable private conversations using Pidgin BUILD_DEPENDS= ${LOCALBASE}/bin/pidgin:${PORTSDIR}/net-im/pidgin \ Modified: head/sysutils/shlock/Makefile ============================================================================== --- head/sysutils/shlock/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/sysutils/shlock/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,4 @@ -# New ports collection makefile for: shlock -# Date created: 8 July 2002 -# Whom: dougb -# # $FreeBSD$ -# PORTNAME= shlock PORTVERSION= 2.5.2 @@ -14,7 +9,7 @@ DISTFILES= inn-${PORTVERSION}${EXTRACT_S inn-${PORTVERSION}${EXTRACT_SUFX}.asc EXTRACT_ONLY= inn-${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Create lock files for use in shell scripts HAS_CONFIGURE= yes Modified: head/textproc/htdig/Makefile ============================================================================== --- head/textproc/htdig/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/textproc/htdig/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,6 @@ -# New ports collection makefile for: htdig -# Date created: 18 August 1998 -# Whom: Bill Fumerola +# Created by: Bill Fumerola # # $FreeBSD$ -# PORTNAME= htdig PORTVERSION= 3.2.0.b6 @@ -13,8 +10,8 @@ MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}/3.2.0b6 DISTNAME= htdig-3.2.0b6 -MAINTAINER= dougb@FreeBSD.org -COMMENT= A www indexing and searching system +MAINTAINER= ports@FreeBSD.org +COMMENT= WWW indexing and searching system MAKE_JOBS_SAFE= yes Modified: head/x11-wm/libwraster/Makefile ============================================================================== --- head/x11-wm/libwraster/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/x11-wm/libwraster/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,4 +1,3 @@ -# Created by: Doug Barton # $FreeBSD$ PORTNAME= libwraster Modified: head/x11-wm/obmenu/Makefile ============================================================================== --- head/x11-wm/obmenu/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/x11-wm/obmenu/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,4 @@ -# New ports collection makefile for: obmenu -# Date created: 2007-12-18 -# Whom: dougb -# # $FreeBSD$ -# PORTNAME= obmenu PORTVERSION= 1.0 @@ -11,7 +6,7 @@ PORTREVISION= 5 CATEGORIES= x11-wm MASTER_SITES= SF -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Menu manager for Openbox supporting both static and pipe menus USE_GNOME= pygtk2 Modified: head/x11/aterm/Makefile ============================================================================== --- head/x11/aterm/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/x11/aterm/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,6 @@ -# New ports collection makefile for: aterm -# Date created: 17 January 1999 -# Whom: Jim Mock +# Created by: Jim Mock # # $FreeBSD$ -# PORTNAME= aterm PORTVERSION= 1.0.1 @@ -11,8 +8,8 @@ PORTREVISION= 6 CATEGORIES= x11 MASTER_SITES= SF -MAINTAINER= dougb@FreeBSD.org -COMMENT= A color vt102 terminal emulator with transparency support +MAINTAINER= ports@FreeBSD.org +COMMENT= Color vt102 terminal emulator with transparency support USE_XORG= xpm GNU_CONFIGURE= yes Modified: head/x11/tint/Makefile ============================================================================== --- head/x11/tint/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/x11/tint/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,9 +1,4 @@ -# New ports collection makefile for: tint -# Date created: 21 July 2008 -# Whom: dougb@FreeBSD.org -# # $FreeBSD$ -# PORTNAME= tint2 PORTVERSION= 0.11 @@ -11,7 +6,7 @@ PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Lightweight freedesktop-compliant panel/taskbar/systray/clock MAKE_JOBS_SAFE= yes Modified: head/x11/xscreensaver/Makefile ============================================================================== --- head/x11/xscreensaver/Makefile Mon Oct 8 09:46:53 2012 (r305525) +++ head/x11/xscreensaver/Makefile Mon Oct 8 10:38:47 2012 (r305526) @@ -1,16 +1,13 @@ -# New ports collection makefile for: xscreensaver -# Date created: 10 July 1995 -# Whom: dom@myrddin.demon.co.uk +# Created by: dom@myrddin.demon.co.uk # # $FreeBSD$ -# PORTNAME= xscreensaver PORTVERSION= 5.19 CATEGORIES= x11 MASTER_SITES= http://www.jwz.org/xscreensaver/ -MAINTAINER= dougb@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Save your screen while you entertain your cat BUILD_DEPENDS= pkgconf>0:${PORTSDIR}/devel/pkgconf From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 10:40:12 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 55597106566C; Mon, 8 Oct 2012 10:40:12 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 40BFF8FC0C; Mon, 8 Oct 2012 10:40: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 q98AeCo8081217; Mon, 8 Oct 2012 10:40:12 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98AeCDw081214; Mon, 8 Oct 2012 10:40:12 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201210081040.q98AeCDw081214@svn.freebsd.org> From: Doug Barton Date: Mon, 8 Oct 2012 10:40:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305527 - head/mail/enigmail X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 10:40:12 -0000 Author: dougb Date: Mon Oct 8 10:40:11 2012 New Revision: 305527 URL: http://svn.freebsd.org/changeset/ports/305527 Log: Blah, I *knew* I had one more un-committed diff ... put this back before anyone notices. :) Modified: head/mail/enigmail/Makefile head/mail/enigmail/distinfo Modified: head/mail/enigmail/Makefile ============================================================================== --- head/mail/enigmail/Makefile Mon Oct 8 10:38:47 2012 (r305526) +++ head/mail/enigmail/Makefile Mon Oct 8 10:40:11 2012 (r305527) @@ -6,7 +6,7 @@ # PORTNAME= enigmail -PORTVERSION?= 1.4.4 +PORTVERSION?= 1.4.3 PORTREVISION?= 0 CATEGORIES= mail security MASTER_SITES= http://www.mozilla-enigmail.org/download/source/ Modified: head/mail/enigmail/distinfo ============================================================================== --- head/mail/enigmail/distinfo Mon Oct 8 10:38:47 2012 (r305526) +++ head/mail/enigmail/distinfo Mon Oct 8 10:40:11 2012 (r305527) @@ -1,2 +1,2 @@ -SHA256 (enigmail-1.4.4.tar.gz) = ec62bb701968f72ad35546660132e6e47d4ebe684df1d27fc615cb9010a203b8 -SIZE (enigmail-1.4.4.tar.gz) = 1269444 +SHA256 (enigmail-1.4.3.tar.gz) = 440035f19a22e8e234c530a0e78fb9ee74bb934fcf721777868de79324636d27 +SIZE (enigmail-1.4.3.tar.gz) = 1337811 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 11:22:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A731106568B; Mon, 8 Oct 2012 11:22:11 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 843A18FC0A; Mon, 8 Oct 2012 11:22:11 +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 q98BMBQS089631; Mon, 8 Oct 2012 11:22:11 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98BMBPP089629; Mon, 8 Oct 2012 11:22:11 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210081122.q98BMBPP089629@svn.freebsd.org> From: Carlo Strub Date: Mon, 8 Oct 2012 11:22:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305529 - head/ports-mgmt/portmaster X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 11:22:11 -0000 Author: cs Date: Mon Oct 8 11:22:10 2012 New Revision: 305529 URL: http://svn.freebsd.org/changeset/ports/305529 Log: Add a temporary mirror Modified: head/ports-mgmt/portmaster/Makefile Modified: head/ports-mgmt/portmaster/Makefile ============================================================================== --- head/ports-mgmt/portmaster/Makefile Mon Oct 8 10:43:22 2012 (r305528) +++ head/ports-mgmt/portmaster/Makefile Mon Oct 8 11:22:10 2012 (r305529) @@ -3,7 +3,7 @@ PORTNAME= portmaster PORTVERSION= 3.14 CATEGORIES= ports-mgmt -#MASTER_SITES= +MASTER_SITES= http://www.c-s.li/ports/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 11:37:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0591C106564A; Mon, 8 Oct 2012 11:37:19 +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 58C048FC16; Mon, 8 Oct 2012 11:37:18 +0000 (UTC) Received: by mail-qc0-f182.google.com with SMTP id l39so3381393qcs.13 for ; Mon, 08 Oct 2012 04:37:17 -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=Z0gs4RtjqxYqG0pDBuSCx5u/S1ETgvb5XGQsV6R6930=; b=xv8iyuvp/9FAEhoGbtZAVps8JmkL1j5FS+YijrbElvOqlaX93RZR4ZjflJzqCjJ78S dQafNp+kczqClbwSxjp/9NgwPfl5CGD0NbiVKa/ub83r0+D7n0dv3PeUMM/Q6tYgRLOU e9QgO9OXyN0mljT2dA9nswjqJ4SyeaQQhOb/tNYrjbNvQpwKsyPgGfvj3Ck+chZj/oIG Owpb1tfyw0+M3F+3kUNrccPg54ByNFwgKvUysF7ixzbSuEzeyrE6kH2sYZFgjw+Oyzlj Hn2z/UvCYGK5DigBEAtMU7KgQ5TJOT8EhTI937i1rPewWDACh3/jEZaogZbyBYAcqLrO t/zw== Received: by 10.49.1.194 with SMTP id 2mr40798599qeo.56.1349696237348; Mon, 08 Oct 2012 04:37:17 -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 z9sm17548349qeg.9.2012.10.08.04.37.16 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 08 Oct 2012 04:37:16 -0700 (PDT) Sender: "Jason E. Hale" From: "Jason E. Hale" To: Alexey Dokuchaev Date: Mon, 08 Oct 2012 07:37:15 -0400 Message-ID: <4673809.z81jHDezYQ@mocha.verizon.net> User-Agent: KMail/4.8.4 (FreeBSD/9.0-RELEASE-p3; KDE/4.8.4; i386; ; ) In-Reply-To: <20121008043157.GC91369@FreeBSD.org> References: <201210061726.q96HQsof005040@svn.freebsd.org> <20121008043157.GC91369@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, Eitan Adler , ports-committers@freebsd.org Subject: Re: svn commit: r305387 - head/sysutils/duff X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 11:37:19 -0000 On Monday, October 08, 2012 04:31:57 Alexey Dokuchaev wrote: > On Sat, Oct 06, 2012 at 05:26:54PM +0000, Eitan Adler wrote: > > New Revision: 305387 > > URL: http://svn.freebsd.org/changeset/ports/305387 > > > > Log: > > Add 'GPL' as the ZLIB license is compatible. > > Perhaps it makes sense to add ZLIB to the list of standard licenses? > There is an open PR for this. http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/171611 - Jason From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 11:59:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 31D5F106566C; Mon, 8 Oct 2012 11:59:41 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1CA358FC12; Mon, 8 Oct 2012 11:59:41 +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 q98BxeuS095149; Mon, 8 Oct 2012 11:59:40 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98BxeIB095147; Mon, 8 Oct 2012 11:59:40 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201210081159.q98BxeIB095147@svn.freebsd.org> From: Rene Ladan Date: Mon, 8 Oct 2012 11:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305530 - head/astro/boinc-setiathome-enhanced/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 11:59:41 -0000 Author: rene Date: Mon Oct 8 11:59:40 2012 New Revision: 305530 URL: http://svn.freebsd.org/changeset/ports/305530 Log: Use the correct user:group for app_info.xml This was root:wheel before, make it boinc:nobody for consistency with the rest of the port and with astro/boinc-astropulse. Submitted by: Andrey Simonenko via #bsdports Modified: head/astro/boinc-setiathome-enhanced/files/pkg-install.in (contents, props changed) Modified: head/astro/boinc-setiathome-enhanced/files/pkg-install.in ============================================================================== --- head/astro/boinc-setiathome-enhanced/files/pkg-install.in Mon Oct 8 11:22:10 2012 (r305529) +++ head/astro/boinc-setiathome-enhanced/files/pkg-install.in Mon Oct 8 11:59:40 2012 (r305530) @@ -12,6 +12,7 @@ if [ ! -f $F ]; then echo Creating new $F echo "" > $F echo "" >> $F + chown %%BOINC_CLIENT_USER%%:%%BOINC_CLIENT_GROUP%% $F fi echo Adding setiathome_enhanced lines to $F From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 12:13:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63992106566C; Mon, 8 Oct 2012 12:13:02 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4E8808FC08; Mon, 8 Oct 2012 12:13: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 q98CD2I7097090; Mon, 8 Oct 2012 12:13:02 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98CD2Ch097088; Mon, 8 Oct 2012 12:13:02 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210081213.q98CD2Ch097088@svn.freebsd.org> From: Eitan Adler Date: Mon, 8 Oct 2012 12:13:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305531 - head/games/daimonin-music X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 12:13:02 -0000 Author: eadler Date: Mon Oct 8 12:13:01 2012 New Revision: 305531 URL: http://svn.freebsd.org/changeset/ports/305531 Log: Return the port to the heap per request. Thanks for all your hard work! Trim headers Modified: head/games/daimonin-music/Makefile Modified: head/games/daimonin-music/Makefile ============================================================================== --- head/games/daimonin-music/Makefile Mon Oct 8 11:59:40 2012 (r305530) +++ head/games/daimonin-music/Makefile Mon Oct 8 12:13:01 2012 (r305531) @@ -1,9 +1,5 @@ -# New ports collection makefile for: daimonin-music -# Date created: 2010 Sept 24 -# Whom: J.R. Oldroyd -# +# Created by: J.R. Oldroyd # $FreeBSD$ -# PORTNAME= daimonin-music PORTVERSION= 20100827 @@ -12,7 +8,7 @@ MASTER_SITES= SF/daimonin/Addon%20packs/ DISTFILES= AllMusic.zip DIST_SUBDIR= ${PORTNAME:S/-music//} -MAINTAINER= fbsd@opal.com +MAINTAINER= ports@FreeBSD.org COMMENT= Music for daimonin client NO_CHECKSUM= true From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 12:20:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B117710656C0; Mon, 8 Oct 2012 12:20:40 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9CCB68FC0A; Mon, 8 Oct 2012 12:20: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 q98CKek6098240; Mon, 8 Oct 2012 12:20:40 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98CKeV1098238; Mon, 8 Oct 2012 12:20:40 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201210081220.q98CKeV1098238@svn.freebsd.org> From: Rene Ladan Date: Mon, 8 Oct 2012 12:20:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305532 - head/astro/boinc-setiathome-enhanced X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 12:20:40 -0000 Author: rene Date: Mon Oct 8 12:20:40 2012 New Revision: 305532 URL: http://svn.freebsd.org/changeset/ports/305532 Log: Fix previous commit, chown does not like uninitialized variables. Modified: head/astro/boinc-setiathome-enhanced/Makefile (contents, props changed) Modified: head/astro/boinc-setiathome-enhanced/Makefile ============================================================================== --- head/astro/boinc-setiathome-enhanced/Makefile Mon Oct 8 12:13:01 2012 (r305531) +++ head/astro/boinc-setiathome-enhanced/Makefile Mon Oct 8 12:20:40 2012 (r305532) @@ -78,7 +78,9 @@ SUB_FILES= pkg-deinstall pkg-install pkg SUB_LIST= SETI_BINARY=${SETI_BINARY} \ SETI_SITE=${SETI_SITE} \ SETI_VERSION=${PORTVERSION:S/.//} \ - BOINC_CLIENT_HOME=${BOINC_CLIENT_HOME} + BOINC_CLIENT_HOME=${BOINC_CLIENT_HOME} \ + BOINC_CLIENT_USER=${BOINC_CLIENT_USER} \ + BOINC_CLIENT_GROUP=${BOINC_CLIENT_GROUP} PLIST_SUB+= SETI_BINARY=${SETI_BINARY} \ SETI_SITE=${SETI_SITE} \ BOINC_CLIENT_HOME=${BOINC_CLIENT_HOME} \ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 12:56:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C3A3C1065670; Mon, 8 Oct 2012 12:56:42 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A23D28FC18; Mon, 8 Oct 2012 12:56: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 q98CugWu003424; Mon, 8 Oct 2012 12:56:42 GMT (envelope-from zeising@svn.freebsd.org) Received: (from zeising@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98CugG1003422; Mon, 8 Oct 2012 12:56:42 GMT (envelope-from zeising@svn.freebsd.org) Message-Id: <201210081256.q98CugG1003422@svn.freebsd.org> From: Niclas Zeising Date: Mon, 8 Oct 2012 12:56:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305533 - head/x11/xscreensaver X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 12:56:42 -0000 Author: zeising Date: Mon Oct 8 12:56:42 2012 New Revision: 305533 URL: http://svn.freebsd.org/changeset/ports/305533 Log: Grab Approved by: miwi (mentor) Modified: head/x11/xscreensaver/Makefile Modified: head/x11/xscreensaver/Makefile ============================================================================== --- head/x11/xscreensaver/Makefile Mon Oct 8 12:20:40 2012 (r305532) +++ head/x11/xscreensaver/Makefile Mon Oct 8 12:56:42 2012 (r305533) @@ -7,7 +7,7 @@ PORTVERSION= 5.19 CATEGORIES= x11 MASTER_SITES= http://www.jwz.org/xscreensaver/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= zeising@FreeBSD.org COMMENT= Save your screen while you entertain your cat BUILD_DEPENDS= pkgconf>0:${PORTSDIR}/devel/pkgconf From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 13:46:34 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC0ED106564A; Mon, 8 Oct 2012 13:46:34 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C69058FC1B; Mon, 8 Oct 2012 13:46: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 q98DkY3O010626; Mon, 8 Oct 2012 13:46:34 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98DkYch010623; Mon, 8 Oct 2012 13:46:34 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201210081346.q98DkYch010623@svn.freebsd.org> From: Jimmy Olgeni Date: Mon, 8 Oct 2012 13:46:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305534 - head/java/jcommon X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 13:46:35 -0000 Author: olgeni Date: Mon Oct 8 13:46:34 2012 New Revision: 305534 URL: http://svn.freebsd.org/changeset/ports/305534 Log: Upgrade to version 1.0.18. Modified: head/java/jcommon/Makefile (contents, props changed) head/java/jcommon/distinfo (contents, props changed) Modified: head/java/jcommon/Makefile ============================================================================== --- head/java/jcommon/Makefile Mon Oct 8 12:56:42 2012 (r305533) +++ head/java/jcommon/Makefile Mon Oct 8 13:46:34 2012 (r305534) @@ -7,7 +7,7 @@ # PORTNAME= jcommon -PORTVERSION= 1.0.16 +PORTVERSION= 1.0.18 CATEGORIES= java devel MASTER_SITES= SF/jfreechart/3.%20JCommon/${PORTVERSION} Modified: head/java/jcommon/distinfo ============================================================================== --- head/java/jcommon/distinfo Mon Oct 8 12:56:42 2012 (r305533) +++ head/java/jcommon/distinfo Mon Oct 8 13:46:34 2012 (r305534) @@ -1,2 +1,2 @@ -SHA256 (jcommon-1.0.16.tar.gz) = 033fd5506d10dcfc7814180b09627e66232fd1ee29b769fc283aa936d7dd607d -SIZE (jcommon-1.0.16.tar.gz) = 1130148 +SHA256 (jcommon-1.0.18.tar.gz) = a4daf9ed40712bfe9564dcd6eb8392711325aec78fa7c03e57c195f63413e3fd +SIZE (jcommon-1.0.18.tar.gz) = 1133961 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 13:47:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 757AE106566C; Mon, 8 Oct 2012 13:47:59 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5EC568FC0C; Mon, 8 Oct 2012 13:47:59 +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 q98DlxIx010888; Mon, 8 Oct 2012 13:47:59 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98Dlx40010885; Mon, 8 Oct 2012 13:47:59 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201210081347.q98Dlx40010885@svn.freebsd.org> From: Jimmy Olgeni Date: Mon, 8 Oct 2012 13:47:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305535 - head/java/jfreechart X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 13:47:59 -0000 Author: olgeni Date: Mon Oct 8 13:47:58 2012 New Revision: 305535 URL: http://svn.freebsd.org/changeset/ports/305535 Log: Upgrade to version 1.0.14. Modified: head/java/jfreechart/Makefile (contents, props changed) head/java/jfreechart/distinfo (contents, props changed) Modified: head/java/jfreechart/Makefile ============================================================================== --- head/java/jfreechart/Makefile Mon Oct 8 13:46:34 2012 (r305534) +++ head/java/jfreechart/Makefile Mon Oct 8 13:47:58 2012 (r305535) @@ -7,7 +7,7 @@ # PORTNAME= jfreechart -PORTVERSION= 1.0.13 +PORTVERSION= 1.0.14 CATEGORIES= java graphics MASTER_SITES= SF/${PORTNAME}/1.%20JFreeChart/${PORTVERSION} Modified: head/java/jfreechart/distinfo ============================================================================== --- head/java/jfreechart/distinfo Mon Oct 8 13:46:34 2012 (r305534) +++ head/java/jfreechart/distinfo Mon Oct 8 13:47:58 2012 (r305535) @@ -1,2 +1,2 @@ -SHA256 (jfreechart-1.0.13.tar.gz) = 8b8286cc86d898961f307bcba1f8b6f6471bd0e921562adf573f2758b090c175 -SIZE (jfreechart-1.0.13.tar.gz) = 6306139 +SHA256 (jfreechart-1.0.14.tar.gz) = 9250d0ab465fed67aa6f48090854258d9d0053f519ca534e267a8bb84a6727f2 +SIZE (jfreechart-1.0.14.tar.gz) = 6376551 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 14:19:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F5DA106566C; Mon, 8 Oct 2012 14:19:47 +0000 (UTC) (envelope-from rafan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 408DB8FC0C; Mon, 8 Oct 2012 14:19:47 +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 q98EJlXq015406; Mon, 8 Oct 2012 14:19:47 GMT (envelope-from rafan@svn.freebsd.org) Received: (from rafan@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98EJk0n015403; Mon, 8 Oct 2012 14:19:46 GMT (envelope-from rafan@svn.freebsd.org) Message-Id: <201210081419.q98EJk0n015403@svn.freebsd.org> From: Rong-En Fan Date: Mon, 8 Oct 2012 14:19:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305536 - in head/devel/ncurses: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 14:19:47 -0000 Author: rafan Date: Mon Oct 8 14:19:46 2012 New Revision: 305536 URL: http://svn.freebsd.org/changeset/ports/305536 Log: - Fix build with clang PR: ports/172357 Submitted by: arrowdodger <6yearold at gmail.com> Obtained from: upstream (20110409 and 20120608 patch) Added: head/devel/ncurses/files/ head/devel/ncurses/files/patch-c++-clang (contents, props changed) Modified: head/devel/ncurses/Makefile Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Mon Oct 8 13:47:58 2012 (r305535) +++ head/devel/ncurses/Makefile Mon Oct 8 14:19:46 2012 (r305536) @@ -7,6 +7,7 @@ PORTNAME= ncurses PORTVERSION= ${RELEASE} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} Added: head/devel/ncurses/files/patch-c++-clang ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ncurses/files/patch-c++-clang Mon Oct 8 14:19:46 2012 (r305536) @@ -0,0 +1,40 @@ +--- c++/cursesf.h.orig 2012-10-07 15:21:40.000000000 +0800 ++++ c++/cursesf.h 2012-10-07 15:22:12.000000000 +0800 +@@ -677,7 +677,7 @@ + } + + public: +- NCursesUserForm (NCursesFormField Fields[], ++ NCursesUserForm (NCursesFormField* Fields[], + const T* p_UserData = STATIC_CAST(T*)(0), + bool with_frame=FALSE, + bool autoDelete_Fields=FALSE) +@@ -686,7 +686,7 @@ + set_user (const_cast(p_UserData)); + }; + +- NCursesUserForm (NCursesFormField Fields[], ++ NCursesUserForm (NCursesFormField* Fields[], + int nlines, + int ncols, + int begin_y = 0, +--- c++/cursesm.h.orig 2012-10-07 15:21:44.000000000 +0800 ++++ c++/cursesm.h 2012-10-07 15:22:55.000000000 +0800 +@@ -635,7 +635,7 @@ + } + + public: +- NCursesUserMenu (NCursesMenuItem Items[], ++ NCursesUserMenu (NCursesMenuItem* Items[], + const T* p_UserData = STATIC_CAST(T*)(0), + bool with_frame=FALSE, + bool autoDelete_Items=FALSE) +@@ -644,7 +644,7 @@ + set_user (const_cast(p_UserData)); + }; + +- NCursesUserMenu (NCursesMenuItem Items[], ++ NCursesUserMenu (NCursesMenuItem* Items[], + int nlines, + int ncols, + int begin_y = 0, From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 14:22:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CED5D106566B; Mon, 8 Oct 2012 14:22:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AC4688FC0A; Mon, 8 Oct 2012 14:22: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 q98EMABD015756; Mon, 8 Oct 2012 14:22:10 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98EMAZk015754; Mon, 8 Oct 2012 14:22:10 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210081422.q98EMAZk015754@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 8 Oct 2012 14:22:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305537 - head/graphics/lcms2 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 14:22:10 -0000 Author: sunpoet Date: Mon Oct 8 14:22:10 2012 New Revision: 305537 URL: http://svn.freebsd.org/changeset/ports/305537 Log: - Fix typo in MAN1 PR: ports/172465 Submitted by: Oliver Heesakkers Modified: head/graphics/lcms2/Makefile Modified: head/graphics/lcms2/Makefile ============================================================================== --- head/graphics/lcms2/Makefile Mon Oct 8 14:19:46 2012 (r305536) +++ head/graphics/lcms2/Makefile Mon Oct 8 14:22:10 2012 (r305537) @@ -32,7 +32,7 @@ UTILS= linkicc psicc transicc .if ${PORT_OPTIONS:MJPEGICC} LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg CONFIGURE_ARGS+=--with-jpeg=${LOCALBASE} -MAN1+= jpegicc.1 +MAN1+= jpgicc.1 PLIST_SUB+= JPEGICC="" UTILS+= jpgicc .else @@ -43,7 +43,7 @@ PLIST_SUB+= JPEGICC="@comment " .if ${PORT_OPTIONS:MTIFFICC} LIB_DEPENDS+= tiff:${PORTSDIR}/graphics/tiff CONFIGURE_ARGS= --with-tiff=${LOCALBASE} -MAN1+= tifficc.1 +MAN1+= tificc.1 PLIST_SUB+= TIFFICC="" UTILS+= tificc .else From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 14:56:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BE291065670; Mon, 8 Oct 2012 14:56:59 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 768468FC12; Mon, 8 Oct 2012 14:56:59 +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 q98Eux9c020446; Mon, 8 Oct 2012 14:56:59 GMT (envelope-from fjoe@svn.freebsd.org) Received: (from fjoe@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98EuxZ3020444; Mon, 8 Oct 2012 14:56:59 GMT (envelope-from fjoe@svn.freebsd.org) Message-Id: <201210081456.q98EuxZ3020444@svn.freebsd.org> From: Max Khon Date: Mon, 8 Oct 2012 14:56:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305538 - head/databases/pgadmin3 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 14:56:59 -0000 Author: fjoe Date: Mon Oct 8 14:56:58 2012 New Revision: 305538 URL: http://svn.freebsd.org/changeset/ports/305538 Log: Do not build documentation, even if sphinx-build is installed. Modified: head/databases/pgadmin3/Makefile Modified: head/databases/pgadmin3/Makefile ============================================================================== --- head/databases/pgadmin3/Makefile Mon Oct 8 14:22:10 2012 (r305537) +++ head/databases/pgadmin3/Makefile Mon Oct 8 14:56:58 2012 (r305538) @@ -24,7 +24,8 @@ USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="${PTHREAD_LIBS}" CPPFLAGS+= ${PTHREAD_CFLAGS} -CONFIGURE_ARGS= --with-wx-version=${USE_WX} +CONFIGURE_ARGS= --with-wx-version=${USE_WX}\ + --without-sphinx-build USE_GNOME= libxml2 libxslt USE_WX= 2.8 WX_COMPS= wx contrib From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 15:39:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88D641065670; Mon, 8 Oct 2012 15:39:15 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 69B928FC18; Mon, 8 Oct 2012 15:39:15 +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 q98FdFGr026554; Mon, 8 Oct 2012 15:39:15 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98FdF4l026551; Mon, 8 Oct 2012 15:39:15 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210081539.q98FdF4l026551@svn.freebsd.org> From: Alex Dupre Date: Mon, 8 Oct 2012 15:39:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305539 - head/devel/binutils X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 15:39:15 -0000 Author: ale Date: Mon Oct 8 15:39:14 2012 New Revision: 305539 URL: http://svn.freebsd.org/changeset/ports/305539 Log: Fix plist and bump PORTREVISION. Modified: head/devel/binutils/Makefile head/devel/binutils/pkg-plist Modified: head/devel/binutils/Makefile ============================================================================== --- head/devel/binutils/Makefile Mon Oct 8 14:56:58 2012 (r305538) +++ head/devel/binutils/Makefile Mon Oct 8 15:39:14 2012 (r305539) @@ -3,7 +3,7 @@ PORTNAME= binutils PORTVERSION= 2.22 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEWARE} MASTER_SITE_SUBDIR= binutils/releases Modified: head/devel/binutils/pkg-plist ============================================================================== --- head/devel/binutils/pkg-plist Mon Oct 8 14:56:58 2012 (r305538) +++ head/devel/binutils/pkg-plist Mon Oct 8 15:39:14 2012 (r305539) @@ -26,6 +26,9 @@ lib/libbfd.la lib/libiberty.a lib/libopcodes.a lib/libopcodes.la +%%NLS%%share/locale/bg/LC_MESSAGES/binutils.mo +%%NLS%%share/locale/bg/LC_MESSAGES/gprof.mo +%%NLS%%share/locale/bg/LC_MESSAGES/ld.mo %%NLS%%share/locale/da/LC_MESSAGES/bfd.mo %%NLS%%share/locale/da/LC_MESSAGES/binutils.mo %%NLS%%share/locale/da/LC_MESSAGES/gprof.mo @@ -33,6 +36,7 @@ lib/libopcodes.la %%NLS%%share/locale/da/LC_MESSAGES/opcodes.mo %%NLS%%share/locale/de/LC_MESSAGES/gprof.mo %%NLS%%share/locale/de/LC_MESSAGES/opcodes.mo +%%NLS%%share/locale/eo/LC_MESSAGES/gprof.mo %%NLS%%share/locale/es/LC_MESSAGES/bfd.mo %%NLS%%share/locale/es/LC_MESSAGES/binutils.mo %%NLS%%share/locale/es/LC_MESSAGES/gas.mo @@ -41,6 +45,7 @@ lib/libopcodes.la %%NLS%%share/locale/es/LC_MESSAGES/opcodes.mo %%NLS%%share/locale/fi/LC_MESSAGES/bfd.mo %%NLS%%share/locale/fi/LC_MESSAGES/binutils.mo +%%NLS%%share/locale/fi/LC_MESSAGES/gas.mo %%NLS%%share/locale/fi/LC_MESSAGES/gprof.mo %%NLS%%share/locale/fi/LC_MESSAGES/ld.mo %%NLS%%share/locale/fi/LC_MESSAGES/opcodes.mo @@ -59,9 +64,9 @@ lib/libopcodes.la %%NLS%%share/locale/id/LC_MESSAGES/binutils.mo %%NLS%%share/locale/id/LC_MESSAGES/gas.mo %%NLS%%share/locale/id/LC_MESSAGES/ld.mo -%%NLS%%share/locale/ru/LC_MESSAGES/bfd.mo %%NLS%%share/locale/ja/LC_MESSAGES/bfd.mo %%NLS%%share/locale/ja/LC_MESSAGES/binutils.mo +%%NLS%%share/locale/ja/LC_MESSAGES/ld.mo %%NLS%%share/locale/ms/LC_MESSAGES/gprof.mo %%NLS%%share/locale/nl/LC_MESSAGES/gprof.mo %%NLS%%share/locale/nl/LC_MESSAGES/opcodes.mo @@ -71,7 +76,10 @@ lib/libopcodes.la %%NLS%%share/locale/ro/LC_MESSAGES/binutils.mo %%NLS%%share/locale/ro/LC_MESSAGES/gprof.mo %%NLS%%share/locale/ro/LC_MESSAGES/opcodes.mo +%%NLS%%share/locale/ru/LC_MESSAGES/bfd.mo %%NLS%%share/locale/ru/LC_MESSAGES/binutils.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gas.mo +%%NLS%%share/locale/ru/LC_MESSAGES/gprof.mo %%NLS%%share/locale/rw/LC_MESSAGES/bfd.mo %%NLS%%share/locale/rw/LC_MESSAGES/binutils.mo %%NLS%%share/locale/rw/LC_MESSAGES/gas.mo @@ -100,3 +108,5 @@ lib/libopcodes.la %%NLS%%share/locale/zh_CN/LC_MESSAGES/opcodes.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/binutils.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/ld.mo +%%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/rw From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 15:47:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6111E1065670; Mon, 8 Oct 2012 15:47:25 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4BAB28FC16; Mon, 8 Oct 2012 15:47:25 +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 q98FlPUA027865; Mon, 8 Oct 2012 15:47:25 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98FlPPh027862; Mon, 8 Oct 2012 15:47:25 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210081547.q98FlPPh027862@svn.freebsd.org> From: Alex Kozlov Date: Mon, 8 Oct 2012 15:47:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305540 - in head: . devel devel/p5-Devel-Mallinfo X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 15:47:25 -0000 Author: ak Date: Mon Oct 8 15:47:24 2012 New Revision: 305540 URL: http://svn.freebsd.org/changeset/ports/305540 Log: Remove expired port: 20121008 devel/p5-Devel-Mallinfo: Does not work on FreeBSD, mallinfo() is a GNU libc function and is not available on FreeBSD Deleted: head/devel/p5-Devel-Mallinfo/ Modified: head/MOVED head/devel/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Mon Oct 8 15:39:14 2012 (r305539) +++ head/MOVED Mon Oct 8 15:47:24 2012 (r305540) @@ -3715,3 +3715,4 @@ net/fping+ipv6|net/fping|2012-09-24|IPv6 textproc/aspell-without-dicten|textproc/aspell|2012-09-24|The dictionary is no longer installed with aspell www/jakarta-jmeter|www/jmeter|2012-09-25|Former Jakarta projects now live on their own www/smarty|www/smarty2|2012-09-26|Renamed to prepare for addition of Smarty 3.x to the tree +devel/p5-Devel-Mallinfo||2012-10-08|Has expired: Does not work on FreeBSD, mallinfo() is a GNU libc function and is not available on FreeBSD Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 8 15:39:14 2012 (r305539) +++ head/devel/Makefile Mon Oct 8 15:47:24 2012 (r305540) @@ -1774,7 +1774,6 @@ SUBDIR += p5-Devel-LeakTrace SUBDIR += p5-Devel-LeakTrace-Fast SUBDIR += p5-Devel-LexAlias - SUBDIR += p5-Devel-Mallinfo SUBDIR += p5-Devel-Messenger SUBDIR += p5-Devel-Modlist SUBDIR += p5-Devel-NYTProf From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:12:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D894E1065802; Mon, 8 Oct 2012 16:12:08 +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 7BFE68FC1A; Mon, 8 Oct 2012 16:12:08 +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 q98GC8Bo031464; Mon, 8 Oct 2012 16:12:08 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98GC8QY031451; Mon, 8 Oct 2012 16:12:08 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210081612.q98GC8QY031451@svn.freebsd.org> From: Bryan Drewery Date: Mon, 8 Oct 2012 16:12:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305541 - in head/converters: bsdconv p5-bsdconv php5-bsdconv py-bsdconv ruby-bsdconv X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:12:10 -0000 Author: bdrewery Date: Mon Oct 8 16:12:07 2012 New Revision: 305541 URL: http://svn.freebsd.org/changeset/ports/305541 Log: - Update bsdconv and wrappers to 9.0 [1] - Switch to USE_GITHUB for fetching - Update to new header format - Mark converters/bsdconv as MAKE_JOBS_UNSAFE - Add prefix into DISTNAMEs to avoid conflicts Changelog for converters/bsdconv: 9.0: fix for MinGW export bsdconv_malloc/bsdconv_free add {from,to}/CCCII add inter/ZH-STRINGS internal API changes for use of bsdconv_ctl in wrappers bugfixes 8.0: add flush function into callback interface for supporting inter/OPENCC* ( http://github.com/buganini/bsdconv-opencc ) sync data from project chvar update inter/KANA_PHONETIC use double data type for score value add inter/TRIM-WIDTH Changelog for converters/{p5,php5,py,ruby}-bsdconv: update/add ctl function add mktemp/fopen function PR: ports/172263 [1] Submitted by: Kuan-Chung Chiu [1] Modified: head/converters/bsdconv/Makefile head/converters/bsdconv/distinfo head/converters/bsdconv/pkg-plist head/converters/p5-bsdconv/Makefile head/converters/p5-bsdconv/distinfo head/converters/php5-bsdconv/Makefile head/converters/php5-bsdconv/distinfo head/converters/py-bsdconv/Makefile head/converters/py-bsdconv/distinfo head/converters/ruby-bsdconv/Makefile head/converters/ruby-bsdconv/distinfo Modified: head/converters/bsdconv/Makefile ============================================================================== --- head/converters/bsdconv/Makefile Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/bsdconv/Makefile Mon Oct 8 16:12:07 2012 (r305541) @@ -1,30 +1,26 @@ -# New ports collection makefile for: bsdconv -# Date created: 23 May 2009 -# Whom: buganini@gmail.com -# +# Created by: buganini@gmail.com # $FreeBSD$ -# PORTNAME= bsdconv -PORTVERSION= 7.5 +PORTVERSION= 9.0 CATEGORIES= converters -MASTER_SITES= https://github.com/buganini/${PORTNAME}/tarball/${PORTVERSION}/ -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} +DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= BSD licensed charset/encoding converter library LICENSE= BSD -GITVERSION= cf1989b -FETCH_ARGS= -pRr -WRKSRC= ${WRKDIR}/buganini-${PORTNAME}-${GITVERSION} +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_COMMIT= b514ea8 OPTIONS_DEFINE= EXTRA EXTRA_DESC= Extra codecs (Chinese specifics) USE_LDCONFIG= yes +MAKE_JOBS_UNSAFE= yes MAKE_ARGS= PREFIX=${PREFIX} ALL_TARGET= libbsdconv bsdconv_mktable meta bsdconv codecs_basic Modified: head/converters/bsdconv/distinfo ============================================================================== --- head/converters/bsdconv/distinfo Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/bsdconv/distinfo Mon Oct 8 16:12:07 2012 (r305541) @@ -1,2 +1,2 @@ -SHA256 (buganini-bsdconv-7.5-0-gcf1989b.tar.gz) = b056fbd1cdddb3d021b3331a1f89bae1bfc5783d8971721cc2267724bbf5db06 -SIZE (buganini-bsdconv-7.5-0-gcf1989b.tar.gz) = 4630675 +SHA256 (buganini-bsdconv-9.0-0-gb514ea8.tar.gz) = b1450b19cf9b5089fd528377a04144bd7e05bba756dfbc1e14ee1d3aa0f2f2e5 +SIZE (buganini-bsdconv-9.0-0-gb514ea8.tar.gz) = 5085298 Modified: head/converters/bsdconv/pkg-plist ============================================================================== --- head/converters/bsdconv/pkg-plist Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/bsdconv/pkg-plist Mon Oct 8 16:12:07 2012 (r305541) @@ -2,7 +2,8 @@ bin/bsdconv bin/bsdconv_mktable include/bsdconv.h lib/libbsdconv.so -lib/libbsdconv.so.7 +lib/libbsdconv.so.9 +%%DATADIR%%/from/00 %%DATADIR%%/from/3F %%DATADIR%%/from/3F.so %%DATADIR%%/from/ANSI-CONTROL @@ -20,7 +21,6 @@ lib/libbsdconv.so.7 %%DATADIR%%/from/BYTE %%DATADIR%%/from/ESCAPE %%DATADIR%%/from/ESCAPE.so -%%DATADIR%%/from/NUL %%DATADIR%%/from/PASS %%DATADIR%%/from/PASS.so %%DATADIR%%/from/SKIP @@ -72,6 +72,8 @@ lib/libbsdconv.so.7 %%DATADIR%%/inter/SPLIT.so %%DATADIR%%/inter/TO_ALIAS %%DATADIR%%/inter/TO_ALIAS.so +%%DATADIR%%/inter/TRIM-WIDTH +%%DATADIR%%/inter/TRIM-WIDTH.so %%DATADIR%%/inter/UNIX %%DATADIR%%/inter/UPPER %%DATADIR%%/inter/UPSIDEDOWN @@ -82,12 +84,15 @@ lib/libbsdconv.so.7 %%DATADIR%%/inter/WIDTH %%DATADIR%%/inter/WIDTH.so %%DATADIR%%/inter/WIN +%%DATADIR%%/inter/ZH-STRINGS +%%DATADIR%%/inter/ZH-STRINGS.so %%DATADIR%%/inter/ZHCN %%DATADIR%%/inter/ZHTW %%DATADIR%%/inter/ZHTW_WORDS %%DATADIR%%/inter/ZH_FUZZY_CN %%DATADIR%%/inter/ZH_FUZZY_TW %%DATADIR%%/inter/alias +%%DATADIR%%/to/00 %%DATADIR%%/to/3F %%DATADIR%%/to/3F.so %%DATADIR%%/to/ANSI-CONTROL @@ -117,7 +122,6 @@ lib/libbsdconv.so.7 %%DATADIR%%/to/BYTE %%DATADIR%%/to/CP936_TRANS %%DATADIR%%/to/CP950_TRANS -%%DATADIR%%/to/NUL %%DATADIR%%/to/NULL %%DATADIR%%/to/NULL.so %%DATADIR%%/to/PASS @@ -155,6 +159,7 @@ lib/libbsdconv.so.7 %%DATADIR%%/to/_UTF-8 %%DATADIR%%/to/_UTF-8.so %%DATADIR%%/to/alias +%%EXTRA%%%%DATADIR%%/from/CCCII %%EXTRA%%%%DATADIR%%/from/_CNS11643 %%EXTRA%%%%DATADIR%%/from/_CNS11643.so %%EXTRA%%%%DATADIR%%/from/_CP936 @@ -167,11 +172,12 @@ lib/libbsdconv.so.7 %%EXTRA%%%%DATADIR%%/inter/UNICODE %%EXTRA%%%%DATADIR%%/inter/ZH_COMP %%EXTRA%%%%DATADIR%%/inter/ZH_DECOMP +%%EXTRA%%%%DATADIR%%/to/CCCII %%EXTRA%%%%DATADIR%%/to/_CNS11643 %%EXTRA%%%%DATADIR%%/to/_CNS11643.so %%EXTRA%%%%DATADIR%%/to/_GB2312 %%EXTRA%%%%DATADIR%%/to/_UAO241 -@dirrmtry %%DATADIR%%/to -@dirrmtry %%DATADIR%%/inter @dirrmtry %%DATADIR%%/from +@dirrmtry %%DATADIR%%/inter +@dirrmtry %%DATADIR%%/to @dirrmtry %%DATADIR%% Modified: head/converters/p5-bsdconv/Makefile ============================================================================== --- head/converters/p5-bsdconv/Makefile Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/p5-bsdconv/Makefile Mon Oct 8 16:12:07 2012 (r305541) @@ -1,16 +1,11 @@ -# New ports collection makefile for: p5-bsdconv -# Date created: 29 May 2009 -# Whom: buganini@gmail.com -# +# Created by: buganini@gmail.com # $FreeBSD$ -# PORTNAME= bsdconv -PORTVERSION= 7.2 +PORTVERSION= 9.0 CATEGORIES= converters perl5 -MASTER_SITES= https://github.com/buganini/perl-${PORTNAME}/tarball/${PORTVERSION}/ PKGNAMEPREFIX= p5- -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} +DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Perl wrapper for bsdconv @@ -19,9 +14,10 @@ LICENSE= BSD LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv -GITVERSION= 0da681c -FETCH_ARGS= -pRr -WRKSRC= ${WRKDIR}/buganini-perl-${PORTNAME}-${GITVERSION} +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_PROJECT= perl-${PORTNAME} +GH_COMMIT= c98a201 PERL_CONFIGURE= yes Modified: head/converters/p5-bsdconv/distinfo ============================================================================== --- head/converters/p5-bsdconv/distinfo Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/p5-bsdconv/distinfo Mon Oct 8 16:12:07 2012 (r305541) @@ -1,2 +1,2 @@ -SHA256 (buganini-bsdconv-7.2-0-g0da681c.tar.gz) = 8172f046ae393bd818a5f360ebac7bf18426800a1979eecf08321bcfa800069a -SIZE (buganini-bsdconv-7.2-0-g0da681c.tar.gz) = 43211 +SHA256 (buganini-perl-bsdconv-9.0-0-gc98a201.tar.gz) = 11afd766985d007ca2304f96b6bb383bf818f1595f57320dfc3ed74caad7dc1f +SIZE (buganini-perl-bsdconv-9.0-0-gc98a201.tar.gz) = 43745 Modified: head/converters/php5-bsdconv/Makefile ============================================================================== --- head/converters/php5-bsdconv/Makefile Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/php5-bsdconv/Makefile Mon Oct 8 16:12:07 2012 (r305541) @@ -1,16 +1,11 @@ -# Ports collection makefile for: php5-bsdconv -# Date created: 23 May 2009 -# Whom: buganini@gmail.com -# +# Created by: buganini@gmail.com # $FreeBSD$ -# PORTNAME= bsdconv -PORTVERSION= 7.3 +PORTVERSION= 9.0 CATEGORIES= converters -MASTER_SITES= https://github.com/buganini/php-${PORTNAME}/tarball/${PORTVERSION}/ PKGNAMEPREFIX= php5- -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} +DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= PHP wrapper for bsdconv @@ -19,9 +14,10 @@ LICENSE= BSD LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv -GITVERSION= a3bad63 -FETCH_ARGS= -pRr -WRKSRC= ${WRKDIR}/buganini-php-${PORTNAME}-${GITVERSION} +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_PROJECT= php-${PORTNAME} +GH_COMMIT= 314309f USE_PHP= yes USE_PHPEXT= yes Modified: head/converters/php5-bsdconv/distinfo ============================================================================== --- head/converters/php5-bsdconv/distinfo Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/php5-bsdconv/distinfo Mon Oct 8 16:12:07 2012 (r305541) @@ -1,2 +1,2 @@ -SHA256 (buganini-bsdconv-7.3-0-ga3bad63.tar.gz) = df361f33a9cc8105bc408cdd0b82fa1eae653df96a17a1ab3d9b4c253aae8019 -SIZE (buganini-bsdconv-7.3-0-ga3bad63.tar.gz) = 6541 +SHA256 (buganini-php-bsdconv-9.0-0-g314309f.tar.gz) = cb20b8c1f6a6b9b0ca07f2e5f25762564a0ed04be1f67d6ebc1d4b2127a2ff64 +SIZE (buganini-php-bsdconv-9.0-0-g314309f.tar.gz) = 7419 Modified: head/converters/py-bsdconv/Makefile ============================================================================== --- head/converters/py-bsdconv/Makefile Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/py-bsdconv/Makefile Mon Oct 8 16:12:07 2012 (r305541) @@ -1,16 +1,11 @@ -# New ports collection makefile for: py-bsdconv -# Date created: 11 Oct 2009 -# Whom: buganini@gmail.com -# +# Created by: buganini@gmail.com # $FreeBSD$ -# PORTNAME= bsdconv -PORTVERSION= 7.5 +PORTVERSION= 9.0 CATEGORIES= converters python -MASTER_SITES= https://github.com/buganini/python-${PORTNAME}/tarball/${PORTVERSION}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} +DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Python wrapper for bsdconv @@ -19,9 +14,11 @@ LICENSE= BSD LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv -GITVERSION= e203c4a -FETCH_ARGS= -pRr -WRKSRC= ${WRKDIR}/buganini-python-${PORTNAME}-${GITVERSION} +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_PROJECT= python-${PORTNAME} +GH_COMMIT= 2fcf39c + USE_PYTHON= yes USE_PYDISTUTILS= yes PLIST_SUB= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S|^${LOCALBASE}/||g} Modified: head/converters/py-bsdconv/distinfo ============================================================================== --- head/converters/py-bsdconv/distinfo Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/py-bsdconv/distinfo Mon Oct 8 16:12:07 2012 (r305541) @@ -1,2 +1,2 @@ -SHA256 (buganini-bsdconv-7.5-0-ge203c4a.tar.gz) = f4ac0e8eaad8665b2ee32fe0bfd1206ee8c9ed1bd304b2b9e10cf8ce4a4de99c -SIZE (buganini-bsdconv-7.5-0-ge203c4a.tar.gz) = 4329 +SHA256 (buganini-python-bsdconv-9.0-0-g2fcf39c.tar.gz) = 6a8987eb37368ad4a28544fd1b72cacf05de6773035457e1511a97333a735534 +SIZE (buganini-python-bsdconv-9.0-0-g2fcf39c.tar.gz) = 5019 Modified: head/converters/ruby-bsdconv/Makefile ============================================================================== --- head/converters/ruby-bsdconv/Makefile Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/ruby-bsdconv/Makefile Mon Oct 8 16:12:07 2012 (r305541) @@ -1,16 +1,11 @@ -# New ports collection makefile for: ruby-bsdconv -# Date created: 13 Oct 2011 -# Whom: buganini@gmail.com -# +# Created by: buganini@gmail.com # $FreeBSD$ -# PORTNAME= bsdconv -PORTVERSION= 7.1 +PORTVERSION= 9.0 CATEGORIES= converters ruby -MASTER_SITES= https://github.com/buganini/ruby-${PORTNAME}/tarball/${PORTVERSION}/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} +DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Ruby wrapper for bsdconv @@ -22,8 +17,9 @@ LIB_DEPENDS= bsdconv:${PORTSDIR}/convert USE_RUBY= yes USE_RUBY_EXTCONF= yes -GITVERSION= a3437bf -FETCH_ARGS= -pRr -WRKSRC= ${WRKDIR}/buganini-ruby-${PORTNAME}-${GITVERSION} +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_PROJECT= ruby-${PORTNAME} +GH_COMMIT= 7bc3d11 .include Modified: head/converters/ruby-bsdconv/distinfo ============================================================================== --- head/converters/ruby-bsdconv/distinfo Mon Oct 8 15:47:24 2012 (r305540) +++ head/converters/ruby-bsdconv/distinfo Mon Oct 8 16:12:07 2012 (r305541) @@ -1,2 +1,2 @@ -SHA256 (buganini-bsdconv-7.1-0-ga3437bf.tar.gz) = 92c5ee5d5843f3ad5065af66d085fb00ddedfb47fe30181f476d04053710de58 -SIZE (buganini-bsdconv-7.1-0-ga3437bf.tar.gz) = 2141 +SHA256 (buganini-ruby-bsdconv-9.0-0-g7bc3d11.tar.gz) = 904f89f76e23dbbd8a9956f37242f1769ed528b70de226dc311f12cdfd081625 +SIZE (buganini-ruby-bsdconv-9.0-0-g7bc3d11.tar.gz) = 2802 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:13:56 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F8B910656C1; Mon, 8 Oct 2012 16:13:56 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5A9838FC18; Mon, 8 Oct 2012 16:13:56 +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 q98GDukt031739; Mon, 8 Oct 2012 16:13:56 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98GDuuv031737; Mon, 8 Oct 2012 16:13:56 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201210081613.q98GDuuv031737@svn.freebsd.org> From: Jimmy Olgeni Date: Mon, 8 Oct 2012 16:13:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305542 - head/audio/amarok X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:13:56 -0000 Author: olgeni Date: Mon Oct 8 16:13:55 2012 New Revision: 305542 URL: http://svn.freebsd.org/changeset/ports/305542 Log: Fix test to use the standard PGSQL knob. OPTIONS_DEFINE lists PGSQL, but the actual test was done on POSTGRESQL. Modified: head/audio/amarok/Makefile (contents, props changed) Modified: head/audio/amarok/Makefile ============================================================================== --- head/audio/amarok/Makefile Mon Oct 8 16:12:07 2012 (r305541) +++ head/audio/amarok/Makefile Mon Oct 8 16:13:55 2012 (r305542) @@ -91,7 +91,7 @@ USE_MYSQL= yes CONFIGURE_ARGS+=--enable-mysql .endif -.if ${PORT_OPTIONS:MPOSTGRESQL} +.if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes CONFIGURE_ARGS+=--enable-postgresql .endif From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:17:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 122711065670; Mon, 8 Oct 2012 16:17:23 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F00408FC12; Mon, 8 Oct 2012 16:17:22 +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 q98GHMWv032274; Mon, 8 Oct 2012 16:17:22 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98GHMea032270; Mon, 8 Oct 2012 16:17:22 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201210081617.q98GHMea032270@svn.freebsd.org> From: Boris Samorodov Date: Mon, 8 Oct 2012 16:17:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305543 - in head/graphics/icoutils: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:17:23 -0000 Author: bsam Date: Mon Oct 8 16:17:22 2012 New Revision: 305543 URL: http://svn.freebsd.org/changeset/ports/305543 Log: OPTIONify the port. Add an option RESSCRIPTS for PERL resource scripts and switch it off by default. This reduces default dependencies from 22 to 3. The port is useful to get PNG icons from a Windows *.ico files while building ports (as a BUILD dependency). Resource scripts are not used there. Bump PORTREVISION. Added: head/graphics/icoutils/files/ head/graphics/icoutils/files/extra-patch-Makefile.in (contents, props changed) head/graphics/icoutils/files/extra-patch-configure.ac (contents, props changed) Modified: head/graphics/icoutils/Makefile Modified: head/graphics/icoutils/Makefile ============================================================================== --- head/graphics/icoutils/Makefile Mon Oct 8 16:13:55 2012 (r305542) +++ head/graphics/icoutils/Makefile Mon Oct 8 16:17:22 2012 (r305543) @@ -3,6 +3,7 @@ PORTNAME= icoutils PORTVERSION= 0.30.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SAVANNAH @@ -12,23 +13,36 @@ COMMENT= Convert/extract images in Micro LICENSE= GPLv3 LIB_DEPENDS= png15:${PORTSDIR}/graphics/png -RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww USE_BZIP2= yes -USE_PERL5_RUN= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-nls MAKE_JOBS_SAFE= yes -MAN1= extresso.1 genresscript.1 icotool.1 wrestool.1 -PLIST_FILES= bin/extresso \ - bin/genresscript \ - bin/icotool \ +MAN1= icotool.1 wrestool.1 +PLIST_FILES= bin/icotool \ bin/wrestool CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +OPTIONS_DEFINE= RESSCRIPTS +RESSCRIPTS_DESC= PERL resource scripts + +.include + +.if ${PORT_OPTIONS:MRESSCRIPTS} +RUN_DEPENDS+= p5-libwww>=0:${PORTSDIR}/www/p5-libwww +USE_PERL5_RUN= yes +MAN1+= extresso.1 genresscript.1 +PLIST_FILES+= bin/extresso \ + bin/genresscript +.else +post-patch: +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Makefile.in \ + ${FILESDIR}/extra-patch-configure.ac +.endif + .include .if ${ARCH} == "sparc64" Added: head/graphics/icoutils/files/extra-patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/icoutils/files/extra-patch-Makefile.in Mon Oct 8 16:17:22 2012 (r305543) @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2012-10-08 14:19:17.000000000 +0400 ++++ Makefile.in 2012-10-08 14:19:35.000000000 +0400 +@@ -604,7 +604,7 @@ top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + ACLOCAL_AMFLAGS = -I m4 +-SUBDIRS = po lib common icotool wrestool extresso ++SUBDIRS = po lib common icotool wrestool + EXTRA_DIST = \ + data/icons/icon-linux_penguin-20x20-16c.png \ + data/icons/icon-linux_penguin-16x16-16c.png \ Added: head/graphics/icoutils/files/extra-patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/icoutils/files/extra-patch-configure.ac Mon Oct 8 16:17:22 2012 (r305543) @@ -0,0 +1,13 @@ +--- configure.ac.orig 2012-10-08 13:47:35.000000000 +0400 ++++ configure.ac 2012-10-08 13:47:59.000000000 +0400 +@@ -69,9 +69,5 @@ AC_CONFIG_FILES([Makefile + po/Makefile.in + lib/Makefile + common/Makefile +- icotool/Makefile +- wrestool/Makefile +- extresso/Makefile]) +-AC_CONFIG_FILES([extresso/extresso], [chmod +x extresso/extresso]) +-AC_CONFIG_FILES([extresso/genresscript], [chmod +x extresso/genresscript]) ++ icotool/Makefile) + AC_OUTPUT From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:17:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43A51106564A; Mon, 8 Oct 2012 16:17:26 +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 159FB8FC14; Mon, 8 Oct 2012 16:17:26 +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 q98GHPlo032341; Mon, 8 Oct 2012 16:17:25 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98GHP40032338; Mon, 8 Oct 2012 16:17:25 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210081617.q98GHP40032338@svn.freebsd.org> From: Bryan Drewery Date: Mon, 8 Oct 2012 16:17:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305544 - head/chinese/bug5 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:17:26 -0000 Author: bdrewery Date: Mon Oct 8 16:17:25 2012 New Revision: 305544 URL: http://svn.freebsd.org/changeset/ports/305544 Log: - Update to 1.13 [1] - Remove ABI version from LIB_DEPENDS [1] - Switch to USE_GITHUB for fetching Changelog: chase codec rename in bsdconv add -8 for UTF-8 <-> UTF-8 conversion profile PR: ports/172264 [1] Submitted by: Kuan-Chung Chiu (maintainer) [1] Modified: head/chinese/bug5/Makefile head/chinese/bug5/distinfo Modified: head/chinese/bug5/Makefile ============================================================================== --- head/chinese/bug5/Makefile Mon Oct 8 16:17:22 2012 (r305543) +++ head/chinese/bug5/Makefile Mon Oct 8 16:17:25 2012 (r305544) @@ -1,26 +1,21 @@ -# New ports collection makefile for: bug5 -# Date created: 25 April 2011 -# Whom: buganini@gmail.com -# +# Created by: buganini@gmail.com # $FreeBSD$ -# PORTNAME= bug5 -PORTVERSION= 1.10 +PORTVERSION= 1.13 CATEGORIES= chinese converters -MASTER_SITES= https://github.com/buganini/${PORTNAME}/tarball/${PORTVERSION}/ -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} +DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= A Big5/GBK <-> UTF-8 translating layer in terminal LICENSE= BSD -LIB_DEPENDS= bsdconv.7:${PORTSDIR}/converters/bsdconv +LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv -GITVERSION= 600e6be -FETCH_ARGS= -pRr -WRKSRC= ${WRKDIR}/buganini-${PORTNAME}-${GITVERSION} +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_COMMIT= 06df288 MAKE_ARGS= PREFIX=${PREFIX} Modified: head/chinese/bug5/distinfo ============================================================================== --- head/chinese/bug5/distinfo Mon Oct 8 16:17:22 2012 (r305543) +++ head/chinese/bug5/distinfo Mon Oct 8 16:17:25 2012 (r305544) @@ -1,2 +1,2 @@ -SHA256 (buganini-bug5-1.10-0-g600e6be.tar.gz) = b88e76e7a206836d7ab6c7313fb46fbf1f7c99f159fed2c5519ed6ec52e7c04a -SIZE (buganini-bug5-1.10-0-g600e6be.tar.gz) = 4630 +SHA256 (buganini-bug5-1.13-0-g06df288.tar.gz) = 2bcc74b8cb67948ddd0294fe2804832e98858f2b51b115f069c93e8ff3cea5ca +SIZE (buganini-bug5-1.13-0-g06df288.tar.gz) = 4785 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:22:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1D0AD1065670; Mon, 8 Oct 2012 16:22:30 +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 F06CE8FC17; Mon, 8 Oct 2012 16:22: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 q98GMTa7033102; Mon, 8 Oct 2012 16:22:29 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98GMT5w033099; Mon, 8 Oct 2012 16:22:29 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210081622.q98GMT5w033099@svn.freebsd.org> From: Bryan Drewery Date: Mon, 8 Oct 2012 16:22:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305545 - head/converters/gbsdconv X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:22:30 -0000 Author: bdrewery Date: Mon Oct 8 16:22:29 2012 New Revision: 305545 URL: http://svn.freebsd.org/changeset/ports/305545 Log: - Update to 1.0 [1] - Remove ABI version from LIB_DEPENDS [1] - Update to new header - Use USE_GITHUB for fetching Changelog: chase py-bsdconv update utilize new API in taglib 1.8 to allow saving ID3v2.3 PR: ports/172265 [1] Submitted by: Kuan-Chung Chiu (maintainer) [1] Modified: head/converters/gbsdconv/Makefile head/converters/gbsdconv/distinfo Modified: head/converters/gbsdconv/Makefile ============================================================================== --- head/converters/gbsdconv/Makefile Mon Oct 8 16:17:25 2012 (r305544) +++ head/converters/gbsdconv/Makefile Mon Oct 8 16:22:29 2012 (r305545) @@ -1,35 +1,33 @@ -# New ports collection makefile for: gbsdconv -# Date created: 22 Dec, 2011 -# Whom: buganini@gmail.com -# +# Created by: buganini@gmail.com # $FreeBSD$ -# PORTNAME= gbsdconv -PORTVERSION= 0.4 -PORTREVISION= 1 +PORTVERSION= 1.0 CATEGORIES= converters python -MASTER_SITES= https://github.com/buganini/${PORTNAME}/tarball/${PORTVERSION}/ -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GITVERSION} +DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= GUI for bsdconv LICENSE= BSD -LIB_DEPENDS= tag_c.0:${PORTSDIR}/audio/taglib -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsdconv>=7.2:${PORTSDIR}/converters/py-bsdconv \ +LIB_DEPENDS= tag:${PORTSDIR}/audio/taglib +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsdconv>=8.0:${PORTSDIR}/converters/py-bsdconv \ ${LOCALBASE}/bin/g-ir-scanner:${PORTSDIR}/devel/gobject-introspection -GITVERSION= 22788c2 -FETCH_ARGS= -pRr -WRKSRC= ${WRKDIR}/buganini-${PORTNAME}-${GITVERSION} +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_COMMIT= ac7e05f -NO_BUILD= yes USE_GNOME= gtk30 USE_PYTHON= yes +USE_LDCONFIG= yes + +MAKE_ARGS= PREFIX=${PREFIX} + PLIST_FILES= bin/gbsdconv \ + lib/gbsdconv_taglib.so \ %%DATADIR%%/gbsdconv.png \ %%DATADIR%%/gbsdconv.xml \ %%DATADIR%%/gbsdconv2.png @@ -38,10 +36,4 @@ PLIST_DIRS= %%DATADIR%% post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/gbsdconv -do-install: - ${MKDIR} ${DATADIR}/ - cd ${WRKSRC}/ && \ - ${INSTALL_SCRIPT} gbsdconv ${PREFIX}/bin/ && \ - ${INSTALL_DATA} gbsdconv.png gbsdconv.xml gbsdconv2.png ${DATADIR}/ - .include Modified: head/converters/gbsdconv/distinfo ============================================================================== --- head/converters/gbsdconv/distinfo Mon Oct 8 16:17:25 2012 (r305544) +++ head/converters/gbsdconv/distinfo Mon Oct 8 16:22:29 2012 (r305545) @@ -1,2 +1,2 @@ -SHA256 (buganini-gbsdconv-0.4-0-g22788c2.tar.gz) = b6b736ba042d9e569479751b58c496a5b4e4f2035695c7e7d13813cba3799a90 -SIZE (buganini-gbsdconv-0.4-0-g22788c2.tar.gz) = 15107 +SHA256 (buganini-gbsdconv-1.0-0-gac7e05f.tar.gz) = 9172626f50db686c16b997ce99b88455fcd03e0d0331cf0fdadca11dce067e61 +SIZE (buganini-gbsdconv-1.0-0-gac7e05f.tar.gz) = 19724 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:42:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D123106566B; Mon, 8 Oct 2012 16:42:09 +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 BEE2C8FC0C; Mon, 8 Oct 2012 16:42:09 +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 q98Gg9fi035527; Mon, 8 Oct 2012 16:42:09 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98Gg9xM035525; Mon, 8 Oct 2012 16:42:09 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210081642.q98Gg9xM035525@svn.freebsd.org> From: Bryan Drewery Date: Mon, 8 Oct 2012 16:42:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305546 - head/sysutils/ntfsprogs X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:42:10 -0000 Author: bdrewery Date: Mon Oct 8 16:42:09 2012 New Revision: 305546 URL: http://svn.freebsd.org/changeset/ports/305546 Log: - Fix build when selecting GNOMEVFS2 option PR: ports/172453 Submitted by: Kurt Jaeger (based on) Modified: head/sysutils/ntfsprogs/Makefile Modified: head/sysutils/ntfsprogs/Makefile ============================================================================== --- head/sysutils/ntfsprogs/Makefile Mon Oct 8 16:22:29 2012 (r305545) +++ head/sysutils/ntfsprogs/Makefile Mon Oct 8 16:42:09 2012 (r305546) @@ -38,6 +38,12 @@ MLINKS= ntfsmount.8 mount_ntfs-fuse.8 SUB_FILES= pkg-message +.include + +.if ${PORT_OPTIONS:MGNOMEVFS2} +WANT_GNOME= yes +.endif + .include .if ${ARCH} == "i386" From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:45:12 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A37B106566B; Mon, 8 Oct 2012 16:45:12 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 316CB8FC1B; Mon, 8 Oct 2012 16:45: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 q98GjCnE036072; Mon, 8 Oct 2012 16:45:12 GMT (envelope-from adamw@svn.freebsd.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98GjBia036066; Mon, 8 Oct 2012 16:45:11 GMT (envelope-from adamw@svn.freebsd.org) Message-Id: <201210081645.q98GjBia036066@svn.freebsd.org> From: Adam Weinberger Date: Mon, 8 Oct 2012 16:45:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305547 - in head/mail: . squirrelmail-translations X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:45:12 -0000 Author: adamw Date: Mon Oct 8 16:45:11 2012 New Revision: 305547 URL: http://svn.freebsd.org/changeset/ports/305547 Log: Splitting the l10n/i18n package out from the Squirrelmail port. Added: head/mail/squirrelmail-translations/ head/mail/squirrelmail-translations/Makefile (contents, props changed) head/mail/squirrelmail-translations/distinfo (contents, props changed) head/mail/squirrelmail-translations/pkg-descr (contents, props changed) head/mail/squirrelmail-translations/pkg-plist (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Mon Oct 8 16:42:09 2012 (r305546) +++ head/mail/Makefile Mon Oct 8 16:45:11 2012 (r305547) @@ -696,6 +696,7 @@ SUBDIR += squirrelmail-squirrel_logger-plugin SUBDIR += squirrelmail-timeout_user-plugin SUBDIR += squirrelmail-tmda-plugin + SUBDIR += squirrelmail-translations SUBDIR += squirrelmail-unsafe_image_rules-plugin SUBDIR += squirrelmail-user_special_mailboxes-plugin SUBDIR += squirrelmail-vlogin-plugin Added: head/mail/squirrelmail-translations/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/squirrelmail-translations/Makefile Mon Oct 8 16:45:11 2012 (r305547) @@ -0,0 +1,39 @@ +# Whom: Adam Weinberger +# +# $FreeBSD$ +# + +PORTNAME= squirrelmail-translations +PORTVERSION= 1.4.18 # Translations updated less often than SM +CATEGORIES= mail www +MASTER_SITES= SF/squirrelmail/locales/${PORTVERSION}-${PORTDATE} +DISTNAME= all_locales-${PORTVERSION}-${PORTDATE} +DIST_SUBDIR= squirrelmail + +MAINTAINER= adamw@FreeBSD.org +COMMENT= NLS translations for Squirrelmail (mail/squirrelmail) + +RUN_DEPENDS= ${SQUIRRELDIR}/index.php:${PORTSDIR}/mail/squirrelmail + +PORTDATE= 20090526 + +USE_BZIP2= yes + +WRKSRC= ${WRKDIR} +NO_BUILD= yes + +# if you were using WITHOUT_WWWDIR, use SQUIRRELDIR=${PREFIX}/${PORTNAME} +SQUIRRELDIR?= ${PREFIX}/www/squirrelmail +PLIST_SUB= SQUIRRELDIR="${SQUIRRELDIR:S,^${PREFIX}/,,}" + +post-patch: +# The en_US help files are included with the main tarball + @${RM} -r ${WRKSRC}/help/en_US + +do-install: + ${MKDIR} ${SQUIRRELDIR} +.for DIR in help images locale + ${CP} -rp ${WRKSRC}/${DIR} ${SQUIRRELDIR} +.endfor + +.include Added: head/mail/squirrelmail-translations/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/squirrelmail-translations/distinfo Mon Oct 8 16:45:11 2012 (r305547) @@ -0,0 +1,2 @@ +SHA256 (squirrelmail/all_locales-1.4.18-20090526.tar.bz2) = b9198127084407950ad6158e030c76fdf9be5fd0d0abd69c606fb7757ae246c6 +SIZE (squirrelmail/all_locales-1.4.18-20090526.tar.bz2) = 3898341 Added: head/mail/squirrelmail-translations/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/squirrelmail-translations/pkg-descr Mon Oct 8 16:45:11 2012 (r305547) @@ -0,0 +1,3 @@ +The collection of l10n/i18n data files for Squirrelmail. + +WWW: http://www.squirrelmail.org/ Added: head/mail/squirrelmail-translations/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/squirrelmail-translations/pkg-plist Mon Oct 8 16:45:11 2012 (r305547) @@ -0,0 +1,1686 @@ +%%SQUIRRELDIR%%/help/bg_BG/FAQ.hlp +%%SQUIRRELDIR%%/help/bg_BG/addresses.hlp +%%SQUIRRELDIR%%/help/bg_BG/basic.hlp +%%SQUIRRELDIR%%/help/bg_BG/compose.hlp +%%SQUIRRELDIR%%/help/bg_BG/folders.hlp +%%SQUIRRELDIR%%/help/bg_BG/main_folder.hlp +%%SQUIRRELDIR%%/help/bg_BG/options.hlp +%%SQUIRRELDIR%%/help/bg_BG/read_mail.hlp +%%SQUIRRELDIR%%/help/bg_BG/search.hlp +%%SQUIRRELDIR%%/help/ca_ES/FAQ.hlp +%%SQUIRRELDIR%%/help/ca_ES/addresses.hlp +%%SQUIRRELDIR%%/help/ca_ES/basic.hlp +%%SQUIRRELDIR%%/help/ca_ES/compose.hlp +%%SQUIRRELDIR%%/help/ca_ES/folders.hlp +%%SQUIRRELDIR%%/help/ca_ES/main_folder.hlp +%%SQUIRRELDIR%%/help/ca_ES/options.hlp +%%SQUIRRELDIR%%/help/ca_ES/read_mail.hlp +%%SQUIRRELDIR%%/help/ca_ES/search.hlp +%%SQUIRRELDIR%%/help/cs_CZ/FAQ.hlp +%%SQUIRRELDIR%%/help/cs_CZ/addresses.hlp +%%SQUIRRELDIR%%/help/cs_CZ/basic.hlp +%%SQUIRRELDIR%%/help/cs_CZ/compose.hlp +%%SQUIRRELDIR%%/help/cs_CZ/folders.hlp +%%SQUIRRELDIR%%/help/cs_CZ/main_folder.hlp +%%SQUIRRELDIR%%/help/cs_CZ/options.hlp +%%SQUIRRELDIR%%/help/cs_CZ/read_mail.hlp +%%SQUIRRELDIR%%/help/cs_CZ/search.hlp +%%SQUIRRELDIR%%/help/cy_GB/FAQ.hlp +%%SQUIRRELDIR%%/help/cy_GB/addresses.hlp +%%SQUIRRELDIR%%/help/cy_GB/basic.hlp +%%SQUIRRELDIR%%/help/cy_GB/compose.hlp +%%SQUIRRELDIR%%/help/cy_GB/folders.hlp +%%SQUIRRELDIR%%/help/cy_GB/main_folder.hlp +%%SQUIRRELDIR%%/help/cy_GB/options.hlp +%%SQUIRRELDIR%%/help/cy_GB/read_mail.hlp +%%SQUIRRELDIR%%/help/cy_GB/search.hlp +%%SQUIRRELDIR%%/help/da_DK/FAQ.hlp +%%SQUIRRELDIR%%/help/da_DK/addresses.hlp +%%SQUIRRELDIR%%/help/da_DK/basic.hlp +%%SQUIRRELDIR%%/help/da_DK/compose.hlp +%%SQUIRRELDIR%%/help/da_DK/folders.hlp +%%SQUIRRELDIR%%/help/da_DK/main_folder.hlp +%%SQUIRRELDIR%%/help/da_DK/options.hlp +%%SQUIRRELDIR%%/help/da_DK/read_mail.hlp +%%SQUIRRELDIR%%/help/da_DK/search.hlp +%%SQUIRRELDIR%%/help/de_DE/FAQ.hlp +%%SQUIRRELDIR%%/help/de_DE/addresses.hlp +%%SQUIRRELDIR%%/help/de_DE/basic.hlp +%%SQUIRRELDIR%%/help/de_DE/compose.hlp +%%SQUIRRELDIR%%/help/de_DE/folders.hlp +%%SQUIRRELDIR%%/help/de_DE/main_folder.hlp +%%SQUIRRELDIR%%/help/de_DE/options.hlp +%%SQUIRRELDIR%%/help/de_DE/read_mail.hlp +%%SQUIRRELDIR%%/help/de_DE/search.hlp +%%SQUIRRELDIR%%/help/es_ES/FAQ.hlp +%%SQUIRRELDIR%%/help/es_ES/addresses.hlp +%%SQUIRRELDIR%%/help/es_ES/basic.hlp +%%SQUIRRELDIR%%/help/es_ES/compose.hlp +%%SQUIRRELDIR%%/help/es_ES/folders.hlp +%%SQUIRRELDIR%%/help/es_ES/main_folder.hlp +%%SQUIRRELDIR%%/help/es_ES/options.hlp +%%SQUIRRELDIR%%/help/es_ES/read_mail.hlp +%%SQUIRRELDIR%%/help/es_ES/search.hlp +%%SQUIRRELDIR%%/help/fa_IR/FAQ.hlp +%%SQUIRRELDIR%%/help/fa_IR/addresses.hlp +%%SQUIRRELDIR%%/help/fa_IR/basic.hlp +%%SQUIRRELDIR%%/help/fa_IR/compose.hlp +%%SQUIRRELDIR%%/help/fa_IR/folders.hlp +%%SQUIRRELDIR%%/help/fa_IR/main_folder.hlp +%%SQUIRRELDIR%%/help/fa_IR/options.hlp +%%SQUIRRELDIR%%/help/fa_IR/read_mail.hlp +%%SQUIRRELDIR%%/help/fa_IR/search.hlp +%%SQUIRRELDIR%%/help/fi_FI/FAQ.hlp +%%SQUIRRELDIR%%/help/fi_FI/addresses.hlp +%%SQUIRRELDIR%%/help/fi_FI/basic.hlp +%%SQUIRRELDIR%%/help/fi_FI/compose.hlp +%%SQUIRRELDIR%%/help/fi_FI/folders.hlp +%%SQUIRRELDIR%%/help/fi_FI/main_folder.hlp +%%SQUIRRELDIR%%/help/fi_FI/options.hlp +%%SQUIRRELDIR%%/help/fi_FI/read_mail.hlp +%%SQUIRRELDIR%%/help/fi_FI/search.hlp +%%SQUIRRELDIR%%/help/fr_FR/FAQ.hlp +%%SQUIRRELDIR%%/help/fr_FR/addresses.hlp +%%SQUIRRELDIR%%/help/fr_FR/basic.hlp +%%SQUIRRELDIR%%/help/fr_FR/compose.hlp +%%SQUIRRELDIR%%/help/fr_FR/folders.hlp +%%SQUIRRELDIR%%/help/fr_FR/main_folder.hlp +%%SQUIRRELDIR%%/help/fr_FR/options.hlp +%%SQUIRRELDIR%%/help/fr_FR/read_mail.hlp +%%SQUIRRELDIR%%/help/fr_FR/search.hlp +%%SQUIRRELDIR%%/help/id_ID/FAQ.hlp +%%SQUIRRELDIR%%/help/id_ID/addresses.hlp +%%SQUIRRELDIR%%/help/id_ID/basic.hlp +%%SQUIRRELDIR%%/help/id_ID/compose.hlp +%%SQUIRRELDIR%%/help/id_ID/folders.hlp +%%SQUIRRELDIR%%/help/id_ID/main_folder.hlp +%%SQUIRRELDIR%%/help/id_ID/options.hlp +%%SQUIRRELDIR%%/help/id_ID/read_mail.hlp +%%SQUIRRELDIR%%/help/id_ID/search.hlp +%%SQUIRRELDIR%%/help/it_IT/FAQ.hlp +%%SQUIRRELDIR%%/help/it_IT/addresses.hlp +%%SQUIRRELDIR%%/help/it_IT/basic.hlp +%%SQUIRRELDIR%%/help/it_IT/compose.hlp +%%SQUIRRELDIR%%/help/it_IT/folders.hlp +%%SQUIRRELDIR%%/help/it_IT/main_folder.hlp +%%SQUIRRELDIR%%/help/it_IT/options.hlp +%%SQUIRRELDIR%%/help/it_IT/read_mail.hlp +%%SQUIRRELDIR%%/help/it_IT/search.hlp +%%SQUIRRELDIR%%/help/ja_JP/FAQ.hlp +%%SQUIRRELDIR%%/help/ja_JP/addresses.hlp +%%SQUIRRELDIR%%/help/ja_JP/basic.hlp +%%SQUIRRELDIR%%/help/ja_JP/compose.hlp +%%SQUIRRELDIR%%/help/ja_JP/folders.hlp +%%SQUIRRELDIR%%/help/ja_JP/main_folder.hlp +%%SQUIRRELDIR%%/help/ja_JP/options.hlp +%%SQUIRRELDIR%%/help/ja_JP/read_mail.hlp +%%SQUIRRELDIR%%/help/ja_JP/search.hlp +%%SQUIRRELDIR%%/help/ko_KR/FAQ.hlp +%%SQUIRRELDIR%%/help/ko_KR/addresses.hlp +%%SQUIRRELDIR%%/help/ko_KR/basic.hlp +%%SQUIRRELDIR%%/help/ko_KR/compose.hlp +%%SQUIRRELDIR%%/help/ko_KR/folders.hlp +%%SQUIRRELDIR%%/help/ko_KR/main_folder.hlp +%%SQUIRRELDIR%%/help/ko_KR/options.hlp +%%SQUIRRELDIR%%/help/ko_KR/read_mail.hlp +%%SQUIRRELDIR%%/help/ko_KR/search.hlp +%%SQUIRRELDIR%%/help/lt_LT/FAQ.hlp +%%SQUIRRELDIR%%/help/lt_LT/addresses.hlp +%%SQUIRRELDIR%%/help/lt_LT/basic.hlp +%%SQUIRRELDIR%%/help/lt_LT/compose.hlp +%%SQUIRRELDIR%%/help/lt_LT/folders.hlp +%%SQUIRRELDIR%%/help/lt_LT/main_folder.hlp +%%SQUIRRELDIR%%/help/lt_LT/options.hlp +%%SQUIRRELDIR%%/help/lt_LT/read_mail.hlp +%%SQUIRRELDIR%%/help/lt_LT/search.hlp +%%SQUIRRELDIR%%/help/nl_NL/FAQ.hlp +%%SQUIRRELDIR%%/help/nl_NL/addresses.hlp +%%SQUIRRELDIR%%/help/nl_NL/basic.hlp +%%SQUIRRELDIR%%/help/nl_NL/compose.hlp +%%SQUIRRELDIR%%/help/nl_NL/folders.hlp +%%SQUIRRELDIR%%/help/nl_NL/main_folder.hlp +%%SQUIRRELDIR%%/help/nl_NL/options.hlp +%%SQUIRRELDIR%%/help/nl_NL/read_mail.hlp +%%SQUIRRELDIR%%/help/nl_NL/search.hlp +%%SQUIRRELDIR%%/help/pl_PL/FAQ.hlp +%%SQUIRRELDIR%%/help/pl_PL/addresses.hlp +%%SQUIRRELDIR%%/help/pl_PL/basic.hlp +%%SQUIRRELDIR%%/help/pl_PL/compose.hlp +%%SQUIRRELDIR%%/help/pl_PL/folders.hlp +%%SQUIRRELDIR%%/help/pl_PL/main_folder.hlp +%%SQUIRRELDIR%%/help/pl_PL/options.hlp +%%SQUIRRELDIR%%/help/pl_PL/read_mail.hlp +%%SQUIRRELDIR%%/help/pl_PL/search.hlp +%%SQUIRRELDIR%%/help/pt_BR/FAQ.hlp +%%SQUIRRELDIR%%/help/pt_BR/addresses.hlp +%%SQUIRRELDIR%%/help/pt_BR/basic.hlp +%%SQUIRRELDIR%%/help/pt_BR/compose.hlp +%%SQUIRRELDIR%%/help/pt_BR/folders.hlp +%%SQUIRRELDIR%%/help/pt_BR/main_folder.hlp +%%SQUIRRELDIR%%/help/pt_BR/options.hlp +%%SQUIRRELDIR%%/help/pt_BR/read_mail.hlp +%%SQUIRRELDIR%%/help/pt_BR/search.hlp +%%SQUIRRELDIR%%/help/pt_PT/FAQ.hlp +%%SQUIRRELDIR%%/help/pt_PT/addresses.hlp +%%SQUIRRELDIR%%/help/pt_PT/basic.hlp +%%SQUIRRELDIR%%/help/pt_PT/compose.hlp +%%SQUIRRELDIR%%/help/pt_PT/folders.hlp +%%SQUIRRELDIR%%/help/pt_PT/main_folder.hlp +%%SQUIRRELDIR%%/help/pt_PT/options.hlp +%%SQUIRRELDIR%%/help/pt_PT/read_mail.hlp +%%SQUIRRELDIR%%/help/pt_PT/search.hlp +%%SQUIRRELDIR%%/help/ru_RU/FAQ.hlp +%%SQUIRRELDIR%%/help/ru_RU/addresses.hlp +%%SQUIRRELDIR%%/help/ru_RU/basic.hlp +%%SQUIRRELDIR%%/help/ru_RU/compose.hlp +%%SQUIRRELDIR%%/help/ru_RU/folders.hlp +%%SQUIRRELDIR%%/help/ru_RU/main_folder.hlp +%%SQUIRRELDIR%%/help/ru_RU/options.hlp +%%SQUIRRELDIR%%/help/ru_RU/read_mail.hlp +%%SQUIRRELDIR%%/help/ru_RU/search.hlp +%%SQUIRRELDIR%%/help/sk_SK/FAQ.hlp +%%SQUIRRELDIR%%/help/sk_SK/addresses.hlp +%%SQUIRRELDIR%%/help/sk_SK/basic.hlp +%%SQUIRRELDIR%%/help/sk_SK/compose.hlp +%%SQUIRRELDIR%%/help/sk_SK/folders.hlp +%%SQUIRRELDIR%%/help/sk_SK/main_folder.hlp +%%SQUIRRELDIR%%/help/sk_SK/options.hlp +%%SQUIRRELDIR%%/help/sk_SK/read_mail.hlp +%%SQUIRRELDIR%%/help/sk_SK/search.hlp +%%SQUIRRELDIR%%/help/sl_SI/FAQ.hlp +%%SQUIRRELDIR%%/help/sl_SI/addresses.hlp +%%SQUIRRELDIR%%/help/sl_SI/basic.hlp +%%SQUIRRELDIR%%/help/sl_SI/compose.hlp +%%SQUIRRELDIR%%/help/sl_SI/folders.hlp +%%SQUIRRELDIR%%/help/sl_SI/main_folder.hlp +%%SQUIRRELDIR%%/help/sl_SI/options.hlp +%%SQUIRRELDIR%%/help/sl_SI/read_mail.hlp +%%SQUIRRELDIR%%/help/sl_SI/search.hlp +%%SQUIRRELDIR%%/help/sr_YU/FAQ.hlp +%%SQUIRRELDIR%%/help/sr_YU/addresses.hlp +%%SQUIRRELDIR%%/help/sr_YU/basic.hlp +%%SQUIRRELDIR%%/help/sr_YU/compose.hlp +%%SQUIRRELDIR%%/help/sr_YU/folders.hlp +%%SQUIRRELDIR%%/help/sr_YU/main_folder.hlp +%%SQUIRRELDIR%%/help/sr_YU/options.hlp +%%SQUIRRELDIR%%/help/sr_YU/read_mail.hlp +%%SQUIRRELDIR%%/help/sr_YU/search.hlp +%%SQUIRRELDIR%%/help/sv_SE/FAQ.hlp +%%SQUIRRELDIR%%/help/sv_SE/addresses.hlp +%%SQUIRRELDIR%%/help/sv_SE/basic.hlp +%%SQUIRRELDIR%%/help/sv_SE/compose.hlp +%%SQUIRRELDIR%%/help/sv_SE/folders.hlp +%%SQUIRRELDIR%%/help/sv_SE/main_folder.hlp +%%SQUIRRELDIR%%/help/sv_SE/options.hlp +%%SQUIRRELDIR%%/help/sv_SE/read_mail.hlp +%%SQUIRRELDIR%%/help/sv_SE/search.hlp +%%SQUIRRELDIR%%/help/uk_UA/FAQ.hlp +%%SQUIRRELDIR%%/help/uk_UA/addresses.hlp +%%SQUIRRELDIR%%/help/uk_UA/basic.hlp +%%SQUIRRELDIR%%/help/uk_UA/compose.hlp +%%SQUIRRELDIR%%/help/uk_UA/folders.hlp +%%SQUIRRELDIR%%/help/uk_UA/main_folder.hlp +%%SQUIRRELDIR%%/help/uk_UA/options.hlp +%%SQUIRRELDIR%%/help/uk_UA/read_mail.hlp +%%SQUIRRELDIR%%/help/uk_UA/search.hlp +%%SQUIRRELDIR%%/help/zh_CN/FAQ.hlp +%%SQUIRRELDIR%%/help/zh_CN/addresses.hlp +%%SQUIRRELDIR%%/help/zh_CN/basic.hlp +%%SQUIRRELDIR%%/help/zh_CN/compose.hlp +%%SQUIRRELDIR%%/help/zh_CN/folders.hlp +%%SQUIRRELDIR%%/help/zh_CN/main_folder.hlp +%%SQUIRRELDIR%%/help/zh_CN/options.hlp +%%SQUIRRELDIR%%/help/zh_CN/read_mail.hlp +%%SQUIRRELDIR%%/help/zh_CN/search.hlp +%%SQUIRRELDIR%%/images/sec_remove_bn_BD.png +%%SQUIRRELDIR%%/images/sec_remove_bn_IN.png +%%SQUIRRELDIR%%/images/sec_remove_cs_CZ.png +%%SQUIRRELDIR%%/images/sec_remove_da_DK.png +%%SQUIRRELDIR%%/images/sec_remove_de_DE.png +%%SQUIRRELDIR%%/images/sec_remove_el_GR.png +%%SQUIRRELDIR%%/images/sec_remove_es_ES.png +%%SQUIRRELDIR%%/images/sec_remove_et_EE.png +%%SQUIRRELDIR%%/images/sec_remove_fi_FI.png +%%SQUIRRELDIR%%/images/sec_remove_fo_FO.png +%%SQUIRRELDIR%%/images/sec_remove_fr_FR.png +%%SQUIRRELDIR%%/images/sec_remove_fy.png +%%SQUIRRELDIR%%/images/sec_remove_he_IL.png +%%SQUIRRELDIR%%/images/sec_remove_hr_HR.png +%%SQUIRRELDIR%%/images/sec_remove_hu_HU.png +%%SQUIRRELDIR%%/images/sec_remove_id_ID.png +%%SQUIRRELDIR%%/images/sec_remove_it_IT.png +%%SQUIRRELDIR%%/images/sec_remove_ja_JP.png +%%SQUIRRELDIR%%/images/sec_remove_km.png +%%SQUIRRELDIR%%/images/sec_remove_ko_KR.png +%%SQUIRRELDIR%%/images/sec_remove_lt_LT.png +%%SQUIRRELDIR%%/images/sec_remove_nb_NO.png +%%SQUIRRELDIR%%/images/sec_remove_nl_NL.png +%%SQUIRRELDIR%%/images/sec_remove_nn_NO.png +%%SQUIRRELDIR%%/images/sec_remove_pt_BR.png +%%SQUIRRELDIR%%/images/sec_remove_pt_PT.png +%%SQUIRRELDIR%%/images/sec_remove_ru_RU.png +%%SQUIRRELDIR%%/images/sec_remove_sk_SK.png +%%SQUIRRELDIR%%/images/sec_remove_sl_SI.png +%%SQUIRRELDIR%%/images/sec_remove_sr_YU.png +%%SQUIRRELDIR%%/images/sec_remove_sv_SE.png +%%SQUIRRELDIR%%/images/sec_remove_ta_LK.png +%%SQUIRRELDIR%%/images/sec_remove_tr_TR.png +%%SQUIRRELDIR%%/images/sec_remove_ug.png +%%SQUIRRELDIR%%/images/sec_remove_uk_UA.png +%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ar/setup.php +%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/bg_BG/setup.php +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/advanced_settings.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/advanced_settings.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/captcha.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/captcha.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/censor.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/censor.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compose_fix.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compose_fix.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/contactclean.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/contactclean.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/expire.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/expire.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_settings.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_settings.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/forum.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/forum.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/japanese_input.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/japanese_input.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/local_autorespond_forward.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/local_autorespond_forward.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/lockout.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/lockout.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/login_alias.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/login_alias.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mark_read.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mark_read.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mini.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mini.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/msg_flags.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/msg_flags.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/multilogin.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/multilogin.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/naguser.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/naguser.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/newuser_wiz.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/newuser_wiz.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/proon.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/proon.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/qmailadmin_login.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/qmailadmin_login.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/quicksave.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/quicksave.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/restrict_senders.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/restrict_senders.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/rootly_news.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/rootly_news.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/same_ip.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/same_ip.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/templates.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/templates.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/verify_reply_to.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/verify_reply_to.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/web_search.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/web_search.po +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/bn_BD/setup.php +%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/bn_IN/setup.php +%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ca_ES/setup.php +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/local_autorespond_forward.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/local_autorespond_forward.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/msg_flags.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/msg_flags.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/cs_CZ/setup.php +%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/cy_GB/setup.php +%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/da_DK/setup.php +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/japanese_input.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/japanese_input.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/local_autorespond_forward.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/local_autorespond_forward.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/mark_read.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/mark_read.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/newuser_wiz.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/newuser_wiz.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.mo +%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.po +%%SQUIRRELDIR%%/locale/de_DE/setup.php +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/el_GR/setup.php +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/contactclean.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/contactclean.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/locale/es_ES/setup.php +%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/et_EE/setup.php +%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/eu_ES/setup.php +%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/captcha.mo +%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/captcha.po +%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/qmailadmin_login.mo +%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/qmailadmin_login.po +%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fa_IR/setup.php +%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fi_FI/setup.php +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fo_FO/setup.php +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/mark_read.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/mark_read.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/quicksave.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/quicksave.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/fr_FR/setup.php +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/advanced_settings.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/advanced_settings.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compose_fix.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compose_fix.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/contactclean.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/contactclean.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/expire.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/expire.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_settings.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_settings.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/forum.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/forum.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/login_alias.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/login_alias.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mark_read.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mark_read.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mini.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mini.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/multilogin.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/multilogin.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/naguser.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/naguser.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/newuser_wiz.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/newuser_wiz.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/proon.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/proon.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/qmailadmin_login.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/qmailadmin_login.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/quicksave.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/quicksave.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/restrict_senders.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/restrict_senders.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/templates.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/templates.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/verify_reply_to.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/verify_reply_to.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/web_search.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/web_search.po +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/fy/setup.php +%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/he_IL/setup.php +%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/hr_HR/setup.php +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/local_autorespond_forward.mo +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/local_autorespond_forward.po +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/hu_HU/setup.php +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/id_ID/setup.php +%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/is_IS/setup.php +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/advanced_settings.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/advanced_settings.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/captcha.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/captcha.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/censor.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/censor.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compose_fix.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compose_fix.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/contactclean.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/contactclean.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/expire.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/expire.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_settings.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_settings.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/forum.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/forum.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/japanese_input.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/japanese_input.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/local_autorespond_forward.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/local_autorespond_forward.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/lockout.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/lockout.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/multilogin.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/multilogin.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/newuser_wiz.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/newuser_wiz.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/it_IT/setup.php +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.mo +%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.po +%%SQUIRRELDIR%%/locale/ja_JP/setup.php +%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ka/setup.php +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/advanced_settings.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/advanced_settings.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/archive_mail.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/archive_mail.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/askuserinfo.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/askuserinfo.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/calendar.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/calendar.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/captcha.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/captcha.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/censor.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/censor.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_sqlpass.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_sqlpass.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/check_quota.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/check_quota.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compatibility.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compatibility.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compose_fix.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compose_fix.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/contactclean.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/contactclean.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/cookie_warning.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/cookie_warning.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/custom_charset.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/custom_charset.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/debugger.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/debugger.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/empty_folders.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/empty_folders.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/expire.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/expire.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_settings.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_settings.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_sizes.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_sizes.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/forum.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/forum.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/html_mail.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/html_mail.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/japanese_input.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/japanese_input.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/ldapquery.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/ldapquery.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/limit_languages.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/limit_languages.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/local_autorespond_forward.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/local_autorespond_forward.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/lockout.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/lockout.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/login_alias.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/login_alias.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mark_read.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mark_read.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mini.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mini.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/msg_flags.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/msg_flags.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/multilogin.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/multilogin.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/naguser.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/naguser.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/newuser_wiz.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/newuser_wiz.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/proon.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/proon.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/qmailadmin_login.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/qmailadmin_login.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/quicksave.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/quicksave.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/reply_buttons.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/reply_buttons.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/restrict_senders.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/restrict_senders.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/rootly_news.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/rootly_news.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/same_ip.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/same_ip.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/sasql.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/sasql.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/select_language.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/select_language.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/serversidefilter.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/serversidefilter.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/show_ssl_link.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/show_ssl_link.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/smallcal.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/smallcal.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/spam_buttons.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/spam_buttons.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrel_logger.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrel_logger.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/templates.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/templates.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/unsafe_image_rules.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/unsafe_image_rules.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vacation_local.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vacation_local.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/verify_reply_to.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/verify_reply_to.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vkeyboard.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vkeyboard.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/web_search.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/web_search.po +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/yelp.mo +%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/yelp.po +%%SQUIRRELDIR%%/locale/km/setup.php +%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/change_pass.mo +%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/change_pass.po +%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.mo +%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.po +%%SQUIRRELDIR%%/locale/ko_KR/setup.php +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.mo +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.po +%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/advanced_settings.mo *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:47:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 11EE7106566B; Mon, 8 Oct 2012 16:47:10 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EDC4C8FC14; Mon, 8 Oct 2012 16:47:09 +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 q98Gl9Mt036399; Mon, 8 Oct 2012 16:47:09 GMT (envelope-from adamw@svn.freebsd.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98Gl9Zg036395; Mon, 8 Oct 2012 16:47:09 GMT (envelope-from adamw@svn.freebsd.org) Message-Id: <201210081647.q98Gl9Zg036395@svn.freebsd.org> From: Adam Weinberger Date: Mon, 8 Oct 2012 16:47:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305548 - head/mail/squirrelmail X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:47:10 -0000 Author: adamw Date: Mon Oct 8 16:47:09 2012 New Revision: 305548 URL: http://svn.freebsd.org/changeset/ports/305548 Log: The l10n/i18n package has been separated, and now lives in mail/squirrelmail-translations. Modified: head/mail/squirrelmail/Makefile head/mail/squirrelmail/distinfo head/mail/squirrelmail/pkg-plist Modified: head/mail/squirrelmail/Makefile ============================================================================== --- head/mail/squirrelmail/Makefile Mon Oct 8 16:45:11 2012 (r305547) +++ head/mail/squirrelmail/Makefile Mon Oct 8 16:47:09 2012 (r305548) @@ -7,12 +7,10 @@ PORTNAME= squirrelmail PORTVERSION= 1.4.22 +PORTREVISION= 1 CATEGORIES= mail www -MASTER_SITES= SF/${PORTNAME}/stable/${PORTVERSION:S/.r/-RC/}:squirrelmail \ - SF/${PORTNAME}/locales/1.4.18-20090526:locales -DISTNAME= ${PORTNAME}-webmail-${PORTVERSION:S/.r/-RC/} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:squirrelmail \ - all_locales-1.4.18-20090526${EXTRACT_SUFX}:locales +MASTER_SITES= SF/${PORTNAME}/stable/${PORTVERSION} +DISTNAME= ${PORTNAME}-webmail-${PORTVERSION} DIST_SUBDIR= ${PORTNAME} MAINTAINER= adamw@FreeBSD.org @@ -96,9 +94,6 @@ do-build: ${RM} -f doc/plugins/squirrelspell/index.php ; \ ${RM} -rf plugins/squirrelspell/doc @${ECHO} "left_refresh=300" >> ${WRKSRC}/data/default_pref - @${CP} -r ${WRKSRC}/../locale ${WRKSRC} - @${CP} -r ${WRKSRC}/../images ${WRKSRC} - @${CP} -r ${WRKSRC}/../help ${WRKSRC} @${MV} ${WRKSRC}/config/config_local.php ${WRKSRC}/config/config_local.php.sample pre-install: Modified: head/mail/squirrelmail/distinfo ============================================================================== --- head/mail/squirrelmail/distinfo Mon Oct 8 16:45:11 2012 (r305547) +++ head/mail/squirrelmail/distinfo Mon Oct 8 16:47:09 2012 (r305548) @@ -1,4 +1,2 @@ SHA256 (squirrelmail/squirrelmail-webmail-1.4.22.tar.bz2) = 2231578d0f9abeae52bc4e461a6773d78762f20a27e1e2fbebc1a11ccd1af877 SIZE (squirrelmail/squirrelmail-webmail-1.4.22.tar.bz2) = 531360 -SHA256 (squirrelmail/all_locales-1.4.18-20090526.tar.bz2) = b9198127084407950ad6158e030c76fdf9be5fd0d0abd69c606fb7757ae246c6 -SIZE (squirrelmail/all_locales-1.4.18-20090526.tar.bz2) = 3898341 Modified: head/mail/squirrelmail/pkg-plist ============================================================================== --- head/mail/squirrelmail/pkg-plist Mon Oct 8 16:45:11 2012 (r305547) +++ head/mail/squirrelmail/pkg-plist Mon Oct 8 16:47:09 2012 (r305548) @@ -112,60 +112,6 @@ etc/periodic/daily/111.clean-squirrelmai %%SQUIRRELDIR%%/functions/tree.php %%SQUIRRELDIR%%/functions/url_parser.php %%SQUIRRELDIR%%/help/.htaccess -%%SQUIRRELDIR%%/help/bg_BG/FAQ.hlp -%%SQUIRRELDIR%%/help/bg_BG/addresses.hlp -%%SQUIRRELDIR%%/help/bg_BG/basic.hlp -%%SQUIRRELDIR%%/help/bg_BG/compose.hlp -%%SQUIRRELDIR%%/help/bg_BG/folders.hlp -%%SQUIRRELDIR%%/help/bg_BG/main_folder.hlp -%%SQUIRRELDIR%%/help/bg_BG/options.hlp -%%SQUIRRELDIR%%/help/bg_BG/read_mail.hlp -%%SQUIRRELDIR%%/help/bg_BG/search.hlp -%%SQUIRRELDIR%%/help/ca_ES/FAQ.hlp -%%SQUIRRELDIR%%/help/ca_ES/addresses.hlp -%%SQUIRRELDIR%%/help/ca_ES/basic.hlp -%%SQUIRRELDIR%%/help/ca_ES/compose.hlp -%%SQUIRRELDIR%%/help/ca_ES/folders.hlp -%%SQUIRRELDIR%%/help/ca_ES/main_folder.hlp -%%SQUIRRELDIR%%/help/ca_ES/options.hlp -%%SQUIRRELDIR%%/help/ca_ES/read_mail.hlp -%%SQUIRRELDIR%%/help/ca_ES/search.hlp -%%SQUIRRELDIR%%/help/cs_CZ/FAQ.hlp -%%SQUIRRELDIR%%/help/cs_CZ/addresses.hlp -%%SQUIRRELDIR%%/help/cs_CZ/basic.hlp -%%SQUIRRELDIR%%/help/cs_CZ/compose.hlp -%%SQUIRRELDIR%%/help/cs_CZ/folders.hlp -%%SQUIRRELDIR%%/help/cs_CZ/main_folder.hlp -%%SQUIRRELDIR%%/help/cs_CZ/options.hlp -%%SQUIRRELDIR%%/help/cs_CZ/read_mail.hlp -%%SQUIRRELDIR%%/help/cs_CZ/search.hlp -%%SQUIRRELDIR%%/help/cy_GB/FAQ.hlp -%%SQUIRRELDIR%%/help/cy_GB/addresses.hlp -%%SQUIRRELDIR%%/help/cy_GB/basic.hlp -%%SQUIRRELDIR%%/help/cy_GB/compose.hlp -%%SQUIRRELDIR%%/help/cy_GB/folders.hlp -%%SQUIRRELDIR%%/help/cy_GB/main_folder.hlp -%%SQUIRRELDIR%%/help/cy_GB/options.hlp -%%SQUIRRELDIR%%/help/cy_GB/read_mail.hlp -%%SQUIRRELDIR%%/help/cy_GB/search.hlp -%%SQUIRRELDIR%%/help/da_DK/FAQ.hlp -%%SQUIRRELDIR%%/help/da_DK/addresses.hlp -%%SQUIRRELDIR%%/help/da_DK/basic.hlp -%%SQUIRRELDIR%%/help/da_DK/compose.hlp -%%SQUIRRELDIR%%/help/da_DK/folders.hlp -%%SQUIRRELDIR%%/help/da_DK/main_folder.hlp -%%SQUIRRELDIR%%/help/da_DK/options.hlp -%%SQUIRRELDIR%%/help/da_DK/read_mail.hlp -%%SQUIRRELDIR%%/help/da_DK/search.hlp -%%SQUIRRELDIR%%/help/de_DE/FAQ.hlp -%%SQUIRRELDIR%%/help/de_DE/addresses.hlp -%%SQUIRRELDIR%%/help/de_DE/basic.hlp -%%SQUIRRELDIR%%/help/de_DE/compose.hlp -%%SQUIRRELDIR%%/help/de_DE/folders.hlp -%%SQUIRRELDIR%%/help/de_DE/main_folder.hlp -%%SQUIRRELDIR%%/help/de_DE/options.hlp -%%SQUIRRELDIR%%/help/de_DE/read_mail.hlp -%%SQUIRRELDIR%%/help/de_DE/search.hlp %%SQUIRRELDIR%%/help/en_US/FAQ.hlp %%SQUIRRELDIR%%/help/en_US/addresses.hlp %%SQUIRRELDIR%%/help/en_US/basic.hlp @@ -175,187 +121,7 @@ etc/periodic/daily/111.clean-squirrelmai %%SQUIRRELDIR%%/help/en_US/options.hlp %%SQUIRRELDIR%%/help/en_US/read_mail.hlp %%SQUIRRELDIR%%/help/en_US/search.hlp -%%SQUIRRELDIR%%/help/es_ES/FAQ.hlp -%%SQUIRRELDIR%%/help/es_ES/addresses.hlp -%%SQUIRRELDIR%%/help/es_ES/basic.hlp -%%SQUIRRELDIR%%/help/es_ES/compose.hlp -%%SQUIRRELDIR%%/help/es_ES/folders.hlp -%%SQUIRRELDIR%%/help/es_ES/main_folder.hlp -%%SQUIRRELDIR%%/help/es_ES/options.hlp -%%SQUIRRELDIR%%/help/es_ES/read_mail.hlp -%%SQUIRRELDIR%%/help/es_ES/search.hlp -%%SQUIRRELDIR%%/help/fa_IR/FAQ.hlp -%%SQUIRRELDIR%%/help/fa_IR/addresses.hlp -%%SQUIRRELDIR%%/help/fa_IR/basic.hlp -%%SQUIRRELDIR%%/help/fa_IR/compose.hlp -%%SQUIRRELDIR%%/help/fa_IR/folders.hlp -%%SQUIRRELDIR%%/help/fa_IR/main_folder.hlp -%%SQUIRRELDIR%%/help/fa_IR/options.hlp -%%SQUIRRELDIR%%/help/fa_IR/read_mail.hlp -%%SQUIRRELDIR%%/help/fa_IR/search.hlp -%%SQUIRRELDIR%%/help/fi_FI/FAQ.hlp -%%SQUIRRELDIR%%/help/fi_FI/addresses.hlp -%%SQUIRRELDIR%%/help/fi_FI/basic.hlp -%%SQUIRRELDIR%%/help/fi_FI/compose.hlp -%%SQUIRRELDIR%%/help/fi_FI/folders.hlp -%%SQUIRRELDIR%%/help/fi_FI/main_folder.hlp -%%SQUIRRELDIR%%/help/fi_FI/options.hlp -%%SQUIRRELDIR%%/help/fi_FI/read_mail.hlp -%%SQUIRRELDIR%%/help/fi_FI/search.hlp -%%SQUIRRELDIR%%/help/fr_FR/FAQ.hlp -%%SQUIRRELDIR%%/help/fr_FR/addresses.hlp -%%SQUIRRELDIR%%/help/fr_FR/basic.hlp -%%SQUIRRELDIR%%/help/fr_FR/compose.hlp -%%SQUIRRELDIR%%/help/fr_FR/folders.hlp -%%SQUIRRELDIR%%/help/fr_FR/main_folder.hlp -%%SQUIRRELDIR%%/help/fr_FR/options.hlp -%%SQUIRRELDIR%%/help/fr_FR/read_mail.hlp -%%SQUIRRELDIR%%/help/fr_FR/search.hlp -%%SQUIRRELDIR%%/help/id_ID/FAQ.hlp -%%SQUIRRELDIR%%/help/id_ID/addresses.hlp -%%SQUIRRELDIR%%/help/id_ID/basic.hlp -%%SQUIRRELDIR%%/help/id_ID/compose.hlp -%%SQUIRRELDIR%%/help/id_ID/folders.hlp -%%SQUIRRELDIR%%/help/id_ID/main_folder.hlp -%%SQUIRRELDIR%%/help/id_ID/options.hlp -%%SQUIRRELDIR%%/help/id_ID/read_mail.hlp -%%SQUIRRELDIR%%/help/id_ID/search.hlp %%SQUIRRELDIR%%/help/index.php -%%SQUIRRELDIR%%/help/it_IT/FAQ.hlp -%%SQUIRRELDIR%%/help/it_IT/addresses.hlp -%%SQUIRRELDIR%%/help/it_IT/basic.hlp -%%SQUIRRELDIR%%/help/it_IT/compose.hlp -%%SQUIRRELDIR%%/help/it_IT/folders.hlp -%%SQUIRRELDIR%%/help/it_IT/main_folder.hlp -%%SQUIRRELDIR%%/help/it_IT/options.hlp -%%SQUIRRELDIR%%/help/it_IT/read_mail.hlp -%%SQUIRRELDIR%%/help/it_IT/search.hlp -%%SQUIRRELDIR%%/help/ja_JP/FAQ.hlp -%%SQUIRRELDIR%%/help/ja_JP/addresses.hlp -%%SQUIRRELDIR%%/help/ja_JP/basic.hlp -%%SQUIRRELDIR%%/help/ja_JP/compose.hlp -%%SQUIRRELDIR%%/help/ja_JP/folders.hlp -%%SQUIRRELDIR%%/help/ja_JP/main_folder.hlp -%%SQUIRRELDIR%%/help/ja_JP/options.hlp -%%SQUIRRELDIR%%/help/ja_JP/read_mail.hlp -%%SQUIRRELDIR%%/help/ja_JP/search.hlp -%%SQUIRRELDIR%%/help/ko_KR/FAQ.hlp -%%SQUIRRELDIR%%/help/ko_KR/addresses.hlp -%%SQUIRRELDIR%%/help/ko_KR/basic.hlp -%%SQUIRRELDIR%%/help/ko_KR/compose.hlp -%%SQUIRRELDIR%%/help/ko_KR/folders.hlp -%%SQUIRRELDIR%%/help/ko_KR/main_folder.hlp -%%SQUIRRELDIR%%/help/ko_KR/options.hlp -%%SQUIRRELDIR%%/help/ko_KR/read_mail.hlp -%%SQUIRRELDIR%%/help/ko_KR/search.hlp -%%SQUIRRELDIR%%/help/lt_LT/FAQ.hlp -%%SQUIRRELDIR%%/help/lt_LT/addresses.hlp -%%SQUIRRELDIR%%/help/lt_LT/basic.hlp -%%SQUIRRELDIR%%/help/lt_LT/compose.hlp -%%SQUIRRELDIR%%/help/lt_LT/folders.hlp -%%SQUIRRELDIR%%/help/lt_LT/main_folder.hlp -%%SQUIRRELDIR%%/help/lt_LT/options.hlp -%%SQUIRRELDIR%%/help/lt_LT/read_mail.hlp -%%SQUIRRELDIR%%/help/lt_LT/search.hlp -%%SQUIRRELDIR%%/help/nl_NL/FAQ.hlp -%%SQUIRRELDIR%%/help/nl_NL/addresses.hlp -%%SQUIRRELDIR%%/help/nl_NL/basic.hlp -%%SQUIRRELDIR%%/help/nl_NL/compose.hlp -%%SQUIRRELDIR%%/help/nl_NL/folders.hlp -%%SQUIRRELDIR%%/help/nl_NL/main_folder.hlp -%%SQUIRRELDIR%%/help/nl_NL/options.hlp -%%SQUIRRELDIR%%/help/nl_NL/read_mail.hlp -%%SQUIRRELDIR%%/help/nl_NL/search.hlp -%%SQUIRRELDIR%%/help/pl_PL/FAQ.hlp -%%SQUIRRELDIR%%/help/pl_PL/addresses.hlp -%%SQUIRRELDIR%%/help/pl_PL/basic.hlp -%%SQUIRRELDIR%%/help/pl_PL/compose.hlp -%%SQUIRRELDIR%%/help/pl_PL/folders.hlp -%%SQUIRRELDIR%%/help/pl_PL/main_folder.hlp -%%SQUIRRELDIR%%/help/pl_PL/options.hlp -%%SQUIRRELDIR%%/help/pl_PL/read_mail.hlp -%%SQUIRRELDIR%%/help/pl_PL/search.hlp -%%SQUIRRELDIR%%/help/pt_BR/FAQ.hlp -%%SQUIRRELDIR%%/help/pt_BR/addresses.hlp -%%SQUIRRELDIR%%/help/pt_BR/basic.hlp -%%SQUIRRELDIR%%/help/pt_BR/compose.hlp -%%SQUIRRELDIR%%/help/pt_BR/folders.hlp -%%SQUIRRELDIR%%/help/pt_BR/main_folder.hlp -%%SQUIRRELDIR%%/help/pt_BR/options.hlp -%%SQUIRRELDIR%%/help/pt_BR/read_mail.hlp -%%SQUIRRELDIR%%/help/pt_BR/search.hlp -%%SQUIRRELDIR%%/help/pt_PT/FAQ.hlp -%%SQUIRRELDIR%%/help/pt_PT/addresses.hlp -%%SQUIRRELDIR%%/help/pt_PT/basic.hlp -%%SQUIRRELDIR%%/help/pt_PT/compose.hlp -%%SQUIRRELDIR%%/help/pt_PT/folders.hlp -%%SQUIRRELDIR%%/help/pt_PT/main_folder.hlp -%%SQUIRRELDIR%%/help/pt_PT/options.hlp -%%SQUIRRELDIR%%/help/pt_PT/read_mail.hlp -%%SQUIRRELDIR%%/help/pt_PT/search.hlp -%%SQUIRRELDIR%%/help/ru_RU/FAQ.hlp -%%SQUIRRELDIR%%/help/ru_RU/addresses.hlp -%%SQUIRRELDIR%%/help/ru_RU/basic.hlp -%%SQUIRRELDIR%%/help/ru_RU/compose.hlp -%%SQUIRRELDIR%%/help/ru_RU/folders.hlp -%%SQUIRRELDIR%%/help/ru_RU/main_folder.hlp -%%SQUIRRELDIR%%/help/ru_RU/options.hlp -%%SQUIRRELDIR%%/help/ru_RU/read_mail.hlp -%%SQUIRRELDIR%%/help/ru_RU/search.hlp -%%SQUIRRELDIR%%/help/sk_SK/FAQ.hlp -%%SQUIRRELDIR%%/help/sk_SK/addresses.hlp -%%SQUIRRELDIR%%/help/sk_SK/basic.hlp -%%SQUIRRELDIR%%/help/sk_SK/compose.hlp -%%SQUIRRELDIR%%/help/sk_SK/folders.hlp -%%SQUIRRELDIR%%/help/sk_SK/main_folder.hlp -%%SQUIRRELDIR%%/help/sk_SK/options.hlp -%%SQUIRRELDIR%%/help/sk_SK/read_mail.hlp -%%SQUIRRELDIR%%/help/sk_SK/search.hlp -%%SQUIRRELDIR%%/help/sl_SI/FAQ.hlp -%%SQUIRRELDIR%%/help/sl_SI/addresses.hlp -%%SQUIRRELDIR%%/help/sl_SI/basic.hlp -%%SQUIRRELDIR%%/help/sl_SI/compose.hlp -%%SQUIRRELDIR%%/help/sl_SI/folders.hlp -%%SQUIRRELDIR%%/help/sl_SI/main_folder.hlp -%%SQUIRRELDIR%%/help/sl_SI/options.hlp -%%SQUIRRELDIR%%/help/sl_SI/read_mail.hlp -%%SQUIRRELDIR%%/help/sl_SI/search.hlp -%%SQUIRRELDIR%%/help/sr_YU/FAQ.hlp -%%SQUIRRELDIR%%/help/sr_YU/addresses.hlp -%%SQUIRRELDIR%%/help/sr_YU/basic.hlp -%%SQUIRRELDIR%%/help/sr_YU/compose.hlp -%%SQUIRRELDIR%%/help/sr_YU/folders.hlp -%%SQUIRRELDIR%%/help/sr_YU/main_folder.hlp -%%SQUIRRELDIR%%/help/sr_YU/options.hlp -%%SQUIRRELDIR%%/help/sr_YU/read_mail.hlp -%%SQUIRRELDIR%%/help/sr_YU/search.hlp -%%SQUIRRELDIR%%/help/sv_SE/FAQ.hlp -%%SQUIRRELDIR%%/help/sv_SE/addresses.hlp -%%SQUIRRELDIR%%/help/sv_SE/basic.hlp -%%SQUIRRELDIR%%/help/sv_SE/compose.hlp -%%SQUIRRELDIR%%/help/sv_SE/folders.hlp -%%SQUIRRELDIR%%/help/sv_SE/main_folder.hlp -%%SQUIRRELDIR%%/help/sv_SE/options.hlp -%%SQUIRRELDIR%%/help/sv_SE/read_mail.hlp -%%SQUIRRELDIR%%/help/sv_SE/search.hlp -%%SQUIRRELDIR%%/help/uk_UA/FAQ.hlp -%%SQUIRRELDIR%%/help/uk_UA/addresses.hlp -%%SQUIRRELDIR%%/help/uk_UA/basic.hlp -%%SQUIRRELDIR%%/help/uk_UA/compose.hlp -%%SQUIRRELDIR%%/help/uk_UA/folders.hlp -%%SQUIRRELDIR%%/help/uk_UA/main_folder.hlp -%%SQUIRRELDIR%%/help/uk_UA/options.hlp -%%SQUIRRELDIR%%/help/uk_UA/read_mail.hlp -%%SQUIRRELDIR%%/help/uk_UA/search.hlp -%%SQUIRRELDIR%%/help/zh_CN/FAQ.hlp -%%SQUIRRELDIR%%/help/zh_CN/addresses.hlp -%%SQUIRRELDIR%%/help/zh_CN/basic.hlp -%%SQUIRRELDIR%%/help/zh_CN/compose.hlp -%%SQUIRRELDIR%%/help/zh_CN/folders.hlp -%%SQUIRRELDIR%%/help/zh_CN/main_folder.hlp -%%SQUIRRELDIR%%/help/zh_CN/options.hlp -%%SQUIRRELDIR%%/help/zh_CN/read_mail.hlp -%%SQUIRRELDIR%%/help/zh_CN/search.hlp %%SQUIRRELDIR%%/images/blank.png %%SQUIRRELDIR%%/images/delitem.png %%SQUIRRELDIR%%/images/down_pointer.png @@ -365,42 +131,7 @@ etc/periodic/daily/111.clean-squirrelmai %%SQUIRRELDIR%%/images/index.php %%SQUIRRELDIR%%/images/minus.png %%SQUIRRELDIR%%/images/plus.png -%%SQUIRRELDIR%%/images/sec_remove_bn_BD.png -%%SQUIRRELDIR%%/images/sec_remove_bn_IN.png -%%SQUIRRELDIR%%/images/sec_remove_cs_CZ.png -%%SQUIRRELDIR%%/images/sec_remove_da_DK.png -%%SQUIRRELDIR%%/images/sec_remove_de_DE.png -%%SQUIRRELDIR%%/images/sec_remove_el_GR.png %%SQUIRRELDIR%%/images/sec_remove_eng.png -%%SQUIRRELDIR%%/images/sec_remove_es_ES.png -%%SQUIRRELDIR%%/images/sec_remove_et_EE.png -%%SQUIRRELDIR%%/images/sec_remove_fi_FI.png -%%SQUIRRELDIR%%/images/sec_remove_fo_FO.png -%%SQUIRRELDIR%%/images/sec_remove_fr_FR.png -%%SQUIRRELDIR%%/images/sec_remove_fy.png -%%SQUIRRELDIR%%/images/sec_remove_he_IL.png -%%SQUIRRELDIR%%/images/sec_remove_hr_HR.png -%%SQUIRRELDIR%%/images/sec_remove_hu_HU.png -%%SQUIRRELDIR%%/images/sec_remove_id_ID.png -%%SQUIRRELDIR%%/images/sec_remove_it_IT.png -%%SQUIRRELDIR%%/images/sec_remove_ja_JP.png -%%SQUIRRELDIR%%/images/sec_remove_km.png -%%SQUIRRELDIR%%/images/sec_remove_ko_KR.png -%%SQUIRRELDIR%%/images/sec_remove_lt_LT.png -%%SQUIRRELDIR%%/images/sec_remove_nb_NO.png -%%SQUIRRELDIR%%/images/sec_remove_nl_NL.png -%%SQUIRRELDIR%%/images/sec_remove_nn_NO.png -%%SQUIRRELDIR%%/images/sec_remove_pt_BR.png -%%SQUIRRELDIR%%/images/sec_remove_pt_PT.png -%%SQUIRRELDIR%%/images/sec_remove_ru_RU.png -%%SQUIRRELDIR%%/images/sec_remove_sk_SK.png -%%SQUIRRELDIR%%/images/sec_remove_sl_SI.png -%%SQUIRRELDIR%%/images/sec_remove_sr_YU.png -%%SQUIRRELDIR%%/images/sec_remove_sv_SE.png -%%SQUIRRELDIR%%/images/sec_remove_ta_LK.png -%%SQUIRRELDIR%%/images/sec_remove_tr_TR.png -%%SQUIRRELDIR%%/images/sec_remove_ug.png -%%SQUIRRELDIR%%/images/sec_remove_uk_UA.png %%SQUIRRELDIR%%/images/senti.png %%SQUIRRELDIR%%/images/sm_logo.png %%SQUIRRELDIR%%/images/sort_none.png @@ -416,1297 +147,8 @@ etc/periodic/daily/111.clean-squirrelmai %%SQUIRRELDIR%%/index.php %%SQUIRRELDIR%%/locale/.htaccess %%SQUIRRELDIR%%/locale/README.locales -%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/ar/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/ar/setup.php -%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/bg_BG/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/bg_BG/setup.php -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/abook_import_export.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/abook_import_export.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/advanced_settings.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/advanced_settings.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/archive_mail.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/archive_mail.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/calendar.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/calendar.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/captcha.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/captcha.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/censor.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/censor.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/change_sqlpass.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/change_sqlpass.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compose_fix.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/compose_fix.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/contactclean.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/contactclean.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/cookie_warning.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/cookie_warning.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/custom_charset.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/custom_charset.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/debugger.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/debugger.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/empty_folders.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/empty_folders.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/expire.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/expire.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_settings.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_settings.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/forum.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/forum.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/html_mail.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/html_mail.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/japanese_input.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/japanese_input.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/ldapquery.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/ldapquery.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/limit_languages.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/limit_languages.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/local_autorespond_forward.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/local_autorespond_forward.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/lockout.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/lockout.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/login_alias.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/login_alias.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mark_read.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mark_read.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mini.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/mini.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/msg_flags.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/msg_flags.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/multilogin.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/multilogin.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/naguser.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/naguser.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/newuser_wiz.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/newuser_wiz.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/proon.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/proon.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/qmailadmin_login.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/qmailadmin_login.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/quicksave.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/quicksave.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/reply_buttons.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/reply_buttons.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/restrict_senders.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/restrict_senders.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/rootly_news.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/rootly_news.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/same_ip.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/same_ip.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/sasql.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/sasql.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/select_language.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/select_language.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/serversidefilter.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/serversidefilter.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/show_ssl_link.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/show_ssl_link.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/smallcal.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/smallcal.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/spam_buttons.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/spam_buttons.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrel_logger.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrel_logger.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/templates.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/templates.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/unsafe_image_rules.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/unsafe_image_rules.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vacation_local.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vacation_local.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/verify_reply_to.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/verify_reply_to.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vkeyboard.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/vkeyboard.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/web_search.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/web_search.po -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/yelp.mo -%%SQUIRRELDIR%%/locale/bn_BD/LC_MESSAGES/yelp.po -%%SQUIRRELDIR%%/locale/bn_BD/setup.php -%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/bn_IN/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/bn_IN/setup.php -%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/ca_ES/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/ca_ES/setup.php -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/abook_import_export.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/calendar.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/calendar.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/local_autorespond_forward.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/local_autorespond_forward.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/msg_flags.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/msg_flags.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/proon.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vacation_local.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vkeyboard.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/vkeyboard.po -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.mo -%%SQUIRRELDIR%%/locale/cs_CZ/LC_MESSAGES/yelp.po -%%SQUIRRELDIR%%/locale/cs_CZ/setup.php -%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/cy_GB/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/cy_GB/setup.php -%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/da_DK/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/da_DK/setup.php -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/abook_import_export.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/archive_mail.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/calendar.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/change_sqlpass.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/empty_folders.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/expire.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/japanese_input.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/japanese_input.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/ldapquery.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/limit_languages.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/local_autorespond_forward.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/local_autorespond_forward.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/login_alias.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/mark_read.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/mark_read.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/naguser.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/newuser_wiz.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/newuser_wiz.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/reply_buttons.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/restrict_senders.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/select_language.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/serversidefilter.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/show_ssl_link.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/spam_buttons.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/spam_buttons.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrel_logger.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/templates.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/unsafe_image_rules.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/vacation_local.po -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.mo -%%SQUIRRELDIR%%/locale/de_DE/LC_MESSAGES/verify_reply_to.po -%%SQUIRRELDIR%%/locale/de_DE/setup.php -%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.mo -%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/ldapquery.po -%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/el_GR/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/el_GR/setup.php -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/change_sqlpass.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/contactclean.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/contactclean.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/serversidefilter.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/serversidefilter.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/smallcal.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/unsafe_image_rules.po -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/vkeyboard.mo -%%SQUIRRELDIR%%/locale/es_ES/LC_MESSAGES/vkeyboard.po -%%SQUIRRELDIR%%/locale/es_ES/setup.php -%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/et_EE/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/et_EE/setup.php -%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/eu_ES/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/eu_ES/setup.php -%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/captcha.mo -%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/captcha.po -%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/qmailadmin_login.mo -%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/qmailadmin_login.po -%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/fa_IR/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/fa_IR/setup.php -%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/fi_FI/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/fi_FI/setup.php -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.mo -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/abook_import_export.po -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.mo -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/archive_mail.po -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.mo -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/empty_folders.po -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.mo -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/folder_settings.po -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.mo -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/html_mail.po -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/fo_FO/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/fo_FO/setup.php -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/archive_mail.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/calendar.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/change_sqlpass.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/empty_folders.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/mark_read.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/mark_read.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/quicksave.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/quicksave.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/spam_buttons.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vacation_local.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vkeyboard.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/vkeyboard.po -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.mo -%%SQUIRRELDIR%%/locale/fr_FR/LC_MESSAGES/yelp.po -%%SQUIRRELDIR%%/locale/fr_FR/setup.php -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/abook_import_export.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/abook_import_export.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/advanced_settings.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/advanced_settings.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/archive_mail.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/archive_mail.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/calendar.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/calendar.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_sqlpass.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/change_sqlpass.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compose_fix.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/compose_fix.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/contactclean.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/contactclean.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/cookie_warning.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/cookie_warning.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/custom_charset.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/custom_charset.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/debugger.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/debugger.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/empty_folders.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/empty_folders.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/expire.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/expire.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_settings.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_settings.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/forum.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/forum.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/html_mail.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/html_mail.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/ldapquery.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/ldapquery.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/limit_languages.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/limit_languages.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/login_alias.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/login_alias.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mark_read.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mark_read.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mini.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/mini.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/multilogin.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/multilogin.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/naguser.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/naguser.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/newuser_wiz.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/newuser_wiz.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/proon.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/proon.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/qmailadmin_login.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/qmailadmin_login.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/quicksave.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/quicksave.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/reply_buttons.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/reply_buttons.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/restrict_senders.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/restrict_senders.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/sasql.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/sasql.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/select_language.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/select_language.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/serversidefilter.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/serversidefilter.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/show_ssl_link.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/show_ssl_link.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/smallcal.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/smallcal.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/spam_buttons.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/spam_buttons.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrel_logger.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrel_logger.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/templates.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/templates.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/unsafe_image_rules.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/unsafe_image_rules.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vacation_local.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vacation_local.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/verify_reply_to.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/verify_reply_to.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vkeyboard.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/vkeyboard.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/web_search.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/web_search.po -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/yelp.mo -%%SQUIRRELDIR%%/locale/fy/LC_MESSAGES/yelp.po -%%SQUIRRELDIR%%/locale/fy/setup.php -%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/he_IL/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/he_IL/setup.php -%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/hr_HR/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/hr_HR/setup.php -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/local_autorespond_forward.mo -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/local_autorespond_forward.po -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/hu_HU/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/hu_HU/setup.php -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/cookie_warning.mo -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/cookie_warning.po -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/select_language.mo -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/select_language.po -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/id_ID/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/id_ID/setup.php %%SQUIRRELDIR%%/locale/index.php -%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/is_IS/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/is_IS/setup.php -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/abook_import_export.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/abook_import_export.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/advanced_settings.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/advanced_settings.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/archive_mail.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/calendar.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/captcha.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/captcha.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/censor.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/censor.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_sqlpass.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/change_sqlpass.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compose_fix.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/compose_fix.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/contactclean.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/contactclean.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/cookie_warning.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/cookie_warning.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/custom_charset.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/custom_charset.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/debugger.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/debugger.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/empty_folders.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/empty_folders.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/expire.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/expire.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_settings.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_settings.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/forum.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/forum.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/html_mail.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/html_mail.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/japanese_input.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/japanese_input.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/limit_languages.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/limit_languages.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/local_autorespond_forward.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/local_autorespond_forward.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/lockout.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/lockout.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/multilogin.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/multilogin.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/newuser_wiz.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/newuser_wiz.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.mo -%%SQUIRRELDIR%%/locale/it_IT/LC_MESSAGES/vacation_local.po -%%SQUIRRELDIR%%/locale/it_IT/setup.php -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/archive_mail.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/cookie_warning.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/custom_charset.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/debugger.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/html_mail.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/mini.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/reply_buttons.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/sasql.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/select_language.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/serversidefilter.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/show_ssl_link.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/smallcal.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/spam_buttons.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrel_logger.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.mo -%%SQUIRRELDIR%%/locale/ja_JP/LC_MESSAGES/web_search.po -%%SQUIRRELDIR%%/locale/ja_JP/setup.php -%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/ka/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/ka/setup.php -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/abook_import_export.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/abook_import_export.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/advanced_settings.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/advanced_settings.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/archive_mail.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/archive_mail.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/askuserinfo.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/askuserinfo.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/calendar.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/calendar.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/captcha.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/captcha.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/censor.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/censor.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_sqlpass.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/change_sqlpass.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/check_quota.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/check_quota.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compatibility.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compatibility.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compose_fix.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/compose_fix.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/contactclean.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/contactclean.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/cookie_warning.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/cookie_warning.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/custom_charset.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/custom_charset.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/debugger.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/debugger.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/empty_folders.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/empty_folders.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/expire.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/expire.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_settings.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_settings.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_sizes.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/folder_sizes.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/forum.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/forum.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/html_mail.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/html_mail.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/japanese_input.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/japanese_input.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/ldapquery.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/ldapquery.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/limit_languages.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/limit_languages.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/local_autorespond_forward.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/local_autorespond_forward.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/lockout.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/lockout.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/login_alias.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/login_alias.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mark_read.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mark_read.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mini.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/mini.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/msg_flags.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/msg_flags.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/multilogin.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/multilogin.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/naguser.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/naguser.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/newuser_wiz.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/newuser_wiz.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/proon.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/proon.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/qmailadmin_login.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/qmailadmin_login.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/quicksave.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/quicksave.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/reply_buttons.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/reply_buttons.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/restrict_senders.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/restrict_senders.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/rootly_news.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/rootly_news.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/same_ip.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/same_ip.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/sasql.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/sasql.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/select_language.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/select_language.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/serversidefilter.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/serversidefilter.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/show_ssl_link.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/show_ssl_link.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/smallcal.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/smallcal.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/spam_buttons.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/spam_buttons.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrel_logger.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrel_logger.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/templates.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/templates.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/unsafe_image_rules.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/unsafe_image_rules.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vacation_local.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vacation_local.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/verify_reply_to.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/verify_reply_to.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vkeyboard.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/vkeyboard.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/web_search.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/web_search.po -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/yelp.mo -%%SQUIRRELDIR%%/locale/km/LC_MESSAGES/yelp.po -%%SQUIRRELDIR%%/locale/km/setup.php -%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/change_pass.mo -%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/change_pass.po -%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.mo -%%SQUIRRELDIR%%/locale/ko_KR/LC_MESSAGES/squirrelmail.po -%%SQUIRRELDIR%%/locale/ko_KR/setup.php -%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.mo -%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/abook_import_export.po -%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/advanced_settings.mo -%%SQUIRRELDIR%%/locale/lt_LT/LC_MESSAGES/advanced_settings.po *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:50:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E47C710656C6; Mon, 8 Oct 2012 16:50:01 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CBEFB8FC20; Mon, 8 Oct 2012 16:50: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 q98Go18D036842; Mon, 8 Oct 2012 16:50:01 GMT (envelope-from fjoe@svn.freebsd.org) Received: (from fjoe@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98Go1Xd036841; Mon, 8 Oct 2012 16:50:01 GMT (envelope-from fjoe@svn.freebsd.org) Message-Id: <201210081650.q98Go1Xd036841@svn.freebsd.org> From: Max Khon Date: Mon, 8 Oct 2012 16:50:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305549 - head/archivers/upx/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:50:02 -0000 Author: fjoe Date: Mon Oct 8 16:50:01 2012 New Revision: 305549 URL: http://svn.freebsd.org/changeset/ports/305549 Log: Fix build on ia64. Added: head/archivers/upx/files/patch-src-miniacc.h (contents, props changed) Added: head/archivers/upx/files/patch-src-miniacc.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/upx/files/patch-src-miniacc.h Mon Oct 8 16:50:01 2012 (r305549) @@ -0,0 +1,11 @@ +--- src/miniacc.h.orig 2012-10-08 16:38:10.008244000 +0000 ++++ src/miniacc.h 2012-10-08 16:38:37.382842000 +0000 +@@ -1334,7 +1334,7 @@ + #elif !(ACC_ABI_BIG_ENDIAN) && !(ACC_ABI_LITTLE_ENDIAN) + #if (ACC_ARCH_ALPHA) && (ACC_ARCH_CRAY_MPP) + # define ACC_ABI_BIG_ENDIAN 1 +-#elif (ACC_ARCH_IA64) && (ACC_OS_POSIX_LINUX || ACC_OS_WIN64) ++#elif (ACC_ARCH_IA64) && (ACC_OS_POSIX_LINUX || ACC_OS_POSIX_FREEBSD || ACC_OS_WIN64) + # define ACC_ABI_LITTLE_ENDIAN 1 + #elif (ACC_ARCH_ALPHA || ACC_ARCH_AMD64 || ACC_ARCH_BLACKFIN || ACC_ARCH_CRIS || ACC_ARCH_I086 || ACC_ARCH_I386 || ACC_ARCH_MSP430) + # define ACC_ABI_LITTLE_ENDIAN 1 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:53:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27E631065700; Mon, 8 Oct 2012 16:53:10 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 11BC08FC0A; Mon, 8 Oct 2012 16:53: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 q98Gr9jg037253; Mon, 8 Oct 2012 16:53:09 GMT (envelope-from adamw@svn.freebsd.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98Gr9cY037250; Mon, 8 Oct 2012 16:53:09 GMT (envelope-from adamw@svn.freebsd.org) Message-Id: <201210081653.q98Gr9cY037250@svn.freebsd.org> From: Adam Weinberger Date: Mon, 8 Oct 2012 16:53:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305550 - head X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:53:10 -0000 Author: adamw Date: Mon Oct 8 16:53:09 2012 New Revision: 305550 URL: http://svn.freebsd.org/changeset/ports/305550 Log: The locale data, including translations and associated help files, have been moved to mail/squirrelmail-translations. If you or your users are using Squirrelmail in anything other than en_US, you should install that port. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Mon Oct 8 16:50:01 2012 (r305549) +++ head/UPDATING Mon Oct 8 16:53:09 2012 (r305550) @@ -5,6 +5,15 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20121008: + AFFECTS: users of mail/squirrelmail + AUTHOR: adamw@FreeBSD.org + + The locale data, including translations and associated help files, + have been moved to mail/squirrelmail-translations. If you or your + users are using Squirrelmail in anything other than en_US, you should + install that port. + 20121007: AFFECTS: users of lang/mit-scheme AUTHOR: olgeni@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 16:57:52 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE493106566C; Mon, 8 Oct 2012 16:57:52 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A807A8FC14; Mon, 8 Oct 2012 16:57:52 +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 q98GvqEC037874; Mon, 8 Oct 2012 16:57:52 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98GvqCo037872; Mon, 8 Oct 2012 16:57:52 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210081657.q98GvqCo037872@svn.freebsd.org> From: Alex Kozlov Date: Mon, 8 Oct 2012 16:57:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305551 - head/comms/spandsp-devel X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 16:57:52 -0000 Author: ak Date: Mon Oct 8 16:57:52 2012 New Revision: 305551 URL: http://svn.freebsd.org/changeset/ports/305551 Log: - Update MASTER_SITES - Remove vestiges of old OPTIONS PR: ports/172485 Submitted by: nemysis (maintainer) Modified: head/comms/spandsp-devel/Makefile (contents, props changed) Modified: head/comms/spandsp-devel/Makefile ============================================================================== --- head/comms/spandsp-devel/Makefile Mon Oct 8 16:53:09 2012 (r305550) +++ head/comms/spandsp-devel/Makefile Mon Oct 8 16:57:52 2012 (r305551) @@ -3,8 +3,7 @@ PORTNAME= spandsp DISTVERSION= 0.0.6pre21 CATEGORIES= comms -MASTER_SITES= http://www.soft-switch.org/downloads/spandsp/ \ - http://www.soft-switch.org/downloads/spandsp/old/ +MASTER_SITES= http://www.soft-switch.org/downloads/spandsp/ PKGNAMESUFFIX= -devel EXTRACT_SUFX= .tgz @@ -40,7 +39,7 @@ CONFIGURE_ARGS+=--disable-doc .endif post-install: -.if defined(WITH_DOXYGEN) +.if ${PORT_OPTIONS:MDOXYGEN} ${MKDIR} ${DOCSDIR} (cd ${WRKSRC}/doc && \ ${COPYTREE_SHARE} \* ${DOCSDIR} "-type d -or -mindepth 1") From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 17:02:45 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD8251065670; Mon, 8 Oct 2012 17:02:45 +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 93FA58FC16; Mon, 8 Oct 2012 17:02:44 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so2157580bkc.13 for ; Mon, 08 Oct 2012 10:02:43 -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=zlzni5f6zVex1agObDKwVaDDmDdsEe++XIt0HKsZkIU=; b=XhEEoUH3I0/6CiINsxWIzXfE63w4ZKWo6MzCgyZuUEL3s042yJCfd5ELxSOC5OTvCh /u8OU6f2byN7ZuwB/CrRtBnsiqYsdCiDcm45jRHqN1RqCd3V2Pe6CKTD18CcyNlYl6ne nF3GBMPvXeCMCEk/NCUh9wd4mWpLPTwp9PuhpR6pde7kpXF59cKWSifqqjl3+R/qTBNd YvlFlt4/EyjyYbMNRfmc5gXsnb3W9Wfx/pVEJ0ayYAK5BhDYMqXceDV+tGqBr1GD5iDt xiJDQVmp4uWNwp+T4vj7wDhy2uwSXG+JwyfXU1JaI13tNWnaVqkcE62d7yKZdbQ+7C6H WH1g== Received: by 10.204.128.201 with SMTP id l9mr5492189bks.66.1349715763172; Mon, 08 Oct 2012 10:02:43 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Mon, 8 Oct 2012 10:02:11 -0700 (PDT) In-Reply-To: <20121008071642.GA91360@ithaqua.etoilebsd.net> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> From: Chris Rees Date: Mon, 8 Oct 2012 18:02:11 +0100 X-Google-Sender-Auth: -9dmlF06PHADGq7lCxDREhaz1bM Message-ID: To: Baptiste Daroussin Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, Alexey Dokuchaev , svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305357 - head/net/ssvnc X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 17:02:45 -0000 On 8 October 2012 08:16, Baptiste Daroussin wrote: > On Mon, Oct 08, 2012 at 04:59:06AM +0000, Alexey Dokuchaev wrote: >> On Mon, Oct 08, 2012 at 04:01:54AM +0000, Alexey Dokuchaev wrote: >> > On Sat, Oct 06, 2012 at 11:23:17AM +0000, Baptiste Daroussin wrote: >> > > New Revision: 305357 >> > > URL: http://svn.freebsd.org/changeset/ports/305357 >> > > >> > > Log: >> > > fix sense of a test >> > > >> > > -.if ${PORT_OPTIONS:MULTRAFTP} >> > > +.if empty(PORT_OPTIONS:MULTRAFTP) >> > >> > That looks weird, and commit message is pretty cryptic as well. Could you >> > explain what went wrong here so others would not fall in the same pitfall? >> >> Err, I read is as ! vs. empty() test. Still, I've noticved some arguments >> on the syntax, would be nice to know if ! ${PORT_OPTIONS:M...} has issues >> other than purely stylish. >> > > No it hasn't (as far as I know) > This is all my fault-- I was the one who suggested the original use of ${FOO:M}, and I deliberately chose to retain empty(FOO) as the reverse because I was convinced that the insanity of make's conditionals would screw us over in some way. I have at [1] pulled together some simple tests, and I think I've caught all use cases here. It seems to work fine-- are there any people more wizardly than me with make that can confirm that it's OK? If so, I'll update the docs. Chris [1] http://www.bayofrum.net/~crees/scratch/Makefile-do-we-need-empty-after-all From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 17:06:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EB11C1065675 for ; Mon, 8 Oct 2012 17:06:06 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AE0C68FC14 for ; Mon, 8 Oct 2012 17:06:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q98H66Zs079334 for ; Mon, 8 Oct 2012 17:06:06 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q98H66IK079327 for svn-ports-head@freebsd.org; Mon, 8 Oct 2012 17:06:06 GMT (envelope-from bdrewery) Received: (qmail 54218 invoked from network); 8 Oct 2012 12:06:02 -0500 Received: from unknown (HELO ?10.10.0.115?) (freebsd@shatow.net@10.10.0.115) by sweb.xzibition.com with ESMTPA; 8 Oct 2012 12:06:02 -0500 Message-ID: <507307F7.3030406@FreeBSD.org> Date: Mon, 08 Oct 2012 12:05:59 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Chris Rees References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> In-Reply-To: X-Enigmail-Version: 1.4.4 OpenPGP: id=3C9B0CF9; url=http://www.shatow.net/bryan/bryan.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , Alexey Dokuchaev , svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305357 - head/net/ssvnc X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 17:06:07 -0000 On 10/8/2012 12:02 PM, Chris Rees wrote: > On 8 October 2012 08:16, Baptiste Daroussin wrote: >> On Mon, Oct 08, 2012 at 04:59:06AM +0000, Alexey Dokuchaev wrote: >>> On Mon, Oct 08, 2012 at 04:01:54AM +0000, Alexey Dokuchaev wrote: >>>> On Sat, Oct 06, 2012 at 11:23:17AM +0000, Baptiste Daroussin wrote: >>>>> New Revision: 305357 >>>>> URL: http://svn.freebsd.org/changeset/ports/305357 >>>>> >>>>> Log: >>>>> fix sense of a test >>>>> >>>>> -.if ${PORT_OPTIONS:MULTRAFTP} >>>>> +.if empty(PORT_OPTIONS:MULTRAFTP) >>>> >>>> That looks weird, and commit message is pretty cryptic as well. Could you >>>> explain what went wrong here so others would not fall in the same pitfall? >>> >>> Err, I read is as ! vs. empty() test. Still, I've noticved some arguments >>> on the syntax, would be nice to know if ! ${PORT_OPTIONS:M...} has issues >>> other than purely stylish. >>> >> >> No it hasn't (as far as I know) >> > > This is all my fault-- I was the one who suggested the original use of > ${FOO:M}, and I deliberately chose to retain empty(FOO) as the reverse > because I was convinced that the insanity of make's conditionals would > screw us over in some way. > > I have at [1] pulled together some simple tests, and I think I've > caught all use cases here. > > It seems to work fine-- are there any people more wizardly than me > with make that can confirm that it's OK? If so, I'll update the docs. > > Chris > > [1] http://www.bayofrum.net/~crees/scratch/Makefile-do-we-need-empty-after-all > Can you add: !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} I swear there is a case where !${} results in an Error. -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 17:09:56 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 005241065672; Mon, 8 Oct 2012 17:09:55 +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 A091F8FC16; Mon, 8 Oct 2012 17:09:54 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so2161025bkc.13 for ; Mon, 08 Oct 2012 10:09: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=UNA1AwiHS9zLnp32wt2bOIfJ2C8gfKg/ptw4oceXB1M=; b=dKE/Mp1fVDKBUXLr91gvAUKNBA9NEcPk05nQ0X+MSvzIRNjbXjQ4QgzyriqlrFsJjv N7l3mePPlm++BsLbJ4AIGENC38cGRvwnN/Leuo2OIHzXVEShJWU6OUxEPbVGoo5SiQbV dLrvxuTHR5XvPp1WFA5yFg/SejS7AIzd3iEfhbd5RU/31RXsEMobBXzbM2vP43ixqtEF M6xzuNVad1+PGB/Wb8S/VB9j2RtcOTnLvwQFP64WvycPxRDLh7SYfMpKYuXSMXCJJlmG guG9AUfc9bVmjQNXMNSP2us7O+lPJejhb+gAJwce0Ga78ihSbFcqNZ5RSnItDciLBz2s EjRQ== Received: by 10.205.137.7 with SMTP id im7mr5512497bkc.25.1349716193362; Mon, 08 Oct 2012 10:09:53 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Mon, 8 Oct 2012 10:09:23 -0700 (PDT) In-Reply-To: <507307F7.3030406@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> From: Chris Rees Date: Mon, 8 Oct 2012 18:09:23 +0100 X-Google-Sender-Auth: qYvit36N9wV8wVCQ6yYxpK2-S9Q Message-ID: To: Bryan Drewery Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , Alexey Dokuchaev , svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r305357 - head/net/ssvnc X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 17:09:56 -0000 On 8 October 2012 18:05, Bryan Drewery wrote: > On 10/8/2012 12:02 PM, Chris Rees wrote: >> On 8 October 2012 08:16, Baptiste Daroussin wrote: >>> On Mon, Oct 08, 2012 at 04:59:06AM +0000, Alexey Dokuchaev wrote: >>>> On Mon, Oct 08, 2012 at 04:01:54AM +0000, Alexey Dokuchaev wrote: >>>>> On Sat, Oct 06, 2012 at 11:23:17AM +0000, Baptiste Daroussin wrote: >>>>>> New Revision: 305357 >>>>>> URL: http://svn.freebsd.org/changeset/ports/305357 >>>>>> >>>>>> Log: >>>>>> fix sense of a test >>>>>> >>>>>> -.if ${PORT_OPTIONS:MULTRAFTP} >>>>>> +.if empty(PORT_OPTIONS:MULTRAFTP) >>>>> >>>>> That looks weird, and commit message is pretty cryptic as well. Could you >>>>> explain what went wrong here so others would not fall in the same pitfall? >>>> >>>> Err, I read is as ! vs. empty() test. Still, I've noticved some arguments >>>> on the syntax, would be nice to know if ! ${PORT_OPTIONS:M...} has issues >>>> other than purely stylish. >>>> >>> >>> No it hasn't (as far as I know) >>> >> >> This is all my fault-- I was the one who suggested the original use of >> ${FOO:M}, and I deliberately chose to retain empty(FOO) as the reverse >> because I was convinced that the insanity of make's conditionals would >> screw us over in some way. >> >> I have at [1] pulled together some simple tests, and I think I've >> caught all use cases here. >> >> It seems to work fine-- are there any people more wizardly than me >> with make that can confirm that it's OK? If so, I'll update the docs. >> >> Chris >> >> [1] http://www.bayofrum.net/~crees/scratch/Makefile-do-we-need-empty-after-all >> > > Can you add: > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > I swear there is a case where !${} results in an Error. [crees@pegasus]~% cat Makefile ONE= two three four .if ${ONE:Mtwo} .warning ONE has two in it .endif .if !${ONE:Mfive} .warning ONE does not have five in it .endif .if !${ONE:Mfive} && ${ONE:Mblargh} .warning stuff? .endif .if !${ONE:Mfive} && ${ONE:Mone} .warning This is also fine .endif .if ${ONE:Mfive} || ${ONE:Msix} .warning So is this .endif .if !${ONE:Mfive} && !${ONE:Msix} .warning bdrewery is wrong .endif all: @: [crees@pegasus]~% make "Makefile", line 5: warning: ONE has two in it "Makefile", line 9: warning: ONE does not have five in it "Makefile", line 25: warning: bdrewery is wrong [crees@pegasus]~% :) Chris From owner-svn-ports-head@FreeBSD.ORG Mon Oct 8 17:15:01 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E85B106566B; Mon, 8 Oct 2012 17:15:01 +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 2504A8FC12; Mon, 8 Oct 2012 17:15: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 q98HF1Hf040100; Mon, 8 Oct 2012 17:15:01 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q98HF0Y0040098; Mon, 8 Oct 2012 17:15:00 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210081715.q98HF0Y0040098@svn.freebsd.org> From: Jung-uk Kim Date: Mon, 8 Oct 2012 17:15:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r305552 - head/korean/hunspell X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Oct 2012 17:15:01 -0000 Author: jkim Date: Mon Oct 8 17:15:00 2012 New Revision: 305552 URL: http://svn.freebsd.org/changeset/ports/305552 Log: - Update to 0.5.6. - Trim makefile header. Modified: head/korean/hunspell/Makefile head/korean/hunspell/distinfo Modified: head/korean/hunspell/Makefile ============================================================================== --- head/korean/hunspell/Makefile Mon Oct 8 16:57:52 2012 (r305551) +++ head/korean/hunspell/Makefile Mon Oct 8 17:15:00 2012 (r305552) @@ -1,12 +1,7 @@ -# New ports collection makefile for: Korean hunspell dictionaries -# Date created: August 9, 2011 -# Whom: Jung-uk Kim -# # $FreeBSD$ -# PORTNAME= hunspell -PORTVERSION= 0.5.5 +PORTVERSION= 0.5.6 CATEGORIES= korean textproc MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= ${PORTNAME}-dict-ko-${PORTVERSION} @@ -21,6 +16,7 @@ BUILD_DEPENDS+= py*-lxml>=0:${PORTSDIR}/ USE_GMAKE= yes USE_PYTHON_BUILD= yes +USE_XZ= yes PLIST_FILES= %%DATADIR%%/ko_KR.aff \ %%DATADIR%%/ko_KR.dic Modified: head/korean/hunspell/distinfo ============================================================================== --- head/korean/hunspell/distinfo Mon Oct 8 16:57:52 2012 (r305551) +++ head/korean/hunspell/distinfo Mon Oct 8 17:15:00 2012 (r305552) @@ -1,2 +1,2 @@ -SHA256 (hunspell-dict-ko-0.5.5.tar.gz) = d79b9c88bfbfacdd46979199e9c1fac38084bdd226e683340f3ae10f0818ad3d -SIZE (hunspell-dict-ko-0.5.5.tar.gz) = 430478 +SHA256 (hunspell-dict-ko-0.5.6.tar.xz) = 20d5774956504fafbe4be1b225ce9a264d8582648886790a3ad2f6efbdea3a1c +SIZE (hunspell-dict-ko-0.5.6.tar.xz) = 336100 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 09:17:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B9C5702; Tue, 9 Oct 2012 09:17:36 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DA0B68FC63; Tue, 9 Oct 2012 08:01:26 +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 q9981Qx0066009; Tue, 9 Oct 2012 08:01:26 GMT (envelope-from ashish@svn.freebsd.org) Received: (from ashish@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9981QlL066006; Tue, 9 Oct 2012 08:01:26 GMT (envelope-from ashish@svn.freebsd.org) Message-Id: <201210090801.q9981QlL066006@svn.freebsd.org> From: Ashish SHUKLA Date: Tue, 9 Oct 2012 08:01:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305572 - head/mail/opensmtpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 09:17:36 -0000 Author: ashish Date: Tue Oct 9 08:01:26 2012 New Revision: 305572 URL: http://svn.freebsd.org/changeset/ports/305572 Log: - Update to latest snapshot 201210090136 Modified: head/mail/opensmtpd/Makefile head/mail/opensmtpd/distinfo Modified: head/mail/opensmtpd/Makefile ============================================================================== --- head/mail/opensmtpd/Makefile Tue Oct 9 07:32:44 2012 (r305571) +++ head/mail/opensmtpd/Makefile Tue Oct 9 08:01:26 2012 (r305572) @@ -6,7 +6,7 @@ # PORTNAME= opensmtpd -PORTVERSION= 201209190752 +PORTVERSION= 201210090136 CATEGORIES= mail MASTER_SITES= http://www.opensmtpd.org/archives/ \ http://distfiles.pirateparty.in/ashish/ Modified: head/mail/opensmtpd/distinfo ============================================================================== --- head/mail/opensmtpd/distinfo Tue Oct 9 07:32:44 2012 (r305571) +++ head/mail/opensmtpd/distinfo Tue Oct 9 08:01:26 2012 (r305572) @@ -1,2 +1,2 @@ -SHA256 (opensmtpd-201209190752.tar.gz) = b0d7afe219bc4a79278ed94b6b4f19caf81508e5319c5890fbb19e7886fbb00a -SIZE (opensmtpd-201209190752.tar.gz) = 253706 +SHA256 (opensmtpd-201210090136.tar.gz) = de3eecd447e5554ada9129632f1184d33930eb2c5721d535ddfe90696912cdd2 +SIZE (opensmtpd-201210090136.tar.gz) = 253466 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 09:22:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0FDF8A0; Tue, 9 Oct 2012 09:22:36 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 33B528FCA3; Tue, 9 Oct 2012 08:07:31 +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 q9987Vmi067016; Tue, 9 Oct 2012 08:07:31 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9987Uam067008; Tue, 9 Oct 2012 08:07:30 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210090807.q9987Uam067008@svn.freebsd.org> From: Alex Dupre Date: Tue, 9 Oct 2012 08:07:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305574 - in head/devel: . sbt sbt/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 09:22:36 -0000 Author: ale Date: Tue Oct 9 08:07:30 2012 New Revision: 305574 URL: http://svn.freebsd.org/changeset/ports/305574 Log: simple build tool (sbt) is a minimally intrusive build tool for Scala projects. WWW: http://www.scala-sbt.org/ Added: head/devel/sbt/ head/devel/sbt/Makefile (contents, props changed) head/devel/sbt/distinfo (contents, props changed) head/devel/sbt/files/ head/devel/sbt/files/patch-bin_sbt (contents, props changed) head/devel/sbt/files/patch-bin_sbt-launch-lib.bash (contents, props changed) head/devel/sbt/files/sbt.sh.in (contents, props changed) head/devel/sbt/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 9 08:07:04 2012 (r305573) +++ head/devel/Makefile Tue Oct 9 08:07:30 2012 (r305574) @@ -4005,6 +4005,7 @@ SUBDIR += sabre SUBDIR += safe-iop SUBDIR += safestr + SUBDIR += sbt SUBDIR += scalatest SUBDIR += scandoc SUBDIR += scons Added: head/devel/sbt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sbt/Makefile Tue Oct 9 08:07:30 2012 (r305574) @@ -0,0 +1,53 @@ +# Created by: Alex Dupre +# $FreeBSD$ + +PORTNAME= sbt +PORTVERSION= 0.12.1 +CATEGORIES= devel java +MASTER_SITES= http://scalasbt.artifactoryonline.com/scalasbt/sbt-native-packages/org/scala-sbt/sbt/${PORTVERSION}/ +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= .tgz +DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} + +MAINTAINER= ale@FreeBSD.org +COMMENT= A build tool for Scala projects + +LICENSE= AL2 + +OPTIONS_DEFINE= ADVANCED +ADVANCED_DESC= Install advanced bash shell-script + +NO_BUILD= yes +USE_JAVA= yes + +PLIST_FILES= bin/sbt \ + %%DATADIR%%/sbt-launch.jar +PLIST_DIRS= %%DATADIR%% + +.include + +.if ${PORT_OPTIONS:MADVANCED} +RUN_DEPENDS= bash:${PORTSDIR}/shells/bash + +PLIST_FILES+= %%DATADIR%%/sbt \ + %%DATADIR%%/sbt-launch-lib.bash +.else +SUB_FILES= sbt.sh +.endif + +post-patch: + @${REINPLACE_CMD} "s|%%PREFIX%%|${PREFIX}|g" \ + ${WRKSRC}/bin/sbt ${WRKSRC}/bin/sbt-launch-lib.bash + +do-install: + ${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/bin/sbt-launch.jar ${DATADIR} +.if ${PORT_OPTIONS:MADVANCED} + ${INSTALL_SCRIPT} ${WRKSRC}/bin/sbt ${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/bin/sbt-launch-lib.bash ${DATADIR} + ${LN} -s ${DATADIR}/sbt ${PREFIX}/bin/ +.else + ${INSTALL_SCRIPT} ${WRKDIR}/sbt.sh ${PREFIX}/bin/sbt +.endif + +.include Added: head/devel/sbt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sbt/distinfo Tue Oct 9 08:07:30 2012 (r305574) @@ -0,0 +1,2 @@ +SHA256 (sbt/0.12.1/sbt.tgz) = bb446337ca8c988bdf9815748375466746b2d1a5634268188e22a3890f393335 +SIZE (sbt/0.12.1/sbt.tgz) = 1083996 Added: head/devel/sbt/files/patch-bin_sbt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sbt/files/patch-bin_sbt Tue Oct 9 08:07:30 2012 (r305574) @@ -0,0 +1,25 @@ +--- bin/sbt.orig 2012-09-18 09:35:52.000000000 +0200 ++++ bin/sbt 2012-09-18 09:37:14.000000000 +0200 +@@ -1,11 +1,11 @@ + #!/usr/bin/env bash + +-. $(dirname $0)/sbt-launch-lib.bash ++. %%PREFIX%%/share/sbt/sbt-launch-lib.bash + + + declare -r noshare_opts="-Dsbt.global.base=project/.sbtboot -Dsbt.boot.directory=project/.boot -Dsbt.ivy.home=project/.ivy" + declare -r sbt_opts_file=".sbtopts" +-declare -r etc_sbt_opts_file="/etc/sbt/sbtopts" ++declare -r etc_sbt_opts_file="%%PREFIX%%/etc/sbt/sbtopts" + + usage() { + cat < Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3EEA8A2; Tue, 9 Oct 2012 09:22:36 +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 195F58FC9B; Tue, 9 Oct 2012 08:07:05 +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 q998752Y066820; Tue, 9 Oct 2012 08:07:05 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99874Jn066815; Tue, 9 Oct 2012 08:07:04 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210090807.q99874Jn066815@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Tue, 9 Oct 2012 08:07:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305573 - head/multimedia/openshot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 09:22:36 -0000 Author: rm Date: Tue Oct 9 08:07:04 2012 New Revision: 305573 URL: http://svn.freebsd.org/changeset/ports/305573 Log: - update to 1.4.3 - trim Makefile header - remove indefinite article - remove redundand MANCOMPRESSED=no - tab -> space change in pkg-descr:WWW changelog: http://www.openshotvideo.com/2012/10/version-143-released-download-it-now.html PR: 172286 Submitted by: rm (myself) Approved by: Rodrigo OSORIO (maintainer) Modified: head/multimedia/openshot/Makefile head/multimedia/openshot/distinfo head/multimedia/openshot/pkg-descr head/multimedia/openshot/pkg-plist Modified: head/multimedia/openshot/Makefile ============================================================================== --- head/multimedia/openshot/Makefile Tue Oct 9 08:01:26 2012 (r305572) +++ head/multimedia/openshot/Makefile Tue Oct 9 08:07:04 2012 (r305573) @@ -1,19 +1,13 @@ -# ex:ts=8 -# Ports collection makefile for: openshot -# Date created: 2011-02-05 -# Whom: Charlie Kester -# +# Created by: Charlie Kester # $FreeBSD$ -# PORTNAME= openshot -PORTVERSION= 1.4.2 -PORTREVISION= 1 +PORTVERSION= 1.4.3 CATEGORIES= multimedia MASTER_SITES= http://launchpad.net/openshot/${PORTVERSION:C/\.[0-9]+$//}/${PORTVERSION}/+download/ MAINTAINER= rodrigo@bebik.net -COMMENT= A non-linear video editor +COMMENT= Non-linear video editor LICENSE= GPLv3 @@ -35,7 +29,6 @@ INSTALLS_OMF= yes MAN1= ${PORTNAME}.1 \ ${PORTNAME}-render.1 -MANCOMPRESSED= no FETCH_ARGS= -pRr post-patch: Modified: head/multimedia/openshot/distinfo ============================================================================== --- head/multimedia/openshot/distinfo Tue Oct 9 08:01:26 2012 (r305572) +++ head/multimedia/openshot/distinfo Tue Oct 9 08:07:04 2012 (r305573) @@ -1,2 +1,2 @@ -SHA256 (openshot-1.4.2.tar.gz) = 6bb63bd98080c6043db5ad9490b82c163d40ee858808d3a134cbed1840d3715f -SIZE (openshot-1.4.2.tar.gz) = 28610481 +SHA256 (openshot-1.4.3.tar.gz) = 5bebf1c59a8667b0263599544f2d23ce6be3ab79ce24a85b766e1e39cab859d0 +SIZE (openshot-1.4.3.tar.gz) = 31990991 Modified: head/multimedia/openshot/pkg-descr ============================================================================== --- head/multimedia/openshot/pkg-descr Tue Oct 9 08:01:26 2012 (r305572) +++ head/multimedia/openshot/pkg-descr Tue Oct 9 08:07:04 2012 (r305573) @@ -9,4 +9,4 @@ be layered, mixed, and arranged in very video clip edits (trimming, cutting, etc...) are non-destructive, meaning that the original video clips are never modified. -WWW: http://www.openshot.org/ +WWW: http://www.openshot.org/ Modified: head/multimedia/openshot/pkg-plist ============================================================================== --- head/multimedia/openshot/pkg-plist Tue Oct 9 08:01:26 2012 (r305572) +++ head/multimedia/openshot/pkg-plist Tue Oct 9 08:07:04 2012 (r305573) @@ -7,6 +7,10 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/blender/blend/blur.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/colors.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/defocus.blend +%%PYTHON_SITELIBDIR%%/openshot/blender/blend/dissolve.blend +%%PYTHON_SITELIBDIR%%/openshot/blender/blend/earth.blend +%%PYTHON_SITELIBDIR%%/openshot/blender/blend/earth_real.blend +%%PYTHON_SITELIBDIR%%/openshot/blender/blend/explode.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/fly_by_1.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/fly_by_two_titles.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/glare.blend @@ -19,7 +23,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/blender/blend/rotate_360.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/slide_left_to_right.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/snow.blend -%%PYTHON_SITELIBDIR%%/openshot/blender/blend/travel_map.blend +%%PYTHON_SITELIBDIR%%/openshot/blender/blend/spacemovie_intro.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/trees.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/wireframe_text.blend %%PYTHON_SITELIBDIR%%/openshot/blender/blend/zoom_clapboard.blend @@ -27,6 +31,16 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/blender/blur.xml %%PYTHON_SITELIBDIR%%/openshot/blender/colors.xml %%PYTHON_SITELIBDIR%%/openshot/blender/defocus.xml +%%PYTHON_SITELIBDIR%%/openshot/blender/dissolve.xml +%%PYTHON_SITELIBDIR%%/openshot/blender/earth.xml +%%PYTHON_SITELIBDIR%%/openshot/blender/earth/Clouds.jpg +%%PYTHON_SITELIBDIR%%/openshot/blender/earth/Color Map.jpg +%%PYTHON_SITELIBDIR%%/openshot/blender/earth/Night Lights.jpg +%%PYTHON_SITELIBDIR%%/openshot/blender/earth/Spec Mask.jpg +%%PYTHON_SITELIBDIR%%/openshot/blender/earth/bump.jpg +%%PYTHON_SITELIBDIR%%/openshot/blender/earth/world_map.jpg +%%PYTHON_SITELIBDIR%%/openshot/blender/earth_real.xml +%%PYTHON_SITELIBDIR%%/openshot/blender/explode.xml %%PYTHON_SITELIBDIR%%/openshot/blender/fly_by_1.xml %%PYTHON_SITELIBDIR%%/openshot/blender/fly_by_two_titles.xml %%PYTHON_SITELIBDIR%%/openshot/blender/glare.xml @@ -36,6 +50,10 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/blender/icons/blur.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/colors.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/defocus.png +%%PYTHON_SITELIBDIR%%/openshot/blender/icons/dissolve.png +%%PYTHON_SITELIBDIR%%/openshot/blender/icons/earth.png +%%PYTHON_SITELIBDIR%%/openshot/blender/icons/earth_real.png +%%PYTHON_SITELIBDIR%%/openshot/blender/icons/explode.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/fly_by_1.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/fly_by_two_titles.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/glare.png @@ -48,7 +66,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/blender/icons/rotate_360.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/slide_left_to_right.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/snow.png -%%PYTHON_SITELIBDIR%%/openshot/blender/icons/travel_map.png +%%PYTHON_SITELIBDIR%%/openshot/blender/icons/spacemovie_intro.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/trees.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/wireframe_text.png %%PYTHON_SITELIBDIR%%/openshot/blender/icons/zoom_clapboard.png @@ -69,6 +87,18 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/defocus.py %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/defocus.pyc %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/defocus.pyo +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/dissolve.py +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/dissolve.pyc +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/dissolve.pyo +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/earth.py +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/earth.pyc +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/earth.pyo +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/earth_real.py +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/earth_real.pyc +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/earth_real.pyo +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/explode.py +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/explode.pyc +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/explode.pyo %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/fly_by_1.py %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/fly_by_1.pyc %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/fly_by_1.pyo @@ -105,9 +135,9 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/snow.py %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/snow.pyc %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/snow.pyo -%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/travel_map.py -%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/travel_map.pyc -%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/travel_map.pyo +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/spacemovie_intro.py +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/spacemovie_intro.pyc +%%PYTHON_SITELIBDIR%%/openshot/blender/scripts/spacemovie_intro.pyo %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/trees.py %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/trees.pyc %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/trees.pyo @@ -119,7 +149,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/blender/scripts/zoom_clapboard.pyo %%PYTHON_SITELIBDIR%%/openshot/blender/slide_left_to_right.xml %%PYTHON_SITELIBDIR%%/openshot/blender/snow.xml -%%PYTHON_SITELIBDIR%%/openshot/blender/travel_map.xml +%%PYTHON_SITELIBDIR%%/openshot/blender/spacemovie_intro.xml %%PYTHON_SITELIBDIR%%/openshot/blender/trees.xml %%PYTHON_SITELIBDIR%%/openshot/blender/wireframe_text.xml %%PYTHON_SITELIBDIR%%/openshot/blender/zoom_clapboard.xml @@ -201,7 +231,9 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/classes/video.py %%PYTHON_SITELIBDIR%%/openshot/classes/video.pyc %%PYTHON_SITELIBDIR%%/openshot/classes/video.pyo +%%PYTHON_SITELIBDIR%%/openshot/effects/alphagrad.xml %%PYTHON_SITELIBDIR%%/openshot/effects/balance.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/baltan.xml %%PYTHON_SITELIBDIR%%/openshot/effects/bass.xml %%PYTHON_SITELIBDIR%%/openshot/effects/blur.xml %%PYTHON_SITELIBDIR%%/openshot/effects/brightness.xml @@ -213,6 +245,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/colordistance.xml %%PYTHON_SITELIBDIR%%/openshot/effects/contrast.xml %%PYTHON_SITELIBDIR%%/openshot/effects/defish0r.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/delaygrab.xml %%PYTHON_SITELIBDIR%%/openshot/effects/distort.xml %%PYTHON_SITELIBDIR%%/openshot/effects/echo.xml %%PYTHON_SITELIBDIR%%/openshot/effects/edgeglow.xml @@ -223,7 +256,9 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/glow.xml %%PYTHON_SITELIBDIR%%/openshot/effects/greyscale.xml %%PYTHON_SITELIBDIR%%/openshot/effects/hue.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/alphagrad.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/audio.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/baltan.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/blur.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/brightness.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/cartoon.png @@ -234,6 +269,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/colordistance.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/contrast.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/defishor.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/delaygrab.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/distort.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/edgeglow.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/equalizor.png @@ -244,8 +280,10 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/greyscale.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/hue.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/invert.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/lenscorrection.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/letterbox.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/levels.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/mask0mate.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/mirror.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/nosync.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/old_dust.png @@ -259,13 +297,20 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/saturate.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/scanlines.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/sepia.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/sharpness.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/sobel.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/tcolor.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/tehroxx0r.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/three_point_balance.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/threelay0r.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/threshold.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/tintor.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/two_layer.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/vignette.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/medium/white_balance.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/alphagrad.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/audio.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/baltan.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/blur.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/brightness.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/cartoon.png @@ -276,6 +321,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/colordistance.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/contrast.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/defishor.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/delaygrab.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/distort.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/edgeglow.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/equalizor.png @@ -286,8 +332,10 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/greyscale.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/hue.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/invert.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/lenscorrection.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/letterbox.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/levels.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/mask0mate.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/mirror.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/nosync.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/old_dust.png @@ -301,15 +349,22 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/saturate.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/scanlines.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/sepia.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/sharpness.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/sobel.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/tcolor.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/tehroxx0r.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/three_point_balance.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/threelay0r.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/threshold.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/tintor.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/two_layer.png +%%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/vignette.png %%PYTHON_SITELIBDIR%%/openshot/effects/icons/small/white_balance.png %%PYTHON_SITELIBDIR%%/openshot/effects/invert.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/lenscorrection.xml %%PYTHON_SITELIBDIR%%/openshot/effects/letterbox.xml %%PYTHON_SITELIBDIR%%/openshot/effects/levels.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/mask0mate.xml %%PYTHON_SITELIBDIR%%/openshot/effects/mirror.xml %%PYTHON_SITELIBDIR%%/openshot/effects/nosync.xml %%PYTHON_SITELIBDIR%%/openshot/effects/old_dust.xml @@ -323,12 +378,17 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/effects/saturation.xml %%PYTHON_SITELIBDIR%%/openshot/effects/scanlines.xml %%PYTHON_SITELIBDIR%%/openshot/effects/sepia.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/sharpness.xml %%PYTHON_SITELIBDIR%%/openshot/effects/sobel.xml %%PYTHON_SITELIBDIR%%/openshot/effects/tcolor.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/tehroxx0r.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/three_point_balance.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/threelay0r.xml %%PYTHON_SITELIBDIR%%/openshot/effects/threshold.xml %%PYTHON_SITELIBDIR%%/openshot/effects/tintor.xml %%PYTHON_SITELIBDIR%%/openshot/effects/treble.xml %%PYTHON_SITELIBDIR%%/openshot/effects/two_layer.xml +%%PYTHON_SITELIBDIR%%/openshot/effects/vignette.xml %%PYTHON_SITELIBDIR%%/openshot/effects/white_balance.xml %%PYTHON_SITELIBDIR%%/openshot/export_presets/apple_tv.xml %%PYTHON_SITELIBDIR%%/openshot/export_presets/avchd.xml @@ -420,6 +480,8 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/locale/et/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/eu/LC_MESSAGES/OpenShot.mo %%PYTHON_SITELIBDIR%%/openshot/locale/eu/LC_MESSAGES/OpenShot.po +%%PYTHON_SITELIBDIR%%/openshot/locale/fa/LC_MESSAGES/OpenShot.mo +%%PYTHON_SITELIBDIR%%/openshot/locale/fa/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/fi/LC_MESSAGES/OpenShot.mo %%PYTHON_SITELIBDIR%%/openshot/locale/fi/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/fil/LC_MESSAGES/OpenShot.mo @@ -460,6 +522,8 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/locale/kn/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/ko/LC_MESSAGES/OpenShot.mo %%PYTHON_SITELIBDIR%%/openshot/locale/ko/LC_MESSAGES/OpenShot.po +%%PYTHON_SITELIBDIR%%/openshot/locale/ky/LC_MESSAGES/OpenShot.mo +%%PYTHON_SITELIBDIR%%/openshot/locale/ky/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/la/LC_MESSAGES/OpenShot.mo %%PYTHON_SITELIBDIR%%/openshot/locale/la/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/lt/LC_MESSAGES/OpenShot.mo @@ -492,6 +556,8 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/locale/ru/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/shn/LC_MESSAGES/OpenShot.mo %%PYTHON_SITELIBDIR%%/openshot/locale/shn/LC_MESSAGES/OpenShot.po +%%PYTHON_SITELIBDIR%%/openshot/locale/si/LC_MESSAGES/OpenShot.mo +%%PYTHON_SITELIBDIR%%/openshot/locale/si/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/sk/LC_MESSAGES/OpenShot.mo %%PYTHON_SITELIBDIR%%/openshot/locale/sk/LC_MESSAGES/OpenShot.po %%PYTHON_SITELIBDIR%%/openshot/locale/sl/LC_MESSAGES/OpenShot.mo @@ -962,6 +1028,63 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/themes/fresher/transition_up.png %%PYTHON_SITELIBDIR%%/openshot/themes/fresher/visible.png %%PYTHON_SITELIBDIR%%/openshot/themes/fresher/visible_transparent.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Clip_Left_Gold.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Clip_Middle_Gold.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Clip_Right_Gold.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Track_Left.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Track_Left_Hover.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Track_Middle.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Track_Middle_Hover.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Track_Right.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Track_Right_Hover.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Transition_Left_Blue.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Transition_Middle_Blue.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/Transition_Right_Blue.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/effect.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/add_marker.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/arrow.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/media-eject.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/minus.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/move_all_line.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/next.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/next_marker.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/openshot.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/pause.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/pause_big.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/play.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/play_big.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/plus.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/previous.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/previous_marker.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/razor.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/razor_line.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/razor_line_with_razor.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/resize.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/seek_backwards.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/seek_forwards.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/snap.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/snapshot.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons/stop.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/marker.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/not_visible.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/not_visible_transparent.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/pause.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/play_head.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/position_line.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/ruler_left.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/ruler_middle.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/ruler_right.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/ruler_tick.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/speaker.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/speaker_mute.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/speaker_mute_transparent.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/speaker_transparent.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/theme.xml +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/transition_down.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/transition_mask.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/transition_up.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/visible.png +%%PYTHON_SITELIBDIR%%/openshot/themes/holo/visible_transparent.png %%PYTHON_SITELIBDIR%%/openshot/themes/simple/Clip_Left_Gold.png %%PYTHON_SITELIBDIR%%/openshot/themes/simple/Clip_Left_Green.png %%PYTHON_SITELIBDIR%%/openshot/themes/simple/Clip_Left_Pink.png @@ -1167,6 +1290,9 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/transitions/blinds_in_to_out.pgm %%PYTHON_SITELIBDIR%%/openshot/transitions/blinds_in_to_out_big.pgm %%PYTHON_SITELIBDIR%%/openshot/transitions/blinds_sliding.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/board.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/boxes_1.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/boxes_2.png %%PYTHON_SITELIBDIR%%/openshot/transitions/bubbles.png %%PYTHON_SITELIBDIR%%/openshot/transitions/circle_in_to_out.svg %%PYTHON_SITELIBDIR%%/openshot/transitions/circle_out_to_in.svg @@ -1192,6 +1318,9 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/blinds_in_to_out.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/blinds_in_to_out_big.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/blinds_sliding.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/board.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/boxes_1.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/boxes_2.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/bubbles.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/circle_in_to_out.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/circle_out_to_in.png @@ -1229,6 +1358,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/spots.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/star_1.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/star_2.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/vertical_bars.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/vertical_blinds_in_to_out.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/vertical_blinds_in_to_out_big.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/medium/wipe_bottom_to_top.png @@ -1242,6 +1372,9 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/blinds_in_to_out.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/blinds_in_to_out_big.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/blinds_sliding.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/board.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/boxes_1.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/boxes_2.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/bubbles.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/circle_in_to_out.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/circle_out_to_in.png @@ -1279,6 +1412,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/spots.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/star_1.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/star_2.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/vertical_bars.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/vertical_blinds_in_to_out.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/vertical_blinds_in_to_out_big.png %%PYTHON_SITELIBDIR%%/openshot/transitions/icons/small/wipe_bottom_to_top.png @@ -1304,6 +1438,7 @@ bin/openshot-render %%PYTHON_SITELIBDIR%%/openshot/transitions/spots.png %%PYTHON_SITELIBDIR%%/openshot/transitions/star_1.png %%PYTHON_SITELIBDIR%%/openshot/transitions/star_2.png +%%PYTHON_SITELIBDIR%%/openshot/transitions/vertical_bars.png %%PYTHON_SITELIBDIR%%/openshot/transitions/vertical_blinds_in_to_out.pgm %%PYTHON_SITELIBDIR%%/openshot/transitions/vertical_blinds_in_to_out_big.pgm %%PYTHON_SITELIBDIR%%/openshot/transitions/wipe_bottom_to_top.svg @@ -2012,6 +2147,8 @@ share/pixmaps/openshot.svg @dirrm %%PYTHON_SITELIBDIR%%/openshot/themes/tango @dirrm %%PYTHON_SITELIBDIR%%/openshot/themes/simple/icons @dirrm %%PYTHON_SITELIBDIR%%/openshot/themes/simple +@dirrm %%PYTHON_SITELIBDIR%%/openshot/themes/holo/icons +@dirrm %%PYTHON_SITELIBDIR%%/openshot/themes/holo @dirrm %%PYTHON_SITELIBDIR%%/openshot/themes/fresher/icons @dirrm %%PYTHON_SITELIBDIR%%/openshot/themes/fresher @dirrm %%PYTHON_SITELIBDIR%%/openshot/themes/fresh/icons @@ -2056,6 +2193,8 @@ share/pixmaps/openshot.svg @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/sl @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/sk/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/sk +@dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/si/LC_MESSAGES +@dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/si @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/shn/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/shn @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/ru/LC_MESSAGES @@ -2088,6 +2227,8 @@ share/pixmaps/openshot.svg @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/lt @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/la/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/la +@dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/ky/LC_MESSAGES +@dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/ky @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/ko/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/ko @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/kn/LC_MESSAGES @@ -2128,6 +2269,8 @@ share/pixmaps/openshot.svg @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/fil @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/fi/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/fi +@dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/fa/LC_MESSAGES +@dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/fa @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/eu/LC_MESSAGES @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/eu @dirrm %%PYTHON_SITELIBDIR%%/openshot/locale/et/LC_MESSAGES @@ -2180,6 +2323,7 @@ share/pixmaps/openshot.svg @dirrm %%PYTHON_SITELIBDIR%%/openshot/classes @dirrm %%PYTHON_SITELIBDIR%%/openshot/blender/scripts @dirrm %%PYTHON_SITELIBDIR%%/openshot/blender/icons +@dirrm %%PYTHON_SITELIBDIR%%/openshot/blender/earth @dirrm %%PYTHON_SITELIBDIR%%/openshot/blender/blend @dirrm %%PYTHON_SITELIBDIR%%/openshot/blender @dirrm %%PYTHON_SITELIBDIR%%/openshot From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 06:32:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 242B3107A; Tue, 9 Oct 2012 06:32:27 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E6C5C8FC1F; Tue, 9 Oct 2012 06:32:26 +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 q995Hiw6043825; Tue, 9 Oct 2012 05:17:44 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q995HheQ043821; Tue, 9 Oct 2012 05:17:43 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201210090517.q995HheQ043821@svn.freebsd.org> From: Kevin Lo Date: Tue, 9 Oct 2012 05:17:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305568 - head/deskutils/taskcoach X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 06:32:27 -0000 Author: kevlo Date: Tue Oct 9 05:17:43 2012 New Revision: 305568 URL: http://svn.freebsd.org/changeset/ports/305568 Log: Update to 1.3.19 Modified: head/deskutils/taskcoach/Makefile head/deskutils/taskcoach/distinfo head/deskutils/taskcoach/pkg-plist Modified: head/deskutils/taskcoach/Makefile ============================================================================== --- head/deskutils/taskcoach/Makefile Tue Oct 9 04:51:58 2012 (r305567) +++ head/deskutils/taskcoach/Makefile Tue Oct 9 05:17:43 2012 (r305568) @@ -1,18 +1,13 @@ -# New ports collection makefile for: taskcoach -# Date created: 4 March 2011 -# Whom: Kevin Lo -# # $FreeBSD$ -# PORTNAME= taskcoach -PORTVERSION= 1.3.18 +PORTVERSION= 1.3.19 CATEGORIES= deskutils python MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Release-${PORTVERSION} DISTNAME= TaskCoach-${PORTVERSION} MAINTAINER= kevlo@FreeBSD.org -COMMENT= A friendly task manager +COMMENT= Friendly task manager WRKSRC= ${WRKDIR}/${DISTNAME} Modified: head/deskutils/taskcoach/distinfo ============================================================================== --- head/deskutils/taskcoach/distinfo Tue Oct 9 04:51:58 2012 (r305567) +++ head/deskutils/taskcoach/distinfo Tue Oct 9 05:17:43 2012 (r305568) @@ -1,2 +1,2 @@ -SHA256 (TaskCoach-1.3.18.tar.gz) = 58a1ce7a65b58d71f2e029d69bfbf8c7e39b7623d11bfe5820faa6a224e83692 -SIZE (TaskCoach-1.3.18.tar.gz) = 2597941 +SHA256 (TaskCoach-1.3.19.tar.gz) = 25ef09faaeca8e7c9334ef70f7c9d95ac96cc5bace5185f3ec4280d38df39de8 +SIZE (TaskCoach-1.3.19.tar.gz) = 2603762 Modified: head/deskutils/taskcoach/pkg-plist ============================================================================== --- head/deskutils/taskcoach/pkg-plist Tue Oct 9 04:51:58 2012 (r305567) +++ head/deskutils/taskcoach/pkg-plist Tue Oct 9 05:17:43 2012 (r305568) @@ -1229,6 +1229,9 @@ bin/taskcoach %%PYTHON_SITELIBDIR%%/taskcoachlib/thirdparty/wxScheduler/wxSchedulerPrint.py %%PYTHON_SITELIBDIR%%/taskcoachlib/thirdparty/wxScheduler/wxSchedulerPrint.pyc %%PYTHON_SITELIBDIR%%/taskcoachlib/thirdparty/wxScheduler/wxSchedulerPrint.pyo +%%PYTHON_SITELIBDIR%%/taskcoachlib/thirdparty/wxScheduler/wxTimeFormat.py +%%PYTHON_SITELIBDIR%%/taskcoachlib/thirdparty/wxScheduler/wxTimeFormat.pyc +%%PYTHON_SITELIBDIR%%/taskcoachlib/thirdparty/wxScheduler/wxTimeFormat.pyo %%PYTHON_SITELIBDIR%%/taskcoachlib/tools/__init__.py %%PYTHON_SITELIBDIR%%/taskcoachlib/tools/__init__.pyc %%PYTHON_SITELIBDIR%%/taskcoachlib/tools/__init__.pyo From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 06:32:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69265107C; Tue, 9 Oct 2012 06:32:27 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 35FCF8FC0A; Tue, 9 Oct 2012 06:32:27 +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 q994px2Z035192; Tue, 9 Oct 2012 04:51:59 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q994pxaV035189; Tue, 9 Oct 2012 04:51:59 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201210090451.q994pxaV035189@svn.freebsd.org> From: Kevin Lo Date: Tue, 9 Oct 2012 04:51:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305567 - in head/chinese/auto-tw-l10n: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 06:32:27 -0000 Author: kevlo Date: Tue Oct 9 04:51:58 2012 New Revision: 305567 URL: http://svn.freebsd.org/changeset/ports/305567 Log: - Remove dependency on fastest_cvsup (deprecate cvsup for the ports tree) - Adopt new Makefile header Added: head/chinese/auto-tw-l10n/files/patch-make.conf.in (contents, props changed) Deleted: head/chinese/auto-tw-l10n/files/pkg-install.in Modified: head/chinese/auto-tw-l10n/Makefile Modified: head/chinese/auto-tw-l10n/Makefile ============================================================================== --- head/chinese/auto-tw-l10n/Makefile Tue Oct 9 02:11:46 2012 (r305566) +++ head/chinese/auto-tw-l10n/Makefile Tue Oct 9 04:51:58 2012 (r305567) @@ -1,35 +1,24 @@ -# New ports collection makefile for: zh-auto-tw-l10n -# Date created: 7 Oct 2000 -# Whom: "Michael C . Wu" -# +# Created by: Michael C . Wu # $FreeBSD$ -# PORTNAME= auto-tw-l10n PORTVERSION= 1.13 +PORTREVISION= 1 CATEGORIES= chinese MASTER_SITES= LOCAL/sunpoet MAINTAINER= ports@FreeBSD.org -COMMENT= The automatic localization for Traditional Chinese zh_TW.UTF-8 locale - -RUN_DEPENDS= ${FASTEST_CVSUP}:${PORTSDIR}/sysutils/fastest_cvsup +COMMENT= Automatic localization for Traditional Chinese locale NO_BUILD= yes USE_XZ= yes -PKGINSTALL= ${WRKDIR}/pkg-install PKGMESSAGE= ${WRKDIR}/pkg-message -SUB_FILES= pkg-install pkg-message -SUB_LIST= PREFIX=${PREFIX} ZONE=${ZONE} SOURCE_DIR=${WRKSRC} \ - WRKDIR=${WRKDIR} FASTEST_CVSUP=${FASTEST_CVSUP} - -FASTEST_CVSUP?= ${LOCALBASE}/bin/fastest_cvsup -ZONE?= tw +SUB_FILES= pkg-message pre-install: - @${SH} ${PKGINSTALL} - @${FIND} ${WRKSRC} -name "*.in" -delete + @${FIND} ${WRKSRC} -name "*.orig" -delete + @${MV} ${WRKSRC}/make.conf.in ${WRKSRC}/make.conf do-install: ${MKDIR} ${PREFIX}/share/skel/zh_TW.UTF-8/ Added: head/chinese/auto-tw-l10n/files/patch-make.conf.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/auto-tw-l10n/files/patch-make.conf.in Tue Oct 9 04:51:58 2012 (r305567) @@ -0,0 +1,24 @@ +--- make.conf.in.orig 2012-10-09 12:22:09.000000000 +0800 ++++ make.conf.in 2012-10-09 12:24:57.000000000 +0800 +@@ -30,21 +30,6 @@ + # CPUTYPE?=itanium2 + + # +-# SUPHOST ¥Nªí­n¨ì­þ¥x CVSup Server¡A½Ð§ï¦¨Â÷§A¤ñ¸ûªñ(§Ö)ªº Server¡C +-# +-SUPHOST= %%SERVER1%% +-SUP_UPDATE= yes +-SUP= `which csup` +-SUPFLAGS= -L 2 +- +-# +-# °²³]§A¬O¥Î -STABLE¡A¤]´N¬O stable-supfile +-# +-SUPFILE= /usr/share/examples/cvsup/stable-supfile +-PORTSSUPFILE= /usr/share/examples/cvsup/ports-supfile +-DOCSUPFILE= /usr/share/examples/cvsup/doc-supfile +- +-# + # ³]©w°ê¤ºªº distfiles mirror sites + MASTER_SITE_BACKUP?= \ + http://%%SERVER1%%/pub/FreeBSD/distfiles/${DIST_SUBDIR}/\ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 06:36:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8EB5F1869; Tue, 9 Oct 2012 06:36:50 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 757F38FC0A; Tue, 9 Oct 2012 06:36: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 q996aoC9054557; Tue, 9 Oct 2012 06:36:50 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q996ao5n054554; Tue, 9 Oct 2012 06:36:50 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210090636.q996ao5n054554@svn.freebsd.org> From: Frederic Culot Date: Tue, 9 Oct 2012 06:36:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305569 - head/databases/cego X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 06:36:50 -0000 Author: culot Date: Tue Oct 9 06:36:49 2012 New Revision: 305569 URL: http://svn.freebsd.org/changeset/ports/305569 Log: - Update to 2.14.0 Changes: http://www.lemke-it.com/litnoauth?request=pubclogcego PR: ports/172393 Submitted by: Kurt Jaeger (maintainer) Modified: head/databases/cego/Makefile head/databases/cego/distinfo Modified: head/databases/cego/Makefile ============================================================================== --- head/databases/cego/Makefile Tue Oct 9 05:17:43 2012 (r305568) +++ head/databases/cego/Makefile Tue Oct 9 06:36:49 2012 (r305569) @@ -1,11 +1,8 @@ -# New ports collection makefile for: cego -# Date created: Jun 12, 2010 -# Whom: Kurt Jaeger -# +# Created by: Kurt Jaeger # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.13.9 +PORTVERSION= 2.14.0 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cego/distinfo ============================================================================== --- head/databases/cego/distinfo Tue Oct 9 05:17:43 2012 (r305568) +++ head/databases/cego/distinfo Tue Oct 9 06:36:49 2012 (r305569) @@ -1,2 +1,2 @@ -SHA256 (cego-2.13.9.tar.gz) = 1dab2882c650147df7b2ff771d276c5d455cdb609ca950a5658fb1086ab0da65 -SIZE (cego-2.13.9.tar.gz) = 656727 +SHA256 (cego-2.14.0.tar.gz) = 55bbb2d4ebb6ce3c2173442f3fbc6b654d50411caf37855deaf102c31da68ac4 +SIZE (cego-2.14.0.tar.gz) = 654185 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 07:17:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4866E4A2; Tue, 9 Oct 2012 07:17:10 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2F00E8FC08; Tue, 9 Oct 2012 07:17: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 q997HAIV060277; Tue, 9 Oct 2012 07:17:10 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q997H9SZ060274; Tue, 9 Oct 2012 07:17:09 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201210090717.q997H9SZ060274@svn.freebsd.org> From: Rene Ladan Date: Tue, 9 Oct 2012 07:17:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305570 - head/www/chromium X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 07:17:10 -0000 Author: rene Date: Tue Oct 9 07:17:09 2012 New Revision: 305570 URL: http://svn.freebsd.org/changeset/ports/305570 Log: Update to 22.0.1229.92 While here pet portlint. Security: http://www.vuxml.org/freebsd/e6161b65-1187-11e2-afe3-00262d5ed8ee.html Modified: head/www/chromium/Makefile head/www/chromium/distinfo (contents, props changed) Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Tue Oct 9 06:36:49 2012 (r305569) +++ head/www/chromium/Makefile Tue Oct 9 07:17:09 2012 (r305570) @@ -3,7 +3,7 @@ PORTNAME= chromium DISTVERSIONPREFIX= courgette-redacted- -DISTVERSION= 22.0.1229.79 +DISTVERSION= 22.0.1229.92 CATEGORIES= www MASTER_SITES= http://download.goodking.org/downloads/ \ ftp://rene-ladan.nl/pub/distfiles/ \ @@ -37,7 +37,7 @@ LIB_DEPENDS= execinfo:${PORTSDIR}/devel/ gcrypt:${PORTSDIR}/security/libgcrypt RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins \ - ${LOCALBASE}/lib/X11/fonts/Droid/fonts.dir:${PORTSDIR}/x11-fonts/droid-fonts-ttf + ${LOCALBASE}/lib/X11/fonts/Droid/fonts.dir:${PORTSDIR}/x11-fonts/droid-fonts-ttf ONLY_FOR_ARCHS= i386 amd64 USE_XZ= yes Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Tue Oct 9 06:36:49 2012 (r305569) +++ head/www/chromium/distinfo Tue Oct 9 07:17:09 2012 (r305570) @@ -1,2 +1,2 @@ -SHA256 (chromium-courgette-redacted-22.0.1229.79.tar.xz) = bedf976f9ed5e2f3cd149fed7fa9b1cd7cecc5e40794eefe0a7c6143493febdd -SIZE (chromium-courgette-redacted-22.0.1229.79.tar.xz) = 173072364 +SHA256 (chromium-courgette-redacted-22.0.1229.92.tar.xz) = 85c7e618e7acc22f5a2c4d3993db02cac50834b0f7b12976d4e6f019cdf247b2 +SIZE (chromium-courgette-redacted-22.0.1229.92.tar.xz) = 173059616 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 07:32:45 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26B116FB; Tue, 9 Oct 2012 07:32:45 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0D8C28FC08; Tue, 9 Oct 2012 07:32:45 +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 q997WiGJ062298; Tue, 9 Oct 2012 07:32:44 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q997WiCQ062296; Tue, 9 Oct 2012 07:32:44 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210090732.q997WiCQ062296@svn.freebsd.org> From: Alex Dupre Date: Tue, 9 Oct 2012 07:32:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305571 - head/lang/php5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 07:32:45 -0000 Author: ale Date: Tue Oct 9 07:32:44 2012 New Revision: 305571 URL: http://svn.freebsd.org/changeset/ports/305571 Log: Fix typo in MYSQLND_DESC. Submitted by: riccardo@torrini.org Modified: head/lang/php5/Makefile.ext Modified: head/lang/php5/Makefile.ext ============================================================================== --- head/lang/php5/Makefile.ext Tue Oct 9 07:17:09 2012 (r305570) +++ head/lang/php5/Makefile.ext Tue Oct 9 07:32:44 2012 (r305571) @@ -195,14 +195,14 @@ CONFIGURE_ARGS+=--with-mssql=${LOCALBASE OPTIONS_DEFINE= MYSQLND OPTIONS_DEFAULT=MYSQLND -MYSQLND_DESC= Use MySQL Native Driver" +MYSQLND_DESC= Use MySQL Native Driver .endif .if ${PHP_MODNAME} == "mysqli" OPTIONS_DEFINE= MYSQLND OPTIONS_DEFAULT=MYSQLND -MYSQLND_DESC= Use MySQL Native Driver" +MYSQLND_DESC= Use MySQL Native Driver .endif .if ${PHP_MODNAME} == "odbc" @@ -252,7 +252,7 @@ USE_FIREBIRD= yes OPTIONS_DEFINE= MYSQLND OPTIONS_DEFAULT=MYSQLND -MYSQLND_DESC= Use MySQL Native Driver" +MYSQLND_DESC= Use MySQL Native Driver USE_PHP= pdo USE_PHP_BUILD= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 09:32:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7834D51; Tue, 9 Oct 2012 09:32:59 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CF6D98FC0C; Tue, 9 Oct 2012 09:32:59 +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 q999Wx79078851; Tue, 9 Oct 2012 09:32:59 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q999Wxuu078848; Tue, 9 Oct 2012 09:32:59 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201210090932.q999Wxuu078848@svn.freebsd.org> From: Kevin Lo Date: Tue, 9 Oct 2012 09:32:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305577 - head/games/gbrainy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 09:33:00 -0000 Author: kevlo Date: Tue Oct 9 09:32:59 2012 New Revision: 305577 URL: http://svn.freebsd.org/changeset/ports/305577 Log: Update to 2.1.5 Modified: head/games/gbrainy/Makefile head/games/gbrainy/distinfo Modified: head/games/gbrainy/Makefile ============================================================================== --- head/games/gbrainy/Makefile Tue Oct 9 08:11:17 2012 (r305576) +++ head/games/gbrainy/Makefile Tue Oct 9 09:32:59 2012 (r305577) @@ -1,12 +1,7 @@ -# New ports collection makefile for: gbrainy -# Date created: 29 April 2010 -# Whom: Kevin Lo -# # $FreeBSD$ -# PORTNAME= gbrainy -PORTVERSION= 2.1.4 +PORTVERSION= 2.1.5 PORTEPOCH= 1 CATEGORIES= games MASTER_SITES= http://gent.softcatala.org/jmas/gbrainy/ Modified: head/games/gbrainy/distinfo ============================================================================== --- head/games/gbrainy/distinfo Tue Oct 9 08:11:17 2012 (r305576) +++ head/games/gbrainy/distinfo Tue Oct 9 09:32:59 2012 (r305577) @@ -1,2 +1,2 @@ -SHA256 (gbrainy-2.1.4.tar.gz) = 0ef1d99538f20633b0b985447a174c6b568aa23a2aa31c19cf48bff22f0399d0 -SIZE (gbrainy-2.1.4.tar.gz) = 2622599 +SHA256 (gbrainy-2.1.5.tar.gz) = 29b6b926410c4aee78a68115e293bb6c8436021212a81ac5cdb71c2669a114a6 +SIZE (gbrainy-2.1.5.tar.gz) = 2629526 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 10:33:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C33D6C0C; Tue, 9 Oct 2012 10:33:21 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AABA78FC12; Tue, 9 Oct 2012 10:33: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 q99AXL0Z089253; Tue, 9 Oct 2012 10:33:21 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99AXL5F089251; Tue, 9 Oct 2012 10:33:21 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201210091033.q99AXL5F089251@svn.freebsd.org> From: Andrej Zverev Date: Tue, 9 Oct 2012 10:33:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305578 - head/lang/perl5.16/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 10:33:21 -0000 Author: az Date: Tue Oct 9 10:33:21 2012 New Revision: 305578 URL: http://svn.freebsd.org/changeset/ports/305578 Log: - Fix PERL_VERSION_REGEX to match actual perl version (5.16). Repoted by: kib@ Reviewed by: tobez@ With Hat: perl@ Modified: head/lang/perl5.16/files/perl-after-upgrade Modified: head/lang/perl5.16/files/perl-after-upgrade ============================================================================== --- head/lang/perl5.16/files/perl-after-upgrade Tue Oct 9 09:32:59 2012 (r305577) +++ head/lang/perl5.16/files/perl-after-upgrade Tue Oct 9 10:33:21 2012 (r305578) @@ -264,7 +264,7 @@ while (@ARGV) { our $PERL_VERSION = '%%PERL_VERSION%%'; our $PERL_PKGNAME = '%%PKGNAME%%'; -our $PERL_VERSION_REGEX = qr/5\.14\.\d+/; +our $PERL_VERSION_REGEX = qr/5\.16\.\d+/; print STDERR "- Fuzzy source re: <$PERL_VERSION_REGEX>\n" if $debug; our @errors; From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 11:14:31 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6D9F37B; Tue, 9 Oct 2012 11:14:31 +0000 (UTC) (envelope-from sbz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A40928FC0A; Tue, 9 Oct 2012 11:14:31 +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 q99BEV2Y094871; Tue, 9 Oct 2012 11:14:31 GMT (envelope-from sbz@svn.freebsd.org) Received: (from sbz@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99BEVZb094869; Tue, 9 Oct 2012 11:14:31 GMT (envelope-from sbz@svn.freebsd.org) Message-Id: <201210091114.q99BEVZb094869@svn.freebsd.org> From: Sofian Brabez Date: Tue, 9 Oct 2012 11:14:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305579 - head/security/libssh2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 11:14:31 -0000 Author: sbz Date: Tue Oct 9 11:14:31 2012 New Revision: 305579 URL: http://svn.freebsd.org/changeset/ports/305579 Log: - Fix Makefile header Modified: head/security/libssh2/Makefile Modified: head/security/libssh2/Makefile ============================================================================== --- head/security/libssh2/Makefile Tue Oct 9 10:33:21 2012 (r305578) +++ head/security/libssh2/Makefile Tue Oct 9 11:14:31 2012 (r305579) @@ -1,4 +1,4 @@ -# Whom: Alexander Leidinger +# Created by: Alexander Leidinger # $FreeBSD$ PORTNAME= libssh2 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:53:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D497DE9; Tue, 9 Oct 2012 13:53:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 329B68FC14; Tue, 9 Oct 2012 13:53: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 q99DrIUv015686; Tue, 9 Oct 2012 13:53:18 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DrHKU015685; Tue, 9 Oct 2012 13:53:17 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091353.q99DrHKU015685@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:53:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305580 - head/sysutils/rubygem-guard-rspec X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:53:18 -0000 Author: sunpoet Date: Tue Oct 9 13:53:17 2012 New Revision: 305580 URL: http://svn.freebsd.org/changeset/ports/305580 Log: - Update to 2.1.0 Changes: https://github.com/guard/guard-rspec/commits/master Modified: head/sysutils/rubygem-guard-rspec/Makefile head/sysutils/rubygem-guard-rspec/distinfo Modified: head/sysutils/rubygem-guard-rspec/Makefile ============================================================================== --- head/sysutils/rubygem-guard-rspec/Makefile Tue Oct 9 11:14:31 2012 (r305579) +++ head/sysutils/rubygem-guard-rspec/Makefile Tue Oct 9 13:53:17 2012 (r305580) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= guard-rspec -PORTVERSION= 2.0.0 +PORTVERSION= 2.1.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-guard-rspec/distinfo ============================================================================== --- head/sysutils/rubygem-guard-rspec/distinfo Tue Oct 9 11:14:31 2012 (r305579) +++ head/sysutils/rubygem-guard-rspec/distinfo Tue Oct 9 13:53:17 2012 (r305580) @@ -1,2 +1,2 @@ -SHA256 (rubygem/guard-rspec-2.0.0.gem) = e1d498680d52a680457b8e3a631a4d4bd6879fe2a5dc81e0e5f503f632daad81 -SIZE (rubygem/guard-rspec-2.0.0.gem) = 10240 +SHA256 (rubygem/guard-rspec-2.1.0.gem) = bb700d569937adce867b75802c3c82bef42a12e4ca6a602185149e61856161eb +SIZE (rubygem/guard-rspec-2.1.0.gem) = 10240 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:58:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7586F3A; Tue, 9 Oct 2012 13:58:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE148FC17; Tue, 9 Oct 2012 13:58:53 +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 q99Dwr6u016443; Tue, 9 Oct 2012 13:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DwrNv016440; Tue, 9 Oct 2012 13:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091358.q99DwrNv016440@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:58:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305581 - head/german/mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 Author: sunpoet Date: Tue Oct 9 13:58:53 2012 New Revision: 305581 URL: http://svn.freebsd.org/changeset/ports/305581 Log: - Update to 2012.09.07 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Tue Oct 9 13:53:17 2012 (r305580) +++ head/german/mythes/Makefile Tue Oct 9 13:58:53 2012 (r305581) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Tue Oct 9 13:53:17 2012 (r305580) +++ head/german/mythes/distinfo Tue Oct 9 13:58:53 2012 (r305581) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20120930.oxt) = ea46b6f997d692c42bad38cffb4561b9fd917255bbeb7246e122f1b6075f2a4f -SIZE (mythes/Deutscher-Thesaurus-20120930.oxt) = 4110312 +SHA256 (mythes/Deutscher-Thesaurus-20120907.oxt) = d62a7b9f4257916c20bee702e016b59e565a8793fec39af48a2a01d8ffd2a2ea +SIZE (mythes/Deutscher-Thesaurus-20120907.oxt) = 3953926 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:58:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BFBC0F3D; Tue, 9 Oct 2012 13:58:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A76FE8FC08; Tue, 9 Oct 2012 13:58: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 q99DwwOJ016519; Tue, 9 Oct 2012 13:58:58 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DwwAY016516; Tue, 9 Oct 2012 13:58:58 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091358.q99DwwAY016516@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:58:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305582 - head/polish/hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:58:58 -0000 Author: sunpoet Date: Tue Oct 9 13:58:58 2012 New Revision: 305582 URL: http://svn.freebsd.org/changeset/ports/305582 Log: - Update to 20121008 Modified: head/polish/hunspell/Makefile head/polish/hunspell/distinfo Modified: head/polish/hunspell/Makefile ============================================================================== --- head/polish/hunspell/Makefile Tue Oct 9 13:58:53 2012 (r305581) +++ head/polish/hunspell/Makefile Tue Oct 9 13:58:58 2012 (r305582) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20121001 +PORTVERSION= 20121008 CATEGORIES= polish textproc MASTER_SITES= http://sjp.pl/slownik/ort/ \ LOCAL/sunpoet/${PORTNAME} Modified: head/polish/hunspell/distinfo ============================================================================== --- head/polish/hunspell/distinfo Tue Oct 9 13:58:53 2012 (r305581) +++ head/polish/hunspell/distinfo Tue Oct 9 13:58:58 2012 (r305582) @@ -1,2 +1,2 @@ -SHA256 (hunspell/sjp-myspell-pl-20121001.zip) = d984f3ebcb922ea8171d4aa52b9b17207fe73a944d072dbe57f00a4b1dc0b795 -SIZE (hunspell/sjp-myspell-pl-20121001.zip) = 1125235 +SHA256 (hunspell/sjp-myspell-pl-20121008.zip) = 59909199e95e3f1641007900bdef0d2c458797fdb32f1015e4f8e4f11d2ac6f4 +SIZE (hunspell/sjp-myspell-pl-20121008.zip) = 1125232 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0237D79; Tue, 9 Oct 2012 13:59:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE6F98FC0C; Tue, 9 Oct 2012 13:59:03 +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 q99Dx3Qv016601; Tue, 9 Oct 2012 13:59:03 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Dx3Gq016597; Tue, 9 Oct 2012 13:59:03 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99Dx3Gq016597@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305583 - head/textproc/nl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 Author: sunpoet Date: Tue Oct 9 13:59:03 2012 New Revision: 305583 URL: http://svn.freebsd.org/changeset/ports/305583 Log: - Update to 2012.09.07 Modified: head/textproc/nl-mythes/Makefile head/textproc/nl-mythes/distinfo Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Tue Oct 9 13:58:58 2012 (r305582) +++ head/textproc/nl-mythes/Makefile Tue Oct 9 13:59:03 2012 (r305583) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= nl- Modified: head/textproc/nl-mythes/distinfo ============================================================================== --- head/textproc/nl-mythes/distinfo Tue Oct 9 13:58:58 2012 (r305582) +++ head/textproc/nl-mythes/distinfo Tue Oct 9 13:59:03 2012 (r305583) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_nl-20120930.oxt) = 168d05c538d4f960d875af74b2d61ec680860b4731134843a0ea99daf1340dd9 -SIZE (mythes/thes_nl-20120930.oxt) = 1956025 +SHA256 (mythes/thes_nl-20120907.oxt) = dd8b5074581afe76e1ef50fa9187ec47ba3f15d647910d58b3837e49092949ae +SIZE (mythes/thes_nl-20120907.oxt) = 1956026 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AB6514A; Tue, 9 Oct 2012 13:59:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 136BD8FC19; Tue, 9 Oct 2012 13:59:09 +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 q99Dx8Pb016676; Tue, 9 Oct 2012 13:59:08 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Dx8Ml016673; Tue, 9 Oct 2012 13:59:08 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99Dx8Ml016673@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305584 - head/textproc/sk-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 Author: sunpoet Date: Tue Oct 9 13:59:08 2012 New Revision: 305584 URL: http://svn.freebsd.org/changeset/ports/305584 Log: - Update to 2012.09.07 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Tue Oct 9 13:59:03 2012 (r305583) +++ head/textproc/sk-mythes/Makefile Tue Oct 9 13:59:08 2012 (r305584) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Tue Oct 9 13:59:03 2012 (r305583) +++ head/textproc/sk-mythes/distinfo Tue Oct 9 13:59:08 2012 (r305584) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120930.zip) = 43cf135810074f4066f9d474370194a9026ac5e72011036e3237796b1c1209cb -SIZE (mythes/OOo-Thesaurus2-sk_SK-20120930.zip) = 331753 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = e5c5db882aa31eee0b81e36c432e089ef1529cc29707c911781a668e66a42f1d +SIZE (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = 331575 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C6F621D; Tue, 9 Oct 2012 13:59:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4457B8FC0A; Tue, 9 Oct 2012 13:59: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 q99DxEe6016754; Tue, 9 Oct 2012 13:59:14 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DxEbY016751; Tue, 9 Oct 2012 13:59:14 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99DxEbY016751@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305585 - head/textproc/sl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 Author: sunpoet Date: Tue Oct 9 13:59:13 2012 New Revision: 305585 URL: http://svn.freebsd.org/changeset/ports/305585 Log: - Update to 2012.10.08 Modified: head/textproc/sl-mythes/Makefile head/textproc/sl-mythes/distinfo Modified: head/textproc/sl-mythes/Makefile ============================================================================== --- head/textproc/sl-mythes/Makefile Tue Oct 9 13:59:08 2012 (r305584) +++ head/textproc/sl-mythes/Makefile Tue Oct 9 13:59:13 2012 (r305585) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.10.01 +PORTVERSION= 2012.10.08 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sl- Modified: head/textproc/sl-mythes/distinfo ============================================================================== --- head/textproc/sl-mythes/distinfo Tue Oct 9 13:59:08 2012 (r305584) +++ head/textproc/sl-mythes/distinfo Tue Oct 9 13:59:13 2012 (r305585) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_sl_SI_v2-20121001.zip) = 63b26b8e88cd876d8819539bf8eefa1ce986ce64a63410fbfa1d029388f5da5b -SIZE (mythes/thes_sl_SI_v2-20121001.zip) = 327988 +SHA256 (mythes/thes_sl_SI_v2-20121008.zip) = f8891f289ed3853d9fd33364f14f17b8e4ec41b4339913ff817aaf3cf2c877ef +SIZE (mythes/thes_sl_SI_v2-20121008.zip) = 327996 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 789C5406; Tue, 9 Oct 2012 13:59:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5FF738FC19; Tue, 9 Oct 2012 13:59: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 q99DxgH1016870; Tue, 9 Oct 2012 13:59:42 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DxgcD016868; Tue, 9 Oct 2012 13:59:42 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99DxgcD016868@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305586 - head/databases/kyotocabinet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 Author: sunpoet Date: Tue Oct 9 13:59:41 2012 New Revision: 305586 URL: http://svn.freebsd.org/changeset/ports/305586 Log: - Convert to new options framework - Cleanup Makefile header Modified: head/databases/kyotocabinet/Makefile (contents, props changed) Modified: head/databases/kyotocabinet/Makefile ============================================================================== --- head/databases/kyotocabinet/Makefile Tue Oct 9 13:59:13 2012 (r305585) +++ head/databases/kyotocabinet/Makefile Tue Oct 9 13:59:41 2012 (r305586) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kyotocabinet -# Date created: 22 April 2010 -# Whom: Akinori MUSHA aka knu -# +# Created by: Akinori MUSHA aka knu # $FreeBSD$ -# PORTNAME= kyotocabinet PORTVERSION= 1.2.76 @@ -16,6 +12,8 @@ COMMENT= A straightforward implementatio LICENSE= GPLv3 +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes MAKE_ARGS= PCDIR="${PREFIX}/libdata/pkgconfig" MAKE_JOBS_SAFE= yes @@ -56,12 +54,12 @@ BROKEN= Does not link on powerpc .endif post-patch: -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${FIND} ${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; ${FIND} ${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:00:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1758E4FC; Tue, 9 Oct 2012 14:00:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F39668FC1C; Tue, 9 Oct 2012 14:00: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 q99E0YU1017071; Tue, 9 Oct 2012 14:00:34 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99E0Y2l017068; Tue, 9 Oct 2012 14:00:34 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091400.q99E0Y2l017068@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:00:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305587 - head/databases/kyototycoon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 Author: sunpoet Date: Tue Oct 9 14:00:34 2012 New Revision: 305587 URL: http://svn.freebsd.org/changeset/ports/305587 Log: - Add LICENSE - Convert to new options framework - Cleanup Makefile header Modified: head/databases/kyototycoon/Makefile (contents, props changed) Modified: head/databases/kyototycoon/Makefile ============================================================================== --- head/databases/kyototycoon/Makefile Tue Oct 9 13:59:41 2012 (r305586) +++ head/databases/kyototycoon/Makefile Tue Oct 9 14:00:34 2012 (r305587) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kyototycoon -# Date created: 2011-10-04 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= kyototycoon PORTVERSION= 0.9.56 @@ -14,8 +10,12 @@ MASTER_SITES= http://fallabs.com/${PORTN MAINTAINER= sunpoet@FreeBSD.org COMMENT= A handy cache/storage server +LICENSE= GPLv3 + LIB_DEPENDS= kyotocabinet:${PORTSDIR}/databases/kyotocabinet +OPTIONS_DEFINE= DOCS + CONFIGURE_ARGS= --enable-profile --enable-uyield GNU_CONFIGURE= yes MAKE_ARGS= PCDIR="${PREFIX}/libdata/pkgconfig" @@ -32,8 +32,10 @@ MAN1= ktremotemgr.1 \ ktutilserv.1 \ ktutiltest.1 +.include + post-patch: -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif @@ -41,7 +43,7 @@ post-configure: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' ${WRKSRC}/Makefile post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${FIND} ${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; ${FIND} ${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:15:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48F40835; Tue, 9 Oct 2012 14:15:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 16C948FC14; Tue, 9 Oct 2012 14:15: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 q99EFIau019035; Tue, 9 Oct 2012 14:15:18 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EFIeD019032; Tue, 9 Oct 2012 14:15:18 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091415.q99EFIeD019032@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:15:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305588 - head/devel/p5-Class-Load-XS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 Author: sunpoet Date: Tue Oct 9 14:15:18 2012 New Revision: 305588 URL: http://svn.freebsd.org/changeset/ports/305588 Log: - Update to 0.05 - Cleanup Makefile header Changes: http://search.cpan.org/dist/Class-Load-XS/Changes Modified: head/devel/p5-Class-Load-XS/Makefile (contents, props changed) head/devel/p5-Class-Load-XS/distinfo (contents, props changed) Modified: head/devel/p5-Class-Load-XS/Makefile ============================================================================== --- head/devel/p5-Class-Load-XS/Makefile Tue Oct 9 14:00:34 2012 (r305587) +++ head/devel/p5-Class-Load-XS/Makefile Tue Oct 9 14:15:18 2012 (r305588) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Class-Load-XS -# Date created: 2011-11-16 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= Class-Load-XS -PORTVERSION= 0.04 +PORTVERSION= 0.05 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,9 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= XS implementation of parts of Class::Load -BUILD_DEPENDS= p5-Class-Load>=0.15:${PORTSDIR}/devel/p5-Class-Load -RUN_DEPENDS= p5-Class-Load>=0.15:${PORTSDIR}/devel/p5-Class-Load - +BUILD_DEPENDS= p5-Class-Load>=0.20:${PORTSDIR}/devel/p5-Class-Load +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Module-Implementation>=0.04:${PORTSDIR}/devel/p5-Module-Implementation \ p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires \ Modified: head/devel/p5-Class-Load-XS/distinfo ============================================================================== --- head/devel/p5-Class-Load-XS/distinfo Tue Oct 9 14:00:34 2012 (r305587) +++ head/devel/p5-Class-Load-XS/distinfo Tue Oct 9 14:15:18 2012 (r305588) @@ -1,2 +1,2 @@ -SHA256 (Class-Load-XS-0.04.tar.gz) = d4731aee4d5484cd1eef9b2aa46d0370be3f4c9aeb8fd14fc11bbd48201e05e3 -SIZE (Class-Load-XS-0.04.tar.gz) = 55168 +SHA256 (Class-Load-XS-0.05.tar.gz) = 91901b3dbd7feb8f7e646a68201ad41fb0c7b2e60aa114fdedbd9f64f22d157d +SIZE (Class-Load-XS-0.05.tar.gz) = 56007 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:15:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B980D90E; Tue, 9 Oct 2012 14:15:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A195D8FC0A; Tue, 9 Oct 2012 14:15:38 +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 q99EFcLI019144; Tue, 9 Oct 2012 14:15:38 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EFc2J019141; Tue, 9 Oct 2012 14:15:38 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091415.q99EFc2J019141@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:15:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305589 - head/net/rubygem-httpauth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 Author: sunpoet Date: Tue Oct 9 14:15:38 2012 New Revision: 305589 URL: http://svn.freebsd.org/changeset/ports/305589 Log: - Update to 0.2.0 - Cleanup Makefile header Changes: https://github.com/Manfred/HTTPauth/commits/master Modified: head/net/rubygem-httpauth/Makefile (contents, props changed) head/net/rubygem-httpauth/distinfo (contents, props changed) Modified: head/net/rubygem-httpauth/Makefile ============================================================================== --- head/net/rubygem-httpauth/Makefile Tue Oct 9 14:15:18 2012 (r305588) +++ head/net/rubygem-httpauth/Makefile Tue Oct 9 14:15:38 2012 (r305589) @@ -1,12 +1,8 @@ -# New ports collection makefile for: rubygem-httpauth -# Date created: 2012-04-16 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= httpauth -PORTVERSION= 0.1 +PORTVERSION= 0.2.0 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-httpauth/distinfo ============================================================================== --- head/net/rubygem-httpauth/distinfo Tue Oct 9 14:15:18 2012 (r305588) +++ head/net/rubygem-httpauth/distinfo Tue Oct 9 14:15:38 2012 (r305589) @@ -1,2 +1,2 @@ -SHA256 (rubygem/httpauth-0.1.gem) = 18d4b8b9048932303e1c22580c8391dff6a6ec24f92b7b8e6d436b621a85d9f1 -SIZE (rubygem/httpauth-0.1.gem) = 15872 +SHA256 (rubygem/httpauth-0.2.0.gem) = 61693bd3849f348c075861a014c95af777a89581e04cae231641c56fc2a9e21f +SIZE (rubygem/httpauth-0.2.0.gem) = 13824 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:18:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C34F5AB2; Tue, 9 Oct 2012 14:18:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AB9838FC08; Tue, 9 Oct 2012 14:18: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 q99EIOq5019652; Tue, 9 Oct 2012 14:18:24 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EIO6f019650; Tue, 9 Oct 2012 14:18:24 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091418.q99EIO6f019650@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:18:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305590 - head/net-mgmt/ettercap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 Author: sunpoet Date: Tue Oct 9 14:18:24 2012 New Revision: 305590 URL: http://svn.freebsd.org/changeset/ports/305590 Log: - Convert to new options framework - Rename options: GTK -> GTK2, ICONV -> UTF8 - Pet portlint: remove ABI version number from LIB_DEPENDS - Cleanup Makefile header - Cosmetic change Modified: head/net-mgmt/ettercap/Makefile (contents, props changed) Modified: head/net-mgmt/ettercap/Makefile ============================================================================== --- head/net-mgmt/ettercap/Makefile Tue Oct 9 14:15:38 2012 (r305589) +++ head/net-mgmt/ettercap/Makefile Tue Oct 9 14:18:24 2012 (r305590) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ettercap -# Date created: 19 February 2001 -# Whom: George Reid -# +# Created by: George Reid # $FreeBSD$ -# PORTNAME= ettercap PORTVERSION= 0.7.4.1 @@ -18,11 +14,11 @@ COMMENT= A network sniffer/interceptor/i BUILD_DEPENDS= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet -OPTIONS= GTK "Build with GTK2+ GUI" on \ - ICONV "Build with support for UTF-8" on \ - PCRE "Build with PCRE regexps in filters" on \ - PLUGINS "Build with ettercap plugins" on \ - SSL "Build with support for SSH1 and SSL decryption" on +# GTK -> GTK2, ICONV -> UTF8 +OPTIONS_DEFINE= DOCS GTK2 PCRE PLUGINS SSL UTF8 +OPTIONS_DEFAULT=GTK2 PCRE PLUGINS SSL UTF8 +PCRE_DESC= Use PCRE in filters +SSL_DESC= SSH1 and SSL decryption support CFLAGS+= ${PTHREAD_CFLAGS} CONFIGURE_ENV= LIBS="${LDFLAGS}" @@ -36,49 +32,49 @@ USE_BISON= build WANT_GNOME= yes WRKSRC= ${WRKDIR}/${PORTNAME} -MAN5= etter.conf.5 -MAN8= ettercap.8 ettercap_curses.8 etterfilter.8 etterlog.8 DOCS= AUTHORS CHANGELOG README README.BINARIES README.BUGS \ README.GIT README.PLATFORMS THANKS TODO TODO.TESTING \ doc/capture doc/decoders doc/dissectors doc/threads +MAN5= etter.conf.5 +MAN8= ettercap.8 ettercap_curses.8 etterfilter.8 etterlog.8 LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config .include -.if !defined(WITHOUT_GTK) -USE_GNOME= atk glib20 gtk20 pango +.if ${PORT_OPTIONS:MGTK2} PKGNAMESUFFIX+= -gtk2 CONFIGURE_ARGS+=--enable-gtk +USE_GNOME= atk glib20 gtk20 pango .else CONFIGURE_ARGS+=--disable-gtk .endif -.if !defined(WITHOUT_ICONV) -USE_ICONV= yes +.if ${PORT_OPTIONS:MUTF8} CONFIGURE_ARGS+=--with-iconv=${LOCALBASE} +USE_ICONV= yes .endif -.if !defined(WITHOUT_PCRE) -LIB_DEPENDS+= pcre.1:${PORTSDIR}/devel/pcre +.if ${PORT_OPTIONS:MPCRE} +LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre CONFIGURE_ARGS+=--with-libpcre=${LOCALBASE} .else CONFIGURE_ARGS+=--without-libpcre .endif -.if !defined(WITHOUT_PLUGINS) -MAN8+= ettercap_plugins.8 -DOCS+= doc/plugins +.if ${PORT_OPTIONS:MPLUGINS} CONFIGURE_ARGS+=--enable-plugins +DOCS+= doc/plugins +MAN8+= ettercap_plugins.8 PLIST_SUB+= PLUGINS="" .else CONFIGURE_ARGS+=--disable-plugins PLIST_SUB+= PLUGINS="@comment " .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes +.if ${PORT_OPTIONS:MSSL} CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} +USE_OPENSSL= yes .else CONFIGURE_ARGS+=--without-openssl .endif @@ -109,7 +105,7 @@ post-install: .if !exists(${PREFIX}/etc/etter.conf) ${INSTALL_DATA} ${WRKSRC}/share/etter.conf ${PREFIX}/etc/etter.conf .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/ .endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:04:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8F7FB8B for ; Tue, 9 Oct 2012 15:04:28 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 8AC948FC17 for ; Tue, 9 Oct 2012 15:04:28 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so5815812pad.13 for ; Tue, 09 Oct 2012 08:04:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=mdW1Jd/EW2Qrr1h9szs2i0TforFvJvlYjmwrJZ2lbbo=; b=NkHaCM1LZJ4ImMvxLiWezbC0bqgjFRAPcSTufreoPL7hJFoUKI1io4iLI0YbPJU/SK wcvjlK6dw90jriv04ovyvqU/09IKd/NB8WOEP3sWatpPcPShdef5E3TjROcaBwX2Im1s eoaP4Z+guqtEZG8blDfLDt+5fJ9Z2JTy2J42I= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=mdW1Jd/EW2Qrr1h9szs2i0TforFvJvlYjmwrJZ2lbbo=; b=GwN/nEocCvYCqB1zHHC2DX/T8Q9xLO0h8ubVnH2Nlh9o23rCSDiWEOAWmdpJOIBdMz a+zpZ0G5D2UQulQLEVzvHFRv5Zl10VucffVAeCdLDPzmLbbD8wvHBdkTWTHpJCSEOk2A ESz+wPL1W4y1W/jzSB89+TvpP0VJODzEOI9yWvRJMKZqgXRkD3EbFi3CYDpwYVCoJpSB 5pZEKD5jGPLAext33OyLEVnGVHuKdMAI5CydWP8qw0Qq1Eo6FuRIJMxf3hHZLTHsCtvG AoMglVqwuUhRZoTrutP62IjhA+iXLXHTBeZKu8jwoG/DIOda/B0RxInIiLmrmzKbCXZp VZ6A== Received: by 10.66.75.168 with SMTP id d8mr53474380paw.63.1349795067746; Tue, 09 Oct 2012 08:04:27 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.161.163 with HTTP; Tue, 9 Oct 2012 08:03:57 -0700 (PDT) In-Reply-To: <201210082045.q98KjqgO068427@svn.freebsd.org> References: <201210082045.q98KjqgO068427@svn.freebsd.org> From: Eitan Adler Date: Tue, 9 Oct 2012 11:03:57 -0400 X-Google-Sender-Auth: UsBG3OrRCvAJFydOXARKtBYmxOc Message-ID: Subject: Re: svn commit: r305556 - head/security/vuxml To: Rene Ladan Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQlUsbjKwL4jLuV/TQOo1Clu6I5+du3TpD8aOySL9PIAHZGlRuz+WjrXQmUmHTQblhJKVjK1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 On 8 October 2012 16:45, Rene Ladan wrote: > Author: rene > Date: Mon Oct 8 20:45:52 2012 > New Revision: 305556 > URL: http://svn.freebsd.org/changeset/ports/305556 > > Log: > Document new vulnerabilities in www/chromium < 22.0.1229.92 You do a really good job at documenting the chrome vulns. Thanks! -- Eitan Adler Source & Ports committer X11, Bugbusting teams From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:26:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E223C1AB; Tue, 9 Oct 2012 15:26:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B15F38FC1B; Tue, 9 Oct 2012 15:26: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 q99FQwEY028850; Tue, 9 Oct 2012 15:26:58 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99FQwks028847; Tue, 9 Oct 2012 15:26:58 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201210091526.q99FQwks028847@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 9 Oct 2012 15:26:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305591 - head/astro/josm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 Author: amdmi3 Date: Tue Oct 9 15:26:58 2012 New Revision: 305591 URL: http://svn.freebsd.org/changeset/ports/305591 Log: - Update to 5531 Modified: head/astro/josm/Makefile head/astro/josm/distinfo Modified: head/astro/josm/Makefile ============================================================================== --- head/astro/josm/Makefile Tue Oct 9 14:18:24 2012 (r305590) +++ head/astro/josm/Makefile Tue Oct 9 15:26:58 2012 (r305591) @@ -6,7 +6,7 @@ # PORTNAME= josm -PORTVERSION= 5485 +PORTVERSION= 5531 CATEGORIES= astro java MASTER_SITES= http://josm.openstreetmap.de/download/:josm \ http://mirror.amdmi3.ru/distfiles/:josm \ @@ -25,6 +25,8 @@ JAVA_VERSION= 1.5+ JOSM_MEMORY_LIMIT?=1024 +NO_BUILD= yes + SUB_FILES= josm.sh SUB_LIST= JARNAME=${DISTNAME} JOSM_MEMORY_LIMIT=${JOSM_MEMORY_LIMIT} @@ -33,31 +35,10 @@ WEBKITIMG_SRC= ${WEBKITIMG}.cpp PLIST_FILES= bin/josm ${JAVAJARDIR:C,${PREFIX}/?,,}/${DISTNAME} -OPTIONS= WEBKIT_IMAGE "Build webkit-image (needed for Yahoo imagery)" off - -.include - pre-everything:: @${ECHO_CMD} "You can change limit of memory available to josm by defining" @${ECHO_CMD} "JOSM_MEMORY_LIMIT variable in /etc/make.conf. Default is 1024 (MB)." -.if defined(WITH_WEBKIT_IMAGE) -PLIST_FILES+= bin/webkit-image - -USE_QT4= corelib gui webkit moc_build - -do-build: - cd ${WRKSRC} && \ - ${MOC} ${DISTDIR}/${WEBKITIMG_SRC} > ${WEBKITIMG}.h && \ - ${CXX} ${CFLAGS} ${PTHREAD_LIBS} -I. -I${QT_INCDIR} -L${QT_LIBDIR} \ - ${DISTDIR}/${WEBKITIMG_SRC} -o ${WEBKITIMG} -lQtCore -lQtWebKit \ - -lQtGui -.else -# setting NO_BUILD here won't work -do-build: - @${DO_NADA} -.endif - do-install: ${MKDIR} ${JAVAJARDIR}/ ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${JAVAJARDIR}/ Modified: head/astro/josm/distinfo ============================================================================== --- head/astro/josm/distinfo Tue Oct 9 14:18:24 2012 (r305590) +++ head/astro/josm/distinfo Tue Oct 9 15:26:58 2012 (r305591) @@ -1,4 +1,4 @@ -SHA256 (josm-snapshot-5485.jar) = c392040d84539e68add3ecf60fb886cfb6fa5f36c125329ec5f55c92397d4bc2 -SIZE (josm-snapshot-5485.jar) = 7530751 +SHA256 (josm-snapshot-5531.jar) = 7e10272416903a0cc70249769f876e19a68bce346c69d587a9cf512c6fa67035 +SIZE (josm-snapshot-5531.jar) = 7578075 SHA256 (webkit-image.cpp) = 431f5b956c0e3d1615289dd6cb64effb988b30ace7c80f5a51f9546aa80d300d SIZE (webkit-image.cpp) = 2718 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:55:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1BEBA45; Tue, 9 Oct 2012 15:55:15 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 89EEF8FC08; Tue, 9 Oct 2012 15:55:15 +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 q99FtFHa032498; Tue, 9 Oct 2012 15:55:15 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99FtFfk032496; Tue, 9 Oct 2012 15:55:15 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210091555.q99FtFfk032496@svn.freebsd.org> From: Alex Dupre Date: Tue, 9 Oct 2012 15:55:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305592 - head/Tools/scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 Author: ale Date: Tue Oct 9 15:55:15 2012 New Revision: 305592 URL: http://svn.freebsd.org/changeset/ports/305592 Log: Clean-up command-line options. Approved by: crees Modified: head/Tools/scripts/addport Modified: head/Tools/scripts/addport ============================================================================== --- head/Tools/scripts/addport Tue Oct 9 15:26:58 2012 (r305591) +++ head/Tools/scripts/addport Tue Oct 9 15:55:15 2012 (r305592) @@ -58,7 +58,7 @@ sub lastcomment(); my %opts; -getopts('ac:d:fh:il:L:M:mns:tu:y', \%opts); +getopts('ac:d:fh:il:L:mns:tu:y', \%opts); my $autofill_l = $opts{'l'}; my $autofill_L = $opts{'L'}; @@ -71,7 +71,6 @@ $h = $opts{'h'} if ($opts{'h'} ne ""); my $u = $ENV{USER}; $u = $opts{'u'} if ($opts{'u'} ne ""); my $more_testing = $opts{'t'}; -my $moduleshost = $opts{'M'}; my $interactive = $opts{'i'}; my $nomkdir = $opts{'m'}; my $addlchk = $opts{'a'}; @@ -111,9 +110,6 @@ my $tmp2; my $offset; my $commitfile = " my $moved = ""; $tmp = $tmp2 = $offset = 0; -chomp(my $myhost = lc(hostname())); -$moduleshost = $myhost if ($moduleshost eq ""); - # Check the editor. my $edit = "/usr/bin/vi"; $edit = $ENV{EDITOR} if ($ENV{EDITOR} ne ""); @@ -504,8 +500,8 @@ print <, SYNOPSIS - $0 [-c commitfile] [-h host] [-l PR number] [-s distdir] [-u user] - [-abfimnt] -d directory + $0 [-c commitfile] [-h host] [-l PR number | -L PR number] + [-s distdir] [-u user] [-afimnty] -d directory Where "directory" contains the comma-delimited list of root directories of new ports that you wish to From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:59:46 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 5D4D1CCF; Tue, 9 Oct 2012 15:59:46 +0000 (UTC) Date: Tue, 9 Oct 2012 15:59:46 +0000 From: Alexey Dokuchaev To: Baptiste Daroussin Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121009155946.GA70759@FreeBSD.org> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20121008061249.GA47691@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, Doug Barton , ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > > That's because OptionsNG poorly implement mutually exclusive options. I > > hope that eventually dialog's --radiolist would be utilized for proper > > handling, and sane knobs names would be restored. > > > > Sounds like a nice port junior hacker project. > > Not hat junior dialog(1) can't mix radiolist and classic checklist that is > why it doesn't use it, using libdialog(3), it would be easiy to implement, > but that won't be usable for a while (until all supported version of > freebsd has it. Ah, OK, that explains it (lack of radiobuttons now). Is it known what's preventing all supported versions to have working libdialog(3), if we have working dialog(1) already? ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:07:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D173D27B; Tue, 9 Oct 2012 16:07:33 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9F6028FC0A; Tue, 9 Oct 2012 16:07:33 +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 q99G7XmR034163; Tue, 9 Oct 2012 16:07:33 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99G7XWU034160; Tue, 9 Oct 2012 16:07:33 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210091607.q99G7XWU034160@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 9 Oct 2012 16:07:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305593 - head/ports-mgmt/poudriere-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 Author: bapt Date: Tue Oct 9 16:07:33 2012 New Revision: 305593 URL: http://svn.freebsd.org/changeset/ports/305593 Log: - update to checkin 06e052c2c9 - changes: * Add explicit check-config phase to detect invalid OPTIONS * Fix finding run-depends packages as leftovers * Search for eligible ports trees on all ZFS pools * Fix '[: die: bad number' error in testport * bulk: If given -C, clean any previous packages only for the ports provided * Switch back to github for ports git as it is the preferred source * Call leftovers phase 'leftovers' instead of 'fscheck' Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Tue Oct 9 15:55:15 2012 (r305592) +++ head/ports-mgmt/poudriere-devel/Makefile Tue Oct 9 16:07:33 2012 (r305593) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 2.1.99.20121004 +PORTVERSION= 2.1.99.20121009 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ PKGNAMESUFFIX= -devel @@ -13,7 +13,7 @@ COMMENT= Port build and test system LICENSE= BSD -FSL_CHKIN= 86c7d4bd7c +FSL_CHKIN= 06e052c2c9 NO_BUILD= yes MANCOMPRESSED= yes Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Tue Oct 9 15:55:15 2012 (r305592) +++ head/ports-mgmt/poudriere-devel/distinfo Tue Oct 9 16:07:33 2012 (r305593) @@ -1,2 +1,2 @@ -SHA256 (poudriere-2.1.99.20121004.tar.gz?uuid=86c7d4bd7c) = bcf732ce9326c8f4787ac11ddcfda3e793a653b8e9eedc99f020d9ee6eae5c7c -SIZE (poudriere-2.1.99.20121004.tar.gz?uuid=86c7d4bd7c) = 33866 +SHA256 (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 2cdec948f233bfc9e2ba142f24127b9cde85827a6d160f63e6c5f1400d3d57ac +SIZE (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 34110 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:10:12 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B744573; Tue, 9 Oct 2012 16:10:12 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 1F7D78FC0A; Tue, 9 Oct 2012 16:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99GACZ8031999; Tue, 9 Oct 2012 16:10:12 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99GABV7031998; Tue, 9 Oct 2012 16:10:11 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Tue, 9 Oct 2012 18:10:09 +0200 From: Baptiste Daroussin To: Alexey Dokuchaev Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121009161009.GF8713@ithaqua.etoilebsd.net> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WlEyl6ow+jlIgNUh" Content-Disposition: inline In-Reply-To: <20121009155946.GA70759@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 --WlEyl6ow+jlIgNUh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > > > That's because OptionsNG poorly implement mutually exclusive options.= I > > > hope that eventually dialog's --radiolist would be utilized for proper > > > handling, and sane knobs names would be restored. > > >=20 > > > Sounds like a nice port junior hacker project. > >=20 > > Not hat junior dialog(1) can't mix radiolist and classic checklist that= is > > why it doesn't use it, using libdialog(3), it would be easiy to impleme= nt, > > but that won't be usable for a while (until all supported version of > > freebsd has it. >=20 > Ah, OK, that explains it (lack of radiobuttons now). Is it known what's > preventing all supported versions to have working libdialog(3), if we have > working dialog(1) already? >=20 > ./danfe new dialog is only on 9.x and 10.x, if will require to code some special dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicated because the API isn't compatible. regards, Bapt --WlEyl6ow+jlIgNUh Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB0TGEACgkQ8kTtMUmk6EyvpwCfbQQST7/3AMVG0+NDF155nqY6 eY8An1L/rj15/L6nAyPYSKuaYscQiEUk =aa9D -----END PGP SIGNATURE----- --WlEyl6ow+jlIgNUh-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:12:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EA296F9; Tue, 9 Oct 2012 16:12:19 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7B07C8FC1A; Tue, 9 Oct 2012 16:12: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 q99GCJQh034851; Tue, 9 Oct 2012 16:12:19 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99GCJlf034848; Tue, 9 Oct 2012 16:12:19 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210091612.q99GCJlf034848@svn.freebsd.org> From: Alex Kozlov Date: Tue, 9 Oct 2012 16:12:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305594 - head/games/xgalaga++ X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 Author: ak Date: Tue Oct 9 16:12:18 2012 New Revision: 305594 URL: http://svn.freebsd.org/changeset/ports/305594 Log: - Remove indefinite article from COMMENT - Convert Makefile headers to new style - Add DESKTOP_ENTRIES - Fix manpage name - Remove redundant comments Submitted by: nemysis (maintainer) Modified: head/games/xgalaga++/Makefile head/games/xgalaga++/distinfo Modified: head/games/xgalaga++/Makefile ============================================================================== --- head/games/xgalaga++/Makefile Tue Oct 9 16:07:33 2012 (r305593) +++ head/games/xgalaga++/Makefile Tue Oct 9 16:12:18 2012 (r305594) @@ -1,18 +1,17 @@ -# New Ports collection makefile for: xgalaga++ -# Date created: 2012-04-20 -# Whom: nemysis@gmx.ch -# # $FreeBSD$ -# PORTNAME= xgalaga++ PORTVERSION= 0.8.3 CATEGORIES= games -MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ -DISTNAME= ${PORTNAME}_${PORTVERSION} +MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ \ + http://packages.nimblex.net/slacky/games/xgalaga++/0.8.2/src/:icons +DISTFILES= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}.png:icons +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= nemysis@gmx.ch -COMMENT= A classic single screen vertical shoot em up +COMMENT= Classic single screen vertical shoot em up LICENSE= GPLv2 @@ -21,14 +20,18 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USE_GMAKE= yes ALL_TARGET= ${PORTNAME} USE_XORG= x11 xpm -MAN6= xgalaga++.6x +MAN6= xgalaga++.6 SUB_FILES= pkg-install -PLIST_FILES= bin/xgalaga++ +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.png PORTDOCS= README +DESKTOP_ENTRIES="XGalaga++" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + .include post-patch: @@ -37,14 +40,14 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MAN6PREFIX}/man/man6 - ${CHOWN} :games ${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${WRKSRC}/${MAN6}x ${MAN6PREFIX}/man/man6/${MAN6} + ${CHGRP} games ${PREFIX}/bin/${PORTNAME} ${CHMOD} g+s ${PREFIX}/bin/${PORTNAME} + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps -# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL Modified: head/games/xgalaga++/distinfo ============================================================================== --- head/games/xgalaga++/distinfo Tue Oct 9 16:07:33 2012 (r305593) +++ head/games/xgalaga++/distinfo Tue Oct 9 16:12:18 2012 (r305594) @@ -1,2 +1,4 @@ -SHA256 (xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2 -SIZE (xgalaga++_0.8.3.tar.gz) = 32466 +SHA256 (xgalaga++/xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2 +SIZE (xgalaga++/xgalaga++_0.8.3.tar.gz) = 32466 +SHA256 (xgalaga++/xgalaga++.png) = cc14035e06fafc78057db52376fe2f809fd8da3f946f7bdccfe4fd5b431c6287 +SIZE (xgalaga++/xgalaga++.png) = 3232 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:18:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3B9DB12; Tue, 9 Oct 2012 17:18:43 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2EB28FC16; Tue, 9 Oct 2012 17:18: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 q99HIhPh043036; Tue, 9 Oct 2012 17:18:43 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99HIhjC043033; Tue, 9 Oct 2012 17:18:43 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210091718.q99HIhjC043033@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 9 Oct 2012 17:18:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305595 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 Author: bapt Date: Tue Oct 9 17:18:43 2012 New Revision: 305595 URL: http://svn.freebsd.org/changeset/ports/305595 Log: - add STAT to bsd.commands.mk - use ${STAT} -f \"%z\" in make makesum to calculate size - speed up USE_PKGCONFIG by using a more efficient syntax [1] and test in the order it is most expected to appear: "yes/build" first, "both" second, "run being the last one. Reported by: dougb [1] Exp-Run by: beat Modified: head/Mk/bsd.commands.mk head/Mk/bsd.port.mk Modified: head/Mk/bsd.commands.mk ============================================================================== --- head/Mk/bsd.commands.mk Tue Oct 9 16:12:18 2012 (r305594) +++ head/Mk/bsd.commands.mk Tue Oct 9 17:18:43 2012 (r305595) @@ -79,6 +79,7 @@ SETENV?= /usr/bin/env SH?= /bin/sh SORT?= /usr/bin/sort STRIP_CMD?= /usr/bin/strip +STAT?= /usr/bin/stat # Command to run commands as privileged user # Example: "/usr/local/bin/sudo -E sh -c" to use "sudo" instead of "su" SU_CMD?= /usr/bin/su root -c Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Tue Oct 9 16:12:18 2012 (r305594) +++ head/Mk/bsd.port.mk Tue Oct 9 17:18:43 2012 (r305595) @@ -1657,20 +1657,15 @@ BUILD_DEPENDS+= gmake:${PORTSDIR}/devel CONFIGURE_ENV+= MAKE=${GMAKE} .endif .if defined(USE_PKGCONFIG) -.if ${USE_PKGCONFIG:L} == yes -USE_PKGCONFIG= build -.endif -.if ${USE_PKGCONFIG:L} == run -RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf -.endif -.if ${USE_PKGCONFIG:L} == build +.if ${USE_PKGCONFIG:L} == yes || ${USE_PKGCONFIG:L} == build BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf CONFIGURE_ENV+= PKG_CONFIG=pkgconf -.endif -.if ${USE_PKGCONFIG:L} == both +.elif ${USE_PKGCONFIG:L} == both RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf CONFIGURE_ENV+= PKG_CONFIG=pkgconf +.elif ${USE_PKGCONFIG:L} == run +RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf .endif .endif @@ -4814,7 +4809,7 @@ makesum: check-checksum-algorithms $$alg_executable $$file >> ${DISTINFO_FILE}; \ fi; \ done; \ - ${ECHO_CMD} "SIZE ($$file) = "`${LS} -ALln $$file | ${AWK} '{print $$5}'` >> ${DISTINFO_FILE}; \ + ${ECHO_CMD} "SIZE ($$file) = `${STAT} -f \"%z\" $$file`" >> ${DISTINFO_FILE}; \ done \ ) @for file in ${_IGNOREFILES}; do \ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:47:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 380532C6; Tue, 9 Oct 2012 17:47:07 +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 1F4808FC08; Tue, 9 Oct 2012 17:47: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 q99Hl6OX046664; Tue, 9 Oct 2012 17:47:06 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Hl6uj046660; Tue, 9 Oct 2012 17:47:06 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210091747.q99Hl6uj046660@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 17:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305596 - in head/java: . openjdk6 openjdk6-jre X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 Author: jkim Date: Tue Oct 9 17:47:06 2012 New Revision: 305596 URL: http://svn.freebsd.org/changeset/ports/305596 Log: - Sanitize user, group and permission. Inspired by openjdk7. - Add a slave port to create JRE-only package. Added: head/java/openjdk6-jre/ head/java/openjdk6-jre/Makefile (contents, props changed) Modified: head/java/Makefile head/java/openjdk6/Makefile Modified: head/java/Makefile ============================================================================== --- head/java/Makefile Tue Oct 9 17:18:43 2012 (r305595) +++ head/java/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -137,6 +137,7 @@ SUBDIR += netrexx SUBDIR += netty SUBDIR += openjdk6 + SUBDIR += openjdk6-jre SUBDIR += openjdk7 SUBDIR += phpeclipse SUBDIR += poseidon Added: head/java/openjdk6-jre/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/openjdk6-jre/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +PORTREVISION= 0 +CATEGORIES= java devel +PKGNAMESUFFIX= -jre + +COMMENT= Oracle's Java 6 Runtime Environment under the GPL v2 + +BUILD_JRE= yes +MASTERDIR= ${.CURDIR}/../openjdk6 +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} + +.include "${MASTERDIR}/Makefile" Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Tue Oct 9 17:18:43 2012 (r305595) +++ head/java/openjdk6/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -3,7 +3,7 @@ PORTNAME= openjdk6 PORTVERSION= b25 -PORTREVISION= 3 +PORTREVISION?= 4 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk6/promoted/${PORTVERSION}/ \ http://download.java.net/jaxp/openjdk/jdk6/:jaxp \ @@ -26,7 +26,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} ${ANTFILE} MAINTAINER= java@FreeBSD.org -COMMENT= Oracle's Java 6 virtual machine release under the GPL v2 +COMMENT?= Oracle's Java 6 virtual machine release under the GPL v2 LICENSE= GPLv2 @@ -39,18 +39,22 @@ RUN_DEPENDS= javavm:${PORTSDIR}/java/jav OPENJDK_BUILDDATE= 01_may_2012 -.include - -OPTIONS_DEFINE= DEBUG FASTDEBUG ICEDTEA IPV6 POLICY SOUND TEST TZUPDATE +OPTIONS_DEFINE= ICEDTEA IPV6 POLICY SOUND TZUPDATE OPTIONS_DEFAULT=ICEDTEA TZUPDATE -DEBUG_DESC= Enable legacy debugging support -FASTDEBUG_DESC= Include fastdebug build ICEDTEA_DESC= Apply additional patches from IcedTea POLICY_DESC= Install the Unlimited Strength Policy Files SOUND_DESC= Enable sound support -TEST_DESC= Add support for running regression test TZUPDATE_DESC= Update the time zone data +.if !defined(BUILD_JRE) +OPTIONS_DEFINE+=DEBUG FASTDEBUG TEST +DEBUG_DESC= Enable legacy debugging support +FASTDEBUG_DESC= Include fastdebug build +TEST_DESC= Add support for running regression test +.endif + +.include + # java extracts directly to the cwd WRKSRC= ${WRKDIR} @@ -255,10 +259,16 @@ post-patch: post-build: .if ${PORT_OPTIONS:MTZUPDATE} @# Update time zones +.if defined(BUILD_JRE) + @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image/lib/zi + @${LN} -s -f ${LOCALBASE}/share/java/zi \ + ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image/lib +.else @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib/zi @${LN} -s -f ${LOCALBASE}/share/java/zi \ ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib .endif +.endif .if ${PORT_OPTIONS:MTEST} @${ECHO_MSG} "" @${ECHO_MSG} "Run \"make test\" to execute regression test (it could take a few hours to complete)." @@ -282,12 +292,46 @@ test: build-depends build .endif do-install: +.if defined(BUILD_JRE) + @${MKDIR} ${PREFIX}/openjdk6-jre/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6-jre + @${CHOWN} ${BINOWN}:${BINGRP} ${PREFIX}/openjdk6-jre/bin/* \ + ${PREFIX}/openjdk6-jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} ${PREFIX}/openjdk6-jre/bin/* \ + ${PREFIX}/openjdk6-jre/lib/${ARCH}/jexec + @${ECHO_MSG} "@unexec ${LOCALBASE}/bin/unregistervm ${PREFIX}/openjdk6-jre/bin/java" >> ${TMPPLIST} + @${FIND} -s ${PREFIX}/openjdk6-jre -not -type d | \ + ${SED} -e 's#^${PREFIX}/##' >> ${TMPPLIST} + @${ECHO} "@exec mkdir ${PREFIX}/openjdk6-jre/lib/applet" >> ${TMPPLIST} + @${FIND} ${PREFIX}/openjdk6-jre -type d | ${SORT} -r | \ + ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + @${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm '${PREFIX}/openjdk6-jre/bin/java # OpenJDK6 JRE'" >> ${TMPPLIST} +.else @${MKDIR} ${PREFIX}/openjdk6/ - @${CP} -Rp ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/ ${PREFIX}/openjdk6/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6 @${INSTALL_DATA} ${WRKSRC}/build/${OPENJDK_OSARCH}/btjars/compilefontconfig.jar ${WRKSRC}/build/${OPENJDK_OSARCH}/btjars/javazic.jar ${PREFIX}/openjdk6/jre/lib/ + @for dir in `${FIND} ${PREFIX}/openjdk6 -name bin -type d`; do \ + ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ + ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ + done + @${CHOWN} ${BINOWN}:${BINGRP} \ + ${PREFIX}/openjdk6/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} \ + ${PREFIX}/openjdk6/jre/lib/${ARCH}/jexec .if ${PORT_OPTIONS:MFASTDEBUG} @${MKDIR} ${PREFIX}/openjdk6-fastdebug/ - @${CP} -Rp ${WRKSRC}/build/${OPENJDK_OSARCH}-fastdebug/j2sdk-image/ ${PREFIX}/openjdk6-fastdebug/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6-fastdebug + @for dir in `${FIND} ${PREFIX}/openjdk6-fastdebug -name bin -type d`; do \ + ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ + ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ + done + @${CHOWN} ${BINOWN}:${BINGRP} \ + ${PREFIX}/openjdk6-fastdebug/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} \ + ${PREFIX}/openjdk6-fastdebug/jre/lib/${ARCH}/jexec .endif @${ECHO_MSG} "@unexec ${LOCALBASE}/bin/unregistervm ${PREFIX}/openjdk6/bin/java" >> ${TMPPLIST} @${FIND} -s ${PREFIX}/openjdk6 -not -type d | \ @@ -305,10 +349,15 @@ do-install: ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} @${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm '${PREFIX}/openjdk6-fastdebug/bin/java # OpenJDK6'" >> ${TMPPLIST} .endif +.endif post-install: @# Register the VM +.if defined(BUILD_JRE) + @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6-jre/bin/java # OpenJDK6 JRE" +.else @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6/bin/java # OpenJDK6" +.endif .if ${PORT_OPTIONS:MFASTDEBUG} @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6-fastdebug/bin/java # OpenJDK6" .endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:47:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D41A93AE; Tue, 9 Oct 2012 17:47:53 +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 BD5FC8FC0C; Tue, 9 Oct 2012 17:47:53 +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 q99HlrdN046806; Tue, 9 Oct 2012 17:47:53 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Hlrlp046804; Tue, 9 Oct 2012 17:47:53 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210091747.q99Hlrlp046804@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 17:47:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305597 - head/java/linux-sun-jre16 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 Author: jkim Date: Tue Oct 9 17:47:53 2012 New Revision: 305597 URL: http://svn.freebsd.org/changeset/ports/305597 Log: Recommend newly added openjdk6-jre. Modified: head/java/linux-sun-jre16/pkg-message Modified: head/java/linux-sun-jre16/pkg-message ============================================================================== --- head/java/linux-sun-jre16/pkg-message Tue Oct 9 17:47:06 2012 (r305596) +++ head/java/linux-sun-jre16/pkg-message Tue Oct 9 17:47:53 2012 (r305597) @@ -1,6 +1,6 @@ ====================================================================== Warning: This JRE may be unstable. You are advised to use the native -FreeBSD 1.6 JDK, in ports/java/openjdk6. +FreeBSD 1.6 JDK, in ports/java/openjdk6-jre. This Java VM will attempt to obtain some system information by accessing files in linux's procfs. You must install the Linux From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:51:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id AD21D7E7; Tue, 9 Oct 2012 17:51:14 +0000 (UTC) Date: Tue, 9 Oct 2012 17:51:14 +0000 From: Alexey Dokuchaev To: Bryan Drewery Subject: Re: svn commit: r305357 - head/net/ssvnc Message-ID: <20121009175114.GB70759@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <507307F7.3030406@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Chris Rees , svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: > Can you add: > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > I swear there is a case where !${} results in an Error. I am not even sure if !${...} works or not, as it looks very ugly. I was always separating it with space. ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:04:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E916FD8; Tue, 9 Oct 2012 18:04:47 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id EE1878FC14; Tue, 9 Oct 2012 18:04:46 +0000 (UTC) Received: from mercury.ph.man.ac.uk [130.88.75.175:4284] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id q99I4tVi022869 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Tue, 9 Oct 2012 22:04:55 +0400 (MSK) From: Max Brazhnikov To: Alexey Dokuchaev Subject: Re: svn commit: r305357 - head/net/ssvnc Date: Tue, 9 Oct 2012 18:05:04 +0000 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.9.1; amd64; ; ) References: <201210061123.q96BNHVx053948@svn.freebsd.org> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> In-Reply-To: <20121009175114.GB70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201210091805.05226.makc@freebsd.org> Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org, Chris Rees , Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 On Tue, 9 Oct 2012 17:51:14 +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: > > Can you add: > > > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > > > I swear there is a case where !${} results in an Error. > > I am not even sure if !${...} works or not, as it looks very ugly. I was > always separating it with space. It looks perfect for me, why don't you like it? :) Max From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:20:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BC0A504; Tue, 9 Oct 2012 18:20:50 +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 367068FC0A; Tue, 9 Oct 2012 18:20:48 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so2807629bkc.13 for ; Tue, 09 Oct 2012 11:20:48 -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=Cm78apgJCmDIl7saUpP9vKpdQbTtQ2r0EKPxzBKZ0As=; b=Rc0ju3e4zxDX2rVDw0FgOoDAtLRXLSTYi5AIZysONw++KS44m/3C3HNhcH9yLInjLN 0FFk23JwpuXsqZCwCohuGmrCbZyw8Am1mYzpm9d+aNJtxzD7MWdisXmYkYBIyiAHkGF4 fAdEtRPuB7tUPVm7WcUKP5RYcv86ao9pTmgHOdb2HsirNU2lox/1aC7jAoYpEaNnEnTu TOqquRijj45BwN6UIpGrxbWwTW+kMu+qbMuJ1FR/PI9zzJrJuFVCHp5sbA6qja+6cPu3 9URFpjTrNcQ9ldxHom4vAeYQU5goukv8ZWm9elwqdfqgyN//8HU9gN2jldXuBQG45cPm sXDg== Received: by 10.204.4.200 with SMTP id 8mr7234378bks.81.1349806848041; Tue, 09 Oct 2012 11:20:48 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Tue, 9 Oct 2012 11:20:17 -0700 (PDT) In-Reply-To: <20121009175114.GB70759@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> From: Chris Rees Date: Tue, 9 Oct 2012 19:20:17 +0100 X-Google-Sender-Auth: 28IbvCWQyZRMP3bIvJC7UMrUUYE Message-ID: Subject: Re: svn commit: r305357 - head/net/ssvnc To: Alexey Dokuchaev Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:20:50 -0000 On 9 October 2012 18:51, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: >> Can you add: >> >> !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} >> >> I swear there is a case where !${} results in an Error. > > I am not even sure if !${...} works or not, as it looks very ugly. I was > always separating it with space. > As you and Boris prefer-- I've put a space in. I've sent a PR, but it's waiting for my email to be reenabled.... Chris From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:26:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 0CA85C9E; Tue, 9 Oct 2012 18:26:28 +0000 (UTC) Date: Tue, 9 Oct 2012 18:26:28 +0000 From: Alexey Dokuchaev To: Chris Rees Subject: Re: svn commit: r305357 - head/net/ssvnc Message-ID: <20121009182628.GA81030@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:26:28 -0000 On Tue, Oct 09, 2012 at 07:20:17PM +0100, Chris Rees wrote: > On 9 October 2012 18:51, Alexey Dokuchaev wrote: > > I am not even sure if !${...} works or not, as it looks very ugly. I was > > always separating it with space. > > As you and Boris prefer-- I've put a space in. Thanks, much appreciated. ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:32:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2ADCEFD8; Tue, 9 Oct 2012 18:32:40 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C19898FC50; Tue, 9 Oct 2012 18:32: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 q99IWdu1052806; Tue, 9 Oct 2012 18:32:39 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99IWdeJ052802; Tue, 9 Oct 2012 18:32:39 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201210091832.q99IWdeJ052802@svn.freebsd.org> From: Xin LI Date: Tue, 9 Oct 2012 18:32:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305598 - head/net/openldap23-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:32:40 -0000 Author: delphij Date: Tue Oct 9 18:32:39 2012 New Revision: 305598 URL: http://svn.freebsd.org/changeset/ports/305598 Log: fix plist for use with pkg. PR: ports/172387 Submitted by: kwm Modified: head/net/openldap23-server/pkg-plist head/net/openldap23-server/pkg-plist.client Modified: head/net/openldap23-server/pkg-plist ============================================================================== --- head/net/openldap23-server/pkg-plist Tue Oct 9 17:47:53 2012 (r305597) +++ head/net/openldap23-server/pkg-plist Tue Oct 9 18:32:39 2012 (r305598) @@ -56,7 +56,7 @@ etc/openldap/DB_CONFIG.example %%BACK_SQL%%libexec/openldap/back_sql.so libexec/slapd %%SLURPD%%libexec/slurpd -@dirrmtry libexec/openldap +%%MODULES%%@dirrmtry libexec/openldap sbin/slapacl sbin/slapadd sbin/slapauth Modified: head/net/openldap23-server/pkg-plist.client ============================================================================== --- head/net/openldap23-server/pkg-plist.client Tue Oct 9 17:47:53 2012 (r305597) +++ head/net/openldap23-server/pkg-plist.client Tue Oct 9 18:32:39 2012 (r305598) @@ -43,4 +43,3 @@ lib/libldap_r.so @comment share/openldap/ucdata/num.dat @comment @dirrm share/openldap/ucdata @comment @dirrm share/openldap -@dirrmtry libexec/openldap From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:33:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28F0233B; Tue, 9 Oct 2012 18:33:18 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 120DE8FC14; Tue, 9 Oct 2012 18:33: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 q99IXHcR052969; Tue, 9 Oct 2012 18:33:17 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99IXHSI052964; Tue, 9 Oct 2012 18:33:17 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201210091833.q99IXHSI052964@svn.freebsd.org> From: Xin LI Date: Tue, 9 Oct 2012 18:33:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305599 - head/net/openldap24-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:33:18 -0000 Author: delphij Date: Tue Oct 9 18:33:17 2012 New Revision: 305599 URL: http://svn.freebsd.org/changeset/ports/305599 Log: fix plist for use with pkg. PR: ports/172387 Submitted by: kwm Modified: head/net/openldap24-server/pkg-plist head/net/openldap24-server/pkg-plist.client Modified: head/net/openldap24-server/pkg-plist ============================================================================== --- head/net/openldap24-server/pkg-plist Tue Oct 9 18:32:39 2012 (r305598) +++ head/net/openldap24-server/pkg-plist Tue Oct 9 18:33:17 2012 (r305599) @@ -86,7 +86,7 @@ etc/openldap/DB_CONFIG.example %%SMBPWD%%libexec/openldap/smbk5pwd.so %%SMBPWD%%libexec/openldap/smbk5pwd.so.0 libexec/slapd -@dirrmtry libexec/openldap +%%MODULES%%@dirrmtry libexec/openldap sbin/slapacl sbin/slapadd sbin/slapauth Modified: head/net/openldap24-server/pkg-plist.client ============================================================================== --- head/net/openldap24-server/pkg-plist.client Tue Oct 9 18:32:39 2012 (r305598) +++ head/net/openldap24-server/pkg-plist.client Tue Oct 9 18:33:17 2012 (r305599) @@ -37,4 +37,3 @@ lib/libldap_r-2.4.so.%%SHLIB_MAJOR%% lib/libldap_r.a lib/libldap_r.la lib/libldap_r.so -@dirrmtry libexec/openldap From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:50:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C96AC7A5; Tue, 9 Oct 2012 19:50:57 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2B938FC19; Tue, 9 Oct 2012 19:50:57 +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 q99Jovub065698; Tue, 9 Oct 2012 19:50:57 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Jov0t065695; Tue, 9 Oct 2012 19:50:57 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210091950.q99Jov0t065695@svn.freebsd.org> From: Alex Kozlov Date: Tue, 9 Oct 2012 19:50:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305600 - head/games/3dpong X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:50:57 -0000 Author: ak Date: Tue Oct 9 19:50:57 2012 New Revision: 305600 URL: http://svn.freebsd.org/changeset/ports/305600 Log: - Convert Makefile headers to new style - Remove redundant comments - Add DESKTOP_ENTRIES - Bump PORTREVISION Submitted by: nemysis (maintainer) Modified: head/games/3dpong/Makefile head/games/3dpong/distinfo (contents, props changed) Modified: head/games/3dpong/Makefile ============================================================================== --- head/games/3dpong/Makefile Tue Oct 9 18:33:17 2012 (r305599) +++ head/games/3dpong/Makefile Tue Oct 9 19:50:57 2012 (r305600) @@ -1,19 +1,15 @@ -# New ports collection makefile for: 3dpong -# Date created: 10 March 1998 -# Whom: Andrey Zakhvatov -# # $FreeBSD$ -# PORTNAME= 3dpong PORTVERSION= 0.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= ftp://ftp.tuxpaint.org/unix/x/3dpong/src/ \ ftp://ftp.billsgames.com/unix/x/3dpong/src/ \ http://www.newbreedsoftware.com/images/prodicons/:icons DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ ${PORTNAME}.gif:icons +DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= nemysis@gmx.ch @@ -21,6 +17,8 @@ COMMENT= X Window 3D Pong game for 1 or LICENSE= GPLv2 +BUILD_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm + USE_XORG= x11 USE_GMAKE= yes MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ @@ -29,7 +27,7 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} MAN6= ${PORTNAME}.6 PLIST_FILES= bin/${PORTNAME} \ - share/pixmaps/${PORTNAME}.gif \ + share/pixmaps/${PORTNAME}.png \ share/examples/${PORTNAME}/${PORTNAME}-handball.sh \ share/examples/${PORTNAME}/${PORTNAME}-vs-computer.sh PLIST_DIRS= share/examples/${PORTNAME} @@ -37,32 +35,32 @@ PLIST_DIRS= share/examples/${PORTNAME} PORTDATA= * PORTDOCS= AUTHORS.txt CHANGES.txt README.txt TODO.txt +DESKTOP_ENTRIES="3D Pong" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + .include post-patch: @${REINPLACE_CMD} -e 's|cat sounds/|cat ${DATADIR}/|g' ${WRKSRC}/src/3dpong.c +post-build: + @(cd ${WRKSRC} && \ + ${LOCALBASE}/bin/giftopnm ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.gif | \ + ${LOCALBASE}/bin/pnmtopng > ${PORTNAME}.png) + do-install: -# Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -# Data ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/sounds/*.au ${DATADIR} ${INSTALL_MAN} ${WRKSRC}/src/${MAN6} ${MAN6PREFIX}/man/man6 + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.png ${PREFIX}/share/pixmaps -# Pixmaps - ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}.gif ${PREFIX}/share/pixmaps/ - -# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} -. for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR} -. endfor + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR} .endif -# Examples @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) .include Modified: head/games/3dpong/distinfo ============================================================================== --- head/games/3dpong/distinfo Tue Oct 9 18:33:17 2012 (r305599) +++ head/games/3dpong/distinfo Tue Oct 9 19:50:57 2012 (r305600) @@ -1,4 +1,4 @@ -SHA256 (3dpong-0.5.tar.gz) = b1557818319f482c1e0795192f013ecf998c9f1013033b542676d1bf743a6bc5 -SIZE (3dpong-0.5.tar.gz) = 37004 -SHA256 (3dpong.gif) = 52524304fd79bb31740ac59a6ce249cc8461112adca0e4f3ab57ff4ab5623a1f -SIZE (3dpong.gif) = 321 +SHA256 (3dpong/3dpong-0.5.tar.gz) = b1557818319f482c1e0795192f013ecf998c9f1013033b542676d1bf743a6bc5 +SIZE (3dpong/3dpong-0.5.tar.gz) = 37004 +SHA256 (3dpong/3dpong.gif) = 52524304fd79bb31740ac59a6ce249cc8461112adca0e4f3ab57ff4ab5623a1f +SIZE (3dpong/3dpong.gif) = 321 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:53:01 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 358DF7EA; Tue, 9 Oct 2012 19:53:01 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 050928FC0C; Tue, 9 Oct 2012 19:53: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 q99Jr0Qs066161; Tue, 9 Oct 2012 19:53:00 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Jr0Kn066157; Tue, 9 Oct 2012 19:53:00 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201210091953.q99Jr0Kn066157@svn.freebsd.org> From: Cy Schubert Date: Tue, 9 Oct 2012 19:53:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305601 - head/sysutils/syslog-ng-rc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:53:01 -0000 Author: cy Date: Tue Oct 9 19:53:00 2012 New Revision: 305601 URL: http://svn.freebsd.org/changeset/ports/305601 Log: Update from RC1 to RC2. Submitted by: Peter Czanik (our syslog-ng upline) Modified: head/sysutils/syslog-ng-rc/Makefile head/sysutils/syslog-ng-rc/distinfo head/sysutils/syslog-ng-rc/pkg-plist Modified: head/sysutils/syslog-ng-rc/Makefile ============================================================================== --- head/sysutils/syslog-ng-rc/Makefile Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/Makefile Tue Oct 9 19:53:00 2012 (r305601) @@ -7,18 +7,18 @@ PORTNAME= syslog-ng PORTVERSION= 3.3.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils PKGNAMESUFFIX= -rc -MASTER_SITES= http://packages.madhouse-project.org/syslog-ng/3.3/3.3.6.90/ -DISTFILES= $(PORTNAME)-3.3.6.90-20120906-v3.3.6.90.tar.gz +MASTER_SITES= http://packages.madhouse-project.org/syslog-ng/3.3/3.3.6.91/ +DISTFILES= $(PORTNAME)-3.3.6.91-20121008-v3.3.6.91.tar.gz MAINTAINER= cy@FreeBSD.org COMMENT= A powerful syslogd replacement CONFLICTS?= syslog-ng-[0-9]* syslog-ng[0-9]-[0-9]* \ syslog-ng-devel-[0-9]* -WRKSRC= $(WRKDIR)/$(PORTNAME)-3.3.6.90 +WRKSRC= $(WRKDIR)/$(PORTNAME)-3.3.6.91 OPTIONS= SYS_SSL "Build with OpenSSL support (from system)" off \ PORTS_SSL "Build with OpenSSL support (from ports)" on \ Modified: head/sysutils/syslog-ng-rc/distinfo ============================================================================== --- head/sysutils/syslog-ng-rc/distinfo Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/distinfo Tue Oct 9 19:53:00 2012 (r305601) @@ -1,2 +1,2 @@ -SHA256 (syslog-ng-3.3.6.90-20120906-v3.3.6.90.tar.gz) = bc59328232485192734eedf1006cbc40f4d748629f08f50b61476db5378c40ac -SIZE (syslog-ng-3.3.6.90-20120906-v3.3.6.90.tar.gz) = 2508070 +SHA256 (syslog-ng-3.3.6.91-20121008-v3.3.6.91.tar.gz) = d8d9de30b17ef633ce8efaea1b2fcb6e4962b58724f5210d603858f21ab1d9c8 +SIZE (syslog-ng-3.3.6.91-20121008-v3.3.6.91.tar.gz) = 2510209 Modified: head/sysutils/syslog-ng-rc/pkg-plist ============================================================================== --- head/sysutils/syslog-ng-rc/pkg-plist Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/pkg-plist Tue Oct 9 19:53:00 2012 (r305601) @@ -75,7 +75,7 @@ include/syslog-ng/utils.h include/syslog-ng/value-pairs.h lib/libsyslog-ng.la lib/libsyslog-ng.so -lib/libsyslog-ng-3.3.6.90.so +lib/libsyslog-ng-3.3.6.91.so libdata/pkgconfig/syslog-ng.pc lib/syslog-ng/libaffile.la lib/syslog-ng/libaffile.so From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:58:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CCA3DA13; Tue, 9 Oct 2012 19:58:57 +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 AB39D8FC0A; Tue, 9 Oct 2012 19:58:57 +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 q99JwvNl067527; Tue, 9 Oct 2012 19:58:57 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99JwvRA067525; Tue, 9 Oct 2012 19:58:57 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210091958.q99JwvRA067525@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 19:58:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305602 - head/www/cgiwrap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:58:57 -0000 Author: madpilot Date: Tue Oct 9 19:58:56 2012 New Revision: 305602 URL: http://svn.freebsd.org/changeset/ports/305602 Log: - Convert to new options framework - Trim Makefile headers PR: ports/172423 Submitted by: Michael Gmelin Modified: head/www/cgiwrap/Makefile (contents, props changed) Modified: head/www/cgiwrap/Makefile ============================================================================== --- head/www/cgiwrap/Makefile Tue Oct 9 19:53:00 2012 (r305601) +++ head/www/cgiwrap/Makefile Tue Oct 9 19:58:56 2012 (r305602) @@ -1,9 +1,5 @@ -# New ports collection makefile for: cgiwrap -# Date created: 30 July 1998 -# Whom: Brent J. Nordquist -# +# Created by: Brent J. Nordquist # $FreeBSD$ -# PORTNAME= cgiwrap PORTVERSION= 4.1 @@ -16,16 +12,22 @@ COMMENT= Securely execute Web CGI script WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PKGMESSAGE= ${WRKDIR}/pkg-message -OPTIONS= CGI_OWNER "Check CGI file owner" on \ - CGI_GROUP "Check CGI file group" on \ - CGI_SETUID "Check CGI file setuid permissions" on \ - CGI_SETGID "Check CGI file setgid permissions" on \ - CGI_GROUP_WRITABLE "Check CGI g+w file permissions" on \ - CGI_WORLD_WRITABLE "Check CGI o+w file permissions" on \ - USE_REDIRECT_URL "Use REDIRECT_URL to build SCRIPT_NAME" off \ - USE_SCRIPT_URL "Use SCRIPT_URL to build SCRIPT_NAME" off \ - NPH "Enable nph binaries" off \ - DEBUG "Enable cgiwrapd binaries" off +OPTIONS_DEFINE= CGI_OWNER CGI_GROUP CGI_SETUID CGI_SETGID \ + CGI_GROUP_WRITABLE CGI_WORLD_WRITABLE DEBUG \ + DOCS NPH USE_REDIRECT_URL USE_SCRIPT_URL +OPTIONS_DEFAULT=CGI_OWNER CGI_GROUP CGI_SETUID CGI_SETGID \ + CGI_GROUP_WRITABLE CGI_WORLD_WRITABLE + +CGI_OWNER_DESC= Check CGI file owner +CGI_GROUP_DESC= Check CGI file group +CGI_SETUID_DESC=Check CGI file setuid permissions +CGI_SETGID_DESC=Check CGI file setgid permissions +CGI_GROUP_WRITABLE_DESC=Check CGI g+w file permissions +CGI_WORLD_WRITABLE_DESC=Check CGI o+w file permissions +USE_REDIRECT_URL_DESC=Use REDIRECT_URL to build SCRIPT_NAME +USE_SCRIPT_URL_DESC=Use SCRIPT_URL to build SCRIPT_NAME +NPH_DESC= Enable nph binaries +DEBUG_DESC= Enable cgiwrapd binaries ## # INSTALL_DIR @@ -65,7 +67,7 @@ CONFIGURE_ARGS= --with-httpd-user=${WWWO --with-check-shell \ --with-wall -.include +.include ## # LOG_FILE @@ -78,46 +80,46 @@ CONFIGURE_ARGS+= --with-logging-file=${L .else CONFIGURE_ARGS+= --without-logging-file .endif -.if !defined(WITH_CGI_OWNER) +.if empty(PORT_OPTIONS:MCGI_OWNER) CONFIGURE_ARGS+= --without-check-owner .endif -.if !defined(WITH_CGI_GROUP) +.if empty(PORT_OPTIONS:MCGI_GROUP) CONFIGURE_ARGS+= --without-check-group .endif -.if !defined(WITH_CGI_SETUID) +.if empty(PORT_OPTIONS:MCGI_SETUID) CONFIGURE_ARGS+= --without-check-setuid .endif -.if !defined(WITH_CGI_SETGID) +.if empty(PORT_OPTIONS:MCGI_SETGID) CONFIGURE_ARGS+= --without-check-setgid .endif -.if !defined(WITH_CGI_GROUP_WRITABLE) +.if empty(PORT_OPTIONS:MCGI_GROUP_WRITABLE) CONFIGURE_ARGS+= --without-check-group-writable .endif -.if !defined(WITH_CGI_WORLD_WRITABLE) +.if empty(PORT_OPTIONS:MCGI_WORLD_WRITABLE) CONFIGURE_ARGS+= --without-check-world-writable .endif -.if defined(WITH_USE_REDIRECT_URL) +.if ${PORT_OPTIONS:MUSE_REDIRECT_URL} CONFIGURE_ARGS+= --with-use-redirect-url .endif -.if defined(WITH_USE_SCRIPT_URL) +.if ${PORT_OPTIONS:MUSE_SCRIPT_URL} CONFIGURE_ARGS+= --with-use-script-url .endif -.if !defined(WITH_NPH) +.if empty(PORT_OPTIONS:MNPH) PLIST_SUB+= NPHFLAG="@comment " CONFIGURE_ARGS+= --without-nph .else PLIST_SUB+= NPHFLAG= .endif -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} PLIST_SUB+= DEBUGFLAG= CONFIGURE_ARGS+= --with-cgiwrapd .else PLIST_SUB+= DEBUGFLAG="@comment " .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} PORTDOCS= accesscontrol.html afs.html changes.html \ chroot.html comments.html download.html faq.html \ index.html install.html intro.html maillist.html \ @@ -131,15 +133,15 @@ pre-install: post-install: @${STRIP_CMD} ${INSTALL_DIR}/cgiwrap @${CHMOD} 4550 ${INSTALL_DIR}/cgiwrap -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} @${STRIP_CMD} ${INSTALL_DIR}/cgiwrapd @${CHMOD} 4550 ${INSTALL_DIR}/cgiwrapd -.if defined(WITH_NPH) +.if ${PORT_OPTIONS:MNPH} @${STRIP_CMD} ${INSTALL_DIR}/nph-cgiwrapd @${CHMOD} 4550 ${INSTALL_DIR}/nph-cgiwrapd .endif .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/htdocs/${f} ${DOCSDIR} @@ -151,4 +153,4 @@ post-install: ${MASTERDIR}/pkg-message > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 20:41:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC4CF8A7; Tue, 9 Oct 2012 20:41:30 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C59A08FC0C; Tue, 9 Oct 2012 20:41: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 q99KfUJQ076764; Tue, 9 Oct 2012 20:41:30 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99KfUEk076762; Tue, 9 Oct 2012 20:41:30 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210092041.q99KfUEk076762@svn.freebsd.org> From: Raphael Kubo da Costa Date: Tue, 9 Oct 2012 20:41:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305603 - head/x11-fonts/tolkien-ttf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 20:41:30 -0000 Author: rakuco Date: Tue Oct 9 20:41:30 2012 New Revision: 305603 URL: http://svn.freebsd.org/changeset/ports/305603 Log: Mark as DEPRECATED since there are no more public distfiles available. EXPIRATION_DATE set to 2012-11-09. Modified: head/x11-fonts/tolkien-ttf/Makefile Modified: head/x11-fonts/tolkien-ttf/Makefile ============================================================================== --- head/x11-fonts/tolkien-ttf/Makefile Tue Oct 9 19:58:56 2012 (r305602) +++ head/x11-fonts/tolkien-ttf/Makefile Tue Oct 9 20:41:30 2012 (r305603) @@ -16,6 +16,9 @@ COMMENT= A selection of the best TrueTyp RUN_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig +DEPRECATED= Does not fetch: there are no more public distfiles +EXPIRATION_DATE= 2012-11-09 + RESTRICTED= "Shareware. Unlicensed commercial usage/redistribution prohibited." USE_BZIP2= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 20:59:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21954F28; Tue, 9 Oct 2012 20:59:38 +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 09A8D8FC0C; Tue, 9 Oct 2012 20:59:38 +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 q99KxbfB080675; Tue, 9 Oct 2012 20:59:37 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Kxbth080670; Tue, 9 Oct 2012 20:59:37 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210092059.q99Kxbth080670@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 20:59:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305604 - in head/java/openjdk6: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 20:59:38 -0000 Author: jkim Date: Tue Oct 9 20:59:37 2012 New Revision: 305604 URL: http://svn.freebsd.org/changeset/ports/305604 Log: Update to build 26. Deleted: head/java/openjdk6/files/patch-security Modified: head/java/openjdk6/Makefile head/java/openjdk6/distinfo head/java/openjdk6/files/patch-set Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/Makefile Tue Oct 9 20:59:37 2012 (r305604) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= openjdk6 -PORTVERSION= b25 -PORTREVISION?= 4 +PORTVERSION= b26 +PORTREVISION?= 0 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk6/promoted/${PORTVERSION}/ \ http://download.java.net/jaxp/openjdk/jdk6/:jaxp \ @@ -37,7 +37,7 @@ LIB_DEPENDS= freetype:${PORTSDIR}/print/ RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ ${LOCALBASE}/lib/X11/fonts/dejavu:${PORTSDIR}/x11-fonts/dejavu -OPENJDK_BUILDDATE= 01_may_2012 +OPENJDK_BUILDDATE= 21_sep_2012 OPTIONS_DEFINE= ICEDTEA IPV6 POLICY SOUND TZUPDATE OPTIONS_DEFAULT=ICEDTEA TZUPDATE @@ -63,7 +63,7 @@ USE_MOTIF= yes USE_XORG= x11 xext xi xt xtst MAKE_JOBS_UNSAFE= yes -JAXP_BUILD= 144_03 +JAXP_BUILD= 144_04 JAXPFILE= jaxp${JAXP_BUILD}.zip JAXWS_BUILD= 2_1_6-2011_06_13 JAXWSFILE= jdk6-jaxws${JAXWS_BUILD}.zip Modified: head/java/openjdk6/distinfo ============================================================================== --- head/java/openjdk6/distinfo Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/distinfo Tue Oct 9 20:59:37 2012 (r305604) @@ -1,7 +1,7 @@ -SHA256 (openjdk-6-src-b25-01_may_2012.tar.gz) = 42db988b436593017e29d6543ac09168a901027817e41dc1be5c795b85d53b05 -SIZE (openjdk-6-src-b25-01_may_2012.tar.gz) = 45761297 -SHA256 (jaxp144_03.zip) = c1a5348e17b330a7e4b18431e61a40efd2ba99a7da71102cf2c604478ef96012 -SIZE (jaxp144_03.zip) = 5964999 +SHA256 (openjdk-6-src-b26-21_sep_2012.tar.gz) = 9635d8563b9ba811f1d6e333861f235a2d8835c623451abc44791891d40d8b09 +SIZE (openjdk-6-src-b26-21_sep_2012.tar.gz) = 45775426 +SHA256 (jaxp144_04.zip) = 490f696218c1fed9cb180680af883fe309b414fec232e9cec19645e12ad0b43c +SIZE (jaxp144_04.zip) = 5976385 SHA256 (jdk6-jaxws2_1_6-2011_06_13.zip) = 229040544e791f44906e8e7b6f6faf503c730a5d854275135f3925490d5c3be3 SIZE (jdk6-jaxws2_1_6-2011_06_13.zip) = 5512710 SHA256 (jdk6-jaf-b20.zip) = 78c7b5c9d6271e88ee46abadd018a61f1e9645f8936cc8df1617e5f4f5074012 Modified: head/java/openjdk6/files/patch-set ============================================================================== --- head/java/openjdk6/files/patch-set Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/files/patch-set Tue Oct 9 20:59:37 2012 (r305604) @@ -1,5 +1,5 @@ ---- Makefile 2011-07-05 14:29:12.000000000 -0400 -+++ Makefile 2011-07-07 19:17:02.000000000 -0400 +--- Makefile ++++ Makefile @@ -236,6 +236,18 @@ clean: clobber @@ -19,8 +19,8 @@ # # Dev builds # ---- corba/make/common/Defs-bsd.gmk 2011-07-07 19:16:00.000000000 -0400 -+++ corba/make/common/Defs-bsd.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs-bsd.gmk ++++ corba/make/common/Defs-bsd.gmk @@ -40,18 +40,12 @@ # Get shared JDK settings include $(BUILDDIR)/common/shared/Defs.gmk @@ -142,8 +142,8 @@ override OTHER_M4FLAGS = -D__GLIBC__ -DGNU_ASSEMBLER override SUN_CMM_SUBDIR = override THREADS_FLAG = native ---- corba/make/common/Defs-linux.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Defs-linux.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs-linux.gmk ++++ corba/make/common/Defs-linux.gmk @@ -290,7 +290,7 @@ override LIBTHREAD = override MOOT_PRIORITIES = true @@ -153,8 +153,8 @@ ifeq ($(ARCH), amd64) override OPENWIN_LIB = $(OPENWIN_HOME)/lib64 else ---- corba/make/common/Defs.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Defs.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs.gmk ++++ corba/make/common/Defs.gmk @@ -53,6 +53,24 @@ _OUTPUTDIR=$(TOPDIR)/build/$(PLATFORM)-$(ARCH) @@ -190,8 +190,8 @@ endif # PROGRAM LDLIBS_COMMON += $(EXTRA_LIBS) ---- corba/make/common/Mapfile-vers.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Mapfile-vers.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Mapfile-vers.gmk ++++ corba/make/common/Mapfile-vers.gmk @@ -77,7 +77,7 @@ endif # PLATFORM @@ -201,8 +201,8 @@ ifeq ($(VARIANT), OPT) # OPT build MUST have a mapfile? ---- corba/make/common/shared/Compiler-gcc.gmk 2012-05-01 17:14:04.000000000 -0400 -+++ corba/make/common/shared/Compiler-gcc.gmk 2012-09-11 18:17:45.000000000 -0400 +--- corba/make/common/shared/Compiler-gcc.gmk ++++ corba/make/common/shared/Compiler-gcc.gmk @@ -100,6 +100,24 @@ endif @@ -228,8 +228,8 @@ ifeq ($(PLATFORM), solaris) # Settings specific to Solaris ---- corba/make/common/shared/Compiler.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Compiler.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Compiler.gmk ++++ corba/make/common/shared/Compiler.gmk @@ -42,6 +42,11 @@ override CC_VERSION = gcc endif @@ -242,8 +242,8 @@ # Get the compiler specific settings include $(BUILDDIR)/common/shared/Compiler-$(CC_VERSION).gmk ---- corba/make/common/shared/Defs-bsd.gmk 2011-07-07 19:16:00.000000000 -0400 -+++ corba/make/common/shared/Defs-bsd.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-bsd.gmk ++++ corba/make/common/shared/Defs-bsd.gmk @@ -54,7 +54,7 @@ endef @@ -262,8 +262,8 @@ endif # _BOOTDIR1: First choice for a Bootstrap JDK, previous released JDK. ---- corba/make/common/shared/Defs-java.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Defs-java.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-java.gmk ++++ corba/make/common/shared/Defs-java.gmk @@ -38,7 +38,7 @@ # Suspect this may not be needed anymore. JAVA_MEM_FLAGS += -Xms$(MAX_VM_MEMORY)m -XX:-Inline @@ -273,8 +273,8 @@ endif # ---- corba/make/common/shared/Defs-utils.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Defs-utils.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-utils.gmk ++++ corba/make/common/shared/Defs-utils.gmk @@ -53,6 +53,13 @@ UTILS_DEVTOOL_PATH=$(USRBIN_PATH) endif @@ -322,8 +322,8 @@ + TAR = $(UTILS_USR_BIN_PATH)tar + endif +endif ---- corba/make/common/shared/Platform.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Platform.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Platform.gmk ++++ corba/make/common/shared/Platform.gmk @@ -261,6 +261,76 @@ MB_OF_MEMORY := $(shell free -m | fgrep Mem: | sed -e 's@\ \ *@ @g' | cut -d' ' -f2) endif @@ -401,7 +401,7 @@ # Windows with and without CYGWIN will be slightly different ifeq ($(SYSTEM_UNAME), Windows_NT) PLATFORM = windows -@@ -375,7 +445,14 @@ +@@ -408,7 +478,14 @@ # build machines and adjustments will be made to prevent excessing # system swapping during the build. # If we don't know, assume 512. Subtract 128 from MB for VM MAX. @@ -417,7 +417,7 @@ ifneq ($(MB_OF_MEMORY),) LOW_MEMORY_MACHINE := $(shell \ if [ $(MB_OF_MEMORY) -le 512 ] ; then \ -@@ -387,7 +464,7 @@ +@@ -420,7 +497,7 @@ if [ $(MB_OF_MEMORY) -le 1024 ] ; then \ expr $(MB_OF_MEMORY) '-' 128 ; \ else \ @@ -426,8 +426,8 @@ fi) MIN_VM_MEMORY := $(shell \ if [ $(MAX_VM_MEMORY) -le 128 ] ; then \ ---- hotspot/agent/make/Makefile 2011-07-05 14:30:51.000000000 -0400 -+++ hotspot/agent/make/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/make/Makefile ++++ hotspot/agent/make/Makefile @@ -52,6 +52,9 @@ sun.jvm.hotspot.compiler \ sun.jvm.hotspot.debugger \ @@ -468,8 +468,8 @@ sun/jvm/hotspot/runtime/ia64/*.java \ sun/jvm/hotspot/runtime/linux/*.java \ sun/jvm/hotspot/runtime/linux_amd64/*.java \ ---- hotspot/agent/src/os/bsd/BsdDebuggerLocal.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/BsdDebuggerLocal.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/BsdDebuggerLocal.c ++++ hotspot/agent/src/os/bsd/BsdDebuggerLocal.c @@ -22,6 +22,7 @@ * */ @@ -609,8 +609,8 @@ #endif /* amd64 */ ---- hotspot/agent/src/os/bsd/Makefile 2012-05-01 17:15:02.000000000 -0400 -+++ hotspot/agent/src/os/bsd/Makefile 2012-09-18 17:50:06.000000000 -0400 +--- hotspot/agent/src/os/bsd/Makefile ++++ hotspot/agent/src/os/bsd/Makefile @@ -22,8 +22,8 @@ # # @@ -686,8 +686,8 @@ + rm -f test.o + -rmdir $(ARCH) ---- hotspot/agent/src/os/bsd/elfmacros.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/elfmacros.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/elfmacros.h ++++ hotspot/agent/src/os/bsd/elfmacros.h @@ -25,16 +25,19 @@ #ifndef _ELFMACROS_H_ #define _ELFMACROS_H_ @@ -723,8 +723,8 @@ #endif ---- hotspot/agent/src/os/bsd/libproc.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc.h ++++ hotspot/agent/src/os/bsd/libproc.h @@ -27,7 +27,8 @@ #include @@ -785,8 +785,8 @@ // get number of shared objects int get_num_libs(struct ps_prochandle* ph); ---- hotspot/agent/src/os/bsd/libproc_impl.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc_impl.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc_impl.c ++++ hotspot/agent/src/os/bsd/libproc_impl.c @@ -174,10 +174,13 @@ return NULL; } @@ -929,8 +929,8 @@ + print_debug("ps_pcontinue not implemented\n"); return PS_OK; } ---- hotspot/agent/src/os/bsd/libproc_impl.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc_impl.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc_impl.h ++++ hotspot/agent/src/os/bsd/libproc_impl.h @@ -47,7 +47,7 @@ typedef struct thread_info { lwpid_t lwp_id; @@ -984,8 +984,8 @@ // a test for ELF signature without using libelf bool is_elf_file(int fd); ---- hotspot/agent/src/os/bsd/mapfile 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/mapfile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/mapfile ++++ hotspot/agent/src/os/bsd/mapfile @@ -43,13 +43,17 @@ # proc_service.h functions - to be used by libthread_db ps_getpid; @@ -1007,8 +1007,8 @@ # used by attach test program init_libproc; ---- hotspot/agent/src/os/bsd/proc_service.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/proc_service.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/proc_service.h ++++ hotspot/agent/src/os/bsd/proc_service.h 1969-12-31 19:00:00.000000000 -0500 @@ -1,76 +0,0 @@ -/* - * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. @@ -1086,8 +1086,8 @@ -ps_err_e ps_get_thread_area(); - -#endif /* _PROC_SERVICE_H_ */ ---- hotspot/agent/src/os/bsd/ps_core.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/ps_core.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/ps_core.c ++++ hotspot/agent/src/os/bsd/ps_core.c @@ -142,6 +142,7 @@ map->next = ph->core->class_share_maps; @@ -1409,8 +1409,8 @@ struct ps_prochandle* ph = (struct ps_prochandle*) calloc(1, sizeof(struct ps_prochandle)); if (ph == NULL) { ---- hotspot/agent/src/os/bsd/ps_proc.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/ps_proc.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/ps_proc.c ++++ hotspot/agent/src/os/bsd/ps_proc.c @@ -22,20 +22,22 @@ * */ @@ -1982,8 +1982,8 @@ - } return ph; } ---- hotspot/agent/src/os/bsd/salibelf.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/salibelf.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/salibelf.c ++++ hotspot/agent/src/os/bsd/salibelf.c @@ -25,6 +25,7 @@ #include "salibelf.h" #include @@ -1992,8 +1992,8 @@ extern void print_debug(const char*,...); ---- hotspot/agent/src/os/bsd/symtab.c 2012-01-12 17:22:08.000000000 -0500 -+++ hotspot/agent/src/os/bsd/symtab.c 2012-01-12 16:54:45.000000000 -0500 +--- hotspot/agent/src/os/bsd/symtab.c ++++ hotspot/agent/src/os/bsd/symtab.c @@ -23,10 +23,11 @@ */ @@ -2538,8 +2538,8 @@ } return NULL; } ---- hotspot/agent/src/os/bsd/symtab.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/symtab.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/symtab.h ++++ hotspot/agent/src/os/bsd/symtab.h @@ -32,7 +32,7 @@ struct symtab; @@ -2549,8 +2549,8 @@ // destroy the symbol table void destroy_symtab(struct symtab* symtab); ---- hotspot/agent/src/os/bsd/test.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/test.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/test.c ++++ hotspot/agent/src/os/bsd/test.c @@ -44,7 +44,7 @@ } @@ -2560,8 +2560,8 @@ return 1; } } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2011-07-05 14:30:52.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java @@ -28,6 +28,7 @@ import java.net.*; import java.rmi.*; @@ -2631,8 +2631,8 @@ /** Convenience routine which should be called by per-platform debugger setup. Should not be called when startupMode is REMOTE_MODE. */ ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2011-07-05 14:30:53.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java @@ -29,6 +29,7 @@ import java.rmi.*; import sun.jvm.hotspot.*; @@ -2704,8 +2704,8 @@ /** Convenience routine which should be called by per-platform debugger setup. Should not be called when startupMode is REMOTE_MODE. */ ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java @@ -30,10 +30,8 @@ import sun.jvm.hotspot.debugger.cdbg.*; import sun.jvm.hotspot.debugger.x86.*; @@ -2731,8 +2731,8 @@ } else { throw new DebuggerException(cpu + " is not yet supported"); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java @@ -26,9 +26,7 @@ import sun.jvm.hotspot.debugger.*; @@ -2754,8 +2754,8 @@ } else { throw new RuntimeException("cpu " + cpu + " is not yet supported"); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java 2011-07-05 14:30:54.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java @@ -217,7 +217,7 @@ } @@ -2765,8 +2765,8 @@ // link "saproc" - SA native library on SunOS and Linux? sm.checkLink("saproc"); } else if (os.startsWith("Windows")) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java 2011-07-05 14:30:54.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java @@ -66,7 +66,7 @@ try { // Whether the caller can perform link against SA native library? @@ -2776,8 +2776,8 @@ // Whether the caller can read /proc/ file? sm.checkRead("/proc/" + pid); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java 2011-07-05 14:30:55.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java @@ -37,6 +37,8 @@ import sun.jvm.hotspot.runtime.linux_ia64.LinuxIA64JavaThreadPDAccess; import sun.jvm.hotspot.runtime.linux_amd64.LinuxAMD64JavaThreadPDAccess; @@ -2801,8 +2801,8 @@ } if (access == null) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java @@ -28,37 +28,36 @@ private static String[] signalNames = { "", /* No signal 0 */ @@ -2863,8 +2863,8 @@ }; public static String getSignalName(int sigNum) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java @@ -28,37 +28,36 @@ private static String[] signalNames = { "", /* No signal 0 */ @@ -2925,8 +2925,8 @@ }; public static String getSignalName(int sigNum) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java 2011-07-05 14:30:55.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java @@ -37,6 +37,14 @@ return "solaris"; } else if (os.equals("Linux")) { @@ -2942,8 +2942,8 @@ } else if (os.startsWith("Windows")) { return "win32"; } else { ---- hotspot/make/Makefile 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/Makefile ++++ hotspot/make/Makefile @@ -321,28 +321,28 @@ ifneq ($(OSNAME),windows) ifeq ($(ZERO_BUILD), true) @@ -2983,8 +2983,8 @@ $(install-file) endif endif ---- hotspot/make/bsd/Makefile 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/Makefile ++++ hotspot/make/bsd/Makefile @@ -39,11 +39,11 @@ # One can set ALT_BOOTDIR or BOOTDIR to point to a jdk that runs on # an architecture that differs from the target architecture, as long @@ -3017,14 +3017,14 @@ # Solaris 2.5.1, 2.6). # Disable this check by setting DISABLE_HOTSPOT_OS_VERSION_CHECK=ok. --SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7% -+#SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7% +-SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3% ++#SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3% +DISABLE_HOTSPOT_OS_VERSION_CHECK = ok OS_VERSION := $(shell uname -r) EMPTY_IF_NOT_SUPPORTED = $(filter $(SUPPORTED_OS_VERSION),$(OS_VERSION)) ---- hotspot/make/bsd/makefiles/adlc.make 2012-05-01 17:15:06.000000000 -0400 -+++ hotspot/make/bsd/makefiles/adlc.make 2012-09-17 19:50:44.000000000 -0400 +--- hotspot/make/bsd/makefiles/adlc.make ++++ hotspot/make/bsd/makefiles/adlc.make @@ -60,7 +60,8 @@ # CFLAGS_WARN holds compiler options to suppress/enable warnings. @@ -3035,8 +3035,8 @@ CFLAGS += $(CFLAGS_WARN) OBJECTNAMES = \ ---- hotspot/make/bsd/makefiles/buildtree.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/buildtree.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/buildtree.make ++++ hotspot/make/bsd/makefiles/buildtree.make @@ -303,10 +303,11 @@ [ -n "$$JAVA_HOME" ] && { echo ": \$${JAVA_HOME:=$${JAVA_HOME}}"; }; \ { \ @@ -3050,8 +3050,8 @@ ) > $@ env.csh: env.sh ---- hotspot/make/bsd/makefiles/cscope.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/cscope.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/cscope.make ++++ hotspot/make/bsd/makefiles/cscope.make @@ -71,7 +71,7 @@ # OS-specific files for other systems are excluded by default. Use CS_OS=yes # to include platform-specific files for other platforms. @@ -3061,8 +3061,8 @@ CS_PRUNE_OS = $(patsubst %,-o -name '*%*',$(filter-out ${OS},${CS_OS})) endif ---- hotspot/make/bsd/makefiles/defs.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/defs.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/defs.make ++++ hotspot/make/bsd/makefiles/defs.make @@ -72,8 +72,8 @@ HS_ARCH = sparc endif @@ -3169,8 +3169,8 @@ EXPORT_LIST += $(ADD_SA_BINARIES/$(HS_ARCH)) - - ---- hotspot/make/bsd/makefiles/gcc.make 2012-05-01 17:15:06.000000000 -0400 -+++ hotspot/make/bsd/makefiles/gcc.make 2012-09-18 11:31:25.000000000 -0400 +--- hotspot/make/bsd/makefiles/gcc.make ++++ hotspot/make/bsd/makefiles/gcc.make @@ -22,20 +22,24 @@ # # @@ -3303,8 +3303,8 @@ #------------------------------------------------------------------------ # Debug flags ---- hotspot/make/bsd/makefiles/jsig.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/jsig.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/jsig.make ++++ hotspot/make/bsd/makefiles/jsig.make @@ -25,11 +25,16 @@ # Rules to build signal interposition library, used by vm.make @@ -3344,8 +3344,8 @@ $(QUIETLY) [ -f $(LIBJSIG_G) ] || { ln -s $@ $(LIBJSIG_G); } install_jsig: $(LIBJSIG) ---- hotspot/make/bsd/makefiles/launcher.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/launcher.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/launcher.make ++++ hotspot/make/bsd/makefiles/launcher.make @@ -50,7 +50,7 @@ LIBS_LAUNCHER += $(STATIC_STDCXX) $(LIBS) else @@ -3355,8 +3355,8 @@ LIBS_LAUNCHER += -l$(JVM) $(LIBS) endif ---- hotspot/make/bsd/makefiles/sa.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/sa.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/sa.make ++++ hotspot/make/bsd/makefiles/sa.make @@ -45,8 +45,8 @@ # gnumake 3.78.1 does not accept the *s that @@ -3368,8 +3368,8 @@ AGENT_FILES1_LIST := $(GENERATED)/agent1.classes.list AGENT_FILES2_LIST := $(GENERATED)/agent2.classes.list ---- hotspot/make/bsd/makefiles/saproc.make 2012-01-12 17:22:09.000000000 -0500 -+++ hotspot/make/bsd/makefiles/saproc.make 2012-01-12 16:55:29.000000000 -0500 +--- hotspot/make/bsd/makefiles/saproc.make ++++ hotspot/make/bsd/makefiles/saproc.make @@ -25,23 +25,33 @@ # Rules to build serviceability agent library, used by vm.make @@ -3436,8 +3436,8 @@ $(QUIETLY) [ -f $(LIBSAPROC_G) ] || { ln -s $@ $(LIBSAPROC_G); } install_saproc: $(BUILDLIBSAPROC) ---- hotspot/make/bsd/makefiles/vm.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/vm.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/vm.make ++++ hotspot/make/bsd/makefiles/vm.make @@ -91,6 +91,10 @@ ${JRE_VERSION} \ ${VM_DISTRO} @@ -3555,24 +3555,24 @@ } DEST_JVM = $(JDK_LIBDIR)/$(VM_SUBDIR)/$(LIBJVM) ---- hotspot/make/bsd/platform_amd64 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/platform_amd64 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/platform_amd64 ++++ hotspot/make/bsd/platform_amd64 @@ -12,4 +12,4 @@ compiler = gcc -sysdefs = -DBSD -D_GNU_SOURCE -DAMD64 +sysdefs = -D_ALLBSD_SOURCE -D_GNU_SOURCE -DAMD64 ---- hotspot/make/bsd/platform_i486 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/platform_i486 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/platform_i486 ++++ hotspot/make/bsd/platform_i486 @@ -12,4 +12,4 @@ compiler = gcc -sysdefs = -DBSD -D_GNU_SOURCE -DIA32 +sysdefs = -D_ALLBSD_SOURCE -D_GNU_SOURCE -DIA32 ---- hotspot/make/defs.make 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/defs.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/defs.make ++++ hotspot/make/defs.make @@ -118,13 +118,23 @@ # Windows should have OS predefined ifeq ($(OS),) @@ -3599,8 +3599,8 @@ else OSNAME=solaris endif ---- hotspot/make/sa.files 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/sa.files 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/sa.files ++++ hotspot/make/sa.files @@ -50,6 +50,9 @@ $(AGENT_SRC_DIR)/sun/jvm/hotspot/compiler/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/*.java \ @@ -3621,8 +3621,8 @@ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/ia64/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_amd64/*.java \ ---- hotspot/src/cpu/x86/vm/bytes_x86.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/bytes_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/bytes_x86.hpp ++++ hotspot/src/cpu/x86/vm/bytes_x86.hpp @@ -81,6 +81,9 @@ #ifdef TARGET_OS_ARCH_windows_x86 # include "bytes_windows_x86.inline.hpp" @@ -3633,8 +3633,8 @@ #endif // CPU_X86_VM_BYTES_X86_HPP ---- hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp ++++ hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp @@ -481,8 +481,8 @@ // Fetch the exception from TLS and clear out exception related thread state __ get_thread(rsi); @@ -3646,8 +3646,8 @@ __ bind(_unwind_handler_entry); __ verify_not_null_oop(rax); ---- hotspot/src/cpu/x86/vm/copy_x86.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/copy_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/copy_x86.hpp ++++ hotspot/src/cpu/x86/vm/copy_x86.hpp @@ -37,6 +37,9 @@ #ifdef TARGET_OS_ARCH_windows_x86 # include "copy_windows_x86.inline.hpp" @@ -3658,8 +3658,8 @@ static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) { ---- hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp @@ -45,6 +45,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3688,8 +3688,8 @@ // index is positive and so should have correct value if this code were // used on 64bits imulptr(index, reg2); ---- hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp @@ -45,6 +45,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3700,8 +3700,8 @@ // Implementation of InterpreterMacroAssembler ---- hotspot/src/cpu/x86/vm/jni_x86.h 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/jni_x86.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/jni_x86.h ++++ hotspot/src/cpu/x86/vm/jni_x86.h @@ -26,7 +26,7 @@ #ifndef _JAVASOFT_JNI_MD_H_ #define _JAVASOFT_JNI_MD_H_ @@ -3711,8 +3711,8 @@ #define JNIEXPORT #define JNIIMPORT #define JNICALL ---- hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp @@ -47,6 +47,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3723,8 +3723,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp @@ -47,6 +47,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3735,8 +3735,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp @@ -35,6 +35,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3747,8 +3747,8 @@ // Implementation of the platform-specific part of StubRoutines - for // a description of how to extend it, see the stubRoutines.hpp file. ---- hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp @@ -35,6 +35,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3759,8 +3759,8 @@ // Implementation of the platform-specific part of StubRoutines - for // a description of how to extend it, see the stubRoutines.hpp file. ---- hotspot/src/cpu/x86/vm/vm_version_x86.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/vm_version_x86.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/vm_version_x86.cpp ++++ hotspot/src/cpu/x86/vm/vm_version_x86.cpp @@ -37,6 +37,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "os_windows.inline.hpp" @@ -3771,8 +3771,8 @@ int VM_Version::_cpu; ---- hotspot/src/cpu/zero/vm/bytes_zero.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/bytes_zero.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/bytes_zero.hpp ++++ hotspot/src/cpu/zero/vm/bytes_zero.hpp @@ -168,6 +168,9 @@ #ifdef TARGET_OS_ARCH_linux_zero # include "bytes_linux_zero.inline.hpp" @@ -3783,8 +3783,8 @@ #endif // VM_LITTLE_ENDIAN ---- hotspot/src/cpu/zero/vm/interp_masm_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/interp_masm_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/interp_masm_zero.cpp ++++ hotspot/src/cpu/zero/vm/interp_masm_zero.cpp @@ -40,5 +40,8 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3794,8 +3794,8 @@ +#endif // This file is intentionally empty ---- hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp ++++ hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp @@ -43,6 +43,9 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3806,8 +3806,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp ++++ hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp @@ -30,6 +30,9 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3818,8 +3818,8 @@ #ifdef IA32 address StubRoutines::x86::_call_stub_compiled_return = NULL; ---- hotspot/src/cpu/zero/vm/vm_version_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/vm_version_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/vm_version_zero.cpp ++++ hotspot/src/cpu/zero/vm/vm_version_zero.cpp @@ -32,5 +32,8 @@ #ifdef TARGET_OS_FAMILY_linux # include "os_linux.inline.hpp" @@ -3829,8 +3829,8 @@ +#endif // This file is intentionally empty ---- hotspot/src/os/bsd/vm/attachListener_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/attachListener_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/attachListener_bsd.cpp ++++ hotspot/src/os/bsd/vm/attachListener_bsd.cpp @@ -170,53 +170,41 @@ // Initialization - create a listener socket and bind it to a file @@ -3954,8 +3954,8 @@ if (ret == 0) { // simple check to avoid starting the attach mechanism when // a bogus user creates the file ---- hotspot/src/os/bsd/vm/jsig.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jsig.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jsig.c ++++ hotspot/src/os/bsd/vm/jsig.c @@ -143,7 +143,8 @@ } @@ -3966,8 +3966,8 @@ } static int call_os_sigaction(int sig, const struct sigaction *act, ---- hotspot/src/os/bsd/vm/jvm_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jvm_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jvm_bsd.cpp ++++ hotspot/src/os/bsd/vm/jvm_bsd.cpp @@ -146,38 +146,31 @@ "ILL", SIGILL, /* Illegal instruction (ANSI). */ "TRAP", SIGTRAP, /* Trace trap (POSIX). */ @@ -4017,8 +4017,8 @@ }; JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name)) ---- hotspot/src/os/bsd/vm/jvm_bsd.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jvm_bsd.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jvm_bsd.h ++++ hotspot/src/os/bsd/vm/jvm_bsd.h @@ -54,7 +54,11 @@ #define AGENT_ONATTACH_SYMBOLS {"Agent_OnAttach"} @@ -4052,8 +4052,8 @@ #endif /* JVM_MD_H */ // Reconciliation History ---- hotspot/src/os/bsd/vm/osThread_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/osThread_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/osThread_bsd.cpp ++++ hotspot/src/os/bsd/vm/osThread_bsd.cpp @@ -43,8 +43,12 @@ void OSThread::pd_initialize() { @@ -4068,8 +4068,8 @@ _siginfo = NULL; _ucontext = NULL; _expanding_stack = 0; ---- hotspot/src/os/bsd/vm/osThread_bsd.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/osThread_bsd.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/osThread_bsd.hpp ++++ hotspot/src/os/bsd/vm/osThread_bsd.hpp @@ -39,6 +39,7 @@ private: @@ -4130,8 +4130,8 @@ pthread_t pthread_id() const { return _pthread_id; } ---- hotspot/src/os/bsd/vm/os_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.cpp ++++ hotspot/src/os/bsd/vm/os_bsd.cpp @@ -88,7 +88,6 @@ # include # include @@ -5661,8 +5661,8 @@ // execve failed _exit(-1); ---- hotspot/src/os/bsd/vm/os_bsd.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.hpp ++++ hotspot/src/os/bsd/vm/os_bsd.hpp @@ -30,6 +30,12 @@ /* pthread_getattr_np comes with BsdThreads-0.9-7 on RedHat 7.1 */ typedef int (*pthread_getattr_func_type) (pthread_t, pthread_attr_t *); @@ -5801,8 +5801,8 @@ // Stack repair handling ---- hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.inline.hpp ++++ hotspot/src/os/bsd/vm/os_bsd.inline.hpp @@ -86,7 +86,15 @@ inline bool os::allocate_stack_guard_pages() { @@ -5837,8 +5837,8 @@ } inline struct dirent* os::readdir(DIR* dirp, dirent *dbuf) ---- hotspot/src/os/bsd/vm/vmError_bsd.cpp 2012-09-26 19:40:10.000000000 -0400 -+++ hotspot/src/os/bsd/vm/vmError_bsd.cpp 2012-09-26 19:43:30.000000000 -0400 +--- hotspot/src/os/bsd/vm/vmError_bsd.cpp ++++ hotspot/src/os/bsd/vm/vmError_bsd.cpp @@ -34,6 +34,12 @@ #include #include @@ -5870,8 +5870,8 @@ os::current_process_id(), os::current_process_id()); os::fork_and_exec(buf); ---- hotspot/src/os/posix/launcher/java_md.c 2012-05-01 17:15:07.000000000 -0400 -+++ hotspot/src/os/posix/launcher/java_md.c 2012-09-26 17:49:02.000000000 -0400 +--- hotspot/src/os/posix/launcher/java_md.c ++++ hotspot/src/os/posix/launcher/java_md.c @@ -41,14 +41,21 @@ #include "version_comp.h" #endif @@ -6067,16 +6067,16 @@ pthread_t tid; pthread_attr_t attr; pthread_attr_init(&attr); ---- hotspot/src/os/posix/launcher/launcher.script 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/os/posix/launcher/launcher.script 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/posix/launcher/launcher.script ++++ hotspot/src/os/posix/launcher/launcher.script @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ---- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s 2012-05-01 17:15:08.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s 2012-09-18 13:13:53.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s ++++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s @@ -21,6 +21,17 @@ # questions. # @@ -6317,8 +6317,8 @@ movl 4(%esp), %eax # src fildll (%eax) movl 8(%esp), %eax # dest ---- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s ++++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s @@ -21,6 +21,14 @@ # questions. # @@ -6466,8 +6466,8 @@ cmpq %rdi,%rsi leaq -8(%rdi,%rdx,8),%rax # from + count*8 - 8 jbe acl_CopyRight ---- hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp @@ -25,7 +25,33 @@ #ifndef OS_CPU_BSD_X86_VM_BYTES_BSD_X86_INLINE_HPP #define OS_CPU_BSD_X86_VM_BYTES_BSD_X86_INLINE_HPP @@ -6502,8 +6502,8 @@ // Efficient swapping of data bytes from Java byte // ordering to native byte ordering and vice versa. ---- hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp @@ -25,9 +25,10 @@ #ifndef OS_CPU_BSD_X86_VM_GLOBALS_BSD_X86_HPP #define OS_CPU_BSD_X86_VM_GLOBALS_BSD_X86_HPP @@ -6531,8 +6531,8 @@ // Only used on 64 bit Windows platforms define_pd_global(bool, UseVectoredExceptions, false); ---- hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp 2012-05-01 17:15:08.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp 2012-09-18 18:21:03.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp @@ -93,7 +93,7 @@ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 21:02:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AED17F87; Tue, 9 Oct 2012 21:02:15 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7F1038FC08; Tue, 9 Oct 2012 21:02:15 +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 q99L2FYq081302; Tue, 9 Oct 2012 21:02:15 GMT (envelope-from zeising@svn.freebsd.org) Received: (from zeising@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99L2F9x081299; Tue, 9 Oct 2012 21:02:15 GMT (envelope-from zeising@svn.freebsd.org) Message-Id: <201210092102.q99L2F9x081299@svn.freebsd.org> From: Niclas Zeising Date: Tue, 9 Oct 2012 21:02:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305605 - head/devel/binutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 21:02:15 -0000 Author: zeising Date: Tue Oct 9 21:02:14 2012 New Revision: 305605 URL: http://svn.freebsd.org/changeset/ports/305605 Log: Disable the gold linker when building on ia64. It is not supported on this architecture, and having it enabled nontheless gives plist issues. [1] Fix plist when compiled with NLS support [2] Bump PORTREVISION since the plist changed. Reported by: Anton Shterenlikht (private mail) [1] eadler, crees, makc (on irc) [2] Approved by: kwm (mentor) Modified: head/devel/binutils/Makefile head/devel/binutils/pkg-plist Modified: head/devel/binutils/Makefile ============================================================================== --- head/devel/binutils/Makefile Tue Oct 9 20:59:37 2012 (r305604) +++ head/devel/binutils/Makefile Tue Oct 9 21:02:14 2012 (r305605) @@ -3,7 +3,7 @@ PORTNAME= binutils PORTVERSION= 2.22 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEWARE} MASTER_SITE_SUBDIR= binutils/releases @@ -68,7 +68,7 @@ INFO= as \ .include # Actual earliest version may differ slightly -.if ${OSVERSION} >= 900044 +.if ${ARCH} != ia64 && ${OSVERSION} >= 900044 CONFIGURE_ARGS+= --enable-gold --enable-plugins PLIST_SUB+= GOLD="" .else Modified: head/devel/binutils/pkg-plist ============================================================================== --- head/devel/binutils/pkg-plist Tue Oct 9 20:59:37 2012 (r305604) +++ head/devel/binutils/pkg-plist Tue Oct 9 21:02:14 2012 (r305605) @@ -43,6 +43,7 @@ lib/libopcodes.la %%NLS%%share/locale/es/LC_MESSAGES/gprof.mo %%NLS%%share/locale/es/LC_MESSAGES/ld.mo %%NLS%%share/locale/es/LC_MESSAGES/opcodes.mo +%%NLS%%%%GOLD%%share/locale/es/LC_MESSAGES/gold.mo %%NLS%%share/locale/fi/LC_MESSAGES/bfd.mo %%NLS%%share/locale/fi/LC_MESSAGES/binutils.mo %%NLS%%share/locale/fi/LC_MESSAGES/gas.mo @@ -55,6 +56,7 @@ lib/libopcodes.la %%NLS%%share/locale/fr/LC_MESSAGES/gprof.mo %%NLS%%share/locale/fr/LC_MESSAGES/ld.mo %%NLS%%share/locale/fr/LC_MESSAGES/opcodes.mo +%%NLS%%%%GOLD%%share/locale/fi/LC_MESSAGES/gold.mo %%NLS%%share/locale/ga/LC_MESSAGES/gprof.mo %%NLS%%share/locale/ga/LC_MESSAGES/ld.mo %%NLS%%share/locale/ga/LC_MESSAGES/opcodes.mo @@ -64,6 +66,7 @@ lib/libopcodes.la %%NLS%%share/locale/id/LC_MESSAGES/binutils.mo %%NLS%%share/locale/id/LC_MESSAGES/gas.mo %%NLS%%share/locale/id/LC_MESSAGES/ld.mo +%%NLS%%%%GOLD%%share/locale/id/LC_MESSAGES/gold.mo %%NLS%%share/locale/ja/LC_MESSAGES/bfd.mo %%NLS%%share/locale/ja/LC_MESSAGES/binutils.mo %%NLS%%share/locale/ja/LC_MESSAGES/ld.mo @@ -102,6 +105,7 @@ lib/libopcodes.la %%NLS%%share/locale/vi/LC_MESSAGES/gprof.mo %%NLS%%share/locale/vi/LC_MESSAGES/ld.mo %%NLS%%share/locale/vi/LC_MESSAGES/opcodes.mo +%%NLS%%%%GOLD%%share/locale/vi/LC_MESSAGES/gold.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/bfd.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/binutils.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/ld.mo From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:58:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7586F3A; Tue, 9 Oct 2012 13:58:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE148FC17; Tue, 9 Oct 2012 13:58:53 +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 q99Dwr6u016443; Tue, 9 Oct 2012 13:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DwrNv016440; Tue, 9 Oct 2012 13:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091358.q99DwrNv016440@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:58:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305581 - head/german/mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 Author: sunpoet Date: Tue Oct 9 13:58:53 2012 New Revision: 305581 URL: http://svn.freebsd.org/changeset/ports/305581 Log: - Update to 2012.09.07 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Tue Oct 9 13:53:17 2012 (r305580) +++ head/german/mythes/Makefile Tue Oct 9 13:58:53 2012 (r305581) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Tue Oct 9 13:53:17 2012 (r305580) +++ head/german/mythes/distinfo Tue Oct 9 13:58:53 2012 (r305581) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20120930.oxt) = ea46b6f997d692c42bad38cffb4561b9fd917255bbeb7246e122f1b6075f2a4f -SIZE (mythes/Deutscher-Thesaurus-20120930.oxt) = 4110312 +SHA256 (mythes/Deutscher-Thesaurus-20120907.oxt) = d62a7b9f4257916c20bee702e016b59e565a8793fec39af48a2a01d8ffd2a2ea +SIZE (mythes/Deutscher-Thesaurus-20120907.oxt) = 3953926 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0237D79; Tue, 9 Oct 2012 13:59:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE6F98FC0C; Tue, 9 Oct 2012 13:59:03 +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 q99Dx3Qv016601; Tue, 9 Oct 2012 13:59:03 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Dx3Gq016597; Tue, 9 Oct 2012 13:59:03 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99Dx3Gq016597@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305583 - head/textproc/nl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 Author: sunpoet Date: Tue Oct 9 13:59:03 2012 New Revision: 305583 URL: http://svn.freebsd.org/changeset/ports/305583 Log: - Update to 2012.09.07 Modified: head/textproc/nl-mythes/Makefile head/textproc/nl-mythes/distinfo Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Tue Oct 9 13:58:58 2012 (r305582) +++ head/textproc/nl-mythes/Makefile Tue Oct 9 13:59:03 2012 (r305583) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= nl- Modified: head/textproc/nl-mythes/distinfo ============================================================================== --- head/textproc/nl-mythes/distinfo Tue Oct 9 13:58:58 2012 (r305582) +++ head/textproc/nl-mythes/distinfo Tue Oct 9 13:59:03 2012 (r305583) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_nl-20120930.oxt) = 168d05c538d4f960d875af74b2d61ec680860b4731134843a0ea99daf1340dd9 -SIZE (mythes/thes_nl-20120930.oxt) = 1956025 +SHA256 (mythes/thes_nl-20120907.oxt) = dd8b5074581afe76e1ef50fa9187ec47ba3f15d647910d58b3837e49092949ae +SIZE (mythes/thes_nl-20120907.oxt) = 1956026 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AB6514A; Tue, 9 Oct 2012 13:59:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 136BD8FC19; Tue, 9 Oct 2012 13:59:09 +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 q99Dx8Pb016676; Tue, 9 Oct 2012 13:59:08 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Dx8Ml016673; Tue, 9 Oct 2012 13:59:08 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99Dx8Ml016673@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305584 - head/textproc/sk-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 Author: sunpoet Date: Tue Oct 9 13:59:08 2012 New Revision: 305584 URL: http://svn.freebsd.org/changeset/ports/305584 Log: - Update to 2012.09.07 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Tue Oct 9 13:59:03 2012 (r305583) +++ head/textproc/sk-mythes/Makefile Tue Oct 9 13:59:08 2012 (r305584) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Tue Oct 9 13:59:03 2012 (r305583) +++ head/textproc/sk-mythes/distinfo Tue Oct 9 13:59:08 2012 (r305584) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120930.zip) = 43cf135810074f4066f9d474370194a9026ac5e72011036e3237796b1c1209cb -SIZE (mythes/OOo-Thesaurus2-sk_SK-20120930.zip) = 331753 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = e5c5db882aa31eee0b81e36c432e089ef1529cc29707c911781a668e66a42f1d +SIZE (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = 331575 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C6F621D; Tue, 9 Oct 2012 13:59:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4457B8FC0A; Tue, 9 Oct 2012 13:59: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 q99DxEe6016754; Tue, 9 Oct 2012 13:59:14 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DxEbY016751; Tue, 9 Oct 2012 13:59:14 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99DxEbY016751@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305585 - head/textproc/sl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 Author: sunpoet Date: Tue Oct 9 13:59:13 2012 New Revision: 305585 URL: http://svn.freebsd.org/changeset/ports/305585 Log: - Update to 2012.10.08 Modified: head/textproc/sl-mythes/Makefile head/textproc/sl-mythes/distinfo Modified: head/textproc/sl-mythes/Makefile ============================================================================== --- head/textproc/sl-mythes/Makefile Tue Oct 9 13:59:08 2012 (r305584) +++ head/textproc/sl-mythes/Makefile Tue Oct 9 13:59:13 2012 (r305585) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.10.01 +PORTVERSION= 2012.10.08 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sl- Modified: head/textproc/sl-mythes/distinfo ============================================================================== --- head/textproc/sl-mythes/distinfo Tue Oct 9 13:59:08 2012 (r305584) +++ head/textproc/sl-mythes/distinfo Tue Oct 9 13:59:13 2012 (r305585) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_sl_SI_v2-20121001.zip) = 63b26b8e88cd876d8819539bf8eefa1ce986ce64a63410fbfa1d029388f5da5b -SIZE (mythes/thes_sl_SI_v2-20121001.zip) = 327988 +SHA256 (mythes/thes_sl_SI_v2-20121008.zip) = f8891f289ed3853d9fd33364f14f17b8e4ec41b4339913ff817aaf3cf2c877ef +SIZE (mythes/thes_sl_SI_v2-20121008.zip) = 327996 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 789C5406; Tue, 9 Oct 2012 13:59:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5FF738FC19; Tue, 9 Oct 2012 13:59: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 q99DxgH1016870; Tue, 9 Oct 2012 13:59:42 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DxgcD016868; Tue, 9 Oct 2012 13:59:42 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99DxgcD016868@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305586 - head/databases/kyotocabinet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 Author: sunpoet Date: Tue Oct 9 13:59:41 2012 New Revision: 305586 URL: http://svn.freebsd.org/changeset/ports/305586 Log: - Convert to new options framework - Cleanup Makefile header Modified: head/databases/kyotocabinet/Makefile (contents, props changed) Modified: head/databases/kyotocabinet/Makefile ============================================================================== --- head/databases/kyotocabinet/Makefile Tue Oct 9 13:59:13 2012 (r305585) +++ head/databases/kyotocabinet/Makefile Tue Oct 9 13:59:41 2012 (r305586) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kyotocabinet -# Date created: 22 April 2010 -# Whom: Akinori MUSHA aka knu -# +# Created by: Akinori MUSHA aka knu # $FreeBSD$ -# PORTNAME= kyotocabinet PORTVERSION= 1.2.76 @@ -16,6 +12,8 @@ COMMENT= A straightforward implementatio LICENSE= GPLv3 +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes MAKE_ARGS= PCDIR="${PREFIX}/libdata/pkgconfig" MAKE_JOBS_SAFE= yes @@ -56,12 +54,12 @@ BROKEN= Does not link on powerpc .endif post-patch: -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${FIND} ${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; ${FIND} ${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:00:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1758E4FC; Tue, 9 Oct 2012 14:00:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F39668FC1C; Tue, 9 Oct 2012 14:00: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 q99E0YU1017071; Tue, 9 Oct 2012 14:00:34 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99E0Y2l017068; Tue, 9 Oct 2012 14:00:34 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091400.q99E0Y2l017068@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:00:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305587 - head/databases/kyototycoon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 Author: sunpoet Date: Tue Oct 9 14:00:34 2012 New Revision: 305587 URL: http://svn.freebsd.org/changeset/ports/305587 Log: - Add LICENSE - Convert to new options framework - Cleanup Makefile header Modified: head/databases/kyototycoon/Makefile (contents, props changed) Modified: head/databases/kyototycoon/Makefile ============================================================================== --- head/databases/kyototycoon/Makefile Tue Oct 9 13:59:41 2012 (r305586) +++ head/databases/kyototycoon/Makefile Tue Oct 9 14:00:34 2012 (r305587) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kyototycoon -# Date created: 2011-10-04 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= kyototycoon PORTVERSION= 0.9.56 @@ -14,8 +10,12 @@ MASTER_SITES= http://fallabs.com/${PORTN MAINTAINER= sunpoet@FreeBSD.org COMMENT= A handy cache/storage server +LICENSE= GPLv3 + LIB_DEPENDS= kyotocabinet:${PORTSDIR}/databases/kyotocabinet +OPTIONS_DEFINE= DOCS + CONFIGURE_ARGS= --enable-profile --enable-uyield GNU_CONFIGURE= yes MAKE_ARGS= PCDIR="${PREFIX}/libdata/pkgconfig" @@ -32,8 +32,10 @@ MAN1= ktremotemgr.1 \ ktutilserv.1 \ ktutiltest.1 +.include + post-patch: -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif @@ -41,7 +43,7 @@ post-configure: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' ${WRKSRC}/Makefile post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${FIND} ${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; ${FIND} ${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:15:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48F40835; Tue, 9 Oct 2012 14:15:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 16C948FC14; Tue, 9 Oct 2012 14:15: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 q99EFIau019035; Tue, 9 Oct 2012 14:15:18 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EFIeD019032; Tue, 9 Oct 2012 14:15:18 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091415.q99EFIeD019032@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:15:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305588 - head/devel/p5-Class-Load-XS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 Author: sunpoet Date: Tue Oct 9 14:15:18 2012 New Revision: 305588 URL: http://svn.freebsd.org/changeset/ports/305588 Log: - Update to 0.05 - Cleanup Makefile header Changes: http://search.cpan.org/dist/Class-Load-XS/Changes Modified: head/devel/p5-Class-Load-XS/Makefile (contents, props changed) head/devel/p5-Class-Load-XS/distinfo (contents, props changed) Modified: head/devel/p5-Class-Load-XS/Makefile ============================================================================== --- head/devel/p5-Class-Load-XS/Makefile Tue Oct 9 14:00:34 2012 (r305587) +++ head/devel/p5-Class-Load-XS/Makefile Tue Oct 9 14:15:18 2012 (r305588) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Class-Load-XS -# Date created: 2011-11-16 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= Class-Load-XS -PORTVERSION= 0.04 +PORTVERSION= 0.05 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,9 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= XS implementation of parts of Class::Load -BUILD_DEPENDS= p5-Class-Load>=0.15:${PORTSDIR}/devel/p5-Class-Load -RUN_DEPENDS= p5-Class-Load>=0.15:${PORTSDIR}/devel/p5-Class-Load - +BUILD_DEPENDS= p5-Class-Load>=0.20:${PORTSDIR}/devel/p5-Class-Load +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Module-Implementation>=0.04:${PORTSDIR}/devel/p5-Module-Implementation \ p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires \ Modified: head/devel/p5-Class-Load-XS/distinfo ============================================================================== --- head/devel/p5-Class-Load-XS/distinfo Tue Oct 9 14:00:34 2012 (r305587) +++ head/devel/p5-Class-Load-XS/distinfo Tue Oct 9 14:15:18 2012 (r305588) @@ -1,2 +1,2 @@ -SHA256 (Class-Load-XS-0.04.tar.gz) = d4731aee4d5484cd1eef9b2aa46d0370be3f4c9aeb8fd14fc11bbd48201e05e3 -SIZE (Class-Load-XS-0.04.tar.gz) = 55168 +SHA256 (Class-Load-XS-0.05.tar.gz) = 91901b3dbd7feb8f7e646a68201ad41fb0c7b2e60aa114fdedbd9f64f22d157d +SIZE (Class-Load-XS-0.05.tar.gz) = 56007 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:15:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B980D90E; Tue, 9 Oct 2012 14:15:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A195D8FC0A; Tue, 9 Oct 2012 14:15:38 +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 q99EFcLI019144; Tue, 9 Oct 2012 14:15:38 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EFc2J019141; Tue, 9 Oct 2012 14:15:38 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091415.q99EFc2J019141@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:15:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305589 - head/net/rubygem-httpauth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 Author: sunpoet Date: Tue Oct 9 14:15:38 2012 New Revision: 305589 URL: http://svn.freebsd.org/changeset/ports/305589 Log: - Update to 0.2.0 - Cleanup Makefile header Changes: https://github.com/Manfred/HTTPauth/commits/master Modified: head/net/rubygem-httpauth/Makefile (contents, props changed) head/net/rubygem-httpauth/distinfo (contents, props changed) Modified: head/net/rubygem-httpauth/Makefile ============================================================================== --- head/net/rubygem-httpauth/Makefile Tue Oct 9 14:15:18 2012 (r305588) +++ head/net/rubygem-httpauth/Makefile Tue Oct 9 14:15:38 2012 (r305589) @@ -1,12 +1,8 @@ -# New ports collection makefile for: rubygem-httpauth -# Date created: 2012-04-16 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= httpauth -PORTVERSION= 0.1 +PORTVERSION= 0.2.0 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-httpauth/distinfo ============================================================================== --- head/net/rubygem-httpauth/distinfo Tue Oct 9 14:15:18 2012 (r305588) +++ head/net/rubygem-httpauth/distinfo Tue Oct 9 14:15:38 2012 (r305589) @@ -1,2 +1,2 @@ -SHA256 (rubygem/httpauth-0.1.gem) = 18d4b8b9048932303e1c22580c8391dff6a6ec24f92b7b8e6d436b621a85d9f1 -SIZE (rubygem/httpauth-0.1.gem) = 15872 +SHA256 (rubygem/httpauth-0.2.0.gem) = 61693bd3849f348c075861a014c95af777a89581e04cae231641c56fc2a9e21f +SIZE (rubygem/httpauth-0.2.0.gem) = 13824 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:18:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C34F5AB2; Tue, 9 Oct 2012 14:18:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AB9838FC08; Tue, 9 Oct 2012 14:18: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 q99EIOq5019652; Tue, 9 Oct 2012 14:18:24 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EIO6f019650; Tue, 9 Oct 2012 14:18:24 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091418.q99EIO6f019650@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:18:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305590 - head/net-mgmt/ettercap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 Author: sunpoet Date: Tue Oct 9 14:18:24 2012 New Revision: 305590 URL: http://svn.freebsd.org/changeset/ports/305590 Log: - Convert to new options framework - Rename options: GTK -> GTK2, ICONV -> UTF8 - Pet portlint: remove ABI version number from LIB_DEPENDS - Cleanup Makefile header - Cosmetic change Modified: head/net-mgmt/ettercap/Makefile (contents, props changed) Modified: head/net-mgmt/ettercap/Makefile ============================================================================== --- head/net-mgmt/ettercap/Makefile Tue Oct 9 14:15:38 2012 (r305589) +++ head/net-mgmt/ettercap/Makefile Tue Oct 9 14:18:24 2012 (r305590) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ettercap -# Date created: 19 February 2001 -# Whom: George Reid -# +# Created by: George Reid # $FreeBSD$ -# PORTNAME= ettercap PORTVERSION= 0.7.4.1 @@ -18,11 +14,11 @@ COMMENT= A network sniffer/interceptor/i BUILD_DEPENDS= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet -OPTIONS= GTK "Build with GTK2+ GUI" on \ - ICONV "Build with support for UTF-8" on \ - PCRE "Build with PCRE regexps in filters" on \ - PLUGINS "Build with ettercap plugins" on \ - SSL "Build with support for SSH1 and SSL decryption" on +# GTK -> GTK2, ICONV -> UTF8 +OPTIONS_DEFINE= DOCS GTK2 PCRE PLUGINS SSL UTF8 +OPTIONS_DEFAULT=GTK2 PCRE PLUGINS SSL UTF8 +PCRE_DESC= Use PCRE in filters +SSL_DESC= SSH1 and SSL decryption support CFLAGS+= ${PTHREAD_CFLAGS} CONFIGURE_ENV= LIBS="${LDFLAGS}" @@ -36,49 +32,49 @@ USE_BISON= build WANT_GNOME= yes WRKSRC= ${WRKDIR}/${PORTNAME} -MAN5= etter.conf.5 -MAN8= ettercap.8 ettercap_curses.8 etterfilter.8 etterlog.8 DOCS= AUTHORS CHANGELOG README README.BINARIES README.BUGS \ README.GIT README.PLATFORMS THANKS TODO TODO.TESTING \ doc/capture doc/decoders doc/dissectors doc/threads +MAN5= etter.conf.5 +MAN8= ettercap.8 ettercap_curses.8 etterfilter.8 etterlog.8 LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config .include -.if !defined(WITHOUT_GTK) -USE_GNOME= atk glib20 gtk20 pango +.if ${PORT_OPTIONS:MGTK2} PKGNAMESUFFIX+= -gtk2 CONFIGURE_ARGS+=--enable-gtk +USE_GNOME= atk glib20 gtk20 pango .else CONFIGURE_ARGS+=--disable-gtk .endif -.if !defined(WITHOUT_ICONV) -USE_ICONV= yes +.if ${PORT_OPTIONS:MUTF8} CONFIGURE_ARGS+=--with-iconv=${LOCALBASE} +USE_ICONV= yes .endif -.if !defined(WITHOUT_PCRE) -LIB_DEPENDS+= pcre.1:${PORTSDIR}/devel/pcre +.if ${PORT_OPTIONS:MPCRE} +LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre CONFIGURE_ARGS+=--with-libpcre=${LOCALBASE} .else CONFIGURE_ARGS+=--without-libpcre .endif -.if !defined(WITHOUT_PLUGINS) -MAN8+= ettercap_plugins.8 -DOCS+= doc/plugins +.if ${PORT_OPTIONS:MPLUGINS} CONFIGURE_ARGS+=--enable-plugins +DOCS+= doc/plugins +MAN8+= ettercap_plugins.8 PLIST_SUB+= PLUGINS="" .else CONFIGURE_ARGS+=--disable-plugins PLIST_SUB+= PLUGINS="@comment " .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes +.if ${PORT_OPTIONS:MSSL} CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} +USE_OPENSSL= yes .else CONFIGURE_ARGS+=--without-openssl .endif @@ -109,7 +105,7 @@ post-install: .if !exists(${PREFIX}/etc/etter.conf) ${INSTALL_DATA} ${WRKSRC}/share/etter.conf ${PREFIX}/etc/etter.conf .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/ .endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:04:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8F7FB8B for ; Tue, 9 Oct 2012 15:04:28 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 8AC948FC17 for ; Tue, 9 Oct 2012 15:04:28 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so5815812pad.13 for ; Tue, 09 Oct 2012 08:04:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=mdW1Jd/EW2Qrr1h9szs2i0TforFvJvlYjmwrJZ2lbbo=; b=NkHaCM1LZJ4ImMvxLiWezbC0bqgjFRAPcSTufreoPL7hJFoUKI1io4iLI0YbPJU/SK wcvjlK6dw90jriv04ovyvqU/09IKd/NB8WOEP3sWatpPcPShdef5E3TjROcaBwX2Im1s eoaP4Z+guqtEZG8blDfLDt+5fJ9Z2JTy2J42I= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=mdW1Jd/EW2Qrr1h9szs2i0TforFvJvlYjmwrJZ2lbbo=; b=GwN/nEocCvYCqB1zHHC2DX/T8Q9xLO0h8ubVnH2Nlh9o23rCSDiWEOAWmdpJOIBdMz a+zpZ0G5D2UQulQLEVzvHFRv5Zl10VucffVAeCdLDPzmLbbD8wvHBdkTWTHpJCSEOk2A ESz+wPL1W4y1W/jzSB89+TvpP0VJODzEOI9yWvRJMKZqgXRkD3EbFi3CYDpwYVCoJpSB 5pZEKD5jGPLAext33OyLEVnGVHuKdMAI5CydWP8qw0Qq1Eo6FuRIJMxf3hHZLTHsCtvG AoMglVqwuUhRZoTrutP62IjhA+iXLXHTBeZKu8jwoG/DIOda/B0RxInIiLmrmzKbCXZp VZ6A== Received: by 10.66.75.168 with SMTP id d8mr53474380paw.63.1349795067746; Tue, 09 Oct 2012 08:04:27 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.161.163 with HTTP; Tue, 9 Oct 2012 08:03:57 -0700 (PDT) In-Reply-To: <201210082045.q98KjqgO068427@svn.freebsd.org> References: <201210082045.q98KjqgO068427@svn.freebsd.org> From: Eitan Adler Date: Tue, 9 Oct 2012 11:03:57 -0400 X-Google-Sender-Auth: UsBG3OrRCvAJFydOXARKtBYmxOc Message-ID: Subject: Re: svn commit: r305556 - head/security/vuxml To: Rene Ladan Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQlUsbjKwL4jLuV/TQOo1Clu6I5+du3TpD8aOySL9PIAHZGlRuz+WjrXQmUmHTQblhJKVjK1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 On 8 October 2012 16:45, Rene Ladan wrote: > Author: rene > Date: Mon Oct 8 20:45:52 2012 > New Revision: 305556 > URL: http://svn.freebsd.org/changeset/ports/305556 > > Log: > Document new vulnerabilities in www/chromium < 22.0.1229.92 You do a really good job at documenting the chrome vulns. Thanks! -- Eitan Adler Source & Ports committer X11, Bugbusting teams From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:26:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E223C1AB; Tue, 9 Oct 2012 15:26:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B15F38FC1B; Tue, 9 Oct 2012 15:26: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 q99FQwEY028850; Tue, 9 Oct 2012 15:26:58 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99FQwks028847; Tue, 9 Oct 2012 15:26:58 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201210091526.q99FQwks028847@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 9 Oct 2012 15:26:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305591 - head/astro/josm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 Author: amdmi3 Date: Tue Oct 9 15:26:58 2012 New Revision: 305591 URL: http://svn.freebsd.org/changeset/ports/305591 Log: - Update to 5531 Modified: head/astro/josm/Makefile head/astro/josm/distinfo Modified: head/astro/josm/Makefile ============================================================================== --- head/astro/josm/Makefile Tue Oct 9 14:18:24 2012 (r305590) +++ head/astro/josm/Makefile Tue Oct 9 15:26:58 2012 (r305591) @@ -6,7 +6,7 @@ # PORTNAME= josm -PORTVERSION= 5485 +PORTVERSION= 5531 CATEGORIES= astro java MASTER_SITES= http://josm.openstreetmap.de/download/:josm \ http://mirror.amdmi3.ru/distfiles/:josm \ @@ -25,6 +25,8 @@ JAVA_VERSION= 1.5+ JOSM_MEMORY_LIMIT?=1024 +NO_BUILD= yes + SUB_FILES= josm.sh SUB_LIST= JARNAME=${DISTNAME} JOSM_MEMORY_LIMIT=${JOSM_MEMORY_LIMIT} @@ -33,31 +35,10 @@ WEBKITIMG_SRC= ${WEBKITIMG}.cpp PLIST_FILES= bin/josm ${JAVAJARDIR:C,${PREFIX}/?,,}/${DISTNAME} -OPTIONS= WEBKIT_IMAGE "Build webkit-image (needed for Yahoo imagery)" off - -.include - pre-everything:: @${ECHO_CMD} "You can change limit of memory available to josm by defining" @${ECHO_CMD} "JOSM_MEMORY_LIMIT variable in /etc/make.conf. Default is 1024 (MB)." -.if defined(WITH_WEBKIT_IMAGE) -PLIST_FILES+= bin/webkit-image - -USE_QT4= corelib gui webkit moc_build - -do-build: - cd ${WRKSRC} && \ - ${MOC} ${DISTDIR}/${WEBKITIMG_SRC} > ${WEBKITIMG}.h && \ - ${CXX} ${CFLAGS} ${PTHREAD_LIBS} -I. -I${QT_INCDIR} -L${QT_LIBDIR} \ - ${DISTDIR}/${WEBKITIMG_SRC} -o ${WEBKITIMG} -lQtCore -lQtWebKit \ - -lQtGui -.else -# setting NO_BUILD here won't work -do-build: - @${DO_NADA} -.endif - do-install: ${MKDIR} ${JAVAJARDIR}/ ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${JAVAJARDIR}/ Modified: head/astro/josm/distinfo ============================================================================== --- head/astro/josm/distinfo Tue Oct 9 14:18:24 2012 (r305590) +++ head/astro/josm/distinfo Tue Oct 9 15:26:58 2012 (r305591) @@ -1,4 +1,4 @@ -SHA256 (josm-snapshot-5485.jar) = c392040d84539e68add3ecf60fb886cfb6fa5f36c125329ec5f55c92397d4bc2 -SIZE (josm-snapshot-5485.jar) = 7530751 +SHA256 (josm-snapshot-5531.jar) = 7e10272416903a0cc70249769f876e19a68bce346c69d587a9cf512c6fa67035 +SIZE (josm-snapshot-5531.jar) = 7578075 SHA256 (webkit-image.cpp) = 431f5b956c0e3d1615289dd6cb64effb988b30ace7c80f5a51f9546aa80d300d SIZE (webkit-image.cpp) = 2718 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:55:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1BEBA45; Tue, 9 Oct 2012 15:55:15 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 89EEF8FC08; Tue, 9 Oct 2012 15:55:15 +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 q99FtFHa032498; Tue, 9 Oct 2012 15:55:15 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99FtFfk032496; Tue, 9 Oct 2012 15:55:15 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210091555.q99FtFfk032496@svn.freebsd.org> From: Alex Dupre Date: Tue, 9 Oct 2012 15:55:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305592 - head/Tools/scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 Author: ale Date: Tue Oct 9 15:55:15 2012 New Revision: 305592 URL: http://svn.freebsd.org/changeset/ports/305592 Log: Clean-up command-line options. Approved by: crees Modified: head/Tools/scripts/addport Modified: head/Tools/scripts/addport ============================================================================== --- head/Tools/scripts/addport Tue Oct 9 15:26:58 2012 (r305591) +++ head/Tools/scripts/addport Tue Oct 9 15:55:15 2012 (r305592) @@ -58,7 +58,7 @@ sub lastcomment(); my %opts; -getopts('ac:d:fh:il:L:M:mns:tu:y', \%opts); +getopts('ac:d:fh:il:L:mns:tu:y', \%opts); my $autofill_l = $opts{'l'}; my $autofill_L = $opts{'L'}; @@ -71,7 +71,6 @@ $h = $opts{'h'} if ($opts{'h'} ne ""); my $u = $ENV{USER}; $u = $opts{'u'} if ($opts{'u'} ne ""); my $more_testing = $opts{'t'}; -my $moduleshost = $opts{'M'}; my $interactive = $opts{'i'}; my $nomkdir = $opts{'m'}; my $addlchk = $opts{'a'}; @@ -111,9 +110,6 @@ my $tmp2; my $offset; my $commitfile = " my $moved = ""; $tmp = $tmp2 = $offset = 0; -chomp(my $myhost = lc(hostname())); -$moduleshost = $myhost if ($moduleshost eq ""); - # Check the editor. my $edit = "/usr/bin/vi"; $edit = $ENV{EDITOR} if ($ENV{EDITOR} ne ""); @@ -504,8 +500,8 @@ print <, SYNOPSIS - $0 [-c commitfile] [-h host] [-l PR number] [-s distdir] [-u user] - [-abfimnt] -d directory + $0 [-c commitfile] [-h host] [-l PR number | -L PR number] + [-s distdir] [-u user] [-afimnty] -d directory Where "directory" contains the comma-delimited list of root directories of new ports that you wish to From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:59:46 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 5D4D1CCF; Tue, 9 Oct 2012 15:59:46 +0000 (UTC) Date: Tue, 9 Oct 2012 15:59:46 +0000 From: Alexey Dokuchaev To: Baptiste Daroussin Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121009155946.GA70759@FreeBSD.org> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20121008061249.GA47691@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, Doug Barton , ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > > That's because OptionsNG poorly implement mutually exclusive options. I > > hope that eventually dialog's --radiolist would be utilized for proper > > handling, and sane knobs names would be restored. > > > > Sounds like a nice port junior hacker project. > > Not hat junior dialog(1) can't mix radiolist and classic checklist that is > why it doesn't use it, using libdialog(3), it would be easiy to implement, > but that won't be usable for a while (until all supported version of > freebsd has it. Ah, OK, that explains it (lack of radiobuttons now). Is it known what's preventing all supported versions to have working libdialog(3), if we have working dialog(1) already? ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:07:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D173D27B; Tue, 9 Oct 2012 16:07:33 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9F6028FC0A; Tue, 9 Oct 2012 16:07:33 +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 q99G7XmR034163; Tue, 9 Oct 2012 16:07:33 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99G7XWU034160; Tue, 9 Oct 2012 16:07:33 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210091607.q99G7XWU034160@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 9 Oct 2012 16:07:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305593 - head/ports-mgmt/poudriere-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 Author: bapt Date: Tue Oct 9 16:07:33 2012 New Revision: 305593 URL: http://svn.freebsd.org/changeset/ports/305593 Log: - update to checkin 06e052c2c9 - changes: * Add explicit check-config phase to detect invalid OPTIONS * Fix finding run-depends packages as leftovers * Search for eligible ports trees on all ZFS pools * Fix '[: die: bad number' error in testport * bulk: If given -C, clean any previous packages only for the ports provided * Switch back to github for ports git as it is the preferred source * Call leftovers phase 'leftovers' instead of 'fscheck' Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Tue Oct 9 15:55:15 2012 (r305592) +++ head/ports-mgmt/poudriere-devel/Makefile Tue Oct 9 16:07:33 2012 (r305593) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 2.1.99.20121004 +PORTVERSION= 2.1.99.20121009 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ PKGNAMESUFFIX= -devel @@ -13,7 +13,7 @@ COMMENT= Port build and test system LICENSE= BSD -FSL_CHKIN= 86c7d4bd7c +FSL_CHKIN= 06e052c2c9 NO_BUILD= yes MANCOMPRESSED= yes Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Tue Oct 9 15:55:15 2012 (r305592) +++ head/ports-mgmt/poudriere-devel/distinfo Tue Oct 9 16:07:33 2012 (r305593) @@ -1,2 +1,2 @@ -SHA256 (poudriere-2.1.99.20121004.tar.gz?uuid=86c7d4bd7c) = bcf732ce9326c8f4787ac11ddcfda3e793a653b8e9eedc99f020d9ee6eae5c7c -SIZE (poudriere-2.1.99.20121004.tar.gz?uuid=86c7d4bd7c) = 33866 +SHA256 (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 2cdec948f233bfc9e2ba142f24127b9cde85827a6d160f63e6c5f1400d3d57ac +SIZE (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 34110 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:10:12 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B744573; Tue, 9 Oct 2012 16:10:12 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 1F7D78FC0A; Tue, 9 Oct 2012 16:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99GACZ8031999; Tue, 9 Oct 2012 16:10:12 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99GABV7031998; Tue, 9 Oct 2012 16:10:11 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Tue, 9 Oct 2012 18:10:09 +0200 From: Baptiste Daroussin To: Alexey Dokuchaev Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121009161009.GF8713@ithaqua.etoilebsd.net> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WlEyl6ow+jlIgNUh" Content-Disposition: inline In-Reply-To: <20121009155946.GA70759@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 --WlEyl6ow+jlIgNUh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > > > That's because OptionsNG poorly implement mutually exclusive options.= I > > > hope that eventually dialog's --radiolist would be utilized for proper > > > handling, and sane knobs names would be restored. > > >=20 > > > Sounds like a nice port junior hacker project. > >=20 > > Not hat junior dialog(1) can't mix radiolist and classic checklist that= is > > why it doesn't use it, using libdialog(3), it would be easiy to impleme= nt, > > but that won't be usable for a while (until all supported version of > > freebsd has it. >=20 > Ah, OK, that explains it (lack of radiobuttons now). Is it known what's > preventing all supported versions to have working libdialog(3), if we have > working dialog(1) already? >=20 > ./danfe new dialog is only on 9.x and 10.x, if will require to code some special dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicated because the API isn't compatible. regards, Bapt --WlEyl6ow+jlIgNUh Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB0TGEACgkQ8kTtMUmk6EyvpwCfbQQST7/3AMVG0+NDF155nqY6 eY8An1L/rj15/L6nAyPYSKuaYscQiEUk =aa9D -----END PGP SIGNATURE----- --WlEyl6ow+jlIgNUh-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:12:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EA296F9; Tue, 9 Oct 2012 16:12:19 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7B07C8FC1A; Tue, 9 Oct 2012 16:12: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 q99GCJQh034851; Tue, 9 Oct 2012 16:12:19 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99GCJlf034848; Tue, 9 Oct 2012 16:12:19 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210091612.q99GCJlf034848@svn.freebsd.org> From: Alex Kozlov Date: Tue, 9 Oct 2012 16:12:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305594 - head/games/xgalaga++ X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 Author: ak Date: Tue Oct 9 16:12:18 2012 New Revision: 305594 URL: http://svn.freebsd.org/changeset/ports/305594 Log: - Remove indefinite article from COMMENT - Convert Makefile headers to new style - Add DESKTOP_ENTRIES - Fix manpage name - Remove redundant comments Submitted by: nemysis (maintainer) Modified: head/games/xgalaga++/Makefile head/games/xgalaga++/distinfo Modified: head/games/xgalaga++/Makefile ============================================================================== --- head/games/xgalaga++/Makefile Tue Oct 9 16:07:33 2012 (r305593) +++ head/games/xgalaga++/Makefile Tue Oct 9 16:12:18 2012 (r305594) @@ -1,18 +1,17 @@ -# New Ports collection makefile for: xgalaga++ -# Date created: 2012-04-20 -# Whom: nemysis@gmx.ch -# # $FreeBSD$ -# PORTNAME= xgalaga++ PORTVERSION= 0.8.3 CATEGORIES= games -MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ -DISTNAME= ${PORTNAME}_${PORTVERSION} +MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ \ + http://packages.nimblex.net/slacky/games/xgalaga++/0.8.2/src/:icons +DISTFILES= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}.png:icons +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= nemysis@gmx.ch -COMMENT= A classic single screen vertical shoot em up +COMMENT= Classic single screen vertical shoot em up LICENSE= GPLv2 @@ -21,14 +20,18 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USE_GMAKE= yes ALL_TARGET= ${PORTNAME} USE_XORG= x11 xpm -MAN6= xgalaga++.6x +MAN6= xgalaga++.6 SUB_FILES= pkg-install -PLIST_FILES= bin/xgalaga++ +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.png PORTDOCS= README +DESKTOP_ENTRIES="XGalaga++" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + .include post-patch: @@ -37,14 +40,14 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MAN6PREFIX}/man/man6 - ${CHOWN} :games ${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${WRKSRC}/${MAN6}x ${MAN6PREFIX}/man/man6/${MAN6} + ${CHGRP} games ${PREFIX}/bin/${PORTNAME} ${CHMOD} g+s ${PREFIX}/bin/${PORTNAME} + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps -# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL Modified: head/games/xgalaga++/distinfo ============================================================================== --- head/games/xgalaga++/distinfo Tue Oct 9 16:07:33 2012 (r305593) +++ head/games/xgalaga++/distinfo Tue Oct 9 16:12:18 2012 (r305594) @@ -1,2 +1,4 @@ -SHA256 (xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2 -SIZE (xgalaga++_0.8.3.tar.gz) = 32466 +SHA256 (xgalaga++/xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2 +SIZE (xgalaga++/xgalaga++_0.8.3.tar.gz) = 32466 +SHA256 (xgalaga++/xgalaga++.png) = cc14035e06fafc78057db52376fe2f809fd8da3f946f7bdccfe4fd5b431c6287 +SIZE (xgalaga++/xgalaga++.png) = 3232 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:18:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3B9DB12; Tue, 9 Oct 2012 17:18:43 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2EB28FC16; Tue, 9 Oct 2012 17:18: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 q99HIhPh043036; Tue, 9 Oct 2012 17:18:43 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99HIhjC043033; Tue, 9 Oct 2012 17:18:43 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210091718.q99HIhjC043033@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 9 Oct 2012 17:18:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305595 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 Author: bapt Date: Tue Oct 9 17:18:43 2012 New Revision: 305595 URL: http://svn.freebsd.org/changeset/ports/305595 Log: - add STAT to bsd.commands.mk - use ${STAT} -f \"%z\" in make makesum to calculate size - speed up USE_PKGCONFIG by using a more efficient syntax [1] and test in the order it is most expected to appear: "yes/build" first, "both" second, "run being the last one. Reported by: dougb [1] Exp-Run by: beat Modified: head/Mk/bsd.commands.mk head/Mk/bsd.port.mk Modified: head/Mk/bsd.commands.mk ============================================================================== --- head/Mk/bsd.commands.mk Tue Oct 9 16:12:18 2012 (r305594) +++ head/Mk/bsd.commands.mk Tue Oct 9 17:18:43 2012 (r305595) @@ -79,6 +79,7 @@ SETENV?= /usr/bin/env SH?= /bin/sh SORT?= /usr/bin/sort STRIP_CMD?= /usr/bin/strip +STAT?= /usr/bin/stat # Command to run commands as privileged user # Example: "/usr/local/bin/sudo -E sh -c" to use "sudo" instead of "su" SU_CMD?= /usr/bin/su root -c Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Tue Oct 9 16:12:18 2012 (r305594) +++ head/Mk/bsd.port.mk Tue Oct 9 17:18:43 2012 (r305595) @@ -1657,20 +1657,15 @@ BUILD_DEPENDS+= gmake:${PORTSDIR}/devel CONFIGURE_ENV+= MAKE=${GMAKE} .endif .if defined(USE_PKGCONFIG) -.if ${USE_PKGCONFIG:L} == yes -USE_PKGCONFIG= build -.endif -.if ${USE_PKGCONFIG:L} == run -RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf -.endif -.if ${USE_PKGCONFIG:L} == build +.if ${USE_PKGCONFIG:L} == yes || ${USE_PKGCONFIG:L} == build BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf CONFIGURE_ENV+= PKG_CONFIG=pkgconf -.endif -.if ${USE_PKGCONFIG:L} == both +.elif ${USE_PKGCONFIG:L} == both RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf CONFIGURE_ENV+= PKG_CONFIG=pkgconf +.elif ${USE_PKGCONFIG:L} == run +RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf .endif .endif @@ -4814,7 +4809,7 @@ makesum: check-checksum-algorithms $$alg_executable $$file >> ${DISTINFO_FILE}; \ fi; \ done; \ - ${ECHO_CMD} "SIZE ($$file) = "`${LS} -ALln $$file | ${AWK} '{print $$5}'` >> ${DISTINFO_FILE}; \ + ${ECHO_CMD} "SIZE ($$file) = `${STAT} -f \"%z\" $$file`" >> ${DISTINFO_FILE}; \ done \ ) @for file in ${_IGNOREFILES}; do \ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:47:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 380532C6; Tue, 9 Oct 2012 17:47:07 +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 1F4808FC08; Tue, 9 Oct 2012 17:47: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 q99Hl6OX046664; Tue, 9 Oct 2012 17:47:06 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Hl6uj046660; Tue, 9 Oct 2012 17:47:06 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210091747.q99Hl6uj046660@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 17:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305596 - in head/java: . openjdk6 openjdk6-jre X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 Author: jkim Date: Tue Oct 9 17:47:06 2012 New Revision: 305596 URL: http://svn.freebsd.org/changeset/ports/305596 Log: - Sanitize user, group and permission. Inspired by openjdk7. - Add a slave port to create JRE-only package. Added: head/java/openjdk6-jre/ head/java/openjdk6-jre/Makefile (contents, props changed) Modified: head/java/Makefile head/java/openjdk6/Makefile Modified: head/java/Makefile ============================================================================== --- head/java/Makefile Tue Oct 9 17:18:43 2012 (r305595) +++ head/java/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -137,6 +137,7 @@ SUBDIR += netrexx SUBDIR += netty SUBDIR += openjdk6 + SUBDIR += openjdk6-jre SUBDIR += openjdk7 SUBDIR += phpeclipse SUBDIR += poseidon Added: head/java/openjdk6-jre/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/openjdk6-jre/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +PORTREVISION= 0 +CATEGORIES= java devel +PKGNAMESUFFIX= -jre + +COMMENT= Oracle's Java 6 Runtime Environment under the GPL v2 + +BUILD_JRE= yes +MASTERDIR= ${.CURDIR}/../openjdk6 +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} + +.include "${MASTERDIR}/Makefile" Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Tue Oct 9 17:18:43 2012 (r305595) +++ head/java/openjdk6/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -3,7 +3,7 @@ PORTNAME= openjdk6 PORTVERSION= b25 -PORTREVISION= 3 +PORTREVISION?= 4 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk6/promoted/${PORTVERSION}/ \ http://download.java.net/jaxp/openjdk/jdk6/:jaxp \ @@ -26,7 +26,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} ${ANTFILE} MAINTAINER= java@FreeBSD.org -COMMENT= Oracle's Java 6 virtual machine release under the GPL v2 +COMMENT?= Oracle's Java 6 virtual machine release under the GPL v2 LICENSE= GPLv2 @@ -39,18 +39,22 @@ RUN_DEPENDS= javavm:${PORTSDIR}/java/jav OPENJDK_BUILDDATE= 01_may_2012 -.include - -OPTIONS_DEFINE= DEBUG FASTDEBUG ICEDTEA IPV6 POLICY SOUND TEST TZUPDATE +OPTIONS_DEFINE= ICEDTEA IPV6 POLICY SOUND TZUPDATE OPTIONS_DEFAULT=ICEDTEA TZUPDATE -DEBUG_DESC= Enable legacy debugging support -FASTDEBUG_DESC= Include fastdebug build ICEDTEA_DESC= Apply additional patches from IcedTea POLICY_DESC= Install the Unlimited Strength Policy Files SOUND_DESC= Enable sound support -TEST_DESC= Add support for running regression test TZUPDATE_DESC= Update the time zone data +.if !defined(BUILD_JRE) +OPTIONS_DEFINE+=DEBUG FASTDEBUG TEST +DEBUG_DESC= Enable legacy debugging support +FASTDEBUG_DESC= Include fastdebug build +TEST_DESC= Add support for running regression test +.endif + +.include + # java extracts directly to the cwd WRKSRC= ${WRKDIR} @@ -255,10 +259,16 @@ post-patch: post-build: .if ${PORT_OPTIONS:MTZUPDATE} @# Update time zones +.if defined(BUILD_JRE) + @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image/lib/zi + @${LN} -s -f ${LOCALBASE}/share/java/zi \ + ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image/lib +.else @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib/zi @${LN} -s -f ${LOCALBASE}/share/java/zi \ ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib .endif +.endif .if ${PORT_OPTIONS:MTEST} @${ECHO_MSG} "" @${ECHO_MSG} "Run \"make test\" to execute regression test (it could take a few hours to complete)." @@ -282,12 +292,46 @@ test: build-depends build .endif do-install: +.if defined(BUILD_JRE) + @${MKDIR} ${PREFIX}/openjdk6-jre/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6-jre + @${CHOWN} ${BINOWN}:${BINGRP} ${PREFIX}/openjdk6-jre/bin/* \ + ${PREFIX}/openjdk6-jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} ${PREFIX}/openjdk6-jre/bin/* \ + ${PREFIX}/openjdk6-jre/lib/${ARCH}/jexec + @${ECHO_MSG} "@unexec ${LOCALBASE}/bin/unregistervm ${PREFIX}/openjdk6-jre/bin/java" >> ${TMPPLIST} + @${FIND} -s ${PREFIX}/openjdk6-jre -not -type d | \ + ${SED} -e 's#^${PREFIX}/##' >> ${TMPPLIST} + @${ECHO} "@exec mkdir ${PREFIX}/openjdk6-jre/lib/applet" >> ${TMPPLIST} + @${FIND} ${PREFIX}/openjdk6-jre -type d | ${SORT} -r | \ + ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + @${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm '${PREFIX}/openjdk6-jre/bin/java # OpenJDK6 JRE'" >> ${TMPPLIST} +.else @${MKDIR} ${PREFIX}/openjdk6/ - @${CP} -Rp ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/ ${PREFIX}/openjdk6/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6 @${INSTALL_DATA} ${WRKSRC}/build/${OPENJDK_OSARCH}/btjars/compilefontconfig.jar ${WRKSRC}/build/${OPENJDK_OSARCH}/btjars/javazic.jar ${PREFIX}/openjdk6/jre/lib/ + @for dir in `${FIND} ${PREFIX}/openjdk6 -name bin -type d`; do \ + ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ + ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ + done + @${CHOWN} ${BINOWN}:${BINGRP} \ + ${PREFIX}/openjdk6/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} \ + ${PREFIX}/openjdk6/jre/lib/${ARCH}/jexec .if ${PORT_OPTIONS:MFASTDEBUG} @${MKDIR} ${PREFIX}/openjdk6-fastdebug/ - @${CP} -Rp ${WRKSRC}/build/${OPENJDK_OSARCH}-fastdebug/j2sdk-image/ ${PREFIX}/openjdk6-fastdebug/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6-fastdebug + @for dir in `${FIND} ${PREFIX}/openjdk6-fastdebug -name bin -type d`; do \ + ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ + ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ + done + @${CHOWN} ${BINOWN}:${BINGRP} \ + ${PREFIX}/openjdk6-fastdebug/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} \ + ${PREFIX}/openjdk6-fastdebug/jre/lib/${ARCH}/jexec .endif @${ECHO_MSG} "@unexec ${LOCALBASE}/bin/unregistervm ${PREFIX}/openjdk6/bin/java" >> ${TMPPLIST} @${FIND} -s ${PREFIX}/openjdk6 -not -type d | \ @@ -305,10 +349,15 @@ do-install: ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} @${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm '${PREFIX}/openjdk6-fastdebug/bin/java # OpenJDK6'" >> ${TMPPLIST} .endif +.endif post-install: @# Register the VM +.if defined(BUILD_JRE) + @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6-jre/bin/java # OpenJDK6 JRE" +.else @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6/bin/java # OpenJDK6" +.endif .if ${PORT_OPTIONS:MFASTDEBUG} @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6-fastdebug/bin/java # OpenJDK6" .endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:47:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D41A93AE; Tue, 9 Oct 2012 17:47:53 +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 BD5FC8FC0C; Tue, 9 Oct 2012 17:47:53 +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 q99HlrdN046806; Tue, 9 Oct 2012 17:47:53 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Hlrlp046804; Tue, 9 Oct 2012 17:47:53 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210091747.q99Hlrlp046804@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 17:47:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305597 - head/java/linux-sun-jre16 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 Author: jkim Date: Tue Oct 9 17:47:53 2012 New Revision: 305597 URL: http://svn.freebsd.org/changeset/ports/305597 Log: Recommend newly added openjdk6-jre. Modified: head/java/linux-sun-jre16/pkg-message Modified: head/java/linux-sun-jre16/pkg-message ============================================================================== --- head/java/linux-sun-jre16/pkg-message Tue Oct 9 17:47:06 2012 (r305596) +++ head/java/linux-sun-jre16/pkg-message Tue Oct 9 17:47:53 2012 (r305597) @@ -1,6 +1,6 @@ ====================================================================== Warning: This JRE may be unstable. You are advised to use the native -FreeBSD 1.6 JDK, in ports/java/openjdk6. +FreeBSD 1.6 JDK, in ports/java/openjdk6-jre. This Java VM will attempt to obtain some system information by accessing files in linux's procfs. You must install the Linux From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:51:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id AD21D7E7; Tue, 9 Oct 2012 17:51:14 +0000 (UTC) Date: Tue, 9 Oct 2012 17:51:14 +0000 From: Alexey Dokuchaev To: Bryan Drewery Subject: Re: svn commit: r305357 - head/net/ssvnc Message-ID: <20121009175114.GB70759@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <507307F7.3030406@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Chris Rees , svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: > Can you add: > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > I swear there is a case where !${} results in an Error. I am not even sure if !${...} works or not, as it looks very ugly. I was always separating it with space. ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:04:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E916FD8; Tue, 9 Oct 2012 18:04:47 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id EE1878FC14; Tue, 9 Oct 2012 18:04:46 +0000 (UTC) Received: from mercury.ph.man.ac.uk [130.88.75.175:4284] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id q99I4tVi022869 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Tue, 9 Oct 2012 22:04:55 +0400 (MSK) From: Max Brazhnikov To: Alexey Dokuchaev Subject: Re: svn commit: r305357 - head/net/ssvnc Date: Tue, 9 Oct 2012 18:05:04 +0000 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.9.1; amd64; ; ) References: <201210061123.q96BNHVx053948@svn.freebsd.org> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> In-Reply-To: <20121009175114.GB70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201210091805.05226.makc@freebsd.org> Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org, Chris Rees , Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 On Tue, 9 Oct 2012 17:51:14 +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: > > Can you add: > > > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > > > I swear there is a case where !${} results in an Error. > > I am not even sure if !${...} works or not, as it looks very ugly. I was > always separating it with space. It looks perfect for me, why don't you like it? :) Max From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:20:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BC0A504; Tue, 9 Oct 2012 18:20:50 +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 367068FC0A; Tue, 9 Oct 2012 18:20:48 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so2807629bkc.13 for ; Tue, 09 Oct 2012 11:20:48 -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=Cm78apgJCmDIl7saUpP9vKpdQbTtQ2r0EKPxzBKZ0As=; b=Rc0ju3e4zxDX2rVDw0FgOoDAtLRXLSTYi5AIZysONw++KS44m/3C3HNhcH9yLInjLN 0FFk23JwpuXsqZCwCohuGmrCbZyw8Am1mYzpm9d+aNJtxzD7MWdisXmYkYBIyiAHkGF4 fAdEtRPuB7tUPVm7WcUKP5RYcv86ao9pTmgHOdb2HsirNU2lox/1aC7jAoYpEaNnEnTu TOqquRijj45BwN6UIpGrxbWwTW+kMu+qbMuJ1FR/PI9zzJrJuFVCHp5sbA6qja+6cPu3 9URFpjTrNcQ9ldxHom4vAeYQU5goukv8ZWm9elwqdfqgyN//8HU9gN2jldXuBQG45cPm sXDg== Received: by 10.204.4.200 with SMTP id 8mr7234378bks.81.1349806848041; Tue, 09 Oct 2012 11:20:48 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Tue, 9 Oct 2012 11:20:17 -0700 (PDT) In-Reply-To: <20121009175114.GB70759@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> From: Chris Rees Date: Tue, 9 Oct 2012 19:20:17 +0100 X-Google-Sender-Auth: 28IbvCWQyZRMP3bIvJC7UMrUUYE Message-ID: Subject: Re: svn commit: r305357 - head/net/ssvnc To: Alexey Dokuchaev Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:20:50 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:20:50 -0000 On 9 October 2012 18:51, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: >> Can you add: >> >> !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} >> >> I swear there is a case where !${} results in an Error. > > I am not even sure if !${...} works or not, as it looks very ugly. I was > always separating it with space. > As you and Boris prefer-- I've put a space in. I've sent a PR, but it's waiting for my email to be reenabled.... Chris From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:26:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 0CA85C9E; Tue, 9 Oct 2012 18:26:28 +0000 (UTC) Date: Tue, 9 Oct 2012 18:26:28 +0000 From: Alexey Dokuchaev To: Chris Rees Subject: Re: svn commit: r305357 - head/net/ssvnc Message-ID: <20121009182628.GA81030@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:26:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:26:28 -0000 On Tue, Oct 09, 2012 at 07:20:17PM +0100, Chris Rees wrote: > On 9 October 2012 18:51, Alexey Dokuchaev wrote: > > I am not even sure if !${...} works or not, as it looks very ugly. I was > > always separating it with space. > > As you and Boris prefer-- I've put a space in. Thanks, much appreciated. ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:32:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2ADCEFD8; Tue, 9 Oct 2012 18:32:40 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C19898FC50; Tue, 9 Oct 2012 18:32: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 q99IWdu1052806; Tue, 9 Oct 2012 18:32:39 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99IWdeJ052802; Tue, 9 Oct 2012 18:32:39 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201210091832.q99IWdeJ052802@svn.freebsd.org> From: Xin LI Date: Tue, 9 Oct 2012 18:32:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305598 - head/net/openldap23-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:32:40 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:32:40 -0000 Author: delphij Date: Tue Oct 9 18:32:39 2012 New Revision: 305598 URL: http://svn.freebsd.org/changeset/ports/305598 Log: fix plist for use with pkg. PR: ports/172387 Submitted by: kwm Modified: head/net/openldap23-server/pkg-plist head/net/openldap23-server/pkg-plist.client Modified: head/net/openldap23-server/pkg-plist ============================================================================== --- head/net/openldap23-server/pkg-plist Tue Oct 9 17:47:53 2012 (r305597) +++ head/net/openldap23-server/pkg-plist Tue Oct 9 18:32:39 2012 (r305598) @@ -56,7 +56,7 @@ etc/openldap/DB_CONFIG.example %%BACK_SQL%%libexec/openldap/back_sql.so libexec/slapd %%SLURPD%%libexec/slurpd -@dirrmtry libexec/openldap +%%MODULES%%@dirrmtry libexec/openldap sbin/slapacl sbin/slapadd sbin/slapauth Modified: head/net/openldap23-server/pkg-plist.client ============================================================================== --- head/net/openldap23-server/pkg-plist.client Tue Oct 9 17:47:53 2012 (r305597) +++ head/net/openldap23-server/pkg-plist.client Tue Oct 9 18:32:39 2012 (r305598) @@ -43,4 +43,3 @@ lib/libldap_r.so @comment share/openldap/ucdata/num.dat @comment @dirrm share/openldap/ucdata @comment @dirrm share/openldap -@dirrmtry libexec/openldap From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:33:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28F0233B; Tue, 9 Oct 2012 18:33:18 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 120DE8FC14; Tue, 9 Oct 2012 18:33: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 q99IXHcR052969; Tue, 9 Oct 2012 18:33:17 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99IXHSI052964; Tue, 9 Oct 2012 18:33:17 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201210091833.q99IXHSI052964@svn.freebsd.org> From: Xin LI Date: Tue, 9 Oct 2012 18:33:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305599 - head/net/openldap24-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:33:18 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:33:18 -0000 Author: delphij Date: Tue Oct 9 18:33:17 2012 New Revision: 305599 URL: http://svn.freebsd.org/changeset/ports/305599 Log: fix plist for use with pkg. PR: ports/172387 Submitted by: kwm Modified: head/net/openldap24-server/pkg-plist head/net/openldap24-server/pkg-plist.client Modified: head/net/openldap24-server/pkg-plist ============================================================================== --- head/net/openldap24-server/pkg-plist Tue Oct 9 18:32:39 2012 (r305598) +++ head/net/openldap24-server/pkg-plist Tue Oct 9 18:33:17 2012 (r305599) @@ -86,7 +86,7 @@ etc/openldap/DB_CONFIG.example %%SMBPWD%%libexec/openldap/smbk5pwd.so %%SMBPWD%%libexec/openldap/smbk5pwd.so.0 libexec/slapd -@dirrmtry libexec/openldap +%%MODULES%%@dirrmtry libexec/openldap sbin/slapacl sbin/slapadd sbin/slapauth Modified: head/net/openldap24-server/pkg-plist.client ============================================================================== --- head/net/openldap24-server/pkg-plist.client Tue Oct 9 18:32:39 2012 (r305598) +++ head/net/openldap24-server/pkg-plist.client Tue Oct 9 18:33:17 2012 (r305599) @@ -37,4 +37,3 @@ lib/libldap_r-2.4.so.%%SHLIB_MAJOR%% lib/libldap_r.a lib/libldap_r.la lib/libldap_r.so -@dirrmtry libexec/openldap From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:50:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C96AC7A5; Tue, 9 Oct 2012 19:50:57 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2B938FC19; Tue, 9 Oct 2012 19:50:57 +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 q99Jovub065698; Tue, 9 Oct 2012 19:50:57 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Jov0t065695; Tue, 9 Oct 2012 19:50:57 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210091950.q99Jov0t065695@svn.freebsd.org> From: Alex Kozlov Date: Tue, 9 Oct 2012 19:50:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305600 - head/games/3dpong X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:50:57 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:50:57 -0000 Author: ak Date: Tue Oct 9 19:50:57 2012 New Revision: 305600 URL: http://svn.freebsd.org/changeset/ports/305600 Log: - Convert Makefile headers to new style - Remove redundant comments - Add DESKTOP_ENTRIES - Bump PORTREVISION Submitted by: nemysis (maintainer) Modified: head/games/3dpong/Makefile head/games/3dpong/distinfo (contents, props changed) Modified: head/games/3dpong/Makefile ============================================================================== --- head/games/3dpong/Makefile Tue Oct 9 18:33:17 2012 (r305599) +++ head/games/3dpong/Makefile Tue Oct 9 19:50:57 2012 (r305600) @@ -1,19 +1,15 @@ -# New ports collection makefile for: 3dpong -# Date created: 10 March 1998 -# Whom: Andrey Zakhvatov -# # $FreeBSD$ -# PORTNAME= 3dpong PORTVERSION= 0.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= ftp://ftp.tuxpaint.org/unix/x/3dpong/src/ \ ftp://ftp.billsgames.com/unix/x/3dpong/src/ \ http://www.newbreedsoftware.com/images/prodicons/:icons DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ ${PORTNAME}.gif:icons +DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= nemysis@gmx.ch @@ -21,6 +17,8 @@ COMMENT= X Window 3D Pong game for 1 or LICENSE= GPLv2 +BUILD_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm + USE_XORG= x11 USE_GMAKE= yes MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ @@ -29,7 +27,7 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} MAN6= ${PORTNAME}.6 PLIST_FILES= bin/${PORTNAME} \ - share/pixmaps/${PORTNAME}.gif \ + share/pixmaps/${PORTNAME}.png \ share/examples/${PORTNAME}/${PORTNAME}-handball.sh \ share/examples/${PORTNAME}/${PORTNAME}-vs-computer.sh PLIST_DIRS= share/examples/${PORTNAME} @@ -37,32 +35,32 @@ PLIST_DIRS= share/examples/${PORTNAME} PORTDATA= * PORTDOCS= AUTHORS.txt CHANGES.txt README.txt TODO.txt +DESKTOP_ENTRIES="3D Pong" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + .include post-patch: @${REINPLACE_CMD} -e 's|cat sounds/|cat ${DATADIR}/|g' ${WRKSRC}/src/3dpong.c +post-build: + @(cd ${WRKSRC} && \ + ${LOCALBASE}/bin/giftopnm ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.gif | \ + ${LOCALBASE}/bin/pnmtopng > ${PORTNAME}.png) + do-install: -# Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -# Data ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/sounds/*.au ${DATADIR} ${INSTALL_MAN} ${WRKSRC}/src/${MAN6} ${MAN6PREFIX}/man/man6 + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.png ${PREFIX}/share/pixmaps -# Pixmaps - ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}.gif ${PREFIX}/share/pixmaps/ - -# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} -. for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR} -. endfor + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR} .endif -# Examples @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) .include Modified: head/games/3dpong/distinfo ============================================================================== --- head/games/3dpong/distinfo Tue Oct 9 18:33:17 2012 (r305599) +++ head/games/3dpong/distinfo Tue Oct 9 19:50:57 2012 (r305600) @@ -1,4 +1,4 @@ -SHA256 (3dpong-0.5.tar.gz) = b1557818319f482c1e0795192f013ecf998c9f1013033b542676d1bf743a6bc5 -SIZE (3dpong-0.5.tar.gz) = 37004 -SHA256 (3dpong.gif) = 52524304fd79bb31740ac59a6ce249cc8461112adca0e4f3ab57ff4ab5623a1f -SIZE (3dpong.gif) = 321 +SHA256 (3dpong/3dpong-0.5.tar.gz) = b1557818319f482c1e0795192f013ecf998c9f1013033b542676d1bf743a6bc5 +SIZE (3dpong/3dpong-0.5.tar.gz) = 37004 +SHA256 (3dpong/3dpong.gif) = 52524304fd79bb31740ac59a6ce249cc8461112adca0e4f3ab57ff4ab5623a1f +SIZE (3dpong/3dpong.gif) = 321 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:53:01 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 358DF7EA; Tue, 9 Oct 2012 19:53:01 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 050928FC0C; Tue, 9 Oct 2012 19:53: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 q99Jr0Qs066161; Tue, 9 Oct 2012 19:53:00 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Jr0Kn066157; Tue, 9 Oct 2012 19:53:00 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201210091953.q99Jr0Kn066157@svn.freebsd.org> From: Cy Schubert Date: Tue, 9 Oct 2012 19:53:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305601 - head/sysutils/syslog-ng-rc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:53:01 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:53:01 -0000 Author: cy Date: Tue Oct 9 19:53:00 2012 New Revision: 305601 URL: http://svn.freebsd.org/changeset/ports/305601 Log: Update from RC1 to RC2. Submitted by: Peter Czanik (our syslog-ng upline) Modified: head/sysutils/syslog-ng-rc/Makefile head/sysutils/syslog-ng-rc/distinfo head/sysutils/syslog-ng-rc/pkg-plist Modified: head/sysutils/syslog-ng-rc/Makefile ============================================================================== --- head/sysutils/syslog-ng-rc/Makefile Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/Makefile Tue Oct 9 19:53:00 2012 (r305601) @@ -7,18 +7,18 @@ PORTNAME= syslog-ng PORTVERSION= 3.3.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils PKGNAMESUFFIX= -rc -MASTER_SITES= http://packages.madhouse-project.org/syslog-ng/3.3/3.3.6.90/ -DISTFILES= $(PORTNAME)-3.3.6.90-20120906-v3.3.6.90.tar.gz +MASTER_SITES= http://packages.madhouse-project.org/syslog-ng/3.3/3.3.6.91/ +DISTFILES= $(PORTNAME)-3.3.6.91-20121008-v3.3.6.91.tar.gz MAINTAINER= cy@FreeBSD.org COMMENT= A powerful syslogd replacement CONFLICTS?= syslog-ng-[0-9]* syslog-ng[0-9]-[0-9]* \ syslog-ng-devel-[0-9]* -WRKSRC= $(WRKDIR)/$(PORTNAME)-3.3.6.90 +WRKSRC= $(WRKDIR)/$(PORTNAME)-3.3.6.91 OPTIONS= SYS_SSL "Build with OpenSSL support (from system)" off \ PORTS_SSL "Build with OpenSSL support (from ports)" on \ Modified: head/sysutils/syslog-ng-rc/distinfo ============================================================================== --- head/sysutils/syslog-ng-rc/distinfo Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/distinfo Tue Oct 9 19:53:00 2012 (r305601) @@ -1,2 +1,2 @@ -SHA256 (syslog-ng-3.3.6.90-20120906-v3.3.6.90.tar.gz) = bc59328232485192734eedf1006cbc40f4d748629f08f50b61476db5378c40ac -SIZE (syslog-ng-3.3.6.90-20120906-v3.3.6.90.tar.gz) = 2508070 +SHA256 (syslog-ng-3.3.6.91-20121008-v3.3.6.91.tar.gz) = d8d9de30b17ef633ce8efaea1b2fcb6e4962b58724f5210d603858f21ab1d9c8 +SIZE (syslog-ng-3.3.6.91-20121008-v3.3.6.91.tar.gz) = 2510209 Modified: head/sysutils/syslog-ng-rc/pkg-plist ============================================================================== --- head/sysutils/syslog-ng-rc/pkg-plist Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/pkg-plist Tue Oct 9 19:53:00 2012 (r305601) @@ -75,7 +75,7 @@ include/syslog-ng/utils.h include/syslog-ng/value-pairs.h lib/libsyslog-ng.la lib/libsyslog-ng.so -lib/libsyslog-ng-3.3.6.90.so +lib/libsyslog-ng-3.3.6.91.so libdata/pkgconfig/syslog-ng.pc lib/syslog-ng/libaffile.la lib/syslog-ng/libaffile.so From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:58:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CCA3DA13; Tue, 9 Oct 2012 19:58:57 +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 AB39D8FC0A; Tue, 9 Oct 2012 19:58:57 +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 q99JwvNl067527; Tue, 9 Oct 2012 19:58:57 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99JwvRA067525; Tue, 9 Oct 2012 19:58:57 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210091958.q99JwvRA067525@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 19:58:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305602 - head/www/cgiwrap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:58:57 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:58:57 -0000 Author: madpilot Date: Tue Oct 9 19:58:56 2012 New Revision: 305602 URL: http://svn.freebsd.org/changeset/ports/305602 Log: - Convert to new options framework - Trim Makefile headers PR: ports/172423 Submitted by: Michael Gmelin Modified: head/www/cgiwrap/Makefile (contents, props changed) Modified: head/www/cgiwrap/Makefile ============================================================================== --- head/www/cgiwrap/Makefile Tue Oct 9 19:53:00 2012 (r305601) +++ head/www/cgiwrap/Makefile Tue Oct 9 19:58:56 2012 (r305602) @@ -1,9 +1,5 @@ -# New ports collection makefile for: cgiwrap -# Date created: 30 July 1998 -# Whom: Brent J. Nordquist -# +# Created by: Brent J. Nordquist # $FreeBSD$ -# PORTNAME= cgiwrap PORTVERSION= 4.1 @@ -16,16 +12,22 @@ COMMENT= Securely execute Web CGI script WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PKGMESSAGE= ${WRKDIR}/pkg-message -OPTIONS= CGI_OWNER "Check CGI file owner" on \ - CGI_GROUP "Check CGI file group" on \ - CGI_SETUID "Check CGI file setuid permissions" on \ - CGI_SETGID "Check CGI file setgid permissions" on \ - CGI_GROUP_WRITABLE "Check CGI g+w file permissions" on \ - CGI_WORLD_WRITABLE "Check CGI o+w file permissions" on \ - USE_REDIRECT_URL "Use REDIRECT_URL to build SCRIPT_NAME" off \ - USE_SCRIPT_URL "Use SCRIPT_URL to build SCRIPT_NAME" off \ - NPH "Enable nph binaries" off \ - DEBUG "Enable cgiwrapd binaries" off +OPTIONS_DEFINE= CGI_OWNER CGI_GROUP CGI_SETUID CGI_SETGID \ + CGI_GROUP_WRITABLE CGI_WORLD_WRITABLE DEBUG \ + DOCS NPH USE_REDIRECT_URL USE_SCRIPT_URL +OPTIONS_DEFAULT=CGI_OWNER CGI_GROUP CGI_SETUID CGI_SETGID \ + CGI_GROUP_WRITABLE CGI_WORLD_WRITABLE + +CGI_OWNER_DESC= Check CGI file owner +CGI_GROUP_DESC= Check CGI file group +CGI_SETUID_DESC=Check CGI file setuid permissions +CGI_SETGID_DESC=Check CGI file setgid permissions +CGI_GROUP_WRITABLE_DESC=Check CGI g+w file permissions +CGI_WORLD_WRITABLE_DESC=Check CGI o+w file permissions +USE_REDIRECT_URL_DESC=Use REDIRECT_URL to build SCRIPT_NAME +USE_SCRIPT_URL_DESC=Use SCRIPT_URL to build SCRIPT_NAME +NPH_DESC= Enable nph binaries +DEBUG_DESC= Enable cgiwrapd binaries ## # INSTALL_DIR @@ -65,7 +67,7 @@ CONFIGURE_ARGS= --with-httpd-user=${WWWO --with-check-shell \ --with-wall -.include +.include ## # LOG_FILE @@ -78,46 +80,46 @@ CONFIGURE_ARGS+= --with-logging-file=${L .else CONFIGURE_ARGS+= --without-logging-file .endif -.if !defined(WITH_CGI_OWNER) +.if empty(PORT_OPTIONS:MCGI_OWNER) CONFIGURE_ARGS+= --without-check-owner .endif -.if !defined(WITH_CGI_GROUP) +.if empty(PORT_OPTIONS:MCGI_GROUP) CONFIGURE_ARGS+= --without-check-group .endif -.if !defined(WITH_CGI_SETUID) +.if empty(PORT_OPTIONS:MCGI_SETUID) CONFIGURE_ARGS+= --without-check-setuid .endif -.if !defined(WITH_CGI_SETGID) +.if empty(PORT_OPTIONS:MCGI_SETGID) CONFIGURE_ARGS+= --without-check-setgid .endif -.if !defined(WITH_CGI_GROUP_WRITABLE) +.if empty(PORT_OPTIONS:MCGI_GROUP_WRITABLE) CONFIGURE_ARGS+= --without-check-group-writable .endif -.if !defined(WITH_CGI_WORLD_WRITABLE) +.if empty(PORT_OPTIONS:MCGI_WORLD_WRITABLE) CONFIGURE_ARGS+= --without-check-world-writable .endif -.if defined(WITH_USE_REDIRECT_URL) +.if ${PORT_OPTIONS:MUSE_REDIRECT_URL} CONFIGURE_ARGS+= --with-use-redirect-url .endif -.if defined(WITH_USE_SCRIPT_URL) +.if ${PORT_OPTIONS:MUSE_SCRIPT_URL} CONFIGURE_ARGS+= --with-use-script-url .endif -.if !defined(WITH_NPH) +.if empty(PORT_OPTIONS:MNPH) PLIST_SUB+= NPHFLAG="@comment " CONFIGURE_ARGS+= --without-nph .else PLIST_SUB+= NPHFLAG= .endif -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} PLIST_SUB+= DEBUGFLAG= CONFIGURE_ARGS+= --with-cgiwrapd .else PLIST_SUB+= DEBUGFLAG="@comment " .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} PORTDOCS= accesscontrol.html afs.html changes.html \ chroot.html comments.html download.html faq.html \ index.html install.html intro.html maillist.html \ @@ -131,15 +133,15 @@ pre-install: post-install: @${STRIP_CMD} ${INSTALL_DIR}/cgiwrap @${CHMOD} 4550 ${INSTALL_DIR}/cgiwrap -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} @${STRIP_CMD} ${INSTALL_DIR}/cgiwrapd @${CHMOD} 4550 ${INSTALL_DIR}/cgiwrapd -.if defined(WITH_NPH) +.if ${PORT_OPTIONS:MNPH} @${STRIP_CMD} ${INSTALL_DIR}/nph-cgiwrapd @${CHMOD} 4550 ${INSTALL_DIR}/nph-cgiwrapd .endif .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/htdocs/${f} ${DOCSDIR} @@ -151,4 +153,4 @@ post-install: ${MASTERDIR}/pkg-message > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 20:41:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC4CF8A7; Tue, 9 Oct 2012 20:41:30 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C59A08FC0C; Tue, 9 Oct 2012 20:41: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 q99KfUJQ076764; Tue, 9 Oct 2012 20:41:30 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99KfUEk076762; Tue, 9 Oct 2012 20:41:30 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210092041.q99KfUEk076762@svn.freebsd.org> From: Raphael Kubo da Costa Date: Tue, 9 Oct 2012 20:41:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305603 - head/x11-fonts/tolkien-ttf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 20:41:30 -0000 X-List-Received-Date: Tue, 09 Oct 2012 20:41:30 -0000 Author: rakuco Date: Tue Oct 9 20:41:30 2012 New Revision: 305603 URL: http://svn.freebsd.org/changeset/ports/305603 Log: Mark as DEPRECATED since there are no more public distfiles available. EXPIRATION_DATE set to 2012-11-09. Modified: head/x11-fonts/tolkien-ttf/Makefile Modified: head/x11-fonts/tolkien-ttf/Makefile ============================================================================== --- head/x11-fonts/tolkien-ttf/Makefile Tue Oct 9 19:58:56 2012 (r305602) +++ head/x11-fonts/tolkien-ttf/Makefile Tue Oct 9 20:41:30 2012 (r305603) @@ -16,6 +16,9 @@ COMMENT= A selection of the best TrueTyp RUN_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig +DEPRECATED= Does not fetch: there are no more public distfiles +EXPIRATION_DATE= 2012-11-09 + RESTRICTED= "Shareware. Unlicensed commercial usage/redistribution prohibited." USE_BZIP2= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 20:59:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21954F28; Tue, 9 Oct 2012 20:59:38 +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 09A8D8FC0C; Tue, 9 Oct 2012 20:59:38 +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 q99KxbfB080675; Tue, 9 Oct 2012 20:59:37 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Kxbth080670; Tue, 9 Oct 2012 20:59:37 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210092059.q99Kxbth080670@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 20:59:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305604 - in head/java/openjdk6: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 20:59:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 20:59:38 -0000 Author: jkim Date: Tue Oct 9 20:59:37 2012 New Revision: 305604 URL: http://svn.freebsd.org/changeset/ports/305604 Log: Update to build 26. Deleted: head/java/openjdk6/files/patch-security Modified: head/java/openjdk6/Makefile head/java/openjdk6/distinfo head/java/openjdk6/files/patch-set Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/Makefile Tue Oct 9 20:59:37 2012 (r305604) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= openjdk6 -PORTVERSION= b25 -PORTREVISION?= 4 +PORTVERSION= b26 +PORTREVISION?= 0 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk6/promoted/${PORTVERSION}/ \ http://download.java.net/jaxp/openjdk/jdk6/:jaxp \ @@ -37,7 +37,7 @@ LIB_DEPENDS= freetype:${PORTSDIR}/print/ RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ ${LOCALBASE}/lib/X11/fonts/dejavu:${PORTSDIR}/x11-fonts/dejavu -OPENJDK_BUILDDATE= 01_may_2012 +OPENJDK_BUILDDATE= 21_sep_2012 OPTIONS_DEFINE= ICEDTEA IPV6 POLICY SOUND TZUPDATE OPTIONS_DEFAULT=ICEDTEA TZUPDATE @@ -63,7 +63,7 @@ USE_MOTIF= yes USE_XORG= x11 xext xi xt xtst MAKE_JOBS_UNSAFE= yes -JAXP_BUILD= 144_03 +JAXP_BUILD= 144_04 JAXPFILE= jaxp${JAXP_BUILD}.zip JAXWS_BUILD= 2_1_6-2011_06_13 JAXWSFILE= jdk6-jaxws${JAXWS_BUILD}.zip Modified: head/java/openjdk6/distinfo ============================================================================== --- head/java/openjdk6/distinfo Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/distinfo Tue Oct 9 20:59:37 2012 (r305604) @@ -1,7 +1,7 @@ -SHA256 (openjdk-6-src-b25-01_may_2012.tar.gz) = 42db988b436593017e29d6543ac09168a901027817e41dc1be5c795b85d53b05 -SIZE (openjdk-6-src-b25-01_may_2012.tar.gz) = 45761297 -SHA256 (jaxp144_03.zip) = c1a5348e17b330a7e4b18431e61a40efd2ba99a7da71102cf2c604478ef96012 -SIZE (jaxp144_03.zip) = 5964999 +SHA256 (openjdk-6-src-b26-21_sep_2012.tar.gz) = 9635d8563b9ba811f1d6e333861f235a2d8835c623451abc44791891d40d8b09 +SIZE (openjdk-6-src-b26-21_sep_2012.tar.gz) = 45775426 +SHA256 (jaxp144_04.zip) = 490f696218c1fed9cb180680af883fe309b414fec232e9cec19645e12ad0b43c +SIZE (jaxp144_04.zip) = 5976385 SHA256 (jdk6-jaxws2_1_6-2011_06_13.zip) = 229040544e791f44906e8e7b6f6faf503c730a5d854275135f3925490d5c3be3 SIZE (jdk6-jaxws2_1_6-2011_06_13.zip) = 5512710 SHA256 (jdk6-jaf-b20.zip) = 78c7b5c9d6271e88ee46abadd018a61f1e9645f8936cc8df1617e5f4f5074012 Modified: head/java/openjdk6/files/patch-set ============================================================================== --- head/java/openjdk6/files/patch-set Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/files/patch-set Tue Oct 9 20:59:37 2012 (r305604) @@ -1,5 +1,5 @@ ---- Makefile 2011-07-05 14:29:12.000000000 -0400 -+++ Makefile 2011-07-07 19:17:02.000000000 -0400 +--- Makefile ++++ Makefile @@ -236,6 +236,18 @@ clean: clobber @@ -19,8 +19,8 @@ # # Dev builds # ---- corba/make/common/Defs-bsd.gmk 2011-07-07 19:16:00.000000000 -0400 -+++ corba/make/common/Defs-bsd.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs-bsd.gmk ++++ corba/make/common/Defs-bsd.gmk @@ -40,18 +40,12 @@ # Get shared JDK settings include $(BUILDDIR)/common/shared/Defs.gmk @@ -142,8 +142,8 @@ override OTHER_M4FLAGS = -D__GLIBC__ -DGNU_ASSEMBLER override SUN_CMM_SUBDIR = override THREADS_FLAG = native ---- corba/make/common/Defs-linux.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Defs-linux.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs-linux.gmk ++++ corba/make/common/Defs-linux.gmk @@ -290,7 +290,7 @@ override LIBTHREAD = override MOOT_PRIORITIES = true @@ -153,8 +153,8 @@ ifeq ($(ARCH), amd64) override OPENWIN_LIB = $(OPENWIN_HOME)/lib64 else ---- corba/make/common/Defs.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Defs.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs.gmk ++++ corba/make/common/Defs.gmk @@ -53,6 +53,24 @@ _OUTPUTDIR=$(TOPDIR)/build/$(PLATFORM)-$(ARCH) @@ -190,8 +190,8 @@ endif # PROGRAM LDLIBS_COMMON += $(EXTRA_LIBS) ---- corba/make/common/Mapfile-vers.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Mapfile-vers.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Mapfile-vers.gmk ++++ corba/make/common/Mapfile-vers.gmk @@ -77,7 +77,7 @@ endif # PLATFORM @@ -201,8 +201,8 @@ ifeq ($(VARIANT), OPT) # OPT build MUST have a mapfile? ---- corba/make/common/shared/Compiler-gcc.gmk 2012-05-01 17:14:04.000000000 -0400 -+++ corba/make/common/shared/Compiler-gcc.gmk 2012-09-11 18:17:45.000000000 -0400 +--- corba/make/common/shared/Compiler-gcc.gmk ++++ corba/make/common/shared/Compiler-gcc.gmk @@ -100,6 +100,24 @@ endif @@ -228,8 +228,8 @@ ifeq ($(PLATFORM), solaris) # Settings specific to Solaris ---- corba/make/common/shared/Compiler.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Compiler.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Compiler.gmk ++++ corba/make/common/shared/Compiler.gmk @@ -42,6 +42,11 @@ override CC_VERSION = gcc endif @@ -242,8 +242,8 @@ # Get the compiler specific settings include $(BUILDDIR)/common/shared/Compiler-$(CC_VERSION).gmk ---- corba/make/common/shared/Defs-bsd.gmk 2011-07-07 19:16:00.000000000 -0400 -+++ corba/make/common/shared/Defs-bsd.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-bsd.gmk ++++ corba/make/common/shared/Defs-bsd.gmk @@ -54,7 +54,7 @@ endef @@ -262,8 +262,8 @@ endif # _BOOTDIR1: First choice for a Bootstrap JDK, previous released JDK. ---- corba/make/common/shared/Defs-java.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Defs-java.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-java.gmk ++++ corba/make/common/shared/Defs-java.gmk @@ -38,7 +38,7 @@ # Suspect this may not be needed anymore. JAVA_MEM_FLAGS += -Xms$(MAX_VM_MEMORY)m -XX:-Inline @@ -273,8 +273,8 @@ endif # ---- corba/make/common/shared/Defs-utils.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Defs-utils.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-utils.gmk ++++ corba/make/common/shared/Defs-utils.gmk @@ -53,6 +53,13 @@ UTILS_DEVTOOL_PATH=$(USRBIN_PATH) endif @@ -322,8 +322,8 @@ + TAR = $(UTILS_USR_BIN_PATH)tar + endif +endif ---- corba/make/common/shared/Platform.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Platform.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Platform.gmk ++++ corba/make/common/shared/Platform.gmk @@ -261,6 +261,76 @@ MB_OF_MEMORY := $(shell free -m | fgrep Mem: | sed -e 's@\ \ *@ @g' | cut -d' ' -f2) endif @@ -401,7 +401,7 @@ # Windows with and without CYGWIN will be slightly different ifeq ($(SYSTEM_UNAME), Windows_NT) PLATFORM = windows -@@ -375,7 +445,14 @@ +@@ -408,7 +478,14 @@ # build machines and adjustments will be made to prevent excessing # system swapping during the build. # If we don't know, assume 512. Subtract 128 from MB for VM MAX. @@ -417,7 +417,7 @@ ifneq ($(MB_OF_MEMORY),) LOW_MEMORY_MACHINE := $(shell \ if [ $(MB_OF_MEMORY) -le 512 ] ; then \ -@@ -387,7 +464,7 @@ +@@ -420,7 +497,7 @@ if [ $(MB_OF_MEMORY) -le 1024 ] ; then \ expr $(MB_OF_MEMORY) '-' 128 ; \ else \ @@ -426,8 +426,8 @@ fi) MIN_VM_MEMORY := $(shell \ if [ $(MAX_VM_MEMORY) -le 128 ] ; then \ ---- hotspot/agent/make/Makefile 2011-07-05 14:30:51.000000000 -0400 -+++ hotspot/agent/make/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/make/Makefile ++++ hotspot/agent/make/Makefile @@ -52,6 +52,9 @@ sun.jvm.hotspot.compiler \ sun.jvm.hotspot.debugger \ @@ -468,8 +468,8 @@ sun/jvm/hotspot/runtime/ia64/*.java \ sun/jvm/hotspot/runtime/linux/*.java \ sun/jvm/hotspot/runtime/linux_amd64/*.java \ ---- hotspot/agent/src/os/bsd/BsdDebuggerLocal.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/BsdDebuggerLocal.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/BsdDebuggerLocal.c ++++ hotspot/agent/src/os/bsd/BsdDebuggerLocal.c @@ -22,6 +22,7 @@ * */ @@ -609,8 +609,8 @@ #endif /* amd64 */ ---- hotspot/agent/src/os/bsd/Makefile 2012-05-01 17:15:02.000000000 -0400 -+++ hotspot/agent/src/os/bsd/Makefile 2012-09-18 17:50:06.000000000 -0400 +--- hotspot/agent/src/os/bsd/Makefile ++++ hotspot/agent/src/os/bsd/Makefile @@ -22,8 +22,8 @@ # # @@ -686,8 +686,8 @@ + rm -f test.o + -rmdir $(ARCH) ---- hotspot/agent/src/os/bsd/elfmacros.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/elfmacros.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/elfmacros.h ++++ hotspot/agent/src/os/bsd/elfmacros.h @@ -25,16 +25,19 @@ #ifndef _ELFMACROS_H_ #define _ELFMACROS_H_ @@ -723,8 +723,8 @@ #endif ---- hotspot/agent/src/os/bsd/libproc.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc.h ++++ hotspot/agent/src/os/bsd/libproc.h @@ -27,7 +27,8 @@ #include @@ -785,8 +785,8 @@ // get number of shared objects int get_num_libs(struct ps_prochandle* ph); ---- hotspot/agent/src/os/bsd/libproc_impl.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc_impl.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc_impl.c ++++ hotspot/agent/src/os/bsd/libproc_impl.c @@ -174,10 +174,13 @@ return NULL; } @@ -929,8 +929,8 @@ + print_debug("ps_pcontinue not implemented\n"); return PS_OK; } ---- hotspot/agent/src/os/bsd/libproc_impl.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc_impl.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc_impl.h ++++ hotspot/agent/src/os/bsd/libproc_impl.h @@ -47,7 +47,7 @@ typedef struct thread_info { lwpid_t lwp_id; @@ -984,8 +984,8 @@ // a test for ELF signature without using libelf bool is_elf_file(int fd); ---- hotspot/agent/src/os/bsd/mapfile 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/mapfile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/mapfile ++++ hotspot/agent/src/os/bsd/mapfile @@ -43,13 +43,17 @@ # proc_service.h functions - to be used by libthread_db ps_getpid; @@ -1007,8 +1007,8 @@ # used by attach test program init_libproc; ---- hotspot/agent/src/os/bsd/proc_service.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/proc_service.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/proc_service.h ++++ hotspot/agent/src/os/bsd/proc_service.h 1969-12-31 19:00:00.000000000 -0500 @@ -1,76 +0,0 @@ -/* - * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. @@ -1086,8 +1086,8 @@ -ps_err_e ps_get_thread_area(); - -#endif /* _PROC_SERVICE_H_ */ ---- hotspot/agent/src/os/bsd/ps_core.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/ps_core.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/ps_core.c ++++ hotspot/agent/src/os/bsd/ps_core.c @@ -142,6 +142,7 @@ map->next = ph->core->class_share_maps; @@ -1409,8 +1409,8 @@ struct ps_prochandle* ph = (struct ps_prochandle*) calloc(1, sizeof(struct ps_prochandle)); if (ph == NULL) { ---- hotspot/agent/src/os/bsd/ps_proc.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/ps_proc.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/ps_proc.c ++++ hotspot/agent/src/os/bsd/ps_proc.c @@ -22,20 +22,22 @@ * */ @@ -1982,8 +1982,8 @@ - } return ph; } ---- hotspot/agent/src/os/bsd/salibelf.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/salibelf.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/salibelf.c ++++ hotspot/agent/src/os/bsd/salibelf.c @@ -25,6 +25,7 @@ #include "salibelf.h" #include @@ -1992,8 +1992,8 @@ extern void print_debug(const char*,...); ---- hotspot/agent/src/os/bsd/symtab.c 2012-01-12 17:22:08.000000000 -0500 -+++ hotspot/agent/src/os/bsd/symtab.c 2012-01-12 16:54:45.000000000 -0500 +--- hotspot/agent/src/os/bsd/symtab.c ++++ hotspot/agent/src/os/bsd/symtab.c @@ -23,10 +23,11 @@ */ @@ -2538,8 +2538,8 @@ } return NULL; } ---- hotspot/agent/src/os/bsd/symtab.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/symtab.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/symtab.h ++++ hotspot/agent/src/os/bsd/symtab.h @@ -32,7 +32,7 @@ struct symtab; @@ -2549,8 +2549,8 @@ // destroy the symbol table void destroy_symtab(struct symtab* symtab); ---- hotspot/agent/src/os/bsd/test.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/test.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/test.c ++++ hotspot/agent/src/os/bsd/test.c @@ -44,7 +44,7 @@ } @@ -2560,8 +2560,8 @@ return 1; } } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2011-07-05 14:30:52.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java @@ -28,6 +28,7 @@ import java.net.*; import java.rmi.*; @@ -2631,8 +2631,8 @@ /** Convenience routine which should be called by per-platform debugger setup. Should not be called when startupMode is REMOTE_MODE. */ ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2011-07-05 14:30:53.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java @@ -29,6 +29,7 @@ import java.rmi.*; import sun.jvm.hotspot.*; @@ -2704,8 +2704,8 @@ /** Convenience routine which should be called by per-platform debugger setup. Should not be called when startupMode is REMOTE_MODE. */ ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java @@ -30,10 +30,8 @@ import sun.jvm.hotspot.debugger.cdbg.*; import sun.jvm.hotspot.debugger.x86.*; @@ -2731,8 +2731,8 @@ } else { throw new DebuggerException(cpu + " is not yet supported"); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java @@ -26,9 +26,7 @@ import sun.jvm.hotspot.debugger.*; @@ -2754,8 +2754,8 @@ } else { throw new RuntimeException("cpu " + cpu + " is not yet supported"); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java 2011-07-05 14:30:54.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java @@ -217,7 +217,7 @@ } @@ -2765,8 +2765,8 @@ // link "saproc" - SA native library on SunOS and Linux? sm.checkLink("saproc"); } else if (os.startsWith("Windows")) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java 2011-07-05 14:30:54.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java @@ -66,7 +66,7 @@ try { // Whether the caller can perform link against SA native library? @@ -2776,8 +2776,8 @@ // Whether the caller can read /proc/ file? sm.checkRead("/proc/" + pid); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java 2011-07-05 14:30:55.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java @@ -37,6 +37,8 @@ import sun.jvm.hotspot.runtime.linux_ia64.LinuxIA64JavaThreadPDAccess; import sun.jvm.hotspot.runtime.linux_amd64.LinuxAMD64JavaThreadPDAccess; @@ -2801,8 +2801,8 @@ } if (access == null) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java @@ -28,37 +28,36 @@ private static String[] signalNames = { "", /* No signal 0 */ @@ -2863,8 +2863,8 @@ }; public static String getSignalName(int sigNum) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java @@ -28,37 +28,36 @@ private static String[] signalNames = { "", /* No signal 0 */ @@ -2925,8 +2925,8 @@ }; public static String getSignalName(int sigNum) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java 2011-07-05 14:30:55.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java @@ -37,6 +37,14 @@ return "solaris"; } else if (os.equals("Linux")) { @@ -2942,8 +2942,8 @@ } else if (os.startsWith("Windows")) { return "win32"; } else { ---- hotspot/make/Makefile 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/Makefile ++++ hotspot/make/Makefile @@ -321,28 +321,28 @@ ifneq ($(OSNAME),windows) ifeq ($(ZERO_BUILD), true) @@ -2983,8 +2983,8 @@ $(install-file) endif endif ---- hotspot/make/bsd/Makefile 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/Makefile ++++ hotspot/make/bsd/Makefile @@ -39,11 +39,11 @@ # One can set ALT_BOOTDIR or BOOTDIR to point to a jdk that runs on # an architecture that differs from the target architecture, as long @@ -3017,14 +3017,14 @@ # Solaris 2.5.1, 2.6). # Disable this check by setting DISABLE_HOTSPOT_OS_VERSION_CHECK=ok. --SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7% -+#SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7% +-SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3% ++#SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3% +DISABLE_HOTSPOT_OS_VERSION_CHECK = ok OS_VERSION := $(shell uname -r) EMPTY_IF_NOT_SUPPORTED = $(filter $(SUPPORTED_OS_VERSION),$(OS_VERSION)) ---- hotspot/make/bsd/makefiles/adlc.make 2012-05-01 17:15:06.000000000 -0400 -+++ hotspot/make/bsd/makefiles/adlc.make 2012-09-17 19:50:44.000000000 -0400 +--- hotspot/make/bsd/makefiles/adlc.make ++++ hotspot/make/bsd/makefiles/adlc.make @@ -60,7 +60,8 @@ # CFLAGS_WARN holds compiler options to suppress/enable warnings. @@ -3035,8 +3035,8 @@ CFLAGS += $(CFLAGS_WARN) OBJECTNAMES = \ ---- hotspot/make/bsd/makefiles/buildtree.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/buildtree.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/buildtree.make ++++ hotspot/make/bsd/makefiles/buildtree.make @@ -303,10 +303,11 @@ [ -n "$$JAVA_HOME" ] && { echo ": \$${JAVA_HOME:=$${JAVA_HOME}}"; }; \ { \ @@ -3050,8 +3050,8 @@ ) > $@ env.csh: env.sh ---- hotspot/make/bsd/makefiles/cscope.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/cscope.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/cscope.make ++++ hotspot/make/bsd/makefiles/cscope.make @@ -71,7 +71,7 @@ # OS-specific files for other systems are excluded by default. Use CS_OS=yes # to include platform-specific files for other platforms. @@ -3061,8 +3061,8 @@ CS_PRUNE_OS = $(patsubst %,-o -name '*%*',$(filter-out ${OS},${CS_OS})) endif ---- hotspot/make/bsd/makefiles/defs.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/defs.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/defs.make ++++ hotspot/make/bsd/makefiles/defs.make @@ -72,8 +72,8 @@ HS_ARCH = sparc endif @@ -3169,8 +3169,8 @@ EXPORT_LIST += $(ADD_SA_BINARIES/$(HS_ARCH)) - - ---- hotspot/make/bsd/makefiles/gcc.make 2012-05-01 17:15:06.000000000 -0400 -+++ hotspot/make/bsd/makefiles/gcc.make 2012-09-18 11:31:25.000000000 -0400 +--- hotspot/make/bsd/makefiles/gcc.make ++++ hotspot/make/bsd/makefiles/gcc.make @@ -22,20 +22,24 @@ # # @@ -3303,8 +3303,8 @@ #------------------------------------------------------------------------ # Debug flags ---- hotspot/make/bsd/makefiles/jsig.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/jsig.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/jsig.make ++++ hotspot/make/bsd/makefiles/jsig.make @@ -25,11 +25,16 @@ # Rules to build signal interposition library, used by vm.make @@ -3344,8 +3344,8 @@ $(QUIETLY) [ -f $(LIBJSIG_G) ] || { ln -s $@ $(LIBJSIG_G); } install_jsig: $(LIBJSIG) ---- hotspot/make/bsd/makefiles/launcher.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/launcher.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/launcher.make ++++ hotspot/make/bsd/makefiles/launcher.make @@ -50,7 +50,7 @@ LIBS_LAUNCHER += $(STATIC_STDCXX) $(LIBS) else @@ -3355,8 +3355,8 @@ LIBS_LAUNCHER += -l$(JVM) $(LIBS) endif ---- hotspot/make/bsd/makefiles/sa.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/sa.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/sa.make ++++ hotspot/make/bsd/makefiles/sa.make @@ -45,8 +45,8 @@ # gnumake 3.78.1 does not accept the *s that @@ -3368,8 +3368,8 @@ AGENT_FILES1_LIST := $(GENERATED)/agent1.classes.list AGENT_FILES2_LIST := $(GENERATED)/agent2.classes.list ---- hotspot/make/bsd/makefiles/saproc.make 2012-01-12 17:22:09.000000000 -0500 -+++ hotspot/make/bsd/makefiles/saproc.make 2012-01-12 16:55:29.000000000 -0500 +--- hotspot/make/bsd/makefiles/saproc.make ++++ hotspot/make/bsd/makefiles/saproc.make @@ -25,23 +25,33 @@ # Rules to build serviceability agent library, used by vm.make @@ -3436,8 +3436,8 @@ $(QUIETLY) [ -f $(LIBSAPROC_G) ] || { ln -s $@ $(LIBSAPROC_G); } install_saproc: $(BUILDLIBSAPROC) ---- hotspot/make/bsd/makefiles/vm.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/vm.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/vm.make ++++ hotspot/make/bsd/makefiles/vm.make @@ -91,6 +91,10 @@ ${JRE_VERSION} \ ${VM_DISTRO} @@ -3555,24 +3555,24 @@ } DEST_JVM = $(JDK_LIBDIR)/$(VM_SUBDIR)/$(LIBJVM) ---- hotspot/make/bsd/platform_amd64 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/platform_amd64 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/platform_amd64 ++++ hotspot/make/bsd/platform_amd64 @@ -12,4 +12,4 @@ compiler = gcc -sysdefs = -DBSD -D_GNU_SOURCE -DAMD64 +sysdefs = -D_ALLBSD_SOURCE -D_GNU_SOURCE -DAMD64 ---- hotspot/make/bsd/platform_i486 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/platform_i486 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/platform_i486 ++++ hotspot/make/bsd/platform_i486 @@ -12,4 +12,4 @@ compiler = gcc -sysdefs = -DBSD -D_GNU_SOURCE -DIA32 +sysdefs = -D_ALLBSD_SOURCE -D_GNU_SOURCE -DIA32 ---- hotspot/make/defs.make 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/defs.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/defs.make ++++ hotspot/make/defs.make @@ -118,13 +118,23 @@ # Windows should have OS predefined ifeq ($(OS),) @@ -3599,8 +3599,8 @@ else OSNAME=solaris endif ---- hotspot/make/sa.files 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/sa.files 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/sa.files ++++ hotspot/make/sa.files @@ -50,6 +50,9 @@ $(AGENT_SRC_DIR)/sun/jvm/hotspot/compiler/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/*.java \ @@ -3621,8 +3621,8 @@ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/ia64/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_amd64/*.java \ ---- hotspot/src/cpu/x86/vm/bytes_x86.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/bytes_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/bytes_x86.hpp ++++ hotspot/src/cpu/x86/vm/bytes_x86.hpp @@ -81,6 +81,9 @@ #ifdef TARGET_OS_ARCH_windows_x86 # include "bytes_windows_x86.inline.hpp" @@ -3633,8 +3633,8 @@ #endif // CPU_X86_VM_BYTES_X86_HPP ---- hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp ++++ hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp @@ -481,8 +481,8 @@ // Fetch the exception from TLS and clear out exception related thread state __ get_thread(rsi); @@ -3646,8 +3646,8 @@ __ bind(_unwind_handler_entry); __ verify_not_null_oop(rax); ---- hotspot/src/cpu/x86/vm/copy_x86.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/copy_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/copy_x86.hpp ++++ hotspot/src/cpu/x86/vm/copy_x86.hpp @@ -37,6 +37,9 @@ #ifdef TARGET_OS_ARCH_windows_x86 # include "copy_windows_x86.inline.hpp" @@ -3658,8 +3658,8 @@ static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) { ---- hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp @@ -45,6 +45,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3688,8 +3688,8 @@ // index is positive and so should have correct value if this code were // used on 64bits imulptr(index, reg2); ---- hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp @@ -45,6 +45,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3700,8 +3700,8 @@ // Implementation of InterpreterMacroAssembler ---- hotspot/src/cpu/x86/vm/jni_x86.h 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/jni_x86.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/jni_x86.h ++++ hotspot/src/cpu/x86/vm/jni_x86.h @@ -26,7 +26,7 @@ #ifndef _JAVASOFT_JNI_MD_H_ #define _JAVASOFT_JNI_MD_H_ @@ -3711,8 +3711,8 @@ #define JNIEXPORT #define JNIIMPORT #define JNICALL ---- hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp @@ -47,6 +47,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3723,8 +3723,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp @@ -47,6 +47,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3735,8 +3735,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp @@ -35,6 +35,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3747,8 +3747,8 @@ // Implementation of the platform-specific part of StubRoutines - for // a description of how to extend it, see the stubRoutines.hpp file. ---- hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp @@ -35,6 +35,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3759,8 +3759,8 @@ // Implementation of the platform-specific part of StubRoutines - for // a description of how to extend it, see the stubRoutines.hpp file. ---- hotspot/src/cpu/x86/vm/vm_version_x86.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/vm_version_x86.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/vm_version_x86.cpp ++++ hotspot/src/cpu/x86/vm/vm_version_x86.cpp @@ -37,6 +37,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "os_windows.inline.hpp" @@ -3771,8 +3771,8 @@ int VM_Version::_cpu; ---- hotspot/src/cpu/zero/vm/bytes_zero.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/bytes_zero.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/bytes_zero.hpp ++++ hotspot/src/cpu/zero/vm/bytes_zero.hpp @@ -168,6 +168,9 @@ #ifdef TARGET_OS_ARCH_linux_zero # include "bytes_linux_zero.inline.hpp" @@ -3783,8 +3783,8 @@ #endif // VM_LITTLE_ENDIAN ---- hotspot/src/cpu/zero/vm/interp_masm_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/interp_masm_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/interp_masm_zero.cpp ++++ hotspot/src/cpu/zero/vm/interp_masm_zero.cpp @@ -40,5 +40,8 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3794,8 +3794,8 @@ +#endif // This file is intentionally empty ---- hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp ++++ hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp @@ -43,6 +43,9 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3806,8 +3806,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp ++++ hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp @@ -30,6 +30,9 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3818,8 +3818,8 @@ #ifdef IA32 address StubRoutines::x86::_call_stub_compiled_return = NULL; ---- hotspot/src/cpu/zero/vm/vm_version_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/vm_version_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/vm_version_zero.cpp ++++ hotspot/src/cpu/zero/vm/vm_version_zero.cpp @@ -32,5 +32,8 @@ #ifdef TARGET_OS_FAMILY_linux # include "os_linux.inline.hpp" @@ -3829,8 +3829,8 @@ +#endif // This file is intentionally empty ---- hotspot/src/os/bsd/vm/attachListener_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/attachListener_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/attachListener_bsd.cpp ++++ hotspot/src/os/bsd/vm/attachListener_bsd.cpp @@ -170,53 +170,41 @@ // Initialization - create a listener socket and bind it to a file @@ -3954,8 +3954,8 @@ if (ret == 0) { // simple check to avoid starting the attach mechanism when // a bogus user creates the file ---- hotspot/src/os/bsd/vm/jsig.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jsig.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jsig.c ++++ hotspot/src/os/bsd/vm/jsig.c @@ -143,7 +143,8 @@ } @@ -3966,8 +3966,8 @@ } static int call_os_sigaction(int sig, const struct sigaction *act, ---- hotspot/src/os/bsd/vm/jvm_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jvm_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jvm_bsd.cpp ++++ hotspot/src/os/bsd/vm/jvm_bsd.cpp @@ -146,38 +146,31 @@ "ILL", SIGILL, /* Illegal instruction (ANSI). */ "TRAP", SIGTRAP, /* Trace trap (POSIX). */ @@ -4017,8 +4017,8 @@ }; JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name)) ---- hotspot/src/os/bsd/vm/jvm_bsd.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jvm_bsd.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jvm_bsd.h ++++ hotspot/src/os/bsd/vm/jvm_bsd.h @@ -54,7 +54,11 @@ #define AGENT_ONATTACH_SYMBOLS {"Agent_OnAttach"} @@ -4052,8 +4052,8 @@ #endif /* JVM_MD_H */ // Reconciliation History ---- hotspot/src/os/bsd/vm/osThread_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/osThread_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/osThread_bsd.cpp ++++ hotspot/src/os/bsd/vm/osThread_bsd.cpp @@ -43,8 +43,12 @@ void OSThread::pd_initialize() { @@ -4068,8 +4068,8 @@ _siginfo = NULL; _ucontext = NULL; _expanding_stack = 0; ---- hotspot/src/os/bsd/vm/osThread_bsd.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/osThread_bsd.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/osThread_bsd.hpp ++++ hotspot/src/os/bsd/vm/osThread_bsd.hpp @@ -39,6 +39,7 @@ private: @@ -4130,8 +4130,8 @@ pthread_t pthread_id() const { return _pthread_id; } ---- hotspot/src/os/bsd/vm/os_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.cpp ++++ hotspot/src/os/bsd/vm/os_bsd.cpp @@ -88,7 +88,6 @@ # include # include @@ -5661,8 +5661,8 @@ // execve failed _exit(-1); ---- hotspot/src/os/bsd/vm/os_bsd.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.hpp ++++ hotspot/src/os/bsd/vm/os_bsd.hpp @@ -30,6 +30,12 @@ /* pthread_getattr_np comes with BsdThreads-0.9-7 on RedHat 7.1 */ typedef int (*pthread_getattr_func_type) (pthread_t, pthread_attr_t *); @@ -5801,8 +5801,8 @@ // Stack repair handling ---- hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.inline.hpp ++++ hotspot/src/os/bsd/vm/os_bsd.inline.hpp @@ -86,7 +86,15 @@ inline bool os::allocate_stack_guard_pages() { @@ -5837,8 +5837,8 @@ } inline struct dirent* os::readdir(DIR* dirp, dirent *dbuf) ---- hotspot/src/os/bsd/vm/vmError_bsd.cpp 2012-09-26 19:40:10.000000000 -0400 -+++ hotspot/src/os/bsd/vm/vmError_bsd.cpp 2012-09-26 19:43:30.000000000 -0400 +--- hotspot/src/os/bsd/vm/vmError_bsd.cpp ++++ hotspot/src/os/bsd/vm/vmError_bsd.cpp @@ -34,6 +34,12 @@ #include #include @@ -5870,8 +5870,8 @@ os::current_process_id(), os::current_process_id()); os::fork_and_exec(buf); ---- hotspot/src/os/posix/launcher/java_md.c 2012-05-01 17:15:07.000000000 -0400 -+++ hotspot/src/os/posix/launcher/java_md.c 2012-09-26 17:49:02.000000000 -0400 +--- hotspot/src/os/posix/launcher/java_md.c ++++ hotspot/src/os/posix/launcher/java_md.c @@ -41,14 +41,21 @@ #include "version_comp.h" #endif @@ -6067,16 +6067,16 @@ pthread_t tid; pthread_attr_t attr; pthread_attr_init(&attr); ---- hotspot/src/os/posix/launcher/launcher.script 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/os/posix/launcher/launcher.script 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/posix/launcher/launcher.script ++++ hotspot/src/os/posix/launcher/launcher.script @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ---- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s 2012-05-01 17:15:08.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s 2012-09-18 13:13:53.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s ++++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s @@ -21,6 +21,17 @@ # questions. # @@ -6317,8 +6317,8 @@ movl 4(%esp), %eax # src fildll (%eax) movl 8(%esp), %eax # dest ---- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s ++++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s @@ -21,6 +21,14 @@ # questions. # @@ -6466,8 +6466,8 @@ cmpq %rdi,%rsi leaq -8(%rdi,%rdx,8),%rax # from + count*8 - 8 jbe acl_CopyRight ---- hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp @@ -25,7 +25,33 @@ #ifndef OS_CPU_BSD_X86_VM_BYTES_BSD_X86_INLINE_HPP #define OS_CPU_BSD_X86_VM_BYTES_BSD_X86_INLINE_HPP @@ -6502,8 +6502,8 @@ // Efficient swapping of data bytes from Java byte // ordering to native byte ordering and vice versa. ---- hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp @@ -25,9 +25,10 @@ #ifndef OS_CPU_BSD_X86_VM_GLOBALS_BSD_X86_HPP #define OS_CPU_BSD_X86_VM_GLOBALS_BSD_X86_HPP @@ -6531,8 +6531,8 @@ // Only used on 64 bit Windows platforms define_pd_global(bool, UseVectoredExceptions, false); ---- hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp 2012-05-01 17:15:08.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp 2012-09-18 18:21:03.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp @@ -93,7 +93,7 @@ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:04:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B6328F0; Tue, 9 Oct 2012 22:04:24 +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 6212E8FC19; Tue, 9 Oct 2012 22:04: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 q99M4OvN093910; Tue, 9 Oct 2012 22:04:24 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99M4OXj093903; Tue, 9 Oct 2012 22:04:24 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210092204.q99M4OXj093903@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 22:04:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305606 - in head: Mk multimedia/libva multimedia/libva/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:04:24 -0000 Author: madpilot Date: Tue Oct 9 22:04:23 2012 New Revision: 305606 URL: http://svn.freebsd.org/changeset/ports/305606 Log: - Update to 1.1.0 - Take maintainership - Strip Makefile headers - Patch software to install with correct ABI version number - Convert to new options framework - Remove ABI version number from LIB_DEPENDS - Add global option description Added: head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp (contents, props changed) Modified: head/Mk/bsd.options.desc.mk head/multimedia/libva/Makefile (contents, props changed) head/multimedia/libva/distinfo (contents, props changed) head/multimedia/libva/files/extra-patch-va-va_trace.c (contents, props changed) head/multimedia/libva/pkg-plist (contents, props changed) Modified: head/Mk/bsd.options.desc.mk ============================================================================== --- head/Mk/bsd.options.desc.mk Tue Oct 9 21:02:14 2012 (r305605) +++ head/Mk/bsd.options.desc.mk Tue Oct 9 22:04:23 2012 (r305606) @@ -287,6 +287,7 @@ SSE_DESC?= Use SSE optimized routines SSH_DESC?= SSH protocol SSL_DESC?= SSL protocol STATIC_DESC?= Build static executables/libraries +STRIP_DESC?= Strip binaries before installation SVG_DESC?= SVG vector image format SVGALIB_DESC?= SVGA graphics SVN_DESC?= Subversion support Modified: head/multimedia/libva/Makefile ============================================================================== --- head/multimedia/libva/Makefile Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva/Makefile Tue Oct 9 22:04:23 2012 (r305606) @@ -1,23 +1,18 @@ -# New ports collection makefile for: libva -# Date created: 5 Jan 2011 -# Whom: Anonymous -# # $FreeBSD$ -# PORTNAME= libva -PORTVERSION= 1.0.14 +PORTVERSION= 1.1.0 CATEGORIES= multimedia MASTER_SITES= http://cgit.freedesktop.org/${PORTNAME}/snapshot/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= madpilot@FreeBSD.org COMMENT= VAAPI wrapper and dummy driver LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat -LIB_DEPENDS= drm.2:${PORTSDIR}/graphics/libdrm +LIB_DEPENDS= drm:${PORTSDIR}/graphics/libdrm USE_BZIP2= yes USE_XORG= pciaccess xext xfixes @@ -33,7 +28,9 @@ LDFLAGS+= -L${LOCALBASE}/lib # prevent types conflict: videodev2.h vs. drm.h CFLAGS+= -DHAVE_LINUX_INTEGER_TYPES -.include +OPTIONS_DEFINE= DEBUG STRIP + +.include # add strnlen(3) from head/lib/libc/string/strnlen.c .if ${OSVERSION} < 800067 @@ -44,27 +41,31 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch- BROKEN= glXCreateContext fails during configure .endif -.if !defined(WITH_DEBUG) -CFLAGS+= -DNDEBUG -.else +.if ${PORT_OPTIONS:MDEBUG} CFLAGS+= -D_DEBUG +.else +CFLAGS+= -DNDEBUG .endif -.if defined(STRIP) && ${STRIP} != "" +.if {PORT_OPTIONS:MSTRIP} INSTALL_TARGET= install-strip .endif post-patch: .SILENT ${REINPLACE_CMD} -e 's|\($$libdir\)/dri|\1/va|' \ -e 's|$${libdir}/\(pkgconfig\)|$${prefix}/libdata/\1|' \ + -e 's/\(LIBVA_LT_CURRENT\)=libva_lt_current/\1=1/' \ + -e 's/\(LIBVA_LT_REV\)=libva_lt_revision/\1=3300/' \ + -e 's/\(LIBVA_LT_AGE\)=libva_lt_age/\1=0/' \ ${WRKSRC}/configure.ac - ${REINPLACE_CMD} 's/va\(info\)/\1/' \ + ${REINPLACE_CMD} -e 's/va\(info\)/\1/g' -e 's/info\.c/vainfo\.c/' \ ${WRKSRC}/test/vainfo/Makefile.am + ${REINPLACE_CMD} '/^export VA_HEADER_/d' \ + ${WRKSRC}/doc/Makefile.am ${REINPLACE_CMD} 's/-ldl//' ${WRKSRC}/va/Makefile.am post-configure: .SILENT ${REINPLACE_CMD} 's/-lpthread/${PTHREAD_LIBS}/' \ - ${WRKSRC}/i965_drv_video/Makefile \ ${WRKSRC}/test/putsurface/Makefile -.include +.include Modified: head/multimedia/libva/distinfo ============================================================================== --- head/multimedia/libva/distinfo Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva/distinfo Tue Oct 9 22:04:23 2012 (r305606) @@ -1,2 +1,2 @@ -SHA256 (libva-1.0.14.tar.bz2) = b15ab93b549651a07664ced831b20e559e0f7edabb57169af8049b3e761ea764 -SIZE (libva-1.0.14.tar.bz2) = 769706 +SHA256 (libva-1.1.0.tar.bz2) = 4505200f7fdf862c832448662b7c14133ff984313e7d4f2530f7184bb3821353 +SIZE (libva-1.1.0.tar.bz2) = 539195 Modified: head/multimedia/libva/files/extra-patch-va-va_trace.c ============================================================================== --- head/multimedia/libva/files/extra-patch-va-va_trace.c Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva/files/extra-patch-va-va_trace.c Tue Oct 9 22:04:23 2012 (r305606) @@ -1,6 +1,6 @@ ---- va/va_trace.c~ -+++ va/va_trace.c -@@ -140,6 +140,17 @@ VAStatus vaUnlockSurface(VADisplay dpy, +--- va/va_trace.c.orig 2012-10-04 15:30:51.000000000 +0200 ++++ va/va_trace.c 2012-10-09 23:12:35.888197737 +0200 +@@ -137,6 +137,18 @@ VASurfaceID surface ); @@ -15,6 +15,7 @@ + } + return (len); +} - - void va_TraceInit(VADisplay dpy) - { ++ + #define FILE_NAME_SUFFIX(env_value) \ + do { \ + int tmp = strnlen(env_value, sizeof(env_value)); \ Added: head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp Tue Oct 9 22:04:23 2012 (r305606) @@ -0,0 +1,30 @@ +--- test/v4l_h264/encode/capture.cpp.orig 2012-10-04 15:30:51.000000000 +0200 ++++ test/v4l_h264/encode/capture.cpp 2012-10-08 22:31:01.067189237 +0200 +@@ -37,7 +37,11 @@ + #include /* low-level i/o */ + #include + #include ++#ifdef __FreeBSD__ ++#include ++#else + #include ++#endif + #include + #include + #include +@@ -451,10 +455,15 @@ + } + for (n_buffers = 0; n_buffers < 4; ++n_buffers) { + buffers[n_buffers].length = buffer_size; ++#ifdef __FreeBSD__ ++ if(posix_memalign(&buffers[n_buffers].start, page_size, buffer_size)) ++ { ++#else + buffers[n_buffers].start = memalign (/* boundary */ page_size, + buffer_size); + + if (!buffers[n_buffers].start) { ++#endif + std::cerr << "Out of memory\n"; + exit (EXIT_FAILURE); + } Modified: head/multimedia/libva/pkg-plist ============================================================================== --- head/multimedia/libva/pkg-plist Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva/pkg-plist Tue Oct 9 22:04:23 2012 (r305606) @@ -1,25 +1,25 @@ bin/vaavcenc bin/vah264encode bin/vainfo +bin/valoadjpeg bin/vampeg2vldemo bin/vaputsurface include/va/va.h include/va/va_backend.h -include/va/va_backend_egl.h include/va/va_backend_glx.h include/va/va_backend_tpi.h -include/va/va_dri.h +include/va/va_dec_jpeg.h include/va/va_dri2.h include/va/va_dricommon.h -include/va/va_dummy.h -include/va/va_egl.h +include/va/va_drm.h +include/va/va_drmcommon.h include/va/va_glx.h include/va/va_tpi.h include/va/va_version.h include/va/va_x11.h -lib/libva-egl.la -lib/libva-egl.so -lib/libva-egl.so.1 +lib/libva-drm.la +lib/libva-drm.so +lib/libva-drm.so.1 lib/libva-glx.la lib/libva-glx.so lib/libva-glx.so.1 @@ -34,7 +34,7 @@ lib/libva.so lib/libva.so.1 lib/va/dummy_drv_video.la lib/va/dummy_drv_video.so -libdata/pkgconfig/libva-egl.pc +libdata/pkgconfig/libva-drm.pc libdata/pkgconfig/libva-glx.pc libdata/pkgconfig/libva-tpi.pc libdata/pkgconfig/libva-x11.pc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:05:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23CE8968; Tue, 9 Oct 2012 22:05:58 +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 0306C8FC1A; Tue, 9 Oct 2012 22:05: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 q99M5vkX094278; Tue, 9 Oct 2012 22:05:57 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99M5vYS094272; Tue, 9 Oct 2012 22:05:57 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210092205.q99M5vYS094272@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 22:05:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305607 - in head: . multimedia multimedia/libva-vdpau-driver multimedia/vdpau-video X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:05:58 -0000 Author: madpilot Date: Tue Oct 9 22:05:57 2012 New Revision: 305607 URL: http://svn.freebsd.org/changeset/ports/305607 Log: - Move vdpau-video to libva-vdpau-driver to follow upstream project name change - Update to 0.7.4 - Take maintainership - Update master site - Undeprecate - Remove ABI version number from LIB_DEPENDS - Convert to new options framework - Add note in UPDATING about the move Added: head/multimedia/libva-vdpau-driver/ - copied from r305605, head/multimedia/vdpau-video/ Deleted: head/multimedia/vdpau-video/ Modified: head/MOVED head/UPDATING head/multimedia/Makefile head/multimedia/libva-vdpau-driver/Makefile (contents, props changed) head/multimedia/libva-vdpau-driver/distinfo (contents, props changed) Modified: head/MOVED ============================================================================== --- head/MOVED Tue Oct 9 22:04:23 2012 (r305606) +++ head/MOVED Tue Oct 9 22:05:57 2012 (r305607) @@ -3716,3 +3716,4 @@ textproc/aspell-without-dicten|textproc/ www/jakarta-jmeter|www/jmeter|2012-09-25|Former Jakarta projects now live on their own www/smarty|www/smarty2|2012-09-26|Renamed to prepare for addition of Smarty 3.x to the tree devel/p5-Devel-Mallinfo||2012-10-08|Has expired: Does not work on FreeBSD, mallinfo() is a GNU libc function and is not available on FreeBSD +multimedia/vdpau-video|multimedia/libva-vdpau-driver|2012-10-09|Project renamed Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue Oct 9 22:04:23 2012 (r305606) +++ head/UPDATING Tue Oct 9 22:05:57 2012 (r305607) @@ -5,6 +5,21 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20121009: + AFFECTS: users of multimedia/vdpau-video + AUTHOR: madpilot@FreeBSD.org + + vdpau-video has been renamed upstream to libva-vdpau-driver. The + port has been changed accordingly. + + Please update the port origins as follows: + + # portmaster -o multimedia/vdpau-video multimedia/libva-vdpau-driver + or + # portupgrade -fo multimedia/vdpau-video multimedia/libva-vdpau-driver + or + # pkg set -o multimedia/vdpau-video:multimedia/libva-vdpau-driver + 20121008: AFFECTS: users of mail/squirrelmail AUTHOR: adamw@FreeBSD.org Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Tue Oct 9 22:04:23 2012 (r305606) +++ head/multimedia/Makefile Tue Oct 9 22:05:57 2012 (r305607) @@ -168,6 +168,7 @@ SUBDIR += libtuner SUBDIR += libv4l SUBDIR += libva + SUBDIR += libva-vdpau-driver SUBDIR += libvdpau SUBDIR += libvpx SUBDIR += libxine @@ -330,7 +331,6 @@ SUBDIR += vcdimager SUBDIR += vcdpad SUBDIR += vcdtools - SUBDIR += vdpau-video SUBDIR += vdpauinfo SUBDIR += vdr SUBDIR += vdr-plugin-control Modified: head/multimedia/libva-vdpau-driver/Makefile ============================================================================== --- head/multimedia/vdpau-video/Makefile Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva-vdpau-driver/Makefile Tue Oct 9 22:05:57 2012 (r305607) @@ -1,29 +1,22 @@ -# New ports collection makefile for: vdpau-video -# Date created: 5 Jan 2011 -# Whom: Anonymous -# # $FreeBSD$ -# -PORTNAME= vdpau-video -DISTVERSION= 0.7.3 +PORTNAME= libva-vdpau-driver +PORTVERSION= 0.7.4 CATEGORIES= multimedia -MASTER_SITES= http://www.splitted-desktop.com/~gbeauchesne/${PORTNAME}/ +MASTER_SITES= http://www.freedesktop.org/software/vaapi/releases/${PORTNAME}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= madpilot@FreeBSD.org COMMENT= A VDPAU-based backend for VAAPI -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 - LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -LIB_DEPENDS= vdpau.1:${PORTSDIR}/multimedia/libvdpau +LIB_DEPENDS= vdpau:${PORTSDIR}/multimedia/libvdpau BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/libva.pc:${PORTSDIR}/multimedia/libva \ ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING +USE_BZIP2= yes USE_GMAKE= yes USE_GL= gl @@ -31,13 +24,15 @@ GNU_CONFIGURE= yes CPPFLAGS+= -isystem${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -.include +OPTIONS_DEFINE= DEBUG STRIP + +.include -.if !defined(WITH_DEBUG) +.if empty(PORT_OPTIONS:MDEBUG) CONFIGURE_ARGS+= --disable-debug .endif -.if defined(STRIP) && ${STRIP} != "" +.if ${PORT_OPTIONS:MSTRIP} INSTALL_TARGET= install-strip .endif @@ -48,4 +43,4 @@ post-patch: .SILENT -e '/\^vdpau_version/s|$$CC -E|& ${CPPFLAGS}|' \ ${WRKSRC}/configure -.include +.include Modified: head/multimedia/libva-vdpau-driver/distinfo ============================================================================== --- head/multimedia/vdpau-video/distinfo Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva-vdpau-driver/distinfo Tue Oct 9 22:05:57 2012 (r305607) @@ -1,2 +1,2 @@ -SHA256 (vdpau-video-0.7.3.tar.gz) = 28f66adc7d87a513a765dd79fda469e895b76692173d2aa79a26f4a618f91266 -SIZE (vdpau-video-0.7.3.tar.gz) = 400121 +SHA256 (libva-vdpau-driver-0.7.4.tar.bz2) = 155c1982f0ac3f5435ba20b221bcaa11be212c37db548cd1f2a030ffa17e9bb9 +SIZE (libva-vdpau-driver-0.7.4.tar.bz2) = 316729 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:06:39 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2380999F; Tue, 9 Oct 2012 22:06:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0C7568FC08; Tue, 9 Oct 2012 22:06: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 q99M6cib094454; Tue, 9 Oct 2012 22:06:38 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99M6c8j094452; Tue, 9 Oct 2012 22:06:38 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210092206.q99M6c8j094452@svn.freebsd.org> From: Mark Linimon Date: Tue, 9 Oct 2012 22:06:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305608 - head/audio/akode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:06:39 -0000 Author: linimon Date: Tue Oct 9 22:06:38 2012 New Revision: 305608 URL: http://svn.freebsd.org/changeset/ports/305608 Log: Force numerous ports that fail to build with clang over to instead always rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to accomplish this. The ports chosen were ports that blocked 2 or more ports from building with clang. (There are several hundred other ports that still fail to build with clang, even with this patch. This is merely one step along the way.) Those interested in fixing these ports with clang, and have clang as their default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes. For those who have gcc as their default compiler, this change is believed to cause no change. Hat: portmgr Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various combinations of patch/no-patch and flag settings. Modified: head/audio/akode/Makefile Modified: head/audio/akode/Makefile ============================================================================== --- head/audio/akode/Makefile Tue Oct 9 22:05:57 2012 (r305607) +++ head/audio/akode/Makefile Tue Oct 9 22:06:38 2012 (r305608) @@ -32,6 +32,7 @@ OPTIONS= FFMPEG "FFMPEG decoder plugin" USE_AUTOTOOLS= libltdl libtool USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_LDCONFIG= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:08:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18104A68; Tue, 9 Oct 2012 22:08:30 +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 00B4F8FC0C; Tue, 9 Oct 2012 22:08: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 q99M8TBv094792; Tue, 9 Oct 2012 22:08:29 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99M8Thr094790; Tue, 9 Oct 2012 22:08:29 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210092208.q99M8Thr094790@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 22:08:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305609 - head/multimedia/libva-vdpau-driver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:08:30 -0000 Author: madpilot Date: Tue Oct 9 22:08:29 2012 New Revision: 305609 URL: http://svn.freebsd.org/changeset/ports/305609 Log: - Remove indefinite article from COMMENT Forgot this in previous commit. Modified: head/multimedia/libva-vdpau-driver/Makefile Modified: head/multimedia/libva-vdpau-driver/Makefile ============================================================================== --- head/multimedia/libva-vdpau-driver/Makefile Tue Oct 9 22:06:38 2012 (r305608) +++ head/multimedia/libva-vdpau-driver/Makefile Tue Oct 9 22:08:29 2012 (r305609) @@ -6,7 +6,7 @@ CATEGORIES= multimedia MASTER_SITES= http://www.freedesktop.org/software/vaapi/releases/${PORTNAME}/ MAINTAINER= madpilot@FreeBSD.org -COMMENT= A VDPAU-based backend for VAAPI +COMMENT= VDPAU-based backend for VAAPI LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:12:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 701AEBD9; Tue, 9 Oct 2012 22:12:16 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5614D8FC16; Tue, 9 Oct 2012 22:12:16 +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 q99MCGo1096653; Tue, 9 Oct 2012 22:12:16 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MCEbx096552; Tue, 9 Oct 2012 22:12:14 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210092212.q99MCEbx096552@svn.freebsd.org> From: Mark Linimon Date: Tue, 9 Oct 2012 22:12:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305610 - in head: audio/akode-plugins-mpc audio/akode-plugins-mpeg audio/akode-plugins-oss audio/akode-plugins-resampler audio/akode-plugins-xiph audio/linuxsampler audio/nas audio/scr... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:12:16 -0000 Author: linimon Date: Tue Oct 9 22:12:13 2012 New Revision: 305610 URL: http://svn.freebsd.org/changeset/ports/305610 Log: Force numerous ports that fail to build with clang over to instead always rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to accomplish this. The ports chosen were ports that blocked 2 or more ports from building with clang. (There are several hundred other ports that still fail to build with clang, even with this patch. This is merely one step along the way.) Those interested in fixing these ports with clang, and have clang as their default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes. For those who have gcc as their default compiler, this change is believed to cause no change. Hat: portmgr Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various combinations of patch/no-patch and flag settings. Modified: head/audio/akode-plugins-mpc/Makefile head/audio/akode-plugins-mpeg/Makefile head/audio/akode-plugins-oss/Makefile head/audio/akode-plugins-resampler/Makefile head/audio/akode-plugins-xiph/Makefile head/audio/linuxsampler/Makefile head/audio/nas/Makefile head/audio/scrobbler/Makefile head/cad/gnucap/Makefile head/converters/tnef/Makefile head/databases/firebird20-server/Makefile head/databases/firebird21-server/Makefile head/databases/gnome-db/Makefile head/databases/libgda3/Makefile head/databases/mird/Makefile head/devel/allegro/Makefile head/devel/argp-standalone/Makefile head/devel/avr-binutils/Makefile head/devel/bullet/Makefile head/devel/gdb66/Makefile head/devel/libYGP/Makefile head/devel/libhid/Makefile head/devel/liboil/Makefile head/devel/libopensync/Makefile head/devel/mingw32-binutils/Makefile head/devel/ncurses/Makefile head/devel/omniORB/Makefile head/devel/p5-EV/Makefile head/devel/psptoolchain-binutils/Makefile head/devel/py-game/Makefile head/devel/simgear/Makefile head/devel/skalibs/Makefile head/devel/xmltooling/Makefile head/emulators/virtualbox-ose-legacy/Makefile head/emulators/virtualbox-ose/Makefile head/finance/libofx/Makefile head/graphics/Coin/Makefile head/graphics/agg/Makefile head/graphics/devil/Makefile head/graphics/iulib/Makefile head/graphics/opendx/Makefile head/graphics/osg/Makefile head/graphics/podofo/Makefile head/graphics/tgif/Makefile head/graphics/urt/Makefile head/graphics/vcg/Makefile head/graphics/xli/Makefile head/graphics/xv/Makefile head/japanese/Wnn7-lib/Makefile head/japanese/canna-lib/Makefile head/japanese/groff/Makefile head/japanese/sj3-lib/Makefile head/japanese/skk-tools/Makefile head/japanese/texfamily/Makefile head/lang/clisp/Makefile head/lang/gcc42/Makefile head/lang/gcc44/Makefile head/lang/ghc/Makefile head/lang/gnatdroid-binutils/Makefile head/lang/q/Makefile head/lang/sdcc/Makefile head/lang/v8/Makefile head/mail/courier/Makefile head/mail/ezmlm/Makefile head/mail/metamail/Makefile head/math/gnuplot/Makefile head/math/grace/Makefile head/math/igraph/Makefile head/math/wfmath/Makefile head/misc/sword/Makefile head/multimedia/xanim/Makefile head/net-mgmt/flow-tools/Makefile head/net/asterisk/Makefile head/net/asterisk10/Makefile head/net/asterisk14/Makefile head/net/boinc-client/Makefile head/net/freeswitch-core-devel/Makefile head/net/freeswitch-core/Makefile head/news/cnews/Makefile head/palm/jpilot/Makefile head/print/transfig/Makefile head/science/cdcl/Makefile head/security/trousers/Makefile head/sysutils/lsof/Makefile head/textproc/jade/Makefile head/textproc/openjade/Makefile head/textproc/scim/Makefile head/textproc/senna/Makefile head/www/libxul19/Makefile head/x11-clocks/asclock/Makefile head/x11-toolkits/Xaw3d/Makefile head/x11-toolkits/p5-Alien-wxWidgets/Makefile head/x11-toolkits/tk86/Makefile head/x11-toolkits/wxgtk29/Makefile head/x11/eterm/Makefile Modified: head/audio/akode-plugins-mpc/Makefile ============================================================================== --- head/audio/akode-plugins-mpc/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/audio/akode-plugins-mpc/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -27,6 +27,7 @@ PORTNAMESUFX= ${PLUGIN:S/_sink//:S/_deco USE_AUTOTOOLS= libltdl USE_AUTOTOOLS= libtool USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes WRKSRC= ${WRKDIR}/akode-${PORTVERSION} USE_LDCONFIG= yes Modified: head/audio/akode-plugins-mpeg/Makefile ============================================================================== --- head/audio/akode-plugins-mpeg/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/audio/akode-plugins-mpeg/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -29,6 +29,7 @@ PORTNAMESUFX= ${PLUGIN:S/_sink//:S/_deco USE_AUTOTOOLS= libltdl USE_AUTOTOOLS= libtool USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes WRKSRC= ${WRKDIR}/akode-${PORTVERSION} USE_LDCONFIG= yes Modified: head/audio/akode-plugins-oss/Makefile ============================================================================== --- head/audio/akode-plugins-oss/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/audio/akode-plugins-oss/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -27,6 +27,7 @@ PORTNAMESUFX= ${PLUGIN:S/_sink//:S/_deco USE_AUTOTOOLS= libltdl USE_AUTOTOOLS= libtool USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes WRKSRC= ${WRKDIR}/akode-${PORTVERSION} USE_LDCONFIG= yes Modified: head/audio/akode-plugins-resampler/Makefile ============================================================================== --- head/audio/akode-plugins-resampler/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/audio/akode-plugins-resampler/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -29,6 +29,7 @@ PORTNAMESUFX= ${PLUGIN:S/_sink//:S/_deco USE_AUTOTOOLS= libltdl USE_AUTOTOOLS= libtool USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes WRKSRC= ${WRKDIR}/akode-${PORTVERSION} USE_LDCONFIG= yes Modified: head/audio/akode-plugins-xiph/Makefile ============================================================================== --- head/audio/akode-plugins-xiph/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/audio/akode-plugins-xiph/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -33,6 +33,7 @@ PORTNAMESUFX= ${PLUGIN:S/_sink//:S/_deco USE_AUTOTOOLS= libltdl USE_AUTOTOOLS= libtool USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes WRKSRC= ${WRKDIR}/akode-${PORTVERSION} USE_LDCONFIG= yes Modified: head/audio/linuxsampler/Makefile ============================================================================== --- head/audio/linuxsampler/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/audio/linuxsampler/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -23,6 +23,7 @@ DSSI_DESC= Enable DSSI support LV2CORE_DESC= Enable LV2 support USE_BZIP2= yes +USE_GCC= any USE_GNOME= gnomehack USE_SQLITE= 3 USE_GMAKE= yes Modified: head/audio/nas/Makefile ============================================================================== --- head/audio/nas/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/audio/nas/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -14,6 +14,7 @@ EXTRACT_SUFX= .src.tar.gz MAINTAINER= multimedia@FreeBSD.org COMMENT= Network Audio System +USE_GCC= any USE_IMAKE= yes USE_XORG= x11 xext xt xau sm ice xp xpm xmu xaw USE_LDCONFIG= yes Modified: head/audio/scrobbler/Makefile ============================================================================== --- head/audio/scrobbler/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/audio/scrobbler/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,7 @@ CONFLICTS= bmp-scrobbler-[0-9]* \ xmms-scrobbler-[0-9]* USE_BZIP2= yes +USE_GCC= any GNU_CONFIGURE= yes USE_GMAKE= yes CPPFLAGS+= -I${LOCALBASE}/include Modified: head/cad/gnucap/Makefile ============================================================================== --- head/cad/gnucap/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/cad/gnucap/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ COMMENT= The GNU Circuit Analysis Packag LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING +USE_GCC= any USE_GMAKE= yes GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes Modified: head/converters/tnef/Makefile ============================================================================== --- head/converters/tnef/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/converters/tnef/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -11,6 +11,7 @@ COMMENT= Unpack data in MS Outlook TNEF OPTIONS_DEFINE= DOCS +USE_GCC= any GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes Modified: head/databases/firebird20-server/Makefile ============================================================================== --- head/databases/firebird20-server/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/databases/firebird20-server/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -23,6 +23,7 @@ LATEST_LINK= ${PORTNAME}20${PKGNAMESUFFI USE_BISON= build USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf aclocal libtool Modified: head/databases/firebird21-server/Makefile ============================================================================== --- head/databases/firebird21-server/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/databases/firebird21-server/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -23,6 +23,7 @@ LATEST_LINK= ${PORTNAME}21${PKGNAMESUFFI USE_BISON= build USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf aclocal libtool Modified: head/databases/gnome-db/Makefile ============================================================================== --- head/databases/gnome-db/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/databases/gnome-db/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -17,6 +17,7 @@ MAINTAINER= gnome@FreeBSD.org COMMENT= Provide uniform access to data sources for the GNOME environment USE_BZIP2= yes +USE_GCC= any USE_GNOME= gnomehack gnomeprefix gnomehier libgda USE_GMAKE= yes USE_GETTEXT= yes Modified: head/databases/libgda3/Makefile ============================================================================== --- head/databases/libgda3/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/databases/libgda3/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -26,6 +26,7 @@ LIBGDA3_SLAVE?= no LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt USE_AUTOTOOLS= libtool +USE_GCC= any USE_GETTEXT= yes USE_GMAKE= yes USE_GNOME= gnomeprefix gnomehack glib20 libxslt intlhack referencehack Modified: head/databases/mird/Makefile ============================================================================== --- head/databases/mird/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/databases/mird/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -20,6 +20,7 @@ COMMENT= A free database library with tr WRKSRC= ${WRKDIR}/${DISTNAME} USE_AUTOTOOLS= autoconf:env +USE_GCC= any USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --without-debug Modified: head/devel/allegro/Makefile ============================================================================== --- head/devel/allegro/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/allegro/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -11,6 +11,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A cross-platform library for games and multimedia programming USE_AUTOTOOLS= autoconf +USE_GCC= any USE_GMAKE= yes USE_XORG= x11 xpm xext xcursor xxf86vm xxf86dga USE_LDCONFIG= yes Modified: head/devel/argp-standalone/Makefile ============================================================================== --- head/devel/argp-standalone/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/argp-standalone/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -16,6 +16,7 @@ MASTER_SITE_SUBDIR= sem MAINTAINER= sem@FreeBSD.org COMMENT= Standalone version of arguments parsing functions from GLIBC +USE_GCC= any GNU_CONFIGURE= yes USE_AUTOTOOLS= aclocal autoconf automake libtool AUTOMAKE_ARGS= -c -a Modified: head/devel/avr-binutils/Makefile ============================================================================== --- head/devel/avr-binutils/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/avr-binutils/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ COMMENT= GNU binutils for Atmel AVR 8-bi WRKSRC= ${WRKDIR}/binutils-${PORTVERSION} USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes USE_GETTEXT= yes CONFIGURE_ARGS= --target=avr Modified: head/devel/bullet/Makefile ============================================================================== --- head/devel/bullet/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/bullet/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -17,6 +17,7 @@ COMMENT= 3D collision detection and rigi USE_GL= gl glu glut USE_XORG= x11 +USE_GCC= any MAKE_JOBS_SAFE= yes USE_CMAKE= yes Modified: head/devel/gdb66/Makefile ============================================================================== --- head/devel/gdb66/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/gdb66/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -27,6 +27,7 @@ OPTIONS= INSIGHT "Build the Tcl/Tk GUI ( CONFLICTS?= gdb-[7-9]* MAKE_JOBS_SAFE= yes USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes USE_GETTEXT= yes USE_ICONV= yes Modified: head/devel/libYGP/Makefile ============================================================================== --- head/devel/libYGP/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/libYGP/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp boost_filesystem:${PORTSDIR}/devel/boost-libs USE_BZIP2= yes +USE_GCC= any GNU_CONFIGURE= yes USE_GNOME= gnomehack USE_LDCONFIG= yes Modified: head/devel/libhid/Makefile ============================================================================== --- head/devel/libhid/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/libhid/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -16,6 +16,7 @@ COMMENT= A user-space HID access library MAN1= libhid-detach-device.1 MANCOMPRESSED= no +USE_GCC= any USE_LDCONFIG= yes USE_GMAKE= yes USE_PYTHON= yes Modified: head/devel/liboil/Makefile ============================================================================== --- head/devel/liboil/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/liboil/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -17,6 +17,7 @@ COMMENT= Library of optimized inner loop LICENSE= BSD LICENSE_FILE= ${WRKSRC}/COPYING +USE_GCC= any USE_GNOME= pkgconfig gnomehack ltverhack USE_AUTOTOOLS= libtool USE_LDCONFIG= yes Modified: head/devel/libopensync/Makefile ============================================================================== --- head/devel/libopensync/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/libopensync/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,7 @@ RUN_DEPENDS= swig1.3:${PORTSDIR}/devel/s CONFLICTS= libopensync-0.22* USE_BZIP2= yes +USE_GCC= any USE_CMAKE= yes CMAKE_ARGS+= -Wno-dev USE_GNOME= glib20 libxml2 Modified: head/devel/mingw32-binutils/Makefile ============================================================================== --- head/devel/mingw32-binutils/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/mingw32-binutils/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,7 @@ COMMENT= GNU Binutils for Windows cross- BINUTILVERSION= 2.22 USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --target=${PKGNAMEPREFIX:S/-$//} \ Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/ncurses/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -37,6 +37,7 @@ OPTIONS= EXTCOLORS "Enable 256-color sup CONFIGURE_ENV= gnat_exists="no" +USE_GCC= any USE_LDCONFIG= yes WIDEC_WRKSRC= ${WRKSRC}/build.widec Modified: head/devel/omniORB/Makefile ============================================================================== --- head/devel/omniORB/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/omniORB/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -13,6 +13,7 @@ MAINTAINER= sem@FreeBSD.org COMMENT= A robust high performance CORBA ORB for C++ and Python PLIST_SUB+= SONUM=${PORTVERSION:C/.*\.//} +USE_GCC= any USE_GMAKE= yes GNU_CONFIGURE= yes USE_PYTHON= yes Modified: head/devel/p5-EV/Makefile ============================================================================== --- head/devel/p5-EV/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/p5-EV/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ COMMENT= Perl interface to libev, a high RUN_DEPENDS= p5-common-sense>=0:${PORTSDIR}/devel/p5-common-sense BUILD_DEPENDS= p5-common-sense>=0:${PORTSDIR}/devel/p5-common-sense +USE_GCC= any PERL_CONFIGURE= yes CONFIGURE_ENV= PERL_MM_USE_DEFAULT="YES" Modified: head/devel/psptoolchain-binutils/Makefile ============================================================================== --- head/devel/psptoolchain-binutils/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/psptoolchain-binutils/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -17,6 +17,7 @@ MAINTAINER= tphilipp@potion-studios.com COMMENT= PlayStation Portable development toolchain ${PORTNAME} USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes MAKE_JOBS_SAFE= yes Modified: head/devel/py-game/Makefile ============================================================================== --- head/devel/py-game/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/py-game/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ LIB_DEPENDS= smpeg:${PORTSDIR}/multimedi RUN_DEPENDS= ${PYNUMPY} USE_SDL= ttf image mixer sdl +USE_GCC= any USE_PYTHON= yes USE_PYDISTUTILS=yes Modified: head/devel/simgear/Makefile ============================================================================== --- head/devel/simgear/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/simgear/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -20,6 +20,7 @@ LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/j osg:${PORTSDIR}/graphics/osg USE_BZIP2= yes +USE_GCC= any USE_XORG= ice sm x11 xext xi xt xmu USE_OPENAL= al alut USE_GL= gl glu glut Modified: head/devel/skalibs/Makefile ============================================================================== --- head/devel/skalibs/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/skalibs/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -13,6 +13,8 @@ MASTER_SITES= http://www.skarnet.org/sof MAINTAINER= dhn@FreeBSD.org COMMENT= General purpose C libraries used by skarnet.org software +USE_GCC= any + LDFLAGS?= -s STRIPFLAGS?= -x Modified: head/devel/xmltooling/Makefile ============================================================================== --- head/devel/xmltooling/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/devel/xmltooling/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,7 @@ LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-log4shib=${LOCALBASE} --with-openssl=${OPENSSLBASE} --with-curl=${LOCALBASE} --disable-doxygen-doc +USE_GCC= any USE_GMAKE= yes USE_LDCONFIG= yes USE_OPENSSL= yes Modified: head/emulators/virtualbox-ose-legacy/Makefile ============================================================================== --- head/emulators/virtualbox-ose-legacy/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/emulators/virtualbox-ose-legacy/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -36,6 +36,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING WRKSRC= ${WRKDIR}/VirtualBox-${PORTVERSION}_OSE ONLY_FOR_ARCHS= i386 amd64 USE_CDRTOOLS= yes +USE_GCC= any USE_GNOME= libidl USE_BZIP2= yes USE_PYTHON= yes Modified: head/emulators/virtualbox-ose/Makefile ============================================================================== --- head/emulators/virtualbox-ose/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/emulators/virtualbox-ose/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -35,6 +35,7 @@ RUN_DEPENDS= /boot/modules/vboxdrv.ko:${ WRKSRC= ${WRKDIR}/VirtualBox-${PORTVERSION} ONLY_FOR_ARCHS= i386 amd64 USE_CDRTOOLS= yes +USE_GCC= any USE_GNOME= libidl USE_BZIP2= yes USE_PYTHON= yes Modified: head/finance/libofx/Makefile ============================================================================== --- head/finance/libofx/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/finance/libofx/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -13,6 +13,7 @@ LIB_DEPENDS= curl.6:${PORTSDIR}/ftp/curl xml\\+\\+-2.6.2:${PORTSDIR}/textproc/libxml++26 \ osp.5:${PORTSDIR}/textproc/opensp +USE_GCC= any USE_ICONV= yes USE_GMAKE= yes USE_AUTOTOOLS= aclocal autoheader automake autoconf libtool Modified: head/graphics/Coin/Makefile ============================================================================== --- head/graphics/Coin/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/Coin/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -17,6 +17,7 @@ COMMENT= C++ 3D graphics library based o LIB_DEPENDS= simage.27:${PORTSDIR}/graphics/simage +USE_GCC= any USE_OPENAL= al USE_GL= yes USE_XORG= xt x11 Modified: head/graphics/agg/Makefile ============================================================================== --- head/graphics/agg/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/agg/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ LICENSE= GPLv2 LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +USE_GCC= any USE_XORG= x11 USE_GNOME= gnomehack USE_SDL= sdl Modified: head/graphics/devil/Makefile ============================================================================== --- head/graphics/devil/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/devil/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -29,6 +29,7 @@ OPTIONS= JPEG "Enable JPEG support" on WRKSRC= ${WRKDIR}/${DISTNAME:L} +USE_GCC= any USE_GNOME= pkgconfig USE_AUTOTOOLS= aclocal autoheader automake autoconf libtool ACLOCAL_ARGS= -I m4 -I ${LOCALBASE}/share/aclocal Modified: head/graphics/iulib/Makefile ============================================================================== --- head/graphics/iulib/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/iulib/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -23,6 +23,7 @@ OPTIONS= SDL "Enable SDL for graphical d VIDIO "Enable Video Input/Output (using ffmpeg)" off MAKE_JOBS_SAFE= yes +USE_GCC= any USE_PYTHON_BUILD= yes USE_AUTOTOOLS= libtool aclocal automake autoconf ACLOCAL_ARGS= --acdir=${ACLOCAL_DIR} -I${LOCALBASE}/share/aclocal Modified: head/graphics/opendx/Makefile ============================================================================== --- head/graphics/opendx/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/opendx/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -22,6 +22,7 @@ LIB_DEPENDS= MagickWand.5:${PORTSDIR}/gr USE_XORG= xinerama xext xpm xmu sm ice USE_BISON= build +USE_GCC= any USE_GL= yes USE_MOTIF= yes USE_AUTOTOOLS= libtool Modified: head/graphics/osg/Makefile ============================================================================== --- head/graphics/osg/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/osg/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -22,6 +22,7 @@ LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphic CONFLICTS= osg-devel-[0-9]* +USE_GCC= any USE_ZIP= yes USE_CMAKE= yes USE_GL= gl glu Modified: head/graphics/podofo/Makefile ============================================================================== --- head/graphics/podofo/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/podofo/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -27,6 +27,7 @@ IMPOSE_DESC= Build impose tool (needs Lu USE_CMAKE= yes CMAKE_ARGS= -DPODOFO_BUILD_SHARED:BOOL=TRUE \ -DPODOFO_BUILD_STATIC:BOOL=FALSE +USE_GCC= any USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes Modified: head/graphics/tgif/Makefile ============================================================================== --- head/graphics/tgif/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/tgif/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -22,6 +22,7 @@ RUN_DEPENDS= giftopnm:${PORTSDIR}/graphi OPTIONS= NLS "Enable native language support" on \ A4SIZE "Set default paper size to A4" off +USE_GCC= any USE_IMAKE= yes PORTDOCS= HISTORY README USE_XORG= x11 xext xt sm ice Modified: head/graphics/urt/Makefile ============================================================================== --- head/graphics/urt/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/urt/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -24,6 +24,7 @@ LIB_DEPENDS= netpbm.1:${PORTSDIR}/graphi NO_WRKSUBDIR= yes +USE_GCC= any USE_XORG= x11 xext HAS_CONFIGURE= yes CONFIGURE_SCRIPT=Configure Modified: head/graphics/vcg/Makefile ============================================================================== --- head/graphics/vcg/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/vcg/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -18,6 +18,7 @@ COMMENT= A Visualization Tool for compil BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake +USE_GCC= any USE_XORG= x11 xext MANL= pbmrot90.l pbmshift.l pbm2hp.l vcgdemomaker.l vcg.l xvcg.l Modified: head/graphics/xli/Makefile ============================================================================== --- head/graphics/xli/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/xli/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,7 @@ LIB_DEPENDS= png15:${PORTSDIR}/graphics/ jpeg.11:${PORTSDIR}/graphics/jpeg USE_XORG= xi +USE_GCC= any USE_IMAKE= yes WRKSRC= ${WRKDIR}/xli-${XLI_SNAPVER} Modified: head/graphics/xv/Makefile ============================================================================== --- head/graphics/xv/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/graphics/xv/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -27,6 +27,7 @@ LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphic png15:${PORTSDIR}/graphics/png \ jasper.4:${PORTSDIR}/graphics/jasper +USE_GCC= any USE_IMAKE= yes USE_XORG= xext x11 xt .if !defined(NOMAN) Modified: head/japanese/Wnn7-lib/Makefile ============================================================================== --- head/japanese/Wnn7-lib/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/japanese/Wnn7-lib/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -16,6 +16,7 @@ EXTRACT_SUFX= .tgz MAINTAINER= hrs@FreeBSD.org COMMENT= Wnn7 client library +USE_GCC= any USE_IMAKE= yes USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/src Modified: head/japanese/canna-lib/Makefile ============================================================================== --- head/japanese/canna-lib/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/japanese/canna-lib/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -18,6 +18,7 @@ MAINTAINER= hrs@FreeBSD.org COMMENT= A Kana-to-Kanji conversion system, library part USE_BZIP2= yes +USE_GCC= any USE_IMAKE= yes USE_LDCONFIG= yes NO_INSTALL_MANPAGES=yes Modified: head/japanese/groff/Makefile ============================================================================== --- head/japanese/groff/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/japanese/groff/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -30,6 +30,7 @@ RUN_DEPENDS= pnmcut:${PORTSDIR}/graphics TMAC_DATE= 20030521 TMAC_DISTNAME= tmac-${TMAC_DATE}_2 +USE_GCC= any GNU_CONFIGURE= yes USE_GMAKE= yes USE_ICONV= yes Modified: head/japanese/sj3-lib/Makefile ============================================================================== --- head/japanese/sj3-lib/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/japanese/sj3-lib/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ PATCH_DIST_STRIP= -p1 MAINTAINER= hrs@FreeBSD.org COMMENT= A Japanese input method, library part +USE_GCC= any USE_IMAKE= yes USE_LDCONFIG= yes NO_INSTALL_MANPAGES= yes Modified: head/japanese/skk-tools/Makefile ============================================================================== --- head/japanese/skk-tools/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/japanese/skk-tools/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -22,6 +22,7 @@ OPTIONS_DEFINE= EXPR2 OPTIONS_DEFAULT= EXPR2 EXPR2_DESC= Build skkdic-expr2 (needs glib-2.x) +USE_GCC= any GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes Modified: head/japanese/texfamily/Makefile ============================================================================== --- head/japanese/texfamily/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/japanese/texfamily/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -36,6 +36,7 @@ LIB_DEPENDS= png15:${PORTSDIR}/graphics/ wwwcore.1:${PORTSDIR}/www/libwww \ t1.5:${PORTSDIR}/devel/t1lib +USE_GCC= any GNU_CONFIGURE= yes CONFIGURE_ARGS= ${KANJICODE} CONFIGURE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ Modified: head/lang/clisp/Makefile ============================================================================== --- head/lang/clisp/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/lang/clisp/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,7 @@ LIB_DEPENDS= readline.6:${PORTSDIR}/deve LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/GNU-GPL +USE_GCC= any USE_ICONV= yes USE_LDCONFIG= yes USE_GHOSTSCRIPT_BUILD= yes Modified: head/lang/gcc42/Makefile ============================================================================== --- head/lang/gcc42/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/lang/gcc42/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -30,6 +30,7 @@ LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX NOT_FOR_ARCHS= arm powerpc USE_BISON= build USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes USE_ICONV= yes USE_PERL5_BUILD=yes Modified: head/lang/gcc44/Makefile ============================================================================== --- head/lang/gcc44/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/lang/gcc44/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -29,6 +29,7 @@ ONLY_FOR_ARCHS= amd64 i386 sparc64 USE_BINUTILS= yes USE_BISON= build USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes USE_ICONV= yes USE_PERL5_BUILD=yes Modified: head/lang/ghc/Makefile ============================================================================== --- head/lang/ghc/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/lang/ghc/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -27,6 +27,7 @@ EXAMPLESDIR= ${PREFIX}/share/examples/gh CONFLICTS= ghc-6.8.* ghc-6.10.* ghc-6.12.* ghc-7.0.* ghc-7.2.* USE_BZIP2= yes +USE_GCC= any LIB_DEPENDS+= gmp.10:${PORTSDIR}/math/gmp USE_PERL5_BUILD= yes Modified: head/lang/gnatdroid-binutils/Makefile ============================================================================== --- head/lang/gnatdroid-binutils/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/lang/gnatdroid-binutils/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,7 @@ BUILD_DEPENDS= gnatdroid-sysroot>=9:${PO RUN_DEPENDS:= ${BUILD_DEPENDS} USE_BZIP2= YES +USE_GCC= any USE_GMAKE= YES HAS_CONFIGURE= YES NO_MTREE= YES Modified: head/lang/q/Makefile ============================================================================== --- head/lang/q/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/lang/q/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -25,6 +25,7 @@ LIB_DEPENDS= MagickWand.5:${PORTSDIR}/gr ggi.2:${PORTSDIR}/graphics/libggi USE_BISON= build +USE_GCC= any USE_ICONV= yes USE_TK= 84+ USE_LDCONFIG= yes Modified: head/lang/sdcc/Makefile ============================================================================== --- head/lang/sdcc/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/lang/sdcc/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -22,6 +22,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boos CONFLICTS_INSTALL= sdcc-[0-9]* GNU_CONFIGURE= yes USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes OPTIONS_DEFINE= DEVLIB DOCS HC08 MCS51 PIC UCSIM Z80 Modified: head/lang/v8/Makefile ============================================================================== --- head/lang/v8/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/lang/v8/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -16,6 +16,7 @@ COMMENT= Google\'s open source JavaScrip LIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo +USE_GCC= any USE_GMAKE= yes USE_PYTHON= 2.7+ USE_XZ= yes Modified: head/mail/courier/Makefile ============================================================================== --- head/mail/courier/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/mail/courier/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -62,6 +62,7 @@ WITH_TRANSPORT= local esmtp dsn USE_AUTOTOOLS= libtool aclocal USE_BZIP2= yes +USE_GCC= any USE_FAM= yes USE_GETTEXT= yes USE_GMAKE= yes Modified: head/mail/ezmlm/Makefile ============================================================================== --- head/mail/ezmlm/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/mail/ezmlm/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -20,6 +20,7 @@ MASTER_SITES= http://cr.yp.to/software/ MAINTAINER= ports@FreeBSD.org COMMENT= An easy-to-use, high-speed mailing list manager for qmail +USE_GCC= any USE_QMAIL_RUN= yes CONFLICTS= ezmlm-idx-* Modified: head/mail/metamail/Makefile ============================================================================== --- head/mail/metamail/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/mail/metamail/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,8 @@ OPTIONS_DEFINE= X11 OPTIONS_DEFAULT= X11 X11_DESC= X11 hebrew font support +USE_GCC= any + WRKSRC= ${WRKDIR}/${DISTNAME}/src MAN1= audiocompose.1 audiosend.1 extcompose.1 \ getfilename.1 mailto-hebrew.1 mailto.1 metamail.1 \ Modified: head/math/gnuplot/Makefile ============================================================================== --- head/math/gnuplot/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/math/gnuplot/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -33,6 +33,8 @@ OPTIONS= X11 "Enable X11 support" on \ WX "Enable WX support" on \ CAIRO "Enable CAIRO support" on +USE_GCC= any + MAN1= gnuplot.1 lasergnu.1 INFO= gnuplot Modified: head/math/grace/Makefile ============================================================================== --- head/math/grace/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/math/grace/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -31,6 +31,7 @@ LIB_DEPENDS= t1:${PORTSDIR}/devel/t1lib XmHTML.1:${PORTSDIR}/x11-toolkits/xmhtml USE_MOTIF= yes +USE_GCC= any USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-grace-home=${DATADIR} \ Modified: head/math/igraph/Makefile ============================================================================== --- head/math/igraph/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/math/igraph/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -17,6 +17,7 @@ LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp xml2.5:${PORTSDIR}/textproc/libxml2 GNU_CONFIGURE= yes +USE_GCC= any USE_GMAKE= yes CONFIGURE_ARGS+= --enable-gmp CFLAGS+= -I${LOCALBASE}/include Modified: head/math/wfmath/Makefile ============================================================================== --- head/math/wfmath/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/math/wfmath/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -13,6 +13,7 @@ MASTER_SITES= SF/worldforge/${PORTNAME}% MAINTAINER= oliver@FreeBSD.org COMMENT= Worldforge math library +USE_GCC= any USE_GMAKE= yes USE_GNOME= pkgconfig gnomehack USE_LDCONFIG= yes Modified: head/misc/sword/Makefile ============================================================================== --- head/misc/sword/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/misc/sword/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -23,6 +23,7 @@ BUILD_DEPENDS= cppunit-config:${PORTSDIR MAKE_JOBS_SAFE= yes +USE_GCC= any USE_GNOME= pkgconfig USE_GMAKE= yes GNU_CONFIGURE= yes Modified: head/multimedia/xanim/Makefile ============================================================================== --- head/multimedia/xanim/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/multimedia/xanim/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -21,6 +21,7 @@ COMMENT= Play most popular animation for NO_CDROM= redistributed without fee +USE_GCC= any USE_IMAKE= yes USE_XORG= xext xt sm ice xext x11 MAN1= xanim.1 Modified: head/net-mgmt/flow-tools/Makefile ============================================================================== --- head/net-mgmt/flow-tools/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/net-mgmt/flow-tools/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -22,6 +22,7 @@ OPTIONS= MYSQL "Enable MySQL support" o CONFLICTS= flow-tools-ng-[0-9]* +USE_GCC= any USE_PYTHON_RUN= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+=--localstatedir="${PREFIX}" Modified: head/net/asterisk/Makefile ============================================================================== --- head/net/asterisk/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/net/asterisk/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -29,6 +29,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-gsm=${LOCALBASE} LDFLAGS+= -L${LOCALBASE}/lib CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/openh323 +USE_GCC= any USE_GMAKE= yes USE_GNOME= libxml2 USE_BISON= build Modified: head/net/asterisk10/Makefile ============================================================================== --- head/net/asterisk10/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/net/asterisk10/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -27,6 +27,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-gsm=${LOCALBASE} LDFLAGS+= -L${LOCALBASE}/lib CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/openh323 +USE_GCC= any USE_GMAKE= yes USE_GNOME= libxml2 USE_BISON= build Modified: head/net/asterisk14/Makefile ============================================================================== --- head/net/asterisk14/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/net/asterisk14/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -30,6 +30,7 @@ CPPFLAGS+= -I${LOCALBASE}/include -I${LO LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --with-gsm=${LOCALBASE} CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/openh323 +USE_GCC= any USE_GMAKE= yes USE_BISON= build USE_RC_SUBR= asterisk Modified: head/net/boinc-client/Makefile ============================================================================== --- head/net/boinc-client/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/net/boinc-client/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -14,6 +14,7 @@ MASTER_SITE_SUBDIR= pav MAINTAINER= pav@FreeBSD.org COMMENT= Berkeley Open Infrastructure for Network Computing client +USE_GCC= any USE_XZ= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/net/freeswitch-core-devel/Makefile ============================================================================== --- head/net/freeswitch-core-devel/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/net/freeswitch-core-devel/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -47,6 +47,7 @@ USE_AUTOTOOLS= autoconf:env automake:env USE_PERL5_BUILD=yes USE_BISON= both +USE_GCC= any USE_PKGCONFIG= yes USE_GMAKE= yes SUB_FILES= pkg-install Modified: head/net/freeswitch-core/Makefile ============================================================================== --- head/net/freeswitch-core/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/net/freeswitch-core/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -47,6 +47,7 @@ USE_AUTOTOOLS= autoconf:env automake:env USE_PERL5_BUILD=yes USE_BISON= both +USE_GCC= any USE_PKGCONFIG= yes USE_GMAKE= yes SUB_FILES= pkg-install pkg-message Modified: head/news/cnews/Makefile ============================================================================== --- head/news/cnews/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/news/cnews/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -40,6 +40,8 @@ LICENSE= BSD LICENSE_FILE= ${WRKSRC}/COPYRIGHT MAKE_JOBS_UNSAFE= yes +USE_GCC= any + DIST_SUBDIR= ${DISTNAME} NO_WRKSUBDIR= yes MAKEFILE= makefile Modified: head/palm/jpilot/Makefile ============================================================================== --- head/palm/jpilot/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/palm/jpilot/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -18,6 +18,7 @@ COMMENT= Desktop Organizer Software for LIB_DEPENDS= pisock.9:${PORTSDIR}/palm/pilot-link +USE_GCC= any USE_GMAKE= yes USE_GNOME= gnomehier GNU_CONFIGURE= yes Modified: head/print/transfig/Makefile ============================================================================== --- head/print/transfig/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/print/transfig/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -20,6 +20,7 @@ LIB_DEPENDS= png15:${PORTSDIR}/graphics/ MAKE_JOBS_SAFE= yes +USE_GCC= any USE_GHOSTSCRIPT_RUN= yes USE_IMAKE= yes USE_XORG= xpm Modified: head/science/cdcl/Makefile ============================================================================== --- head/science/cdcl/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/science/cdcl/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -16,6 +16,7 @@ DISTNAME= dcl-${PORTVERSION}-C MAINTAINER= murashin@gfd-dennou.org COMMENT= Scientific graphic library for geoscience +USE_GCC= any USE_XORG= x11 xext USE_GNOME= gtk20 gdkpixbuf2 GNU_CONFIGURE= yes Modified: head/security/trousers/Makefile ============================================================================== --- head/security/trousers/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/security/trousers/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -10,6 +10,7 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= The open-source TCG Software Stack +USE_GCC= any USE_GMAKE= YES USE_ICONV= YES USE_OPENSSL= YES Modified: head/sysutils/lsof/Makefile ============================================================================== --- head/sysutils/lsof/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/sysutils/lsof/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -40,6 +40,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/${SRCBALL .endif USE_BZIP2= yes +USE_GCC= any HAS_CONFIGURE= yes .include Modified: head/textproc/jade/Makefile ============================================================================== --- head/textproc/jade/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/textproc/jade/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -25,6 +25,7 @@ RUN_DEPENDS= ${XMLCATMGR}:${PORTSDIR}/te CONFLICTS= sp-1.* USE_AUTOTOOLS= libtool +USE_GCC= any USE_GMAKE= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/textproc/openjade/Makefile ============================================================================== --- head/textproc/openjade/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/textproc/openjade/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -18,6 +18,7 @@ COMMENT= Object-oriented SGML/XML parser LIB_DEPENDS= osp.5:${PORTSDIR}/textproc/opensp RUN_DEPENDS= ${XMLCATMGR}:${PORTSDIR}/textproc/xmlcatmgr +USE_GCC= any USE_GMAKE= yes USE_LDCONFIG= yes USE_PERL5= yes Modified: head/textproc/scim/Makefile ============================================================================== --- head/textproc/scim/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/textproc/scim/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -17,6 +17,7 @@ COMMENT= Smart Common Input Method platf USE_GNOME= gnomehack gnomehier gtk20 intlhack USE_AUTOTOOLS= libtool +USE_GCC= any USE_ICONV= yes USE_GMAKE= yes USE_XORG= x11 xpm Modified: head/textproc/senna/Makefile ============================================================================== --- head/textproc/senna/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/textproc/senna/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -16,6 +16,7 @@ MAINTAINER= kuriyama@FreeBSD.org COMMENT= Embeddable Fulltext Search Engine GNU_CONFIGURE= YES +USE_GCC= any USE_GMAKE= YES USE_LDCONFIG= YES CONFIGURE_ARGS= --with-sennahome=${SENNA_HOME} Modified: head/www/libxul19/Makefile ============================================================================== --- head/www/libxul19/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/www/libxul19/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -23,6 +23,7 @@ GECKO_PLIST_PRE_DIRS= lib/${MOZILLA}/bin LATEST_LINK= libxul19 USE_AUTOTOOLS= autoconf213:env +USE_GCC= any WANT_GNOME= yes WANT_PERL= yes ALL_TARGET= default Modified: head/x11-clocks/asclock/Makefile ============================================================================== --- head/x11-clocks/asclock/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/x11-clocks/asclock/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ COMMENT= Afterstep clock with some langu CONFLICTS= asclock-gtk-[0-9]* asclock-xlib-[0-9]* +USE_GCC= any USE_IMAKE= yes USE_XORG= xpm xext x11 MAN1= asclock.1 Modified: head/x11-toolkits/Xaw3d/Makefile ============================================================================== --- head/x11-toolkits/Xaw3d/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/x11-toolkits/Xaw3d/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -14,6 +14,7 @@ COMMENT= A 3-D Athena Widget set that lo LICENSE= MIT WRKSRC= ${WRKDIR}/xc/lib/Xaw3d +USE_GCC= any USE_IMAKE= yes USE_XORG= x11 xext xmu xt sm ice xpm USE_LDCONFIG= yes Modified: head/x11-toolkits/p5-Alien-wxWidgets/Makefile ============================================================================== --- head/x11-toolkits/p5-Alien-wxWidgets/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/x11-toolkits/p5-Alien-wxWidgets/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -19,6 +19,7 @@ BUILD_DEPENDS= p5-ExtUtils-CBuilder>=0:$ OPTIONS= UNICODE "Build with Unicode support" on +USE_GCC= any USE_WX= 2.6+ WX_COMPS= wx contrib PERL_MODBUILD= yes Modified: head/x11-toolkits/tk86/Makefile ============================================================================== --- head/x11-toolkits/tk86/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/x11-toolkits/tk86/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -15,6 +15,7 @@ LICENSE= BSD LICENSE_FILE= ${WRKSRC}/../license.terms LATEST_LINK?= tk86 +USE_GCC= any USE_XORG= x11 USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//}/unix Modified: head/x11-toolkits/wxgtk29/Makefile ============================================================================== --- head/x11-toolkits/wxgtk29/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/x11-toolkits/wxgtk29/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -24,6 +24,7 @@ LIB_DEPENDS+= png15:${PORTSDIR}/graphics webkitgtk-1.0.0:${PORTSDIR}/www/webkit-gtk2 USE_BZIP2= yes +USE_GCC= any USE_XORG= x11 sm xxf86vm xinerama USE_GL= glu USE_GMAKE= yes Modified: head/x11/eterm/Makefile ============================================================================== --- head/x11/eterm/Makefile Tue Oct 9 22:08:29 2012 (r305609) +++ head/x11/eterm/Makefile Tue Oct 9 22:12:13 2012 (r305610) @@ -15,6 +15,7 @@ BUILD_DEPENDS= man2html:${PORTSDIR}/text LIB_DEPENDS= ast:${PORTSDIR}/devel/libast USE_AUTOTOOLS= libtool +USE_GCC= any USE_LDCONFIG= yes CONFIGURE_ARGS?=--enable-trans --enable-utmp \ --enable-xim --with-theme-update \ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:19:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0155E5A; Tue, 9 Oct 2012 22:19:55 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 999818FC14; Tue, 9 Oct 2012 22:19: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 q99MJtIu097975; Tue, 9 Oct 2012 22:19:55 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MJt4Q097972; Tue, 9 Oct 2012 22:19:55 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210092219.q99MJt4Q097972@svn.freebsd.org> From: Ryan Steinmetz Date: Tue, 9 Oct 2012 22:19:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305611 - head/security/stunnel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:19:55 -0000 Author: zi Date: Tue Oct 9 22:19:55 2012 New Revision: 305611 URL: http://svn.freebsd.org/changeset/ports/305611 Log: - Update to 4.54 Modified: head/security/stunnel/Makefile head/security/stunnel/distinfo Modified: head/security/stunnel/Makefile ============================================================================== --- head/security/stunnel/Makefile Tue Oct 9 22:12:13 2012 (r305610) +++ head/security/stunnel/Makefile Tue Oct 9 22:19:55 2012 (r305611) @@ -6,7 +6,7 @@ # PORTNAME= stunnel -PORTVERSION= 4.53 +PORTVERSION= 4.54 CATEGORIES= security MASTER_SITES= ftp://ftp.stunnel.org/stunnel/%SUBDIR%/ \ http://mirrors.zerg.biz/stunnel/%SUBDIR%/ \ Modified: head/security/stunnel/distinfo ============================================================================== --- head/security/stunnel/distinfo Tue Oct 9 22:12:13 2012 (r305610) +++ head/security/stunnel/distinfo Tue Oct 9 22:19:55 2012 (r305611) @@ -1,2 +1,2 @@ -SHA256 (stunnel-4.53.tar.gz) = 3e640aa4c96861d10addba758b66e99e7c5aec8697764f2a59ca2268901b8e57 -SIZE (stunnel-4.53.tar.gz) = 529720 +SHA256 (stunnel-4.54.tar.gz) = b7e1b9e63569574dbdabee8af90b8ab88db3fe13dcb1268d59a1408c56e6de7b +SIZE (stunnel-4.54.tar.gz) = 535202 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:24:39 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 057A5EEF; Tue, 9 Oct 2012 22:24:39 +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 E21B98FC0A; Tue, 9 Oct 2012 22:24:38 +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 q99MOcOW098685; Tue, 9 Oct 2012 22:24:38 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MOc24098683; Tue, 9 Oct 2012 22:24:38 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210092224.q99MOc24098683@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 22:24:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305612 - head/multimedia/libva-vdpau-driver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:24:39 -0000 Author: madpilot Date: Tue Oct 9 22:24:38 2012 New Revision: 305612 URL: http://svn.freebsd.org/changeset/ports/305612 Log: Update Home Page. Noticed by: kwm Modified: head/multimedia/libva-vdpau-driver/pkg-descr (contents, props changed) Modified: head/multimedia/libva-vdpau-driver/pkg-descr ============================================================================== --- head/multimedia/libva-vdpau-driver/pkg-descr Tue Oct 9 22:19:55 2012 (r305611) +++ head/multimedia/libva-vdpau-driver/pkg-descr Tue Oct 9 22:24:38 2012 (r305612) @@ -1,3 +1,3 @@ A VDPAU-based backend for VAAPI. -WWW: http://www.splitted-desktop.com/~gbeauchesne/ +WWW: http://cgit.freedesktop.org/vaapi/vdpau-driver/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:24:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FDECF19; Tue, 9 Oct 2012 22:24:55 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2039F8FC08; Tue, 9 Oct 2012 22:24: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 q99MOsC0098778; Tue, 9 Oct 2012 22:24:54 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MOsvI098775; Tue, 9 Oct 2012 22:24:54 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210092224.q99MOsvI098775@svn.freebsd.org> From: Ryan Steinmetz Date: Tue, 9 Oct 2012 22:24:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305613 - head/multimedia/xmms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:24:55 -0000 Author: zi Date: Tue Oct 9 22:24:54 2012 New Revision: 305613 URL: http://svn.freebsd.org/changeset/ports/305613 Log: - Resolve issue on amd64 [1] - Pacify portlint PR: ports/171919 [1] Submitted by: Tomasz CEDRO Approved by: Chris Petrik (maintainer) Modified: head/multimedia/xmms/Makefile Modified: head/multimedia/xmms/Makefile ============================================================================== --- head/multimedia/xmms/Makefile Tue Oct 9 22:24:38 2012 (r305612) +++ head/multimedia/xmms/Makefile Tue Oct 9 22:24:54 2012 (r305613) @@ -41,11 +41,11 @@ VISUALIZATION_PLUGINS= blur_scope sanaly OPTIONS_DEFINE= IPV6 MIKMOD SIMD SPEC VFILEINFO VORBIS RUSXMMS_PATCHES OPTIONS_DEFAULT= IPV6 MIKMOD SIMD VORBIS +OPTIONS_EXCLUDE_amd64= SIMD SPEC_DESC= Visualization opengl_spectrum VFILEINFO_DESC= Enable Extended Vorbis Fileinfo RUSXMMS_PATCHES_DESC= Custom IDv3 patches - .include .if ${PORT_OPTIONS:MIPV6} @@ -60,8 +60,8 @@ DISTFILES+= RusXMMS2-csa${ENC_PATCHLEVEL MASTER_SITES+= SF/rusxmms/rusxmms2/csa41%20%28${PORTVERSION}%29:enc MASTER_SITE_SUBDIR+= rusxmms/:enc -LIB_DEPENDS+= rcc.2:${PORTSDIR}/devel/librcc -LIB_DEPENDS+= rcd.1:${PORTSDIR}/devel/librcd +LIB_DEPENDS+= rcc:${PORTSDIR}/devel/librcc +LIB_DEPENDS+= rcd:${PORTSDIR}/devel/librcd .endif .if ${PORT_OPTIONS:MVFILEINFO} @@ -69,7 +69,7 @@ CFLAGS+= -DALL_VORBIS_TAGS .endif .if ${PORT_OPTIONS:MMIKMOD} -LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod +LIB_DEPENDS+= mikmod:${PORTSDIR}/audio/libmikmod INPUT_PLUGINS+= mikmod PLIST_SUB+= MIKMODPLUGIN:="" .else @@ -78,7 +78,7 @@ PLIST_SUB+= MIKMODPLUGIN:="@comment " .endif .if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis +LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis INPUT_PLUGINS+= vorbis PLIST_SUB+= VORBISPLUGIN:="" .else @@ -95,10 +95,6 @@ CONFIGURE_ARGS+= --disable-esd PLIST_SUB+= ESDPLUGIN:="@comment " .endif -.if ${ARCH} != "i386" -${UNIQUENAME}_UNSET+= SIMD -.endif - .if ${PORT_OPTIONS:MSIMD} CONFIGURE_ARGS+= --enable-simd .else From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:31:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D354A44A; Tue, 9 Oct 2012 22:31:09 +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 A3C578FC24; Tue, 9 Oct 2012 22:31:09 +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 q99MV99Z099763; Tue, 9 Oct 2012 22:31:09 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MV9fO099759; Tue, 9 Oct 2012 22:31:09 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201210092231.q99MV9fO099759@svn.freebsd.org> From: Max Brazhnikov Date: Tue, 9 Oct 2012 22:31:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305614 - head/print/kpdftool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:31:09 -0000 Author: makc Date: Tue Oct 9 22:31:09 2012 New Revision: 305614 URL: http://svn.freebsd.org/changeset/ports/305614 Log: Remove kde from CATEGORIES - the port doesn't depend on KDE Amend desktop file, COMMENT and description Trim Makefile header Take maintainership Modified: head/print/kpdftool/Makefile (contents, props changed) head/print/kpdftool/pkg-descr (contents, props changed) Modified: head/print/kpdftool/Makefile ============================================================================== --- head/print/kpdftool/Makefile Tue Oct 9 22:24:54 2012 (r305613) +++ head/print/kpdftool/Makefile Tue Oct 9 22:31:09 2012 (r305614) @@ -1,18 +1,15 @@ -# New ports collection makefile for: kpdftool -# Date created: 04 May 2006 -# Whom: Yuan, Jue +# Created by: Yuan, Jue # $FreeBSD$ -# PORTNAME= kpdftool PORTVERSION= 0.23.1 -PORTREVISION= 1 -CATEGORIES= print kde +PORTREVISION= 2 +CATEGORIES= print MASTER_SITES= http://www.kde-apps.org/CONTENT/content-files/ DISTFILES= 33194-${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Tool to ease your PDF related work +MAINTAINER= makc@FreeBSD.org +COMMENT= Simple utility to manipulate PS and PDF files RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick @@ -22,7 +19,7 @@ USE_GHOSTSCRIPT_RUN= yes MAKE_JOBS_SAFE= yes DESKTOP_ENTRIES= "KPDFTool" "${COMMENT}" "kpdftool" \ - "kpdftool" "" false + "kpdftool" "Application;Qt;Utility;" false do-configure: cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ Modified: head/print/kpdftool/pkg-descr ============================================================================== --- head/print/kpdftool/pkg-descr Tue Oct 9 22:24:54 2012 (r305613) +++ head/print/kpdftool/pkg-descr Tue Oct 9 22:31:09 2012 (r305614) @@ -1,7 +1,6 @@ -KPDFTool is a GUI interface for GhostView/KGhostview and -ImageMagick to perform basic and useful operations -with PDF and PS (PostScript) files such as merging or -extracting pages, as well as protecting the text from -copying into new files in a simple and practical way. +KPDFTool is a Qt based frontend for GhostView and ImageMagick to +perform basic operations with PDF and PS (PostScript) files such +as merging or extracting pages, as well as protecting the text +from copying. WWW: http://www.kde-apps.org/content/show.php?content=33194 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:32:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 257A1598; Tue, 9 Oct 2012 22:32:59 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0F1F48FC18; Tue, 9 Oct 2012 22:32:59 +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 q99MWwoF000104; Tue, 9 Oct 2012 22:32:58 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MWwvJ000102; Tue, 9 Oct 2012 22:32:58 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210092232.q99MWwvJ000102@svn.freebsd.org> From: Ryan Steinmetz Date: Tue, 9 Oct 2012 22:32:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305615 - head/russian/xmms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:32:59 -0000 Author: zi Date: Tue Oct 9 22:32:58 2012 New Revision: 305615 URL: http://svn.freebsd.org/changeset/ports/305615 Log: - Reset maintainer to Chris Petrik, who is active and the current maintainer of multimedia/xmms. Approved by: maintainer timeout (4+ years) Modified: head/russian/xmms/Makefile Modified: head/russian/xmms/Makefile ============================================================================== --- head/russian/xmms/Makefile Tue Oct 9 22:31:09 2012 (r305614) +++ head/russian/xmms/Makefile Tue Oct 9 22:32:58 2012 (r305615) @@ -8,7 +8,7 @@ PORTNAME= xmms CATEGORIES= russian -MAINTAINER= be9-ml@be9.ru +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= RusXMMS - X Multimedia System with Russian encoding patch MASTERDIR= ${.CURDIR}/../../multimedia/xmms From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:38:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D3A24A82; Tue, 9 Oct 2012 22:38:05 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BC8628FC1D; Tue, 9 Oct 2012 22:38:05 +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 q99Mc5aX000888; Tue, 9 Oct 2012 22:38:05 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Mc5sX000885; Tue, 9 Oct 2012 22:38:05 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210092238.q99Mc5sX000885@svn.freebsd.org> From: Ryan Steinmetz Date: Tue, 9 Oct 2012 22:38:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305616 - head/devel/uthash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:38:05 -0000 Author: zi Date: Tue Oct 9 22:38:05 2012 New Revision: 305616 URL: http://svn.freebsd.org/changeset/ports/305616 Log: - Update to 1.9.7 Modified: head/devel/uthash/Makefile head/devel/uthash/distinfo Modified: head/devel/uthash/Makefile ============================================================================== --- head/devel/uthash/Makefile Tue Oct 9 22:32:58 2012 (r305615) +++ head/devel/uthash/Makefile Tue Oct 9 22:38:05 2012 (r305616) @@ -6,7 +6,7 @@ # PORTNAME= uthash -PORTVERSION= 1.9.6 +PORTVERSION= 1.9.7 CATEGORIES= devel MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} Modified: head/devel/uthash/distinfo ============================================================================== --- head/devel/uthash/distinfo Tue Oct 9 22:32:58 2012 (r305615) +++ head/devel/uthash/distinfo Tue Oct 9 22:38:05 2012 (r305616) @@ -1,2 +1,2 @@ -SHA256 (uthash-1.9.6.tar.bz2) = 16676465919c14eb8f0207f884e6efc95fbc60d2a990737f390a237a7ebe60f3 -SIZE (uthash-1.9.6.tar.bz2) = 362435 +SHA256 (uthash-1.9.7.tar.bz2) = 956f5c99798349c413275fe4c9ff128d72e280655dadbe4365f8e9fbda91393f +SIZE (uthash-1.9.7.tar.bz2) = 373059 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:38:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10028BF9; Tue, 9 Oct 2012 22:38:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EC5B58FC12; Tue, 9 Oct 2012 22:38:56 +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 q99Mcumw001062; Tue, 9 Oct 2012 22:38:56 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99McuTD001059; Tue, 9 Oct 2012 22:38:56 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210092238.q99McuTD001059@svn.freebsd.org> From: Mark Linimon Date: Tue, 9 Oct 2012 22:38:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305617 - head/devel/ncurses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:38:57 -0000 Author: linimon Date: Tue Oct 9 22:38:56 2012 New Revision: 305617 URL: http://svn.freebsd.org/changeset/ports/305617 Log: Back out USE_GCC=any. I failed to notice that the build had been fixed with clang while my tests were still running. Hat: portmgr Modified: head/devel/ncurses/Makefile Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Tue Oct 9 22:38:05 2012 (r305616) +++ head/devel/ncurses/Makefile Tue Oct 9 22:38:56 2012 (r305617) @@ -37,7 +37,6 @@ OPTIONS= EXTCOLORS "Enable 256-color sup CONFIGURE_ENV= gnat_exists="no" -USE_GCC= any USE_LDCONFIG= yes WIDEC_WRKSRC= ${WRKSRC}/build.widec From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:43:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6159DF9E; Tue, 9 Oct 2012 22:43:06 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4B0A88FC08; Tue, 9 Oct 2012 22:43:06 +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 q99Mh67Q001708; Tue, 9 Oct 2012 22:43:06 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Mh6Ik001706; Tue, 9 Oct 2012 22:43:06 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210092243.q99Mh6Ik001706@svn.freebsd.org> From: Mark Linimon Date: Tue, 9 Oct 2012 22:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305618 - head/multimedia/x264 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:43:06 -0000 Author: linimon Date: Tue Oct 9 22:43:05 2012 New Revision: 305618 URL: http://svn.freebsd.org/changeset/ports/305618 Log: Attempt to force this port to build only with gcc. It is known to be broken on clang. However, setting USE_GCC=any appears to be insufficient: the too-clever configure glop sees that clang is installed and attempts to use it regardless. This commit is thus a temporary measure. Hat: portmgr Modified: head/multimedia/x264/Makefile Modified: head/multimedia/x264/Makefile ============================================================================== --- head/multimedia/x264/Makefile Tue Oct 9 22:38:56 2012 (r305617) +++ head/multimedia/x264/Makefile Tue Oct 9 22:43:05 2012 (r305618) @@ -31,6 +31,7 @@ X264_GITVER= ${X264_COMMIT:C/^(.......). X264_SNAPSHOT= 20120721 USE_BZIP2= yes +USE_GCC= any WRKSRC= ${WRKDIR}/${DISTNAME} USE_GMAKE= yes USE_LDCONFIG= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:02:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F218329E; Tue, 9 Oct 2012 23:02:10 +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 DAC0F8FC12; Tue, 9 Oct 2012 23:02: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 q99N2AUg004522; Tue, 9 Oct 2012 23:02:10 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99N2AZd004517; Tue, 9 Oct 2012 23:02:10 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201210092302.q99N2AZd004517@svn.freebsd.org> From: Max Brazhnikov Date: Tue, 9 Oct 2012 23:02:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305619 - in head/net-im/psi: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:02:11 -0000 Author: makc Date: Tue Oct 9 23:02:10 2012 New Revision: 305619 URL: http://svn.freebsd.org/changeset/ports/305619 Log: Update to 0.15 make D-Bus support optional [1] Respect CC, CFLAGS via QMAKEFLAGS PR: ports/172406 [1] Submitted by: amdmi3 Modified: head/net-im/psi/Makefile head/net-im/psi/distinfo (contents, props changed) head/net-im/psi/files/patch-configure (contents, props changed) Modified: head/net-im/psi/Makefile ============================================================================== --- head/net-im/psi/Makefile Tue Oct 9 22:43:05 2012 (r305618) +++ head/net-im/psi/Makefile Tue Oct 9 23:02:10 2012 (r305619) @@ -1,13 +1,8 @@ -# New ports collection makefile for: psi -# Date created: Wed May 1 20:27:23 NZST 2002 -# Whom: jonc@chen.org.nz -# +# Created by: Jonathan Chen # $FreeBSD$ -# PORTNAME= psi -PORTVERSION= 0.14 -PORTREVISION= 3 +PORTVERSION= 0.15 CATEGORIES= net-im MASTER_SITES= SF/${PORTNAME}/Psi/${PORTVERSION} @@ -19,19 +14,20 @@ RUN_DEPENDS= qca-ossl>=2.0.0.b3:${PORTSD qca-gnupg>=2.0.0.b3:${PORTSDIR}/security/qca-gnupg HAS_CONFIGURE= yes +QT_NONSTANDARD= yes USE_BZIP2= yes -USE_QT4= corelib dbus gui iconengines imageformats qt3support \ - inputmethods network script svg xml \ +USE_PKGCONFIG= build +USE_QT4= gui network xml imageformats_run \ qmake_build moc_build rcc_build uic_build +USE_XORG= xscrnsaver CONFIGURE_ARGS= --prefix=${PREFIX} --qtdir=${LOCALBASE} \ - --disable-growl --disable-bundled-qca \ - --verbose + --disable-growl --verbose +CONFIGURE_ENV= QMAKEFLAGS='${QMAKEFLAGS}' +MAKE_JOBS_SAFE= yes -MAKE_JOBS_UNSAFE= yes - -OPTIONS_DEFINE= ASPELL ENCHANT -OPTIONS_DEFAULT= ASPELL +OPTIONS_DEFINE= ASPELL ENCHANT DBUS +OPTIONS_DEFAULT= ASPELL DBUS ASPELL_DESC= Use aspell for spell checking ENCHANT_DESC= Use Enchant for spell checking @@ -46,6 +42,12 @@ CONFIGURE_ARGS+= --release --no-separat PLIST_SUB+= DEBUG="@comment " .endif +.if ${PORT_OPTIONS:MDBUS} +USE_QT4+= dbus +.else +CONFIGURE_ARGS+= --disable-qdbus +.endif + .if ${PORT_OPTIONS:MASPELL} LIB_DEPENDS+= aspell.16:${PORTSDIR}/textproc/aspell CONFIGURE_ARGS+= --with-aspell-inc=${LOCALBASE}/include \ Modified: head/net-im/psi/distinfo ============================================================================== --- head/net-im/psi/distinfo Tue Oct 9 22:43:05 2012 (r305618) +++ head/net-im/psi/distinfo Tue Oct 9 23:02:10 2012 (r305619) @@ -1,2 +1,2 @@ -SHA256 (psi-0.14.tar.bz2) = aa014a20d59beb23ce2e853fac3d1d70b4b029591627ae0f0a6a3b9f7150a4c0 -SIZE (psi-0.14.tar.bz2) = 2168801 +SHA256 (psi-0.15.tar.bz2) = 593b5ddd7934af69c245afb0e7290047fd7dedcfd8765baca5a3a024c569c7e6 +SIZE (psi-0.15.tar.bz2) = 1984777 Modified: head/net-im/psi/files/patch-configure ============================================================================== --- head/net-im/psi/files/patch-configure Tue Oct 9 22:43:05 2012 (r305618) +++ head/net-im/psi/files/patch-configure Tue Oct 9 23:02:10 2012 (r305619) @@ -1,11 +1,28 @@ ---- configure.orig Sun Jan 8 05:19:01 2006 -+++ configure Sat Feb 4 14:06:18 2006 -@@ -192,6 +192,8 @@ - shift - ;; - --help) show_usage; exit ;; -+ --with-*) -+ shift ;; - *) show_usage; exit ;; - esac - done +--- ./configure.orig 2012-10-04 00:53:03.000000000 +0000 ++++ ./configure 2012-10-06 22:30:21.900714143 +0000 +@@ -100,7 +100,7 @@ + # find a make command + if [ -z "$MAKE" ]; then + MAKE= +- for mk in gmake make; do ++ for mk in make gmake; do + if $WHICH $mk >/dev/null 2>&1; then + MAKE=`$WHICH $mk` + break +@@ -2186,7 +2186,7 @@ + QDir::setCurrent(dir.path()); + + bool ok = false; +- int r = doCommand(qmake_path, QStringList() << "atest.pro"); ++ int r = doCommand(qmake_path, QStringList() << qc_getenv("QMAKEFLAGS") << "atest.pro"); + if(r == 0) + { + r = doCommand(maketool, QStringList()); +@@ -2587,6 +2587,7 @@ + args += "-spec"; + args += qmakespec; + } ++ args += qc_getenv("QMAKEFLAGS"); + args += proPath; + int ret = qc_runprogram(qmake_path, args, 0, true); + if(ret != 0) From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:16:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7135863D; Tue, 9 Oct 2012 23:16:13 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 599E28FC0C; Tue, 9 Oct 2012 23:16: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 q99NGDUq006426; Tue, 9 Oct 2012 23:16:13 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99NGD8h006420; Tue, 9 Oct 2012 23:16:13 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201210092316.q99NGD8h006420@svn.freebsd.org> From: Jason Helfman Date: Tue, 9 Oct 2012 23:16:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305620 - in head/games: . barbie_seahorse_adventures barbie_seahorse_adventures/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:16:13 -0000 Author: jgh Date: Tue Oct 9 23:16:12 2012 New Revision: 305620 URL: http://svn.freebsd.org/changeset/ports/305620 Log: - add new port: games/barbie_seahorse_adventures You are a seahorse and you want to go to the moon! WWW: http://www.imitationpickles.org/barbie/ PR: 167854 Submitted by: nemysis@gmx.ch Added: head/games/barbie_seahorse_adventures/ head/games/barbie_seahorse_adventures/Makefile (contents, props changed) head/games/barbie_seahorse_adventures/distinfo (contents, props changed) head/games/barbie_seahorse_adventures/files/ head/games/barbie_seahorse_adventures/files/barbie_seahorse_adventures.in (contents, props changed) head/games/barbie_seahorse_adventures/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Tue Oct 9 23:02:10 2012 (r305619) +++ head/games/Makefile Tue Oct 9 23:16:12 2012 (r305620) @@ -64,6 +64,7 @@ SUBDIR += balazar SUBDIR += balazarbrothers SUBDIR += banihstypos + SUBDIR += barbie_seahorse_adventures SUBDIR += barrage SUBDIR += bass SUBDIR += bastet Added: head/games/barbie_seahorse_adventures/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/barbie_seahorse_adventures/Makefile Tue Oct 9 23:16:12 2012 (r305620) @@ -0,0 +1,58 @@ +# Created by: nemysis@gmx.ch +# +# $FreeBSD$ +# + +PORTNAME= barbie_seahorse_adventures +PORTVERSION= 1.0 +CATEGORIES= games python +MASTER_SITES= http://www.imitationpickles.org/barbie/files/ \ + SF/nemysisfreebsdp/:icons +DISTFILES= barbie-${DISTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}.png:icons +DIST_SUBDIR= python +EXTRACT_ONLY= barbie-${DISTVERSION}${EXTRACT_SUFX} + +MAINTAINER= nemysis@gmx.ch +COMMENT= You are a seahorse and you want to go to the moon! + +LICENSE= GPLv2 + +RUN_DEPENDS= ${PYGAME} + +WRKSRC= ${WRKDIR}/barbie-${DISTVERSION} + +USE_PYTHON= yes +NO_BUILD= yes + +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.png + +PORTDATA= * +PORTDOCS= CHANGES.txt LEVELS.txt NOTES.txt README.txt TODO.txt + +SUB_FILES= ${PORTNAME} + +DESKTOP_ENTRIES="Barbie Seahorse Adventures" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + +.include + +post-patch: + @${REINPLACE_CMD} -e 's,/usr/bin/python,${PYTHON_CMD},' \ + ${WRKSRC}/leveledit.py ${WRKSRC}/tileedit.py + @(cd ${WRKSRC} && ${RM} *.py.bak) + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin + ${MKDIR} ${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "data lib" ${DATADIR}) + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} +.endif + +.include Added: head/games/barbie_seahorse_adventures/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/barbie_seahorse_adventures/distinfo Tue Oct 9 23:16:12 2012 (r305620) @@ -0,0 +1,4 @@ +SHA256 (python/barbie-1.0.tar.gz) = 8a5312545e51b94a28194679b2a8b8a7558ac105b706fe07ccabab6d47537861 +SIZE (python/barbie-1.0.tar.gz) = 2172446 +SHA256 (python/barbie_seahorse_adventures.png) = 98b6052da805e533b38ed4b47116b208d8c253ec5cf2bd630a87d311a35488c1 +SIZE (python/barbie_seahorse_adventures.png) = 519 Added: head/games/barbie_seahorse_adventures/files/barbie_seahorse_adventures.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/barbie_seahorse_adventures/files/barbie_seahorse_adventures.in Tue Oct 9 23:16:12 2012 (r305620) @@ -0,0 +1,6 @@ +#!/bin/sh +# +# $FreeBSD$ + +cd "%%DATADIR%%" +exec ./run_game.py "${@}" Added: head/games/barbie_seahorse_adventures/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/barbie_seahorse_adventures/pkg-descr Tue Oct 9 23:16:12 2012 (r305620) @@ -0,0 +1,3 @@ +You are a seahorse and you want to go to the moon! + +WWW: http://www.imitationpickles.org/barbie/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:33:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86F377B3; Tue, 9 Oct 2012 23:33:13 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 65ADA8FC0C; Tue, 9 Oct 2012 23:33: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 q99NXDjr008560; Tue, 9 Oct 2012 23:33:13 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99NXDEq008556; Tue, 9 Oct 2012 23:33:13 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201210092333.q99NXDEq008556@svn.freebsd.org> From: Cy Schubert Date: Tue, 9 Oct 2012 23:33:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305621 - in head/textproc: libexttextcat libtextcat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:33:13 -0000 Author: cy Date: Tue Oct 9 23:33:12 2012 New Revision: 305621 URL: http://svn.freebsd.org/changeset/ports/305621 Log: Allow textproc/libtextcat and textproc/libexttextcat to coexist on the same system. Reviewed by: thierry, crees, bapt Approved by: bapt (using his portmgr and office hats), thierry Modified: head/textproc/libexttextcat/Makefile head/textproc/libexttextcat/pkg-plist head/textproc/libtextcat/Makefile Modified: head/textproc/libexttextcat/Makefile ============================================================================== --- head/textproc/libexttextcat/Makefile Tue Oct 9 23:16:12 2012 (r305620) +++ head/textproc/libexttextcat/Makefile Tue Oct 9 23:33:12 2012 (r305621) @@ -2,6 +2,7 @@ PORTNAME= libexttextcat PORTVERSION= 3.3.1 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://dev-www.libreoffice.org/src/libexttextcat/ @@ -10,8 +11,6 @@ COMMENT= Language guessing by N-Gram-Bas LICENSE= BSD -CONFLICTS_INSTALL= libtextcat* - USE_XZ= yes GNU_CONFIGURE= yes USE_GMAKE= yes @@ -20,15 +19,21 @@ USE_LDCONFIG= yes PORTDOCS= README README.libtextcat TODO -OPTIONS_DEFINE= COMPAT_TEXTCAT DOCS +OPTIONS_DEFINE= COMPAT_TEXTCAT DOCS COMPAT_TEXTCAT_DESC= Install libtextcat compatible files .include .if ${PORT_OPTIONS:MCOMPAT_TEXTCAT} +.if exists(${PREFIX}/lib/libtextcat.a) +CONFLICTS_INSTALL= libtextcat* +.endif PLIST_SUB+= TEXTCAT='' +PLIST_SUB+= EXEEXT='' .else PLIST_SUB+= TEXTCAT='@comment ' +PLIST_SUB+= EXEEXT='x' +MAKE_ARGS= EXEEXT=x .endif post-install: Modified: head/textproc/libexttextcat/pkg-plist ============================================================================== --- head/textproc/libexttextcat/pkg-plist Tue Oct 9 23:16:12 2012 (r305620) +++ head/textproc/libexttextcat/pkg-plist Tue Oct 9 23:33:12 2012 (r305621) @@ -1,4 +1,4 @@ -bin/createfp +bin/createfp%%EXEEXT%% include/libexttextcat/common.h include/libexttextcat/constants.h include/libexttextcat/exttextcat-version.h @@ -174,6 +174,6 @@ share/vala/vapi/libexttextcat.vapi %%DATADIR%%/zh-Hant.lm %%DATADIR%%/zu.lm @dirrm %%DATADIR%% -@dirrm share/vala/vapi -@dirrm share/vala/ +@dirrmtry share/vala/vapi +@dirrmtry share/vala/ @dirrm include/libexttextcat Modified: head/textproc/libtextcat/Makefile ============================================================================== --- head/textproc/libtextcat/Makefile Tue Oct 9 23:16:12 2012 (r305620) +++ head/textproc/libtextcat/Makefile Tue Oct 9 23:33:12 2012 (r305621) @@ -7,7 +7,7 @@ PORTNAME= libtextcat PORTVERSION= 2.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc MASTER_SITES= http://software.wise-guys.nl/download/ @@ -17,14 +17,18 @@ COMMENT= Language guessing by N-Gram-Bas LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE -CONFLICTS_INSTALL= libexttextcat* - USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes PORTDOCS= LICENSE README TODO +.include + +.if exists($(PREFIX)/lib/libtextcat.a) +CONFLICTS_INSTALL= libexttextcat* +.endif + post-install: ${INSTALL_DATA} ${WRKSRC}/src/textcat.h ${PREFIX}/include/ ${MKDIR} ${DATADIR}/LM @@ -44,4 +48,4 @@ regression-test: ../src/testtextcat conf.txt < $$t ; \ done) -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:36:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 17F06808; Tue, 9 Oct 2012 23:36:35 +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 E524C8FC1B; Tue, 9 Oct 2012 23:36: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 q99NaYcJ009131; Tue, 9 Oct 2012 23:36:34 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99NaYlO009126; Tue, 9 Oct 2012 23:36:34 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210092336.q99NaYlO009126@svn.freebsd.org> From: Florian Smeets Date: Tue, 9 Oct 2012 23:36:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305622 - in head/net/asterisk: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:36:35 -0000 Author: flo Date: Tue Oct 9 23:36:34 2012 New Revision: 305622 URL: http://svn.freebsd.org/changeset/ports/305622 Log: Update to 1.8.17.0 Modified: head/net/asterisk/Makefile head/net/asterisk/distinfo head/net/asterisk/files/patch-configure (contents, props changed) head/net/asterisk/pkg-plist (contents, props changed) Modified: head/net/asterisk/Makefile ============================================================================== --- head/net/asterisk/Makefile Tue Oct 9 23:33:12 2012 (r305621) +++ head/net/asterisk/Makefile Tue Oct 9 23:36:34 2012 (r305622) @@ -6,7 +6,7 @@ # PORTNAME= asterisk -PORTVERSION= 1.8.16.0 +PORTVERSION= 1.8.17.0 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/asterisk/ \ http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/ Modified: head/net/asterisk/distinfo ============================================================================== --- head/net/asterisk/distinfo Tue Oct 9 23:33:12 2012 (r305621) +++ head/net/asterisk/distinfo Tue Oct 9 23:36:34 2012 (r305622) @@ -1,2 +1,2 @@ -SHA256 (asterisk-1.8.16.0.tar.gz) = c45a8959b06bd789d27e616bcfbe504d48e3f2d37993c45b3c8bc9cb3624d2dc -SIZE (asterisk-1.8.16.0.tar.gz) = 25085895 +SHA256 (asterisk-1.8.17.0.tar.gz) = 065da84b8e65674356efa8d1f25d985490756d2a2d1a582660617f3eab144114 +SIZE (asterisk-1.8.17.0.tar.gz) = 25136583 Modified: head/net/asterisk/files/patch-configure ============================================================================== --- head/net/asterisk/files/patch-configure Tue Oct 9 23:33:12 2012 (r305621) +++ head/net/asterisk/files/patch-configure Tue Oct 9 23:36:34 2012 (r305622) @@ -1,6 +1,6 @@ ---- configure.orig 2012-03-27 16:32:40.000000000 +0200 -+++ configure 2012-05-02 22:18:38.088619968 +0200 -@@ -4671,9 +4671,9 @@ +--- configure.orig 2012-08-09 20:58:44.000000000 +0200 ++++ configure 2012-10-09 00:23:16.383254715 +0200 +@@ -4419,9 +4419,9 @@ astheaderdir='${includedir}/asterisk' astlibdir='${libdir}/asterisk' astmandir='${mandir}' @@ -12,7 +12,7 @@ astkeydir='${astvarlibdir}' astspooldir='${localstatedir}/spool/asterisk' astlogdir='${localstatedir}/log/asterisk' -@@ -4696,8 +4696,6 @@ +@@ -4444,8 +4444,6 @@ case "${host_os}" in freebsd*) ac_default_prefix=/usr/local @@ -21,16 +21,16 @@ ;; openbsd*) ac_default_prefix=/usr/local -@@ -18219,6 +18217,8 @@ - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext +@@ -29734,6 +29732,8 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -+ #include -+ #include - #include ++#include ++#include + #include int main () -@@ -25954,7 +25954,7 @@ +@@ -47845,7 +47845,7 @@ fi @@ -38,4 +38,4 @@ + PLATFORM_OPENH323="h323_${OPENH323_SUFFIX}" if test "${HAS_OPENH323:-unset}" != "unset"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking OpenH323 installation validity" >&5 + { $as_echo "$as_me:$LINENO: checking OpenH323 installation validity" >&5 Modified: head/net/asterisk/pkg-plist ============================================================================== --- head/net/asterisk/pkg-plist Tue Oct 9 23:33:12 2012 (r305621) +++ head/net/asterisk/pkg-plist Tue Oct 9 23:36:34 2012 (r305622) @@ -1242,3 +1242,4 @@ spool/asterisk/voicemail/default/1234/en @dirrm log/asterisk/cdr-custom @dirrm log/asterisk/cel-custom @dirrm log/asterisk +@dirrmtry db/asterisk From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:39:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 621A486E; Tue, 9 Oct 2012 23:39:09 +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 4A8FB8FC16; Tue, 9 Oct 2012 23:39:09 +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 q99Nd9DL009535; Tue, 9 Oct 2012 23:39:09 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Nd9I2009530; Tue, 9 Oct 2012 23:39:09 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210092339.q99Nd9I2009530@svn.freebsd.org> From: Florian Smeets Date: Tue, 9 Oct 2012 23:39:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305623 - in head/net/asterisk10: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:39:09 -0000 Author: flo Date: Tue Oct 9 23:39:08 2012 New Revision: 305623 URL: http://svn.freebsd.org/changeset/ports/305623 Log: Update to 10.9.0 Modified: head/net/asterisk10/Makefile head/net/asterisk10/distinfo head/net/asterisk10/files/patch-configure (contents, props changed) head/net/asterisk10/pkg-plist (contents, props changed) Modified: head/net/asterisk10/Makefile ============================================================================== --- head/net/asterisk10/Makefile Tue Oct 9 23:36:34 2012 (r305622) +++ head/net/asterisk10/Makefile Tue Oct 9 23:39:08 2012 (r305623) @@ -6,7 +6,7 @@ # PORTNAME= asterisk -PORTVERSION= 10.8.0 +PORTVERSION= 10.9.0 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/asterisk/ \ http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/ Modified: head/net/asterisk10/distinfo ============================================================================== --- head/net/asterisk10/distinfo Tue Oct 9 23:36:34 2012 (r305622) +++ head/net/asterisk10/distinfo Tue Oct 9 23:39:08 2012 (r305623) @@ -1,2 +1,2 @@ -SHA256 (asterisk-10.8.0.tar.gz) = 14aab33e729c18514653b2ebc2fb295de60ca0c467989e5b416cd15e0c7d47ea -SIZE (asterisk-10.8.0.tar.gz) = 25007513 +SHA256 (asterisk-10.9.0.tar.gz) = fb5ba7c4e9c197843b7ccefe732ec6992a7f6d16065d6e7128d37b1049ef6eea +SIZE (asterisk-10.9.0.tar.gz) = 25060275 Modified: head/net/asterisk10/files/patch-configure ============================================================================== --- head/net/asterisk10/files/patch-configure Tue Oct 9 23:36:34 2012 (r305622) +++ head/net/asterisk10/files/patch-configure Tue Oct 9 23:39:08 2012 (r305623) @@ -1,6 +1,6 @@ ---- configure.orig 2012-03-27 16:35:40.000000000 +0200 -+++ configure 2012-05-02 22:16:50.711839687 +0200 -@@ -4495,9 +4495,9 @@ +--- configure.orig 2012-08-09 21:11:01.000000000 +0200 ++++ configure 2012-10-09 00:25:18.433124461 +0200 +@@ -4242,9 +4242,9 @@ astheaderdir='${includedir}/asterisk' astlibdir='${libdir}/asterisk' astmandir='${mandir}' @@ -12,7 +12,7 @@ astkeydir='${astvarlibdir}' astspooldir='${localstatedir}/spool/asterisk' astlogdir='${localstatedir}/log/asterisk' -@@ -4520,8 +4520,6 @@ +@@ -4267,8 +4267,6 @@ case "${host_os}" in freebsd*) ac_default_prefix=/usr/local @@ -21,16 +21,16 @@ ;; openbsd*) ac_default_prefix=/usr/local -@@ -17569,6 +17567,8 @@ - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext +@@ -29069,6 +29067,8 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -+ #include -+ #include - #include ++#include ++#include + #include int main () -@@ -25619,7 +25619,7 @@ +@@ -47981,7 +47981,7 @@ fi @@ -38,4 +38,4 @@ + PLATFORM_OPENH323="h323_${OPENH323_SUFFIX}" if test "${HAS_OPENH323:-unset}" != "unset"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking OpenH323 installation validity" >&5 + { $as_echo "$as_me:$LINENO: checking OpenH323 installation validity" >&5 Modified: head/net/asterisk10/pkg-plist ============================================================================== --- head/net/asterisk10/pkg-plist Tue Oct 9 23:36:34 2012 (r305622) +++ head/net/asterisk10/pkg-plist Tue Oct 9 23:39:08 2012 (r305623) @@ -1248,3 +1248,4 @@ spool/asterisk/voicemail/default/1234/en @dirrm log/asterisk/cdr-custom @dirrm log/asterisk/cel-custom @dirrm log/asterisk +@dirrmtry db/asterisk From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:46:07 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B06A1900; Tue, 9 Oct 2012 23:46:07 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 4893E8FC0C; Tue, 9 Oct 2012 23:46:07 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1TLif8-0004oK-H9; Wed, 10 Oct 2012 02:52:31 +0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:In-Reply-To:Subject:Cc:To:From; bh=Zb9KeyGGTKSkajmx0dvJz9pMPFIht+NGjotL97xmOOg=; b=Sc8ac/g5DgnQMLQmBxDHxk4NRl98eWqT8giNd/houjnqYUK5f+H1ylYUDw3sUc3krSZIJXfM3P3x1PhHzO5woWfFTAgDXDDwo8OdDwB9pIFVsx3s2K2OZn9LMYUYrBwZ7LYXO2qkkJRFefjj+HwPnSvE+FTFrePjQMs8gE3TvYM=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1TLidW-000EbL-Lp; Tue, 09 Oct 2012 22:50:51 +0000 From: Jan Beich To: Baptiste Daroussin Subject: Re: svn commit: r305288 - head/Mk In-Reply-To: <20121009161009.GF8713@ithaqua.etoilebsd.net> (Baptiste Daroussin's message of "Tue, 9 Oct 2012 18:10:09 +0200") Date: Tue, 09 Oct 2012 12:51:07 -1000 References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> <20121009161009.GF8713@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1TLidW-000EbL-Lp@internal.tormail.org> Cc: svn-ports-head@FreeBSD.org, Alexey Dokuchaev , svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:46:07 -0000 Baptiste Daroussin writes: > On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: > >> On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: >> > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: >> > > That's because OptionsNG poorly implement mutually exclusive options. I >> > > hope that eventually dialog's --radiolist would be utilized for proper >> > > handling, and sane knobs names would be restored. >> > > >> > > Sounds like a nice port junior hacker project. >> > >> > Not hat junior dialog(1) can't mix radiolist and classic checklist that is >> > why it doesn't use it, using libdialog(3), it would be easiy to implement, >> > but that won't be usable for a while (until all supported version of >> > freebsd has it. >> >> Ah, OK, that explains it (lack of radiobuttons now). Is it known what's >> preventing all supported versions to have working libdialog(3), if we have >> working dialog(1) already? >> >> ./danfe > > new dialog is only on 9.x and 10.x, if will require to code some special > dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicated > because the API isn't compatible. Why not add devel/cdialog to bootstrap on < 9.0 and install it only when BATCH is not set? > > regards, > Bapt From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:56:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D31469E7; Tue, 9 Oct 2012 23:56:53 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BBC028FC14; Tue, 9 Oct 2012 23:56:53 +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 q99NurCl011985; Tue, 9 Oct 2012 23:56:53 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99NurK1011979; Tue, 9 Oct 2012 23:56:53 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201210092356.q99NurK1011979@svn.freebsd.org> From: Jason Helfman Date: Tue, 9 Oct 2012 23:56:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305624 - in head/games: . bombherman X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:56:53 -0000 Author: jgh Date: Tue Oct 9 23:56:53 2012 New Revision: 305624 URL: http://svn.freebsd.org/changeset/ports/305624 Log: - add new port: games/bombherman A Bomberman clone written in C++, student project for SUPINFO, France WWW: https://github.com/Keruspe/Bomb-her-man PR: 167973 Submitted by: nemysis@gmx.ch Added: head/games/bombherman/ head/games/bombherman/Makefile (contents, props changed) head/games/bombherman/distinfo (contents, props changed) head/games/bombherman/pkg-descr (contents, props changed) head/games/bombherman/pkg-plist (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Tue Oct 9 23:39:08 2012 (r305623) +++ head/games/Makefile Tue Oct 9 23:56:53 2012 (r305624) @@ -93,6 +93,7 @@ SUBDIR += bomberclone SUBDIR += bomberinstinct SUBDIR += bombermaze + SUBDIR += bombherman SUBDIR += bomns SUBDIR += boswars SUBDIR += braincurses Added: head/games/bombherman/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bombherman/Makefile Tue Oct 9 23:56:53 2012 (r305624) @@ -0,0 +1,73 @@ +# Created by: nemysis@gmx.ch +# +# $FreeBSD$ + +PORTNAME= bomb-her-man +PORTVERSION= 0.3 +CATEGORIES= games +MASTER_SITES= GH \ + SF/nemysisfreebsdp/:icons +DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}_icons.tar.gz:icons + +MAINTAINER= nemysis@gmx.ch +COMMENT= Bomberman clone written in C++ + +LICENSE= GPLv3 + +BUILD_DEPENDS= automake:${PORTSDIR}/devel/automake \ + p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser +LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo + +USE_GITHUB= yes +GH_ACCOUNT= Keruspe +GH_PROJECT= Bomb-her-man +GH_TAGNAME= master +GH_COMMIT= 8f5aa22 + +USE_SDL= sdl image mixer ttf +USE_GNOME= intltool librsvg2 +GNU_CONFIGURE= yes +AUTOMAKE_ARGS= --add-missing +USE_GMAKE= yes +ALL_TARGET= # empty +MAKE_JOBS_SAFE= yes + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PORTDOCS= AUTHORS ChangeLog NEWS README + +DESKTOP_ENTRIES="Bomb-her-man" "${COMMENT}" "${PORTNAME}_48.png" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + +OPTIONS_DEFINE= NLS +OPTIONS_DEFAULT= NLS + +.include + +.if ${PORT_OPTIONS:MNLS} +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.endif + +pre-configure: + @(cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./autogen.sh) + +.if ${PORT_OPTIONS:MNLS} + @${REINPLACE_CMD} -e 's|itlocaledir = $$(prefix)/$$(DATADIRNAME)/locale|itlocaledir = $$(prefix)/share/locale|' \ + ${WRKSRC}/po/Makefile.in.in +.endif + +post-install: + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png ${PREFIX}/share/pixmaps + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} +.endif + +.include Added: head/games/bombherman/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bombherman/distinfo Tue Oct 9 23:56:53 2012 (r305624) @@ -0,0 +1,4 @@ +SHA256 (bomb-her-man-0.3.tar.gz) = 6ccf847f7452afaec664ee6f0dae50895ed7138bfc27479254e539d56b8cca9c +SIZE (bomb-her-man-0.3.tar.gz) = 2019211 +SHA256 (bomb-her-man_icons.tar.gz) = b2a402bd226ccb324c0b9dbe24540da99880409ca2d2e862725eb08120c02978 +SIZE (bomb-her-man_icons.tar.gz) = 29696 Added: head/games/bombherman/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bombherman/pkg-descr Tue Oct 9 23:56:53 2012 (r305624) @@ -0,0 +1,3 @@ +A Bomberman clone written in C++, student project for SUPINFO, France + +WWW: https://github.com/Keruspe/Bomb-her-man Added: head/games/bombherman/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bombherman/pkg-plist Tue Oct 9 23:56:53 2012 (r305624) @@ -0,0 +1,78 @@ +bin/bomb-her-man +%%DATADIR%%/biolinum.ttf +%%DATADIR%%/graphics/background.svg +%%DATADIR%%/graphics/barrel.svg +%%DATADIR%%/graphics/bomb-her-man.svg +%%DATADIR%%/graphics/bomb.svg +%%DATADIR%%/graphics/bonuses/1.svg +%%DATADIR%%/graphics/bonuses/2.svg +%%DATADIR%%/graphics/bonuses/3.svg +%%DATADIR%%/graphics/bonuses/4.svg +%%DATADIR%%/graphics/bonuses/5.svg +%%DATADIR%%/graphics/bonuses/6.svg +%%DATADIR%%/graphics/explosion.svg +%%DATADIR%%/graphics/floor.svg +%%DATADIR%%/graphics/players/1/0/0.svg +%%DATADIR%%/graphics/players/1/0/1.svg +%%DATADIR%%/graphics/players/1/0/2.svg +%%DATADIR%%/graphics/players/1/0/3.svg +%%DATADIR%%/graphics/players/1/1/0.svg +%%DATADIR%%/graphics/players/1/1/1.svg +%%DATADIR%%/graphics/players/1/1/2.svg +%%DATADIR%%/graphics/players/1/1/3.svg +%%DATADIR%%/graphics/players/1/2/0.svg +%%DATADIR%%/graphics/players/1/2/1.svg +%%DATADIR%%/graphics/players/1/2/2.svg +%%DATADIR%%/graphics/players/1/2/3.svg +%%DATADIR%%/graphics/players/1/3/0.svg +%%DATADIR%%/graphics/players/1/3/1.svg +%%DATADIR%%/graphics/players/1/3/2.svg +%%DATADIR%%/graphics/players/1/3/3.svg +%%DATADIR%%/graphics/players/2/0/0.svg +%%DATADIR%%/graphics/players/2/0/1.svg +%%DATADIR%%/graphics/players/2/0/2.svg +%%DATADIR%%/graphics/players/2/0/3.svg +%%DATADIR%%/graphics/players/2/1/0.svg +%%DATADIR%%/graphics/players/2/1/1.svg +%%DATADIR%%/graphics/players/2/1/2.svg +%%DATADIR%%/graphics/players/2/1/3.svg +%%DATADIR%%/graphics/players/2/2/0.svg +%%DATADIR%%/graphics/players/2/2/1.svg +%%DATADIR%%/graphics/players/2/2/2.svg +%%DATADIR%%/graphics/players/2/2/3.svg +%%DATADIR%%/graphics/players/2/3/0.svg +%%DATADIR%%/graphics/players/2/3/1.svg +%%DATADIR%%/graphics/players/2/3/2.svg +%%DATADIR%%/graphics/players/2/3/3.svg +%%DATADIR%%/graphics/scores/1/equal.svg +%%DATADIR%%/graphics/scores/1/lose.svg +%%DATADIR%%/graphics/scores/1/win.svg +%%DATADIR%%/graphics/scores/2/equal.svg +%%DATADIR%%/graphics/scores/2/lose.svg +%%DATADIR%%/graphics/scores/2/win.svg +%%DATADIR%%/graphics/scores/background-horizontal.svg +%%DATADIR%%/graphics/scores/background-vertical.svg +%%DATADIR%%/graphics/tomb1.svg +%%DATADIR%%/graphics/tomb2.svg +%%NLS%%share/locale/fr/LC_MESSAGES/bomb-her-man.mo +share/pixmaps/bomb-her-man_48.png +share/pixmaps/bomb-her-man_64.png +share/pixmaps/bomb-her-man_72.png +share/pixmaps/bomb-her-man_96.png +@dirrm %%DATADIR%%/graphics/scores/2 +@dirrm %%DATADIR%%/graphics/scores/1 +@dirrm %%DATADIR%%/graphics/scores +@dirrm %%DATADIR%%/graphics/players/2/3 +@dirrm %%DATADIR%%/graphics/players/2/2 +@dirrm %%DATADIR%%/graphics/players/2/1 +@dirrm %%DATADIR%%/graphics/players/2/0 +@dirrm %%DATADIR%%/graphics/players/2 +@dirrm %%DATADIR%%/graphics/players/1/3 +@dirrm %%DATADIR%%/graphics/players/1/2 +@dirrm %%DATADIR%%/graphics/players/1/1 +@dirrm %%DATADIR%%/graphics/players/1/0 +@dirrm %%DATADIR%%/graphics/players/1 +@dirrm %%DATADIR%%/graphics/players +@dirrm %%DATADIR%%/graphics/bonuses +@dirrm %%DATADIR%%/graphics +@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 01:34:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6888A265; Wed, 10 Oct 2012 01:34:05 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4F2928FC08; Wed, 10 Oct 2012 01:34:05 +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 q9A1Y5pQ025697; Wed, 10 Oct 2012 01:34:05 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A1Y5L7025694; Wed, 10 Oct 2012 01:34:05 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210100134.q9A1Y5L7025694@svn.freebsd.org> From: Steve Wills Date: Wed, 10 Oct 2012 01:34:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305625 - in head/sysutils/xen-tools: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 01:34:05 -0000 Author: swills Date: Wed Oct 10 01:34:04 2012 New Revision: 305625 URL: http://svn.freebsd.org/changeset/ports/305625 Log: - Prepare for splitting out guest scripts into another port PR: ports/172466 Submitted by: Mark Felder (maintainer) Deleted: head/sysutils/xen-tools/files/xe-daemon.in head/sysutils/xen-tools/files/xe_wrapper Modified: head/sysutils/xen-tools/Makefile head/sysutils/xen-tools/distinfo Modified: head/sysutils/xen-tools/Makefile ============================================================================== --- head/sysutils/xen-tools/Makefile Tue Oct 9 23:56:53 2012 (r305624) +++ head/sysutils/xen-tools/Makefile Wed Oct 10 01:34:04 2012 (r305625) @@ -6,27 +6,18 @@ PORTNAME= xen-tools PORTVERSION= 4.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils DISTNAME= xen-${PORTVERSION} MAINTAINER= feld@feld.me COMMENT= Xen tools within FreeBSD domU -MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/:xensource \ - https://github.com/${GIT_ACCOUNT}/${GIT_PROJECT}/tarball/${GIT_VERSION}/:github -DISTFILES= xen-${PORTVERSION}.tar.gz:xensource \ - ${GIT_ACCOUNT}-${GIT_PROJECT}-${GIT_VERSION}.tar.gz:github - -FETCH_ARGS= -pRr -GIT_ACCOUNT= felderado -GIT_PROJECT= freebsd-xen-tools-scripts -GIT_VERSION= bfb06da -GITSRC= ${WRKDIR}/${GIT_ACCOUNT}-${GIT_PROJECT}-${GIT_VERSION}/src/ +MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ +DISTFILES= xen-${PORTVERSION}.tar.gz USE_GMAKE= yes USE_PYTHON= yes -USE_RC_SUBR= xe-daemon ONLY_FOR_ARCHS= amd64 i386 ia64 ONLY_FOR_ARCHS_REASON= "not yet ported to anything other than amd64, i386, or ia64" @@ -41,10 +32,7 @@ PLIST_FILES= lib/libxenstore.so.3.0 \ bin/xenstore-ls \ bin/xenstore-read \ bin/xenstore-rm \ - bin/xenstore-write \ - sbin/xe-daemon \ - sbin/xe-update-guest-attrs \ - sbin/xe_wrapper + bin/xenstore-write do-build: cd ${WRKSRC}/tools && ${GMAKE} -C include @@ -56,9 +44,6 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tools/xenstore/xenstore ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/tools/xenstore/xenstore-control ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/tools/xenstore/libxenstore.so.3.0 ${PREFIX}/lib - ${INSTALL_SCRIPT} ${GITSRC}/usr/local/sbin/xe-daemon ${PREFIX}/sbin - ${INSTALL_SCRIPT} ${GITSRC}/usr/local/sbin/xe-update-guest-attrs ${PREFIX}/sbin - ${INSTALL_SCRIPT} ${FILESDIR}/xe_wrapper ${PREFIX}/sbin post-install: ${LN} -sf ${PREFIX}/bin/xenstore ${PREFIX}/bin/xenstore-chmod Modified: head/sysutils/xen-tools/distinfo ============================================================================== --- head/sysutils/xen-tools/distinfo Tue Oct 9 23:56:53 2012 (r305624) +++ head/sysutils/xen-tools/distinfo Wed Oct 10 01:34:04 2012 (r305625) @@ -1,4 +1,2 @@ SHA256 (xen-4.1.3.tar.gz) = 178ef186aca2490126aef69ceb41fc509baf89e0d582768cfa33b17fd145c0e4 SIZE (xen-4.1.3.tar.gz) = 10382132 -SHA256 (felderado-freebsd-xen-tools-scripts-bfb06da.tar.gz) = 58b5c5bb51bccb6843506bbb9c8ce3381ff262e6b221577496468f48226ab038 -SIZE (felderado-freebsd-xen-tools-scripts-bfb06da.tar.gz) = 50775 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 01:47:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAC704F0; Wed, 10 Oct 2012 01:47:02 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C37FD8FC12; Wed, 10 Oct 2012 01:47: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 q9A1l2sF027509; Wed, 10 Oct 2012 01:47:02 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A1l2U6027507; Wed, 10 Oct 2012 01:47:02 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201210100147.q9A1l2U6027507@svn.freebsd.org> From: Greg Larkin Date: Wed, 10 Oct 2012 01:47:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305626 - in head/devel/gearmand: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 01:47:02 -0000 Author: glarkin Date: Wed Oct 10 01:47:02 2012 New Revision: 305626 URL: http://svn.freebsd.org/changeset/ports/305626 Log: - Added search path for libexecinfo to prevent configure error [1] - Mark port BROKEN for versions of FreeBSD that don't include POSIX spawn(). It may be possible to convert the spawn() code back to fork()/exec() for FreeBSD 7.x, and I'll look into that and unbreak once it's ready. [2] Reported by: ports ML [1] Reported by: bdrewery [2] Deleted: head/devel/gearmand/files/extra-patch-libtest__test.cc Modified: head/devel/gearmand/Makefile Modified: head/devel/gearmand/Makefile ============================================================================== --- head/devel/gearmand/Makefile Wed Oct 10 01:34:04 2012 (r305625) +++ head/devel/gearmand/Makefile Wed Oct 10 01:47:02 2012 (r305626) @@ -44,7 +44,8 @@ SUB_LIST+= USERS=${USERS} GROUPS=${GROUP CONFIGURE_ARGS+=--with-lib-prefix=${LOCALBASE} --with-boost=${LOCALBASE} \ --localstatedir=/var/db/${PORTNAME} --enable-static -LDFLAGS+= -lexecinfo +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo OPTIONS_DEFINE= DRIZZLE MEMCACHED PGSQL SQLITE MYSQL HIREDIS TOKYOCAB OPTIONS_DEFAULT=SQLITE @@ -216,8 +217,8 @@ MAN8= gearmand.8 # Workaround for missing sigignore that wasn't introduced until # FreeBSD 8.0 -.if ${OSVERSION} < 800500 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libtest__test.cc +.if ${OSVERSION} < 800041 +BROKEN= Does not compile without POSIX spawn() support .endif .if ${PORT_OPTIONS:MDRIZZLE} From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 02:07:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 426F8A21; Wed, 10 Oct 2012 02:07:41 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2875B8FC0C; Wed, 10 Oct 2012 02:07:41 +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 q9A27fqT030334; Wed, 10 Oct 2012 02:07:41 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A27ec8030328; Wed, 10 Oct 2012 02:07:40 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210100207.q9A27ec8030328@svn.freebsd.org> From: Steve Wills Date: Wed, 10 Oct 2012 02:07:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305627 - in head/sysutils: . xe-guest-utilities xe-guest-utilities/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 02:07:41 -0000 Author: swills Date: Wed Oct 10 02:07:40 2012 New Revision: 305627 URL: http://svn.freebsd.org/changeset/ports/305627 Log: FreeBSD VM tools for Citrix XenServer and XCP PR: ports/172468 Submitted by: Mark Felder Added: head/sysutils/xe-guest-utilities/ head/sysutils/xe-guest-utilities/Makefile (contents, props changed) head/sysutils/xe-guest-utilities/distinfo (contents, props changed) head/sysutils/xe-guest-utilities/files/ head/sysutils/xe-guest-utilities/files/xenguest.in (contents, props changed) head/sysutils/xe-guest-utilities/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Oct 10 01:47:02 2012 (r305626) +++ head/sysutils/Makefile Wed Oct 10 02:07:40 2012 (r305627) @@ -1029,6 +1029,7 @@ SUBDIR += xcdroast SUBDIR += xcpustate SUBDIR += xdu + SUBDIR += xe-guest-utilities SUBDIR += xen-tools SUBDIR += xfburn SUBDIR += xfce4-battery-plugin Added: head/sysutils/xe-guest-utilities/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xe-guest-utilities/Makefile Wed Oct 10 02:07:40 2012 (r305627) @@ -0,0 +1,39 @@ +# Created by: Mark Felder +# +# $FreeBSD$ + +PORTNAME= xe-guest-utilities +PORTVERSION= 6.0.2 +CATEGORIES= sysutils +MASTER_SITES= https://github.com/${GIT_ACCOUNT}/${GIT_PROJECT}/tarball/${GIT_VERSION}/ +DISTNAME= ${GIT_ACCOUNT}-${GIT_PROJECT}-${GIT_VERSION} + +MAINTAINER= feld@feld.me +COMMENT= FreeBSD VM tools for Citrix XenServer and XCP + +RUN_DEPENDS= xen-tools>0:${PORTSDIR}/sysutils/xen-tools + +FETCH_ARGS= -pRr +GIT_ACCOUNT= felderado +GIT_PROJECT= freebsd-xen-tools-scripts +GIT_VERSION= 5a355c9 +GITSRC= ${WRKDIR}/${GIT_ACCOUNT}-${GIT_PROJECT}-${GIT_VERSION}/src/ + +USE_GMAKE= yes +USE_PYTHON= yes +USE_RC_SUBR= xenguest + +ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS_REASON= "Requires i385 XEN or amd64 XENHVM kernels" + +PLIST_FILES= sbin/xe-daemon \ + sbin/xe-update-guest-attrs + +do-build: + @${DO_NADA} + +do-install: + ${INSTALL_SCRIPT} ${GITSRC}/sbin/xe-daemon ${PREFIX}/sbin + ${INSTALL_SCRIPT} ${GITSRC}/sbin/xe-update-guest-attrs ${PREFIX}/sbin + +.include Added: head/sysutils/xe-guest-utilities/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xe-guest-utilities/distinfo Wed Oct 10 02:07:40 2012 (r305627) @@ -0,0 +1,2 @@ +SHA256 (felderado-freebsd-xen-tools-scripts-5a355c9.tar.gz) = c6d934103079cae5f9bd4abdb77586cea56eb04bdafd7dfc2e3401ab271bf278 +SIZE (felderado-freebsd-xen-tools-scripts-5a355c9.tar.gz) = 49171 Added: head/sysutils/xe-guest-utilities/files/xenguest.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xe-guest-utilities/files/xenguest.in Wed Oct 10 02:07:40 2012 (r305627) @@ -0,0 +1,29 @@ +#!/bin/sh + +# $FreeBSD$ +# +# PROVIDE: xenguest +# REQUIRE: LOGIN +# KEYWORD: nojail shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# xenguest_enable (bool): Set to NO by default. +# Set it to YES to enable xenguest. + +. /etc/rc.subr + +name=xenguest +rcvar=xenguest_enable + +load_rc_config $name + +: ${xe_daemon_enable="NO"} + +pidfile="/var/run/xe-daemon.pid" +command="%%PREFIX%%/sbin/xe-daemon" +command_interpreter="/bin/sh" +command_args='-p $pidfile &' + +run_rc_command "$1" Added: head/sysutils/xe-guest-utilities/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xe-guest-utilities/pkg-descr Wed Oct 10 02:07:40 2012 (r305627) @@ -0,0 +1 @@ +FreeBSD VM tools for Citrix XenServer and XCP From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 02:20:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B4E3FB7E; Wed, 10 Oct 2012 02:20:59 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 854608FC0C; Wed, 10 Oct 2012 02:20:59 +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 q9A2KxxX032131; Wed, 10 Oct 2012 02:20:59 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A2KxUY032128; Wed, 10 Oct 2012 02:20:59 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210100220.q9A2KxUY032128@svn.freebsd.org> From: Steve Wills Date: Wed, 10 Oct 2012 02:20:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305628 - head/www/phalcon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 02:20:59 -0000 Author: swills Date: Wed Oct 10 02:20:58 2012 New Revision: 305628 URL: http://svn.freebsd.org/changeset/ports/305628 Log: - Update to 0.5.1 PR: ports/172449 Submitted by: Jin-Sih Lin (maintainer) Modified: head/www/phalcon/Makefile (contents, props changed) head/www/phalcon/distinfo (contents, props changed) Modified: head/www/phalcon/Makefile ============================================================================== --- head/www/phalcon/Makefile Wed Oct 10 02:07:40 2012 (r305627) +++ head/www/phalcon/Makefile Wed Oct 10 02:20:58 2012 (r305628) @@ -6,7 +6,7 @@ # PORTNAME= phalcon -PORTVERSION= 0.4.5 +PORTVERSION= 0.5.1 CATEGORIES= www MASTER_SITES= https://github.com/${PORTNAME}/c${PORTNAME}/tarball/${GITVERSION}/ DISTNAME= ${PORTNAME}-c${PORTNAME}-${GITVERSION} @@ -14,9 +14,12 @@ DISTNAME= ${PORTNAME}-c${PORTNAME}-${GIT MAINTAINER= linpct@gmail.com COMMENT= Phalcon PHP Framework written in C-language -GITVERSION= 97d8732 +BUILD_DEPENDS= ${LOCALBASE}/include/php/ext/pdo/php_pdo_driver.h:${PORTSDIR}/databases/php5-pdo +RUN_DEPENDS= ${LOCALBASE}/include/php/ext/pdo/php_pdo_driver.h:${PORTSDIR}/databases/php5-pdo + +GITVERSION= b22910a FETCH_ARGS= -pRr -WRKSRC= ${WRKDIR}/${PORTNAME}-c${PORTNAME}-${GITVERSION}/release/ +WRKSRC= ${WRKDIR}/${PORTNAME}-c${PORTNAME}-${GITVERSION}/build/ CFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS= --enable-phalcon --prefix=${PREFIX} --with-php-config=${LOCALBASE}/bin/php-config Modified: head/www/phalcon/distinfo ============================================================================== --- head/www/phalcon/distinfo Wed Oct 10 02:07:40 2012 (r305627) +++ head/www/phalcon/distinfo Wed Oct 10 02:20:58 2012 (r305628) @@ -1,2 +1,2 @@ -SHA256 (phalcon-cphalcon-97d8732.tar.gz) = 8f3783d91ba7c71bdca7b3ea2b6756f225505c36a57a2829fc133d82f8344d11 -SIZE (phalcon-cphalcon-97d8732.tar.gz) = 700612 +SHA256 (phalcon-cphalcon-b22910a.tar.gz) = 05bf8b088fe920db2747c05281789bee9829ea1f3f0afde063b344b29d36d2e6 +SIZE (phalcon-cphalcon-b22910a.tar.gz) = 879134 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 04:14:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 09E196F5; Wed, 10 Oct 2012 04:14:07 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E49098FC12; Wed, 10 Oct 2012 04:14:06 +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 q9A4E6vo048161; Wed, 10 Oct 2012 04:14:06 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A4E6aW048157; Wed, 10 Oct 2012 04:14:06 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210100414.q9A4E6aW048157@svn.freebsd.org> From: Frederic Culot Date: Wed, 10 Oct 2012 04:14:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305629 - head/databases/py-htsql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 04:14:07 -0000 Author: culot Date: Wed Oct 10 04:14:06 2012 New Revision: 305629 URL: http://svn.freebsd.org/changeset/ports/305629 Log: - Update to 2.3.2 PR: ports/172483 Submitted by: Kubilay Kocak (maintainer) Modified: head/databases/py-htsql/Makefile head/databases/py-htsql/distinfo head/databases/py-htsql/pkg-plist Modified: head/databases/py-htsql/Makefile ============================================================================== --- head/databases/py-htsql/Makefile Wed Oct 10 02:20:58 2012 (r305628) +++ head/databases/py-htsql/Makefile Wed Oct 10 04:14:06 2012 (r305629) @@ -1,12 +1,8 @@ -# Ports collection makefile for: py-htsql -# Date created: Dec 17, 2010 -# Whom: jpaetzel -# +# Created by: jpaetzel # $FreeBSD$ -# PORTNAME= htsql -PORTVERSION= 2.3.1 +PORTVERSION= 2.3.2 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,7 +11,7 @@ DISTNAME= ${PORTNAME:U}-${PORTVERSION} MAINTAINER= koobs.freebsd@gmail.com COMMENT= Python HTSQL -USE_PYTHON= 2.6-2.7 +USE_PYTHON= 2.6-2.7 USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= ${PORTNAME:U} Modified: head/databases/py-htsql/distinfo ============================================================================== --- head/databases/py-htsql/distinfo Wed Oct 10 02:20:58 2012 (r305628) +++ head/databases/py-htsql/distinfo Wed Oct 10 04:14:06 2012 (r305629) @@ -1,2 +1,2 @@ -SHA256 (HTSQL-2.3.1.tar.gz) = 1623d5fab87fdf6105251e11372361b9cc3e12b7c889541161dca9b66b3391cb -SIZE (HTSQL-2.3.1.tar.gz) = 855237 +SHA256 (HTSQL-2.3.2.tar.gz) = 8ad9154693792630d8418af86598853873ff8b2a879a462aaf59545af9ad8c46 +SIZE (HTSQL-2.3.2.tar.gz) = 867648 Modified: head/databases/py-htsql/pkg-plist ============================================================================== --- head/databases/py-htsql/pkg-plist Wed Oct 10 02:20:58 2012 (r305628) +++ head/databases/py-htsql/pkg-plist Wed Oct 10 04:14:06 2012 (r305629) @@ -250,6 +250,12 @@ bin/htsql-ctl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/cors/wsgi.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/cors/wsgi.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/cors/wsgi.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/csrf/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/csrf/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/csrf/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/csrf/wsgi.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/csrf/wsgi.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/csrf/wsgi.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/django/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/django/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/django/__init__.pyo @@ -336,6 +342,8 @@ bin/htsql-ctl %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/shell/locate.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/shell/static/cm-htsql-mode.css %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/shell/static/cm-htsql-mode.js +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/shell/static/htsql_125x50.png +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/shell/static/htsql_88x31.png %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/shell/static/index.html %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/shell/static/shell.css %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/shell/static/shell.js @@ -422,6 +430,7 @@ bin/htsql-ctl @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/inet @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/hello @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/django +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/csrf @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/cors @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak/autolimit @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/htsql/tweak From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:00:31 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05BB57A9; Wed, 10 Oct 2012 06:00:31 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E27398FC14; Wed, 10 Oct 2012 06:00: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 q9A60U2d063612; Wed, 10 Oct 2012 06:00:30 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A60UM6063609; Wed, 10 Oct 2012 06:00:30 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210100600.q9A60UM6063609@svn.freebsd.org> From: Frederic Culot Date: Wed, 10 Oct 2012 06:00:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305630 - head/devel/p5-Data-Dumper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:00:31 -0000 Author: culot Date: Wed Oct 10 06:00:30 2012 New Revision: 305630 URL: http://svn.freebsd.org/changeset/ports/305630 Log: - Update to 2.136 - Add LICENSE (Artistic 1 & GPL 1) Changes: http://search.cpan.org/dist/Data-Dumper/Changes Modified: head/devel/p5-Data-Dumper/Makefile head/devel/p5-Data-Dumper/distinfo Modified: head/devel/p5-Data-Dumper/Makefile ============================================================================== --- head/devel/p5-Data-Dumper/Makefile Wed Oct 10 04:14:06 2012 (r305629) +++ head/devel/p5-Data-Dumper/Makefile Wed Oct 10 06:00:30 2012 (r305630) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Data-Dumper -# Date created: 23 March 2003 -# Whom: mat -# +# Created by: mat # $FreeBSD$ -# PORTNAME= Data-Dumper -PORTVERSION= 2.131 +PORTVERSION= 2.136 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Stringified perl data structures, suitable for both printing and eval +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + PERL_CONFIGURE= yes .include Modified: head/devel/p5-Data-Dumper/distinfo ============================================================================== --- head/devel/p5-Data-Dumper/distinfo Wed Oct 10 04:14:06 2012 (r305629) +++ head/devel/p5-Data-Dumper/distinfo Wed Oct 10 06:00:30 2012 (r305630) @@ -1,2 +1,2 @@ -SHA256 (Data-Dumper-2.131.tar.gz) = c4d4a10013c8cbab305483537fe09900ad6ac2201d74a4fbb5a1b25ba38eb1c2 -SIZE (Data-Dumper-2.131.tar.gz) = 82420 +SHA256 (Data-Dumper-2.136.tar.gz) = 98416971694df8b7f74f5fd5fa2837b2b50030d4c32f6a1416136c78cadae6c1 +SIZE (Data-Dumper-2.136.tar.gz) = 87354 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:20:35 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D755984; Wed, 10 Oct 2012 06:20:35 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id F32A18FC0C; Wed, 10 Oct 2012 06:20:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9A6KYX9087867; Wed, 10 Oct 2012 06:20:34 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9A6KY8a087863; Wed, 10 Oct 2012 06:20:34 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Wed, 10 Oct 2012 08:20:32 +0200 From: Baptiste Daroussin To: Jan Beich Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121010062031.GI8713@ithaqua.etoilebsd.net> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> <20121009161009.GF8713@ithaqua.etoilebsd.net> <1TLidW-000EbL-Lp@internal.tormail.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ijf6z65S790CMqo8" Content-Disposition: inline In-Reply-To: <1TLidW-000EbL-Lp@internal.tormail.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, Alexey Dokuchaev , svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:20:35 -0000 --ijf6z65S790CMqo8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 09, 2012 at 12:51:07PM -1000, Jan Beich wrote: > Baptiste Daroussin writes: >=20 > > On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: > > > >> On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > >> > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > >> > > That's because OptionsNG poorly implement mutually exclusive optio= ns. I > >> > > hope that eventually dialog's --radiolist would be utilized for pr= oper > >> > > handling, and sane knobs names would be restored. > >> > >=20 > >> > > Sounds like a nice port junior hacker project. > >> >=20 > >> > Not hat junior dialog(1) can't mix radiolist and classic checklist t= hat is > >> > why it doesn't use it, using libdialog(3), it would be easiy to impl= ement, > >> > but that won't be usable for a while (until all supported version of > >> > freebsd has it. > >>=20 > >> Ah, OK, that explains it (lack of radiobuttons now). Is it known what= 's > >> preventing all supported versions to have working libdialog(3), if we = have > >> working dialog(1) already? > >>=20 > >> ./danfe > > > > new dialog is only on 9.x and 10.x, if will require to code some special > > dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicat= ed > > because the API isn't compatible. >=20 > Why not add devel/cdialog to bootstrap on < 9.0 and install it only when > BATCH is not set? >=20 That do not change the fact that ${SOMEONE} will have to code a dialog(1) dedicated for ports, the library is able to let us mix radio and check, but= the frontend (dialog(1)) is still not able to. if someone stepup to do it, I'll be more than happy :) regards, Bapt --ijf6z65S790CMqo8 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB1E68ACgkQ8kTtMUmk6Exb2wCdGD/0f/IHqP5JePcm4+KDxvge wZsAnA9LqzwAsSInaf0jYSy/NqOZHcPC =svdY -----END PGP SIGNATURE----- --ijf6z65S790CMqo8-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:25:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78044A26; Wed, 10 Oct 2012 06:25:59 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6007C8FC0A; Wed, 10 Oct 2012 06:25:59 +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 q9A6PxJI067628; Wed, 10 Oct 2012 06:25:59 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A6Pxia067623; Wed, 10 Oct 2012 06:25:59 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210100625.q9A6Pxia067623@svn.freebsd.org> From: Wen Heping Date: Wed, 10 Oct 2012 06:25:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305631 - head/science/py-obspy.xseed X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:25:59 -0000 Author: wen Date: Wed Oct 10 06:25:58 2012 New Revision: 305631 URL: http://svn.freebsd.org/changeset/ports/305631 Log: - Update to 0.7.0 - Trim Makefile headers Modified: head/science/py-obspy.xseed/Makefile head/science/py-obspy.xseed/distinfo head/science/py-obspy.xseed/pkg-plist Modified: head/science/py-obspy.xseed/Makefile ============================================================================== --- head/science/py-obspy.xseed/Makefile Wed Oct 10 06:00:30 2012 (r305630) +++ head/science/py-obspy.xseed/Makefile Wed Oct 10 06:25:58 2012 (r305631) @@ -1,13 +1,8 @@ -# New ports collection makefile for: py-obspy.xseed -# Date created: June 29, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.xseed -PORTVERSION= 0.5.2 -PORTREVISION= 1 +PORTVERSION= 0.7.0 CATEGORIES= science python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,8 +10,8 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wen@FreeBSD.org COMMENT= Dataless SEED, RESP, and XML-SEED read and write support for ObsPy -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}obspy-core>=0.4.6:${PORTSDIR}/science/py-obspy-core -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}obspy-core>=0.4.6:${PORTSDIR}/science/py-obspy-core +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}obspy-core>=0:${PORTSDIR}/science/py-obspy-core +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}obspy-core>=0:${PORTSDIR}/science/py-obspy-core USE_ZIP= yes USE_PYTHON= yes Modified: head/science/py-obspy.xseed/distinfo ============================================================================== --- head/science/py-obspy.xseed/distinfo Wed Oct 10 06:00:30 2012 (r305630) +++ head/science/py-obspy.xseed/distinfo Wed Oct 10 06:25:58 2012 (r305631) @@ -1,2 +1,2 @@ -SHA256 (obspy.xseed-0.5.2.zip) = daacbd5cef4ee41296c11ebb4d8d9e83f9091b2b92039c19383c8e06e4a1e05c -SIZE (obspy.xseed-0.5.2.zip) = 2620735 +SHA256 (obspy.xseed-0.7.0.zip) = fd8d0bea77890010fde59a51f37d03995c1859ab418a55a2d4b181f35346796d +SIZE (obspy.xseed-0.7.0.zip) = 2626720 Modified: head/science/py-obspy.xseed/pkg-plist ============================================================================== --- head/science/py-obspy.xseed/pkg-plist Wed Oct 10 06:00:30 2012 (r305630) +++ head/science/py-obspy.xseed/pkg-plist Wed Oct 10 06:25:58 2012 (r305631) @@ -12,6 +12,7 @@ bin/obspy-xseed2dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/CHANGELOG.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/LICENSE.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/README.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/VERSION.txt @@ -147,6 +148,8 @@ bin/obspy-xseed2dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/AI.ESPZ._.BHE.dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/AI.ESPZ._.BH_.dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/BN.LPW._.BHE.dataless +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/CL.AIO.dataless +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/G.SPB.dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/arclink_full.seed %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/bug165.dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/dataless.seed.BW_FURT From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:28:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C18BA7E; Wed, 10 Oct 2012 06:28:57 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7517B8FC12; Wed, 10 Oct 2012 06:28:57 +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 q9A6SvvB068132; Wed, 10 Oct 2012 06:28:57 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A6Sv0K068129; Wed, 10 Oct 2012 06:28:57 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210100628.q9A6Sv0K068129@svn.freebsd.org> From: Wen Heping Date: Wed, 10 Oct 2012 06:28:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305632 - head/astro/p5-Astro-satpass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:28:57 -0000 Author: wen Date: Wed Oct 10 06:28:56 2012 New Revision: 305632 URL: http://svn.freebsd.org/changeset/ports/305632 Log: - Update to 0.054 Changes: http://cpansearch.perl.org/src/WYANT/Astro-satpass-0.054/Changes - Trim Makefile headers Modified: head/astro/p5-Astro-satpass/Makefile head/astro/p5-Astro-satpass/distinfo Modified: head/astro/p5-Astro-satpass/Makefile ============================================================================== --- head/astro/p5-Astro-satpass/Makefile Wed Oct 10 06:25:58 2012 (r305631) +++ head/astro/p5-Astro-satpass/Makefile Wed Oct 10 06:28:56 2012 (r305632) @@ -1,12 +1,8 @@ -# Ports collection makefile for: Astro-satpass -# Date created: 11 April, 2009 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= Astro-satpass -PORTVERSION= 0.053 +PORTVERSION= 0.054 CATEGORIES= astro perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:WYANT Modified: head/astro/p5-Astro-satpass/distinfo ============================================================================== --- head/astro/p5-Astro-satpass/distinfo Wed Oct 10 06:25:58 2012 (r305631) +++ head/astro/p5-Astro-satpass/distinfo Wed Oct 10 06:28:56 2012 (r305632) @@ -1,2 +1,2 @@ -SHA256 (Astro-satpass-0.053.tar.gz) = 72b25d8d73709e05f7bbb766f2c7940ac7693512e894b7d5bf78a4f010ce9dd1 -SIZE (Astro-satpass-0.053.tar.gz) = 493383 +SHA256 (Astro-satpass-0.054.tar.gz) = 73a44aa87cdb5e7762f88bfbacf70acaa60a30a351f7cf9850b4d6c6a2bd30f4 +SIZE (Astro-satpass-0.054.tar.gz) = 494057 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:46:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A4E50DC3; Wed, 10 Oct 2012 06:46:08 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 828FF8FC0C; Wed, 10 Oct 2012 06:46:08 +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 q9A6k8CE071586; Wed, 10 Oct 2012 06:46:08 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A6k8V3071575; Wed, 10 Oct 2012 06:46:08 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210100646.q9A6k8V3071575@svn.freebsd.org> From: Wen Heping Date: Wed, 10 Oct 2012 06:46:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305633 - in head/science: py-obspy-core py-obspy.db py-obspy.gse2 py-obspy.imaging py-obspy.iris py-obspy.mseed py-obspy.signal py-obspy.taup py-obspy.wav X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:46:08 -0000 Author: wen Date: Wed Oct 10 06:46:07 2012 New Revision: 305633 URL: http://svn.freebsd.org/changeset/ports/305633 Log: - Trim Makefile headers Modified: head/science/py-obspy-core/Makefile head/science/py-obspy.db/Makefile head/science/py-obspy.gse2/Makefile head/science/py-obspy.imaging/Makefile head/science/py-obspy.iris/Makefile head/science/py-obspy.mseed/Makefile head/science/py-obspy.signal/Makefile head/science/py-obspy.taup/Makefile head/science/py-obspy.wav/Makefile Modified: head/science/py-obspy-core/Makefile ============================================================================== --- head/science/py-obspy-core/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy-core/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy-core -# Date created: March 16, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy-core PORTVERSION= 0.7.1 Modified: head/science/py-obspy.db/Makefile ============================================================================== --- head/science/py-obspy.db/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.db/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.db -# Date created: Dec 9, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.db PORTVERSION= 0.7.0 Modified: head/science/py-obspy.gse2/Makefile ============================================================================== --- head/science/py-obspy.gse2/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.gse2/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.gse2 -# Date created: Jan 26, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.gse2 PORTVERSION= 0.7.0 Modified: head/science/py-obspy.imaging/Makefile ============================================================================== --- head/science/py-obspy.imaging/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.imaging/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.imaging -# Date created: June 29, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.imaging PORTVERSION= 0.7.0 Modified: head/science/py-obspy.iris/Makefile ============================================================================== --- head/science/py-obspy.iris/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.iris/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.iris -# Date created: Dec 13, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.iris PORTVERSION= 0.7.0 Modified: head/science/py-obspy.mseed/Makefile ============================================================================== --- head/science/py-obspy.mseed/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.mseed/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.mseed -# Date created: Jan 26, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.mseed PORTVERSION= 0.7.0 Modified: head/science/py-obspy.signal/Makefile ============================================================================== --- head/science/py-obspy.signal/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.signal/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.signal -# Date created: Jan 26, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.signal PORTVERSION= 0.7.0 Modified: head/science/py-obspy.taup/Makefile ============================================================================== --- head/science/py-obspy.taup/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.taup/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.taup -# Date created: Jan 11, 2012 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.taup PORTVERSION= 0.7.0 Modified: head/science/py-obspy.wav/Makefile ============================================================================== --- head/science/py-obspy.wav/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.wav/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.wav -# Date created: March 21, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.wav PORTVERSION= 0.5.1 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:48:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2E9CE17; Wed, 10 Oct 2012 06:48:32 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DC15A8FC08; Wed, 10 Oct 2012 06:48:32 +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 q9A6mWtQ072027; Wed, 10 Oct 2012 06:48:32 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A6mWcR072024; Wed, 10 Oct 2012 06:48:32 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210100648.q9A6mWcR072024@svn.freebsd.org> From: Wen Heping Date: Wed, 10 Oct 2012 06:48:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305634 - head/science/jmol X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:48:33 -0000 Author: wen Date: Wed Oct 10 06:48:32 2012 New Revision: 305634 URL: http://svn.freebsd.org/changeset/ports/305634 Log: - Trim Makefile headers - Reset maintainer to ports@ Modified: head/science/jmol/Makefile Modified: head/science/jmol/Makefile ============================================================================== --- head/science/jmol/Makefile Wed Oct 10 06:46:07 2012 (r305633) +++ head/science/jmol/Makefile Wed Oct 10 06:48:32 2012 (r305634) @@ -1,9 +1,5 @@ -# Ports collection makefile for: jmol -# Date created: May 11, 2008 -# Whom: Wen heping -# +# Created by: Wen heping # $FreeBSD$ -# PORTNAME= jmol PORTVERSION= 12.2.23 @@ -15,7 +11,7 @@ DISTFILES= Jmol-${PORTVERSION}-full.tar. selfSignedCertificate.store:source2 EXTRACT_ONLY= Jmol-${PORTVERSION}-full.tar.gz -MAINTAINER= wen@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= An Open-Source Java Viewer for Chemical Structures in 3D USE_JAVA= yes From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 07:40:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B637273A; Wed, 10 Oct 2012 07:40:13 +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 9DDBF8FC12; Wed, 10 Oct 2012 07:40: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 q9A7eDJa080568; Wed, 10 Oct 2012 07:40:13 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A7eDG0080566; Wed, 10 Oct 2012 07:40:13 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210100740.q9A7eDG0080566@svn.freebsd.org> From: Florian Smeets Date: Wed, 10 Oct 2012 07:40:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305635 - head/net-mgmt/check_logfiles X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 07:40:13 -0000 Author: flo Date: Wed Oct 10 07:40:13 2012 New Revision: 305635 URL: http://svn.freebsd.org/changeset/ports/305635 Log: Change the header in one of my ports to test ports commit mail Modified: head/net-mgmt/check_logfiles/Makefile (contents, props changed) Modified: head/net-mgmt/check_logfiles/Makefile ============================================================================== --- head/net-mgmt/check_logfiles/Makefile Wed Oct 10 06:48:32 2012 (r305634) +++ head/net-mgmt/check_logfiles/Makefile Wed Oct 10 07:40:13 2012 (r305635) @@ -1,9 +1,4 @@ -# New ports collection makefile for: check_logfile -# Date created: 11 Mar 2011 -# Whom: flo@FreeBSD.org -# # $FreeBSD$ -# PORTNAME= check_logfiles PORTVERSION= 3.4.3.1 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 08:09:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C68E9EC; Wed, 10 Oct 2012 08:09:25 +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 73A958FC0C; Wed, 10 Oct 2012 08:09:25 +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 q9A89P1D084635; Wed, 10 Oct 2012 08:09:25 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A89P2D084633; Wed, 10 Oct 2012 08:09:25 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210100809.q9A89P2D084633@svn.freebsd.org> From: Guido Falsi Date: Wed, 10 Oct 2012 08:09:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305636 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 08:09:25 -0000 Author: madpilot Date: Wed Oct 10 08:09:24 2012 New Revision: 305636 URL: http://svn.freebsd.org/changeset/ports/305636 Log: Fix Recipes for portmaster and portupgrade regarding libva-vdpau-driver. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 07:40:13 2012 (r305635) +++ head/UPDATING Wed Oct 10 08:09:24 2012 (r305636) @@ -14,9 +14,9 @@ you update your ports collection, before Please update the port origins as follows: - # portmaster -o multimedia/vdpau-video multimedia/libva-vdpau-driver + # portmaster -o multimedia/libva-vdpau-driver multimedia/vdpau-video or - # portupgrade -fo multimedia/vdpau-video multimedia/libva-vdpau-driver + # portupgrade -fo multimedia/libva-vdpau-driver multimedia/vdpau-video or # pkg set -o multimedia/vdpau-video:multimedia/libva-vdpau-driver From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 08:40:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAE8E557; Wed, 10 Oct 2012 08:40:22 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B59BE8FC14; Wed, 10 Oct 2012 08:40:22 +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 q9A8eMaA088951; Wed, 10 Oct 2012 08:40:22 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A8eMcS088946; Wed, 10 Oct 2012 08:40:22 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210100840.q9A8eMcS088946@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 08:40:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305637 - in head: . Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 08:40:23 -0000 Author: bapt Date: Wed Oct 10 08:40:21 2012 New Revision: 305637 URL: http://svn.freebsd.org/changeset/ports/305637 Log: Switching current to use pkgng by default Adding WITHOUT_PKGNG for people not willing to migrate to pkgng now Hat: portmgr Non-regression: beat Exp-runs: beat Modified: head/CHANGES head/Mk/bsd.port.mk head/Mk/bsd.port.subdir.mk head/UPDATING Modified: head/CHANGES ============================================================================== --- head/CHANGES Wed Oct 10 08:09:24 2012 (r305636) +++ head/CHANGES Wed Oct 10 08:40:21 2012 (r305637) @@ -10,6 +10,16 @@ in the release notes and/or placed into All ports committers are allowed to commit to this file. +20121010: +AUTHOR: bapt@FreeBSD.org + + * The ports tree is now using pkgng as the default package manager + for HEAD. This only affects users of CURRENT -- users of other + branches need not take any action. + + To keep pkg_install as the default package manager, use the new + WITHOUT_PKGNG knob in make.conf + 20120830: AUTHOR: beat@FreeBSD.org Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 10 08:09:24 2012 (r305636) +++ head/Mk/bsd.port.mk Wed Oct 10 08:40:21 2012 (r305637) @@ -1209,6 +1209,14 @@ OSVERSION!= ${SYSCTL} -n kern.osreldate .endif .endif +.if ${OSVERSION} >= 1000017 +.if !defined(WITHOUT_PKGNG) +WITH_PKGNG= yes +.else +.undef WITH_PKGNG +.endif +.endif + MASTERDIR?= ${.CURDIR} .if ${MASTERDIR} != ${.CURDIR} Modified: head/Mk/bsd.port.subdir.mk ============================================================================== --- head/Mk/bsd.port.subdir.mk Wed Oct 10 08:09:24 2012 (r305636) +++ head/Mk/bsd.port.subdir.mk Wed Oct 10 08:40:21 2012 (r305637) @@ -77,6 +77,14 @@ OSVERSION!= ${SYSCTL} -n kern.osreldate .endif .endif +.if ${OSVERSION} >= 1000017 +.if !defined(WITHOUT_PKGNG) +WITH_PKGNG= yes +.else +.undef WITH_PKGNG +.endif +.endif + .if !defined(_OSRELEASE) _OSRELEASE!= uname -r .endif Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 08:09:24 2012 (r305636) +++ head/UPDATING Wed Oct 10 08:40:21 2012 (r305637) @@ -5,6 +5,28 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20121010: + AFFECTS: users of CURRENT + AUTHOR: bapt@FreeBSD.org + + The ports tree is now using pkgng as the default package manager + for HEAD. This only affects users of CURRENT -- users of other + branches need not take any action. + + To keep pkg_install as the default package manager, use the new + WITHOUT_PKGNG knob in make.conf + + To make the switch: + + 1/ Set WITHOUT_PKGNG=yes in make.conf and upgrade all your ports to + the latest available versions using your favourite tools. + + 2/ Install ports-mgmt/pkg + + 3/ Remove WITHOUT_PKGNG from make.conf and run + + # pkg2ng + 20121009: AFFECTS: users of multimedia/vdpau-video AUTHOR: madpilot@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 08:48:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 82DCCB33; Wed, 10 Oct 2012 08:48:48 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6B75C8FC14; Wed, 10 Oct 2012 08:48: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 q9A8mmHv090193; Wed, 10 Oct 2012 08:48:48 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A8mmHh090190; Wed, 10 Oct 2012 08:48:48 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210100848.q9A8mmHh090190@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 08:48:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305638 - in head: . Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 08:48:48 -0000 Author: bapt Date: Wed Oct 10 08:48:47 2012 New Revision: 305638 URL: http://svn.freebsd.org/changeset/ports/305638 Log: We are in 2012, it is time to activate IPV6 options by default everywhere Modified: head/CHANGES head/Mk/bsd.options.mk Modified: head/CHANGES ============================================================================== --- head/CHANGES Wed Oct 10 08:40:21 2012 (r305637) +++ head/CHANGES Wed Oct 10 08:48:47 2012 (r305638) @@ -13,6 +13,11 @@ All ports committers are allowed to comm 20121010: AUTHOR: bapt@FreeBSD.org + * IPV6 option is now activated by default for the whole ports tree + +20121010: +AUTHOR: bapt@FreeBSD.org + * The ports tree is now using pkgng as the default package manager for HEAD. This only affects users of CURRENT -- users of other branches need not take any action. Modified: head/Mk/bsd.options.mk ============================================================================== --- head/Mk/bsd.options.mk Wed Oct 10 08:40:21 2012 (r305637) +++ head/Mk/bsd.options.mk Wed Oct 10 08:48:47 2012 (r305638) @@ -48,6 +48,9 @@ PORT_OPTIONS+= NLS PORT_OPTIONS+= EXAMPLES .endif +# Activate IPV6 by default +PORT_OPTIONS+= IPV6 + # Exclude per arch options .for opt in ${OPTIONS_EXCLUDE_${ARCH}} OPTIONS_DEFINE:= ${OPTIONS_DEFINE:N${opt}} From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 09:11:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5023E449; Wed, 10 Oct 2012 09:11:42 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1EBEE8FC16; Wed, 10 Oct 2012 09:11: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 q9A9Bfmj093491; Wed, 10 Oct 2012 09:11:41 GMT (envelope-from erwin@svn.freebsd.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A9Bfvv093486; Wed, 10 Oct 2012 09:11:41 GMT (envelope-from erwin@svn.freebsd.org) Message-Id: <201210100911.q9A9Bfvv093486@svn.freebsd.org> From: Erwin Lansing Date: Wed, 10 Oct 2012 09:11:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305639 - in head/dns: bind96 bind97 bind98 bind99 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 09:11:42 -0000 Author: erwin Date: Wed Oct 10 09:11:41 2012 New Revision: 305639 URL: http://svn.freebsd.org/changeset/ports/305639 Log: Take maintainership of the BIND ports while I'm working on the latest security releases. Modified: head/dns/bind96/Makefile head/dns/bind97/Makefile head/dns/bind98/Makefile head/dns/bind99/Makefile Modified: head/dns/bind96/Makefile ============================================================================== --- head/dns/bind96/Makefile Wed Oct 10 08:48:47 2012 (r305638) +++ head/dns/bind96/Makefile Wed Oct 10 09:11:41 2012 (r305639) @@ -9,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like Modified: head/dns/bind97/Makefile ============================================================================== --- head/dns/bind97/Makefile Wed Oct 10 08:48:47 2012 (r305638) +++ head/dns/bind97/Makefile Wed Oct 10 09:11:41 2012 (r305639) @@ -10,7 +10,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erwin@FreeBSD.org COMMENT?= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like Modified: head/dns/bind98/Makefile ============================================================================== --- head/dns/bind98/Makefile Wed Oct 10 08:48:47 2012 (r305638) +++ head/dns/bind98/Makefile Wed Oct 10 09:11:41 2012 (r305639) @@ -9,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Wed Oct 10 08:48:47 2012 (r305638) +++ head/dns/bind99/Makefile Wed Oct 10 09:11:41 2012 (r305639) @@ -9,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:25:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BC1FA5D; Wed, 10 Oct 2012 11:25:07 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 644458FC25; Wed, 10 Oct 2012 11:25: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 q9ABP7tW016792; Wed, 10 Oct 2012 11:25:07 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABP7aK016790; Wed, 10 Oct 2012 11:25:07 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210101125.q9ABP7aK016790@svn.freebsd.org> From: Ryan Steinmetz Date: Wed, 10 Oct 2012 11:25:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305640 - head/security/truecrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:25:07 -0000 Author: zi Date: Wed Oct 10 11:25:06 2012 New Revision: 305640 URL: http://svn.freebsd.org/changeset/ports/305640 Log: - Add additional MASTER_SITES for pkcs header files. Modified: head/security/truecrypt/Makefile Modified: head/security/truecrypt/Makefile ============================================================================== --- head/security/truecrypt/Makefile Wed Oct 10 09:11:41 2012 (r305639) +++ head/security/truecrypt/Makefile Wed Oct 10 11:25:06 2012 (r305640) @@ -5,7 +5,8 @@ PORTNAME= truecrypt PORTVERSION= 7.1a CATEGORIES= security MASTER_SITES= SF/wxwindows/${WX_VER}/:wxwidgets \ - ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/:rsa + ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/:rsa \ + http://mirrors.rit.edu/zi/pkcs-11/v2-20/:rsa DISTFILES= ${TC_SRCFILE}:tc \ wxWidgets-${WX_VER}.tar.gz:wxwidgets \ pkcs11.h:rsa \ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:41:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 423F5EEE; Wed, 10 Oct 2012 11:41:36 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2A4678FC0A; Wed, 10 Oct 2012 11:41:36 +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 q9ABfaiS019020; Wed, 10 Oct 2012 11:41:36 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABfZBe019016; Wed, 10 Oct 2012 11:41:35 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210101141.q9ABfZBe019016@svn.freebsd.org> From: Ryan Steinmetz Date: Wed, 10 Oct 2012 11:41:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305641 - in head/devel/libhtp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:41:36 -0000 Author: zi Date: Wed Oct 10 11:41:35 2012 New Revision: 305641 URL: http://svn.freebsd.org/changeset/ports/305641 Log: - Add patch to fix null dereference - Bump PORTREVISION Approved by: wxs@ (maintainer) Obtained from: Upstream bug repo Added: head/devel/libhtp/files/ head/devel/libhtp/files/patch-htp__htp_util.c (contents, props changed) Modified: head/devel/libhtp/Makefile Modified: head/devel/libhtp/Makefile ============================================================================== --- head/devel/libhtp/Makefile Wed Oct 10 11:25:06 2012 (r305640) +++ head/devel/libhtp/Makefile Wed Oct 10 11:41:35 2012 (r305641) @@ -7,7 +7,7 @@ PORTNAME= libhtp PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel #MASTER_SITES= # This port uses github Added: head/devel/libhtp/files/patch-htp__htp_util.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libhtp/files/patch-htp__htp_util.c Wed Oct 10 11:41:35 2012 (r305641) @@ -0,0 +1,22 @@ +--- ./htp/htp_util.c.orig 2012-10-09 18:53:48.000000000 -0400 ++++ ./htp/htp_util.c 2012-10-09 18:54:31.000000000 -0400 +@@ -2099,7 +2099,8 @@ + len += bstr_len(hl->line); + } + +- len += bstr_len(tx->request_headers_sep); ++ if (tx->request_headers_sep) ++ len += bstr_len(tx->request_headers_sep); + + request_headers_raw = bstr_alloc(len); + if (request_headers_raw == NULL) { +@@ -2112,7 +2113,8 @@ + bstr_add_noex(request_headers_raw, hl->line); + } + +- bstr_add_noex(request_headers_raw, tx->request_headers_sep); ++ if (tx->request_headers_sep) ++ bstr_add_noex(request_headers_raw, tx->request_headers_sep); + + return request_headers_raw; + } From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:42:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A157FCD; Wed, 10 Oct 2012 11:42:05 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 579548FC0A; Wed, 10 Oct 2012 11:42:05 +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 q9ABg5Tm019167; Wed, 10 Oct 2012 11:42:05 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABg5nt019162; Wed, 10 Oct 2012 11:42:05 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210101142.q9ABg5nt019162@svn.freebsd.org> From: Ryan Steinmetz Date: Wed, 10 Oct 2012 11:42:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305642 - in head/security/suricata: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:42:05 -0000 Author: zi Date: Wed Oct 10 11:42:04 2012 New Revision: 305642 URL: http://svn.freebsd.org/changeset/ports/305642 Log: - Update to 1.3.2 Added: head/security/suricata/files/patch-src__app-layer-htp.c (contents, props changed) Modified: head/security/suricata/Makefile head/security/suricata/distinfo head/security/suricata/files/patch-src__suricata-common.h Modified: head/security/suricata/Makefile ============================================================================== --- head/security/suricata/Makefile Wed Oct 10 11:41:35 2012 (r305641) +++ head/security/suricata/Makefile Wed Oct 10 11:42:04 2012 (r305642) @@ -6,7 +6,7 @@ # PORTNAME= suricata -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.2 CATEGORIES= security MASTER_SITES= http://www.openinfosecfoundation.org/download/ \ http://mirrors.rit.edu/zi/ Modified: head/security/suricata/distinfo ============================================================================== --- head/security/suricata/distinfo Wed Oct 10 11:41:35 2012 (r305641) +++ head/security/suricata/distinfo Wed Oct 10 11:42:04 2012 (r305642) @@ -1,2 +1,2 @@ -SHA256 (suricata-1.3.1.tar.gz) = 6fe35cca4e3eba34c95ed972ab1157e95c9f3d6ac9c9bb0996344db5a7107e8d -SIZE (suricata-1.3.1.tar.gz) = 2345619 +SHA256 (suricata-1.3.2.tar.gz) = 6fc3b417368069bc8e7901967600c66c8324fdd5bb4cd5bc684e8063e0164b5a +SIZE (suricata-1.3.2.tar.gz) = 2346849 Added: head/security/suricata/files/patch-src__app-layer-htp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/suricata/files/patch-src__app-layer-htp.c Wed Oct 10 11:42:04 2012 (r305642) @@ -0,0 +1,50 @@ +--- ./src/app-layer-htp.c.orig 2012-10-03 09:44:25.000000000 -0400 ++++ ./src/app-layer-htp.c 2012-10-09 18:57:24.000000000 -0400 +@@ -657,14 +657,15 @@ + if (!(hstate->flags & HTP_FLAG_STATE_OPEN)) { + SCLogDebug("opening htp handle at %p", hstate->connp); + +- htp_connp_open(hstate->connp, NULL, f->sp, NULL, f->dp, 0); ++ htp_connp_open(hstate->connp, NULL, f->sp, NULL, f->dp, &f->startts); + hstate->flags |= HTP_FLAG_STATE_OPEN; + } else { + SCLogDebug("using existing htp handle at %p", hstate->connp); + } + ++ htp_time_t ts = { f->lastts_sec, 0 }; + /* pass the new data to the htp parser */ +- r = htp_connp_req_data(hstate->connp, 0, input, input_len); ++ r = htp_connp_req_data(hstate->connp, &ts, input, input_len); + + switch(r) { + case STREAM_STATE_ERROR: +@@ -693,7 +694,8 @@ + hstate->connp->in_status = STREAM_STATE_CLOSED; + // Call the parsers one last time, which will allow them + // to process the events that depend on stream closure +- htp_connp_req_data(hstate->connp, 0, NULL, 0); ++ htp_time_t ts = { f->lastts_sec, 0 }; ++ htp_connp_req_data(hstate->connp, &ts, NULL, 0); + hstate->flags |= HTP_FLAG_STATE_CLOSED_TS; + SCLogDebug("stream eof encountered, closing htp handle for ts"); + } +@@ -747,7 +749,8 @@ + * reactivate it if necessary) */ + hstate->flags &=~ HTP_FLAG_NEW_BODY_SET; + +- r = htp_connp_res_data(hstate->connp, 0, input, input_len); ++ htp_time_t ts = { f->lastts_sec, 0 }; ++ r = htp_connp_res_data(hstate->connp, &ts, input, input_len); + switch(r) { + case STREAM_STATE_ERROR: + HTPHandleError(hstate); +@@ -774,7 +777,8 @@ + hstate->connp->out_status = STREAM_STATE_CLOSED; + // Call the parsers one last time, which will allow them + // to process the events that depend on stream closure +- htp_connp_res_data(hstate->connp, 0, NULL, 0); ++ htp_time_t ts = { f->lastts_sec, 0 }; ++ htp_connp_res_data(hstate->connp, &ts, NULL, 0); + hstate->flags |= HTP_FLAG_STATE_CLOSED_TC; + } + Modified: head/security/suricata/files/patch-src__suricata-common.h ============================================================================== --- head/security/suricata/files/patch-src__suricata-common.h Wed Oct 10 11:41:35 2012 (r305641) +++ head/security/suricata/files/patch-src__suricata-common.h Wed Oct 10 11:42:04 2012 (r305642) @@ -1,10 +1,12 @@ ---- ./src/suricata-common.h.orig 2012-09-05 21:43:08.000000000 -0400 -+++ ./src/suricata-common.h 2012-09-05 21:46:28.000000000 -0400 -@@ -131,6 +131,8 @@ +--- ./src/suricata-common.h.orig 2012-08-21 02:35:15.000000000 -0400 ++++ ./src/suricata-common.h 2012-09-29 08:41:39.000000000 -0400 +@@ -131,6 +131,10 @@ #include #define BUG_ON(x) assert(!(x)) +#define table_getc(x, y) table_get_c(x, y) ++#define bstr_cmpc(x, y) bstr_cmp_c(x, y) ++#define bstr_tocstr(x) bstr_util_strdup_to_c(x) + /* we need this to stringify the defines which are supplied at compiletime see: http://gcc.gnu.org/onlinedocs/gcc-3.4.1/cpp/Stringification.html#Stringification */ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:47:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CB22401; Wed, 10 Oct 2012 11:47:33 +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 656C88FC18; Wed, 10 Oct 2012 11:47:33 +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 q9ABlXEU019979; Wed, 10 Oct 2012 11:47:33 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABlXx5019977; Wed, 10 Oct 2012 11:47:33 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210101147.q9ABlXx5019977@svn.freebsd.org> From: Florian Smeets Date: Wed, 10 Oct 2012 11:47:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305643 - head/lang/php53 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:47:33 -0000 Author: flo Date: Wed Oct 10 11:47:32 2012 New Revision: 305643 URL: http://svn.freebsd.org/changeset/ports/305643 Log: remove trainling " from MYSQLND_DESC Submitted by: Riccardo Torrini Modified: head/lang/php53/Makefile.ext Modified: head/lang/php53/Makefile.ext ============================================================================== --- head/lang/php53/Makefile.ext Wed Oct 10 11:42:04 2012 (r305642) +++ head/lang/php53/Makefile.ext Wed Oct 10 11:47:32 2012 (r305643) @@ -191,14 +191,14 @@ CONFIGURE_ARGS+=--with-mssql=${LOCALBASE OPTIONS_DEFINE= MYSQLND OPTIONS_DEFAULT= MYSQLND -MYSQLND_DESC= Use MySQL Native Driver" +MYSQLND_DESC= Use MySQL Native Driver .endif .if ${PHP_MODNAME} == "mysqli" OPTIONS_DEFINE= MYSQLND OPTIONS_DEFAULT= MYSQLND -MYSQLND_DESC= Use MySQL Native Driver" +MYSQLND_DESC= Use MySQL Native Driver .endif .if ${PHP_MODNAME} == "odbc" From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:53:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF143623; Wed, 10 Oct 2012 11:53:08 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C558A8FC08; Wed, 10 Oct 2012 11:53:08 +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 q9ABr8Zs020809; Wed, 10 Oct 2012 11:53:08 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABr88C020806; Wed, 10 Oct 2012 11:53:08 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210101153.q9ABr88C020806@svn.freebsd.org> From: Frederic Culot Date: Wed, 10 Oct 2012 11:53:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305644 - head/devel/p5-Acme-MetaSyntactic X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:53:08 -0000 Author: culot Date: Wed Oct 10 11:53:08 2012 New Revision: 305644 URL: http://svn.freebsd.org/changeset/ports/305644 Log: - Update to 1.007 Changes: http://search.cpan.org/dist/Acme-MetaSyntactic/Changes Modified: head/devel/p5-Acme-MetaSyntactic/Makefile head/devel/p5-Acme-MetaSyntactic/distinfo Modified: head/devel/p5-Acme-MetaSyntactic/Makefile ============================================================================== --- head/devel/p5-Acme-MetaSyntactic/Makefile Wed Oct 10 11:47:32 2012 (r305643) +++ head/devel/p5-Acme-MetaSyntactic/Makefile Wed Oct 10 11:53:08 2012 (r305644) @@ -1,12 +1,8 @@ -# New ports collection makefile for: devel/p5-Acme-MetaSyntactic -# Date created: 27 April 2006 -# Whom: Anton Berezin -# +# Created by: Anton Berezin # $FreeBSD$ -# PORTNAME= Acme-MetaSyntactic -PORTVERSION= 1.006 +PORTVERSION= 1.007 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Acme-MetaSyntactic/distinfo ============================================================================== --- head/devel/p5-Acme-MetaSyntactic/distinfo Wed Oct 10 11:47:32 2012 (r305643) +++ head/devel/p5-Acme-MetaSyntactic/distinfo Wed Oct 10 11:53:08 2012 (r305644) @@ -1,2 +1,2 @@ -SHA256 (Acme-MetaSyntactic-1.006.tar.gz) = 017e112cd260878aec4bca1a6fc0d40b21ef3aa4e4b3eb4e38aeac14710f289b -SIZE (Acme-MetaSyntactic-1.006.tar.gz) = 51950 +SHA256 (Acme-MetaSyntactic-1.007.tar.gz) = 69948983eb1a1b0a8382f8d1a6490e605f1105daf678146e020116cb2642b1b6 +SIZE (Acme-MetaSyntactic-1.007.tar.gz) = 52087 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:54:45 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4758D713; Wed, 10 Oct 2012 11:54:45 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2CE168FC14; Wed, 10 Oct 2012 11:54:45 +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 q9ABsj8h021189; Wed, 10 Oct 2012 11:54:45 GMT (envelope-from erwin@svn.freebsd.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABsihq021179; Wed, 10 Oct 2012 11:54:44 GMT (envelope-from erwin@svn.freebsd.org) Message-Id: <201210101154.q9ABsihq021179@svn.freebsd.org> From: Erwin Lansing Date: Wed, 10 Oct 2012 11:54:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305645 - in head: dns/bind96 dns/bind97 dns/bind98 dns/bind99 security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:54:45 -0000 Author: erwin Date: Wed Oct 10 11:54:44 2012 New Revision: 305645 URL: http://svn.freebsd.org/changeset/ports/305645 Log: Upgrade to the latest BIND patch level: A deliberately constructed combination of records could cause named to hang while populating the additional section of a response. Security: http://www.vuxml.org/freebsd/57a700f9-12c0-11e2-9f86-001d923933b6.html Modified: head/dns/bind96/Makefile head/dns/bind96/distinfo head/dns/bind97/Makefile head/dns/bind97/distinfo head/dns/bind98/Makefile head/dns/bind98/distinfo head/dns/bind99/Makefile head/dns/bind99/distinfo head/security/vuxml/vuln.xml Modified: head/dns/bind96/Makefile ============================================================================== --- head/dns/bind96/Makefile Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind96/Makefile Wed Oct 10 11:54:44 2012 (r305645) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bind96 -PORTVERSION= 9.6.3.1.ESV.R7.3 +PORTVERSION= 9.6.3.1.ESV.R7.4 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} @@ -13,7 +13,7 @@ MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like -ISCVERSION= 9.6-ESV-R7-P3 +ISCVERSION= 9.6-ESV-R7-P4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind96/distinfo ============================================================================== --- head/dns/bind96/distinfo Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind96/distinfo Wed Oct 10 11:54:44 2012 (r305645) @@ -1,4 +1,4 @@ -SHA256 (bind-9.6-ESV-R7-P3.tar.gz) = c3ca6ab6c162689ec9662d822b255c3a99c076d968bc059b4ae11f1d4c35edae -SIZE (bind-9.6-ESV-R7-P3.tar.gz) = 6411767 -SHA256 (bind-9.6-ESV-R7-P3.tar.gz.asc) = 1a9cf3ba23a769d6a2e38a881ab9f714a2203104db88312ef9f931269af0da3d -SIZE (bind-9.6-ESV-R7-P3.tar.gz.asc) = 490 +SHA256 (bind-9.6-ESV-R7-P4.tar.gz) = 27152922fbf32fd5a39243e5daf00b6b74a80105aa357b2d6bb332cd41e68085 +SIZE (bind-9.6-ESV-R7-P4.tar.gz) = 6419312 +SHA256 (bind-9.6-ESV-R7-P4.tar.gz.asc) = 29ca706cd26f3b4cd7c08311927ff5b6c3db01c28df5a9add8f23d95ce601ca3 +SIZE (bind-9.6-ESV-R7-P4.tar.gz.asc) = 490 Modified: head/dns/bind97/Makefile ============================================================================== --- head/dns/bind97/Makefile Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind97/Makefile Wed Oct 10 11:54:44 2012 (r305645) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= bind97 -PORTVERSION= 9.7.6.3 +PORTVERSION= 9.7.6.4 PORTREVISION?= 0 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} @@ -14,7 +14,7 @@ MAINTAINER= erwin@FreeBSD.org COMMENT?= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like -ISCVERSION= 9.7.6-P3 +ISCVERSION= 9.7.6-P4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind97/distinfo ============================================================================== --- head/dns/bind97/distinfo Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind97/distinfo Wed Oct 10 11:54:44 2012 (r305645) @@ -1,4 +1,4 @@ -SHA256 (bind-9.7.6-P3.tar.gz) = 5d5ad5b168fb9231185e363b7d8c391e4b7b801eef269415f273e5e4591ba277 -SIZE (bind-9.7.6-P3.tar.gz) = 6971503 -SHA256 (bind-9.7.6-P3.tar.gz.asc) = 6b388305b98b0b46a4629333b15513a406779bbf70aeccc7be6b74aa1d5fe61c -SIZE (bind-9.7.6-P3.tar.gz.asc) = 490 +SHA256 (bind-9.7.6-P4.tar.gz) = 58b01bcf3ec5e2cfcad99b09379c164e508dc07dd8fb602970812d95fa30292e +SIZE (bind-9.7.6-P4.tar.gz) = 6983647 +SHA256 (bind-9.7.6-P4.tar.gz.asc) = ce01b28e00388e16d4fd4ba7be98b7fe51ac69b32e935913189fcbeed3bb063e +SIZE (bind-9.7.6-P4.tar.gz.asc) = 490 Modified: head/dns/bind98/Makefile ============================================================================== --- head/dns/bind98/Makefile Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind98/Makefile Wed Oct 10 11:54:44 2012 (r305645) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bind98 -PORTVERSION= 9.8.3.3 +PORTVERSION= 9.8.3.4 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} @@ -13,7 +13,7 @@ MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.8.3-P3 +ISCVERSION= 9.8.3-P4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind98/distinfo ============================================================================== --- head/dns/bind98/distinfo Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind98/distinfo Wed Oct 10 11:54:44 2012 (r305645) @@ -1,4 +1,4 @@ -SHA256 (bind-9.8.3-P3.tar.gz) = 2819fc75f686bd0d393e04873f69982e0462a5604bfd2e207396b86334200cd3 -SIZE (bind-9.8.3-P3.tar.gz) = 7109848 -SHA256 (bind-9.8.3-P3.tar.gz.asc) = a7ae019d9ededba3e50fb889eb0096dc0d53117996d20420750776bb176805c2 -SIZE (bind-9.8.3-P3.tar.gz.asc) = 490 +SHA256 (bind-9.8.3-P4.tar.gz) = 2fc27441ed0c3905045c4baca639c953e7f3f2bc684b52abbf35481d617e783f +SIZE (bind-9.8.3-P4.tar.gz) = 7117624 +SHA256 (bind-9.8.3-P4.tar.gz.asc) = 967f4c9fc0b5cd2982d3113f6ed672ac46eb7f8893d35abc19a6282b02ee4c69 +SIZE (bind-9.8.3-P4.tar.gz.asc) = 490 Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind99/Makefile Wed Oct 10 11:54:44 2012 (r305645) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bind99 -PORTVERSION= 9.9.1.3 +PORTVERSION= 9.9.1.4 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} @@ -13,7 +13,7 @@ MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.9.1-P3 +ISCVERSION= 9.9.1-P4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind99/distinfo ============================================================================== --- head/dns/bind99/distinfo Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind99/distinfo Wed Oct 10 11:54:44 2012 (r305645) @@ -1,4 +1,4 @@ -SHA256 (bind-9.9.1-P3.tar.gz) = 1cdb83db76d6f8554dea19e3bd82b8d65261a24b9ce9fc948eade8c57569e302 -SIZE (bind-9.9.1-P3.tar.gz) = 7217415 -SHA256 (bind-9.9.1-P3.tar.gz.asc) = d3047cc5dfd5f4fe941996f363425ce86856b389fe7de6aad251f0d627e4d145 -SIZE (bind-9.9.1-P3.tar.gz.asc) = 490 +SHA256 (bind-9.9.1-P4.tar.gz) = 18f90727fd9566da037e71569d9b3a4834c96b04d9e75f9899eba0bc88c0868a +SIZE (bind-9.9.1-P4.tar.gz) = 7227655 +SHA256 (bind-9.9.1-P4.tar.gz.asc) = f781b8eeeb44b3c88e8f68eddd1c3d85d089dcb00d99fede76ccdaa1a7f1e404 +SIZE (bind-9.9.1-P4.tar.gz.asc) = 490 Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Oct 10 11:53:08 2012 (r305644) +++ head/security/vuxml/vuln.xml Wed Oct 10 11:54:44 2012 (r305645) @@ -51,6 +51,44 @@ Note: Please add new entries to the beg --> + + dns/bind9* -- crash on deliberately constructed combination of records + + + bind99 + 9.9.1.4 + + + bind98 + 9.8.3.4 + + + bind97 + 9.7.6.4 + + + bind96 + 9.6.3.1.ESV.R7.4 + + + + +

ISC reports:

+
+

A deliberately constructed combination of records could cause named + to hang while populating the additional section of a response.

+
+ +
+ + CVE-2012-5166 + + + 2012-09-26 + 2012-10-10 + +
+ chromium -- multiple vulnerabilities From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:59:45 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C65E3B00; Wed, 10 Oct 2012 11:59:45 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 5A6948FC3A; Wed, 10 Oct 2012 11:59:45 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1TLuwt-0000Hr-OY; Wed, 10 Oct 2012 15:59:43 +0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:In-Reply-To:Subject:Cc:To:From; bh=iwMpOViTVU9i4uhffOOy/+PJ0bSYwqZuo9xn2ZGlMGY=; b=kAI7FP5OdF8cQ0ZMNqrChEy0PwUD5cpQJ56qlyAONonF80gTfw8L+wNp9Ya/mnNdKRt6SFX3PuYYhIBjsvmOeRcXQJb6BIszayK2nQCsV8H1qqw+ty15qpIJILn7iBZhJXhIp5pPTqZpgzn+NaO2StwvDLNnq2RJ5oqrX3Orp+I=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1TLuvE-000Fa2-Ef; Wed, 10 Oct 2012 11:57:58 +0000 From: Jan Beich To: Baptiste Daroussin Subject: Re: svn commit: r305288 - head/Mk In-Reply-To: <1TLpzq-0009Zh-L4@internal.tormail.org> (Baptiste Daroussin's message of "Wed, 10 Oct 2012 08:20:32 +0200") Date: Wed, 10 Oct 2012 06:55:14 -0500 References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> <20121009161009.GF8713@ithaqua.etoilebsd.net> <1TLidW-000EbL-Lp@internal.tormail.org> <1TLpzq-0009Zh-L4@internal.tormail.org> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1TLuvE-000Fa2-Ef@internal.tormail.org> Cc: svn-ports-head@FreeBSD.org, Alexey Dokuchaev , svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:59:45 -0000 Baptiste Daroussin writes: > On Tue, Oct 09, 2012 at 12:51:07PM -1000, Jan Beich wrote: > >> Baptiste Daroussin writes: >> >> > On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: >> > >> >> On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: >> >> > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: >> >> > > That's because OptionsNG poorly implement mutually exclusive >> >> > > options. I >> >> > > hope that eventually dialog's --radiolist would be utilized >> >> > > for proper >> >> > > handling, and sane knobs names would be restored. >> >> > > >> >> > > Sounds like a nice port junior hacker project. >> >> > >> >> > Not hat junior dialog(1) can't mix radiolist and classic >> >> > checklist that is >> >> > why it doesn't use it, using libdialog(3), it would be easiy to >> >> > implement, >> >> > but that won't be usable for a while (until all supported version of >> >> > freebsd has it. >> >> >> >> Ah, OK, that explains it (lack of radiobuttons now). Is it known what's >> >> preventing all supported versions to have working libdialog(3), >> >> if we have >> >> working dialog(1) already? >> >> >> >> ./danfe >> > >> > new dialog is only on 9.x and 10.x, if will require to code some special >> > dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicated >> > because the API isn't compatible. >> >> Why not add devel/cdialog to bootstrap on < 9.0 and install it only when >> BATCH is not set? >> > > That do not change the fact that ${SOMEONE} will have to code a dialog(1) > dedicated for ports, the library is able to let us mix radio and > check, but the > frontend (dialog(1)) is still not able to. > > if someone stepup to do it, I'll be more than happy :) Did you miss one? http://lists.freebsd.org/pipermail/freebsd-ports/2010-November/064363.html http://lists.freebsd.org/pipermail/freebsd-ports/2010-December/064772.html > > regards, > Bapt From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:01:34 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 911A4E4A; Wed, 10 Oct 2012 12:01:34 +0000 (UTC) (envelope-from zeising@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id 077608FC21; Wed, 10 Oct 2012 12:01:34 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id D7FFC40004; Wed, 10 Oct 2012 14:01:32 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id CDB454000C; Wed, 10 Oct 2012 14:01:32 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bernadotte.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=AWL autolearn=disabled version=3.3.1 X-Spam-Score: 0.0 Received: from mx.daemonic.se (h-45-105.a163.priv.bahnhof.se [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id BB17640004; Wed, 10 Oct 2012 14:01:31 +0200 (CEST) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3XcDRv2kz6z8ggx; Wed, 10 Oct 2012 14:01:31 +0200 (CEST) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id kMvqHwqdP3Em; Wed, 10 Oct 2012 14:01:25 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3XcDRn6FFHz8ggv; Wed, 10 Oct 2012 14:01:25 +0200 (CEST) Received: from tifa.daemonic.se (tifa.daemonic.se [10.32.0.6]) by mail.daemonic.se (Postfix) with ESMTPSA id 3XcDRn5fTrz9Ctq; Wed, 10 Oct 2012 14:01:25 +0200 (CEST) Received: from tifa.daemonic.se (localhost [IPv6:::1]) by tifa.daemonic.se (Postfix) with ESMTP id 3FDD822AFA; Wed, 10 Oct 2012 14:01:25 +0200 (CEST) Message-ID: <50756395.1050502@daemonic.se> Date: Wed, 10 Oct 2012 14:01:25 +0200 From: Niclas Zeising User-Agent: Mutt/1.5.21 MIME-Version: 1.0 To: Erwin Lansing Subject: Re: svn commit: r305645 - in head: dns/bind96 dns/bind97 dns/bind98 dns/bind99 security/vuxml References: <201210101154.q9ABsihq021179@svn.freebsd.org> In-Reply-To: <201210101154.q9ABsihq021179@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:01:34 -0000 On 10/10/12 13:54, Erwin Lansing wrote: > Author: erwin > Date: Wed Oct 10 11:54:44 2012 > New Revision: 305645 > URL: http://svn.freebsd.org/changeset/ports/305645 > > Log: > Upgrade to the latest BIND patch level: > > A deliberately constructed combination of records could cause named > to hang while populating the additional section of a response. > > Security: http://www.vuxml.org/freebsd/57a700f9-12c0-11e2-9f86-001d923933b6.html > Any reason to not update to 9.9.2, 9.8.4, etc? Regards! -- Niclas Zeising From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:05:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 096FFAD; Wed, 10 Oct 2012 12:05:16 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (grizzly.droso.dk [IPv6:2a01:4f8:100:9424::3]) by mx1.freebsd.org (Postfix) with ESMTP id 93BA18FC14; Wed, 10 Oct 2012 12:05:15 +0000 (UTC) Received: by mail.droso.net (Postfix, from userid 1001) id 40905603C; Wed, 10 Oct 2012 14:05:14 +0200 (CEST) Date: Wed, 10 Oct 2012 14:05:14 +0200 From: Erwin Lansing To: Niclas Zeising Subject: Re: svn commit: r305645 - in head: dns/bind96 dns/bind97 dns/bind98 dns/bind99 security/vuxml Message-ID: <20121010120512.GU27371@droso.net> References: <201210101154.q9ABsihq021179@svn.freebsd.org> <50756395.1050502@daemonic.se> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <50756395.1050502@daemonic.se> X-Operating-System: FreeBSD/amd64 9.0-RELEASE User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:05:16 -0000 On Wed, Oct 10, 2012 at 02:01:25PM +0200, Niclas Zeising wrote: > On 10/10/12 13:54, Erwin Lansing wrote: > > Author: erwin > > Date: Wed Oct 10 11:54:44 2012 > > New Revision: 305645 > > URL: http://svn.freebsd.org/changeset/ports/305645 > > > > Log: > > Upgrade to the latest BIND patch level: > > > > A deliberately constructed combination of records could cause named > > to hang while populating the additional section of a response. > > > > Security: http://www.vuxml.org/freebsd/57a700f9-12c0-11e2-9f86-001d923933b6.html > > > > Any reason to not update to 9.9.2, 9.8.4, etc? This was a quick update to get the latest security patches in, updating to the next minor releases will follow later. Erwin -- Erwin Lansing http://droso.dk erwin@FreeBSD.org http:// www.FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:09:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AE0D3F3; Wed, 10 Oct 2012 12:09:55 +0000 (UTC) (envelope-from zeising@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id 2B3D48FC51; Wed, 10 Oct 2012 12:09:54 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 483E840004; Wed, 10 Oct 2012 14:09:54 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id 3AF964000C; Wed, 10 Oct 2012 14:09:54 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bernadotte.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=AWL autolearn=disabled version=3.3.1 X-Spam-Score: 0.0 Received: from mx.daemonic.se (h-45-105.a163.priv.bahnhof.se [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id A2B6440004; Wed, 10 Oct 2012 14:09:53 +0200 (CEST) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3XcDdY3V7qz8ggx; Wed, 10 Oct 2012 14:09:53 +0200 (CEST) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mx.daemonic.se ([10.1.0.3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [10.1.0.6]) (amavisd-new, port 10025) with ESMTPS id 28WrNO6rAteP; Wed, 10 Oct 2012 14:09:51 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [10.1.0.4]) by mx.daemonic.se (Postfix) with ESMTPS id 3XcDdV6zspz8ggv; Wed, 10 Oct 2012 14:09:50 +0200 (CEST) Received: from tifa.daemonic.se (tifa.daemonic.se [10.32.0.6]) by mail.daemonic.se (Postfix) with ESMTPSA id 3XcDdV6gkwz9CvV; Wed, 10 Oct 2012 14:09:50 +0200 (CEST) Received: from tifa.daemonic.se (localhost [IPv6:::1]) by tifa.daemonic.se (Postfix) with ESMTP id 9005F22AFA; Wed, 10 Oct 2012 14:09:50 +0200 (CEST) Message-ID: <5075658E.1020503@daemonic.se> Date: Wed, 10 Oct 2012 14:09:50 +0200 From: Niclas Zeising User-Agent: Mutt/1.5.21 MIME-Version: 1.0 To: Erwin Lansing Subject: Re: svn commit: r305645 - in head: dns/bind96 dns/bind97 dns/bind98 dns/bind99 security/vuxml References: <201210101154.q9ABsihq021179@svn.freebsd.org> <50756395.1050502@daemonic.se> <20121010120512.GU27371@droso.net> In-Reply-To: <20121010120512.GU27371@droso.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:09:55 -0000 On 10/10/12 14:05, Erwin Lansing wrote: > On Wed, Oct 10, 2012 at 02:01:25PM +0200, Niclas Zeising wrote: >> On 10/10/12 13:54, Erwin Lansing wrote: >>> Author: erwin >>> Date: Wed Oct 10 11:54:44 2012 >>> New Revision: 305645 >>> URL: http://svn.freebsd.org/changeset/ports/305645 >>> >>> Log: >>> Upgrade to the latest BIND patch level: >>> >>> A deliberately constructed combination of records could cause named >>> to hang while populating the additional section of a response. >>> >>> Security: http://www.vuxml.org/freebsd/57a700f9-12c0-11e2-9f86-001d923933b6.html >>> >> >> Any reason to not update to 9.9.2, 9.8.4, etc? > > This was a quick update to get the latest security patches in, updating > to the next minor releases will follow later. > > Erwin > Ok. Thanks for the info! For what it's worth, bind 9.9.2 builds fine... Let me know if you need any help with further testing or anything! Regards! -- Niclas Zeising From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:20:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0D6B7E1; Wed, 10 Oct 2012 12:20:25 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D8F928FC12; Wed, 10 Oct 2012 12:20:25 +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 q9ACKPsb024831; Wed, 10 Oct 2012 12:20:25 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACKPm5024829; Wed, 10 Oct 2012 12:20:25 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210101220.q9ACKPm5024829@svn.freebsd.org> From: "Jason E. Hale" Date: Wed, 10 Oct 2012 12:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305646 - head/security/libassuan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:20:26 -0000 Author: jhale Date: Wed Oct 10 12:20:25 2012 New Revision: 305646 URL: http://svn.freebsd.org/changeset/ports/305646 Log: - Take maintainership Approved by: makc, avilla (mentors, implicit) Modified: head/security/libassuan/Makefile (contents, props changed) Modified: head/security/libassuan/Makefile ============================================================================== --- head/security/libassuan/Makefile Wed Oct 10 11:54:44 2012 (r305645) +++ head/security/libassuan/Makefile Wed Oct 10 12:20:25 2012 (r305646) @@ -1,5 +1,4 @@ # Created by: Michael Nottebrock -# # $FreeBSD$ PORTNAME= libassuan @@ -10,7 +9,7 @@ MASTER_SITE_SUBDIR=${PORTNAME} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jhale@FreeBSD.org COMMENT= IPC library used by GnuPG and gpgme LIB_DEPENDS+= pth.20:${PORTSDIR}/devel/pth \ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:20:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F8618A1; Wed, 10 Oct 2012 12:20:33 +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 658B08FC1F; Wed, 10 Oct 2012 12:20:33 +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 q9ACKXHS024949; Wed, 10 Oct 2012 12:20:33 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACKXQ6024944; Wed, 10 Oct 2012 12:20:33 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210101220.q9ACKXQ6024944@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Wed, 10 Oct 2012 12:20:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305647 - in head/databases/py-postgresql: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:20:33 -0000 Author: rm Date: Wed Oct 10 12:20:32 2012 New Revision: 305647 URL: http://svn.freebsd.org/changeset/ports/305647 Log: - update to 1.1.0 - trim Makefile header completely (requested by maintainer) - add CHEESESHOP and make it primary MASTER_SITE, because other locations doesn't hold the new release yet - remove one distfile mirror (requested by maintainer) - add LICENSE (BSD) - replace USE_XZ with USE_ZIP, since it was changed upstream - tune PYDISTUTILS_PKGNAME - move python32 plist stuff into separate file changelog: http://pgfoundry.org/pipermail/python-general/2012-October/001003.html PR: 172544 (but I can't see it in GNATS because of hub transition) Submitted by: rm (myself) Approved by: Volodymyr Kostyrko (maintainer, by mail) Added: head/databases/py-postgresql/files/ head/databases/py-postgresql/files/py3k-fix-pkg-plist.inc (contents, props changed) Modified: head/databases/py-postgresql/Makefile head/databases/py-postgresql/distinfo head/databases/py-postgresql/pkg-plist Modified: head/databases/py-postgresql/Makefile ============================================================================== --- head/databases/py-postgresql/Makefile Wed Oct 10 12:20:25 2012 (r305646) +++ head/databases/py-postgresql/Makefile Wed Oct 10 12:20:32 2012 (r305647) @@ -1,15 +1,10 @@ -# New ports collection makefile for: py-postgresql -# Date created: 15 August 2009 -# Whom: Volodymyr Kostyrko -# # $FreeBSD$ -# PORTNAME= postgresql -PORTVERSION= 1.0.4 +PORTVERSION= 1.1.0 CATEGORIES= databases python -MASTER_SITES= http://python.projects.postgresql.org/files/ \ - http://limbo.xim.bz/distfiles/ +MASTER_SITES= CHEESESHOP \ + http://python.projects.postgresql.org/files/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= py-${PORTNAME}-${PORTVERSION} DIST_SUBDIR= postgresql @@ -17,30 +12,18 @@ DIST_SUBDIR= postgresql MAINTAINER= c.kworr@gmail.com COMMENT= Python 3 compatible PostgreSQL database driver and tools -USE_XZ= yes +LICENSE= BSD + +USE_ZIP= yes USE_PGSQL= yes USE_PYTHON= 3.1+ USE_PYDISTUTILS= yes - -PYDISTUTILS_EGGINFO= py_${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-${PYTHON_VERSION:S/thon//}.egg-info +PYDISTUTILS_PKGNAME= py_${PORTNAME} .include -# When Python version is 3.2+ we rewrite all the filenames -# of TMPPLIST that end with .py[co], so that they conform -# to PEP 3147 (see http://www.python.org/dev/peps/pep-3147/) .if ${PYTHON_REL} >= 320 -PYMAGICTAG= ${PYTHON_CMD} -c 'import imp; print(imp.get_tag())' -add-plist-post: - @${AWK} '\ - /\.py[co]$$/ && !($$0 ~ "/" pc "/") {id = match($$0, /\/[^\/]+\.py[co]$$/); if (id != 0) {d = substr($$0, 1, RSTART - 1); dirs[d] = 1}; sub(/\.py[co]$$/, "." mt "&"); sub(/[^\/]+\.py[co]$$/, pc "/&"); print; next} \ - /^@dirrm / {d = substr($$0, 8); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \ - {print} \ - END {if (sp in dirs) {print "@dirrm " sp "/" pc}} \ - ' \ - pc="__pycache__" mt="$$(${PYMAGICTAG})" sp="${PYTHON_SITELIBDIR:S,${PYTHONBASE}/,,g}" \ - ${TMPPLIST} > ${TMPPLIST}.pyc_tmp - @${MV} ${TMPPLIST}.pyc_tmp ${TMPPLIST} +.include "${FILESDIR}/py3k-fix-pkg-plist.inc" .endif .include Modified: head/databases/py-postgresql/distinfo ============================================================================== --- head/databases/py-postgresql/distinfo Wed Oct 10 12:20:25 2012 (r305646) +++ head/databases/py-postgresql/distinfo Wed Oct 10 12:20:32 2012 (r305647) @@ -1,2 +1,2 @@ -SHA256 (postgresql/py-postgresql-1.0.4.tar.xz) = d0ed0a98a33c598d416a3c713befcdedb14f37b961c6985547a120f8830a41fe -SIZE (postgresql/py-postgresql-1.0.4.tar.xz) = 605228 +SHA256 (postgresql/py-postgresql-1.1.0.zip) = 4bae6e15bf0be03294240acc5b27f5aa2d9649188bc4528cd5b5512582e0ea93 +SIZE (postgresql/py-postgresql-1.1.0.zip) = 254537 Added: head/databases/py-postgresql/files/py3k-fix-pkg-plist.inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-postgresql/files/py3k-fix-pkg-plist.inc Wed Oct 10 12:20:32 2012 (r305647) @@ -0,0 +1,14 @@ +# When Python version is 3.2+ we rewrite all the filenames +# of TMPPLIST that end with .py[co], so that they conform +# to PEP 3147 (see http://www.python.org/dev/peps/pep-3147/) +PYMAGICTAG= ${PYTHON_CMD} -c 'import imp; print(imp.get_tag())' +add-plist-post: + @${AWK} '\ + /\.py[co]$$/ && !($$0 ~ "/" pc "/") {id = match($$0, /\/[^\/]+\.py[co]$$/); if (id != 0) {d = substr($$0, 1, RSTART - 1); dirs[d] = 1}; sub(/\.py[co]$$/, "." mt "&"); sub(/[^\/]+\.py[co]$$/, pc "/&"); print; next} \ + /^@dirrm / {d = substr($$0, 8); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \ + {print} \ + END {if (sp in dirs) {print "@dirrm " sp "/" pc}} \ + ' \ + pc="__pycache__" mt="$$(${PYMAGICTAG})" sp="${PYTHON_SITELIBDIR:S,${PYTHONBASE}/,,g}" \ + ${TMPPLIST} > ${TMPPLIST}.pyc_tmp + @${MV} ${TMPPLIST}.pyc_tmp ${TMPPLIST} Modified: head/databases/py-postgresql/pkg-plist ============================================================================== --- head/databases/py-postgresql/pkg-plist Wed Oct 10 12:20:25 2012 (r305646) +++ head/databases/py-postgresql/pkg-plist Wed Oct 10 12:20:32 2012 (r305647) @@ -26,55 +26,6 @@ %%PYTHON_SITELIBDIR%%/postgresql/copyman.py %%PYTHON_SITELIBDIR%%/postgresql/copyman.pyc %%PYTHON_SITELIBDIR%%/postgresql/copyman.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/admin.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/admin.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/admin.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/admin.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/alock.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/alock.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/alock.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/alock.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/bin.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/bin.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/bin.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/bin.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/changes-v1.0.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/changes.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/changes.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/changes.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/clientparameters.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/clientparameters.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/clientparameters.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/clientparameters.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/cluster.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/cluster.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/cluster.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/cluster.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/copyman.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/copyman.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/copyman.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/copyman.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/driver.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/driver.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/driver.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/driver.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/gotchas.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/gotchas.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/gotchas.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/gotchas.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/index.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/index.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/index.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/index.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/lib.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/lib.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/lib.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/lib.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/notifyman.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/notifyman.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/notifyman.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/notifyman.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/modules.txt %%PYTHON_SITELIBDIR%%/postgresql/documentation/__init__.py %%PYTHON_SITELIBDIR%%/postgresql/documentation/__init__.pyc %%PYTHON_SITELIBDIR%%/postgresql/documentation/__init__.pyo From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:28:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A6E01CA4; Wed, 10 Oct 2012 12:28:23 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8E8C98FC08; Wed, 10 Oct 2012 12:28: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 q9ACSNsA026188; Wed, 10 Oct 2012 12:28:23 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACSN9w026185; Wed, 10 Oct 2012 12:28:23 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101228.q9ACSN9w026185@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 12:28:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305648 - head/devel/tcllib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:28:23 -0000 Author: gahr Date: Wed Oct 10 12:28:22 2012 New Revision: 305648 URL: http://svn.freebsd.org/changeset/ports/305648 Log: - Do not install the try.n manpage when using Tcl 8.6, cause try/catch/finally are part of Tcl 8.6 core and the relevant manpage is installed by lang/tcl86 http://www.tcl.tk/cgi-bin/tct/tip/329.html Modified: head/devel/tcllib/Makefile head/devel/tcllib/Makefile.man Modified: head/devel/tcllib/Makefile ============================================================================== --- head/devel/tcllib/Makefile Wed Oct 10 12:20:32 2012 (r305647) +++ head/devel/tcllib/Makefile Wed Oct 10 12:28:22 2012 (r305648) @@ -7,6 +7,7 @@ PORTNAME= tcllib PORTVERSION= 1.14 +PORTREVISION= 1 CATEGORIES= devel tcl MASTER_SITES= SF @@ -43,6 +44,14 @@ post-patch: ${WRKSRC}/modules/doctools/tests/text/04 > ${WRKSRC}/modules/doctools/tests/text/04.new ${MV} ${WRKSRC}/modules/doctools/tests/text/04.new ${WRKSRC}/modules/doctools/tests/text/04 + # try(n) is part of Tcl core since 8.6 +.if ${TCL_VER:S/.//} < 86 + MANN+= try.n +.else + ${MV} ${WRKSRC}/modules/try/try.man ${WRKSRC}/modules/try/try.man.noinstall +.endif + + RUNTEST= ${SETENV} LANG=C DISPLAY= ${MAKE} -C ${WRKSRC} test MYID != ${ID} -u .if ${MYID} == 0 Modified: head/devel/tcllib/Makefile.man ============================================================================== --- head/devel/tcllib/Makefile.man Wed Oct 10 12:20:32 2012 (r305647) +++ head/devel/tcllib/Makefile.man Wed Oct 10 12:28:22 2012 (r305648) @@ -303,7 +303,6 @@ MANN= S3.n \ traverse.n \ treeql.n \ trim.n \ - try.n \ uevent.n \ uevent_onidle.n \ unicode.n \ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:31:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A8C2EC6; Wed, 10 Oct 2012 12:31:21 +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 81BBA8FC1E; Wed, 10 Oct 2012 12:31: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 q9ACVLeD026808; Wed, 10 Oct 2012 12:31:21 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACVLhA026806; Wed, 10 Oct 2012 12:31:21 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101231.q9ACVLhA026806@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 12:31:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305649 - head/dns/fpdns X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:31:21 -0000 Author: bdrewery Date: Wed Oct 10 12:31:20 2012 New Revision: 305649 URL: http://svn.freebsd.org/changeset/ports/305649 Log: - Take maintainership - Trim header - Use USE_GITHUB for fetching Modified: head/dns/fpdns/Makefile Modified: head/dns/fpdns/Makefile ============================================================================== --- head/dns/fpdns/Makefile Wed Oct 10 12:28:22 2012 (r305648) +++ head/dns/fpdns/Makefile Wed Oct 10 12:31:20 2012 (r305649) @@ -1,21 +1,20 @@ # Created by: Edwin Groothuis -# # $FreeBSD$ PORTNAME= fpdns PORTVERSION= 0.9.3.20120719 CATEGORIES= dns net perl5 -MASTER_SITES= https://github.com/kirei/fpdns/tarball/${GITVERSION}/ -DISTNAME= kirei-fpdns-${GITVERSION} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bdrewery@FreeBSD.org COMMENT= FPDNS - Fingerprinting DNS servers -FETCH_ARGS= -Fpr -GITVERSION= 9eb38df - RUN_DEPENDS= p5-Net-DNS>0:${PORTSDIR}/dns/p5-Net-DNS +USE_GITHUB= yes +GH_ACCOUNT= kirei +GH_COMMIT= 9eb38df + PERL_CONFIGURE= yes MAN1= fpdns.1 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:33:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 992FC9D; Wed, 10 Oct 2012 12:33:36 +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 7E5B68FC0C; Wed, 10 Oct 2012 12:33:36 +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 q9ACXaEQ027317; Wed, 10 Oct 2012 12:33:36 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACXatN027309; Wed, 10 Oct 2012 12:33:36 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101233.q9ACXatN027309@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 12:33:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305650 - in head: chinese/bug5 converters/bsdconv converters/gbsdconv converters/p5-bsdconv converters/php5-bsdconv converters/py-bsdconv converters/ruby-bsdconv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:33:36 -0000 Author: bdrewery Date: Wed Oct 10 12:33:35 2012 New Revision: 305650 URL: http://svn.freebsd.org/changeset/ports/305650 Log: - Use GH_ACCOUNT in DISTNAME Suggested by: sunpoet Approved by: Kuan-Chung Chiu (maintainer) Modified: head/chinese/bug5/Makefile head/converters/bsdconv/Makefile head/converters/gbsdconv/Makefile head/converters/p5-bsdconv/Makefile head/converters/php5-bsdconv/Makefile head/converters/py-bsdconv/Makefile head/converters/ruby-bsdconv/Makefile Modified: head/chinese/bug5/Makefile ============================================================================== --- head/chinese/bug5/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/chinese/bug5/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -4,7 +4,7 @@ PORTNAME= bug5 PORTVERSION= 1.13 CATEGORIES= chinese converters -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= A Big5/GBK <-> UTF-8 translating layer in terminal Modified: head/converters/bsdconv/Makefile ============================================================================== --- head/converters/bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -4,7 +4,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= BSD licensed charset/encoding converter library Modified: head/converters/gbsdconv/Makefile ============================================================================== --- head/converters/gbsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/gbsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -4,7 +4,7 @@ PORTNAME= gbsdconv PORTVERSION= 1.0 CATEGORIES= converters python -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= GUI for bsdconv Modified: head/converters/p5-bsdconv/Makefile ============================================================================== --- head/converters/p5-bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/p5-bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -5,7 +5,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters perl5 PKGNAMEPREFIX= p5- -DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Perl wrapper for bsdconv Modified: head/converters/php5-bsdconv/Makefile ============================================================================== --- head/converters/php5-bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/php5-bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -5,7 +5,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters PKGNAMEPREFIX= php5- -DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= PHP wrapper for bsdconv Modified: head/converters/py-bsdconv/Makefile ============================================================================== --- head/converters/py-bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/py-bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -5,7 +5,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Python wrapper for bsdconv Modified: head/converters/ruby-bsdconv/Makefile ============================================================================== --- head/converters/ruby-bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/ruby-bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -5,7 +5,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters ruby PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Ruby wrapper for bsdconv From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:01:17 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A76F744; Wed, 10 Oct 2012 13:01:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 07DA08FC08; Wed, 10 Oct 2012 13:01:17 +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 q9AD1Gax031294; Wed, 10 Oct 2012 13:01:16 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD1GHO031291; Wed, 10 Oct 2012 13:01:16 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101301.q9AD1GHO031291@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:01:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305651 - head/textproc/hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:01:17 -0000 Author: sunpoet Date: Wed Oct 10 13:01:16 2012 New Revision: 305651 URL: http://svn.freebsd.org/changeset/ports/305651 Log: - Set DIST_SUBDIR: move dist files to DISTDIR/hunspell - Remove unnecessary pre-build: - Cleanup Makefile header Modified: head/textproc/hunspell/Makefile (contents, props changed) head/textproc/hunspell/distinfo (contents, props changed) Modified: head/textproc/hunspell/Makefile ============================================================================== --- head/textproc/hunspell/Makefile Wed Oct 10 12:33:35 2012 (r305650) +++ head/textproc/hunspell/Makefile Wed Oct 10 13:01:16 2012 (r305651) @@ -1,15 +1,12 @@ -# New ports collection makefile for: hunspell -# Date created: 24.07.2004 -# Whom: janos.mohacsi@bsd.hu -# +# Created by: janos.mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= hunspell PORTVERSION= 1.3.2 PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/Hunspell/${PORTVERSION} +DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Improved spell-checker for Hungarian and other languages @@ -17,14 +14,13 @@ COMMENT= Improved spell-checker for Hung LICENSE= GPLv2 LGPL21 MPL LICENSE_COMB= dual -CONFIGURE_ARGS= --disable-nls --with-readline --with-ui \ - --with-libiconv-prefix=${LOCALBASE} +CONFIGURE_ARGS= --disable-nls --with-libiconv-prefix=${LOCALBASE} --with-readline --with-ui GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes USE_GNOME= gnomehack +USE_ICONV= yes USE_LDCONFIG= yes USE_NCURSES= yes -USE_ICONV= yes MANLANG= "" hu MAN1_EN= hunspell.1 hunzip.1 hzip.1 @@ -36,8 +32,4 @@ MAN4_HU= hunspell.4 post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/src/tools/hunspell.cxx -pre-build: - @${TOUCH} ${WRKSRC}/aclocal.m4 ${WRKSRC}/Makefile.in \ - ${WRKSRC}/configure ${WRKSRC}/config.h.in - .include Modified: head/textproc/hunspell/distinfo ============================================================================== --- head/textproc/hunspell/distinfo Wed Oct 10 12:33:35 2012 (r305650) +++ head/textproc/hunspell/distinfo Wed Oct 10 13:01:16 2012 (r305651) @@ -1,2 +1,2 @@ -SHA256 (hunspell-1.3.2.tar.gz) = b4edd4a4ee944cb9f485b35473e46b729ed768e9d24da8e78e4c4c6ca56addbd -SIZE (hunspell-1.3.2.tar.gz) = 975917 +SHA256 (hunspell/hunspell-1.3.2.tar.gz) = b4edd4a4ee944cb9f485b35473e46b729ed768e9d24da8e78e4c4c6ca56addbd +SIZE (hunspell/hunspell-1.3.2.tar.gz) = 975917 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:02:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30C318E5; Wed, 10 Oct 2012 13:02:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F26F78FC14; Wed, 10 Oct 2012 13:02:03 +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 q9AD23ZN031491; Wed, 10 Oct 2012 13:02:03 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD23xN031487; Wed, 10 Oct 2012 13:02:03 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101302.q9AD23xN031487@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:02:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305652 - head/graphics/p5-GraphViz2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:02:04 -0000 Author: sunpoet Date: Wed Oct 10 13:02:03 2012 New Revision: 305652 URL: http://svn.freebsd.org/changeset/ports/305652 Log: - Update to 2.05 - Convert to new options framework Changes: http://search.cpan.org/dist/GraphViz2/CHANGES Modified: head/graphics/p5-GraphViz2/Makefile head/graphics/p5-GraphViz2/distinfo head/graphics/p5-GraphViz2/pkg-plist Modified: head/graphics/p5-GraphViz2/Makefile ============================================================================== --- head/graphics/p5-GraphViz2/Makefile Wed Oct 10 13:01:16 2012 (r305651) +++ head/graphics/p5-GraphViz2/Makefile Wed Oct 10 13:02:03 2012 (r305652) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= GraphViz2 -PORTVERSION= 2.04 +PORTVERSION= 2.05 CATEGORIES= graphics perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RSAVAGE @@ -37,6 +37,8 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/dot:${PO RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.44:${PORTSDIR}/devel/p5-Test-Pod +OPTIONS_DEFINE= EXAMPLES + PERL_CONFIGURE= 5.14.2+ MAN3= GraphViz2.3 \ @@ -75,7 +77,7 @@ RUN_DEPENDS+= p5-HTTP-Tiny>=0.012:${PORT .endif post-install: -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/scripts/* ${EXAMPLESDIR}/ .endif Modified: head/graphics/p5-GraphViz2/distinfo ============================================================================== --- head/graphics/p5-GraphViz2/distinfo Wed Oct 10 13:01:16 2012 (r305651) +++ head/graphics/p5-GraphViz2/distinfo Wed Oct 10 13:02:03 2012 (r305652) @@ -1,2 +1,2 @@ -SHA256 (GraphViz2-2.04.tgz) = 8583a0258799f0914f5bcdf5a61f6656f85a9cf40278e217472848f08bc8271e -SIZE (GraphViz2-2.04.tgz) = 198337 +SHA256 (GraphViz2-2.05.tgz) = 4ac49dc103699168539a656c6ee8ba1f33ef1ddf0b757217d1624a0b8085ebac +SIZE (GraphViz2-2.05.tgz) = 201011 Modified: head/graphics/p5-GraphViz2/pkg-plist ============================================================================== --- head/graphics/p5-GraphViz2/pkg-plist Wed Oct 10 13:01:16 2012 (r305651) +++ head/graphics/p5-GraphViz2/pkg-plist Wed Oct 10 13:02:03 2012 (r305652) @@ -46,6 +46,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rank.sub.graph.2.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rank.sub.graph.3.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rank.sub.graph.4.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report.nodes.and.edges.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/report.valid.attributes.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sub.graph.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sub.sub.graph.pl From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:03:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C470A0D; Wed, 10 Oct 2012 13:03:05 +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 53AE58FC12; Wed, 10 Oct 2012 13:03:05 +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 q9AD35w9031716; Wed, 10 Oct 2012 13:03:05 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD355A031712; Wed, 10 Oct 2012 13:03:05 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101303.q9AD355A031712@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 13:03:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305653 - head/ports-mgmt/portmaster X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:03:05 -0000 Author: bdrewery Date: Wed Oct 10 13:03:04 2012 New Revision: 305653 URL: http://svn.freebsd.org/changeset/ports/305653 Log: - Move to new home, http://github.com/portmaster - Take maintainership - Convert to new options framework - Use USE_GITHUB for fetching - Add DISTNAME to avoid conflict with existing distfile as the checksum of the distfile has changed now that it is no longer modified for release. - Remove use of bsd.port.pre.mk Modified: head/ports-mgmt/portmaster/Makefile head/ports-mgmt/portmaster/distinfo head/ports-mgmt/portmaster/pkg-descr Modified: head/ports-mgmt/portmaster/Makefile ============================================================================== --- head/ports-mgmt/portmaster/Makefile Wed Oct 10 13:02:03 2012 (r305652) +++ head/ports-mgmt/portmaster/Makefile Wed Oct 10 13:03:04 2012 (r305653) @@ -3,55 +3,60 @@ PORTNAME= portmaster PORTVERSION= 3.14 CATEGORIES= ports-mgmt -MASTER_SITES= http://www.c-s.li/ports/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-${GH_COMMIT} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bdrewery@FreeBSD.org COMMENT= Manage your ports without external databases or languages -OPTIONS= BASH "Install programmable completions for Bash" off \ - ZSH "Install programmable completions for zsh" off +LICENSE= BSD + +USE_GITHUB= yes +GH_ACCOUNT= portmaster +GH_COMMIT= 31009f6 +GH_TAGNAME= ${GH_COMMIT} + +OPTIONS_DEFINE= BASH ZSH +BASH_DESC= Install programmable completions for Bash +ZSH_DESC= Install programmable completions for zsh PLIST_FILES= sbin/portmaster etc/portmaster.rc.sample MAN8= portmaster.8 -.include +.include -.if defined(WITH_BASH) +.if ${PORT_OPTIONS:MBASH} PLIST_FILES+= etc/bash_completion.d/portmaster.sh PLIST_DIRSTRY+= etc/bash_completion.d .endif -.if defined(WITH_ZSH) +.if ${PORT_OPTIONS:MZSH} PLIST_FILES+= share/zsh/site-functions/_portmaster PLIST_DIRSTRY+= share/zsh/site-functions share/zsh .endif verify: checksum - gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc do-build: -.for file in portmaster.sh portmaster.rc.sample - ${SED} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/${file}.in \ - > ${WRKDIR}/${file} +.for file in portmaster files/portmaster.rc.sample + ${SED} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/${file} \ + > ${WRKDIR}/${file:T} .endfor do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/portmaster.sh ${PREFIX}/sbin/portmaster + ${INSTALL_SCRIPT} ${WRKDIR}/portmaster ${PREFIX}/sbin/portmaster ${INSTALL_DATA} ${WRKDIR}/portmaster.rc.sample ${PREFIX}/etc - ${INSTALL_MAN} ${WRKSRC}/portmaster.8 ${MAN8PREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/files/portmaster.8 ${MAN8PREFIX}/man/man8 post-install: -.if defined(WITH_BASH) +.if ${PORT_OPTIONS:MBASH} ${MKDIR} ${PREFIX}/etc/bash_completion.d - ${INSTALL_DATA} ${WRKSRC}/bash-completions \ + ${INSTALL_DATA} ${WRKSRC}/files/bash-completions \ ${PREFIX}/etc/bash_completion.d/portmaster.sh .endif -.if defined(WITH_ZSH) +.if ${PORT_OPTIONS:MZSH} ${MKDIR} ${PREFIX}/share/zsh/site-functions - ${INSTALL_DATA} ${WRKSRC}/zsh-completions \ + ${INSTALL_DATA} ${WRKSRC}/files/zsh-completions \ ${PREFIX}/share/zsh/site-functions/_portmaster .endif -.include +.include Modified: head/ports-mgmt/portmaster/distinfo ============================================================================== --- head/ports-mgmt/portmaster/distinfo Wed Oct 10 13:02:03 2012 (r305652) +++ head/ports-mgmt/portmaster/distinfo Wed Oct 10 13:03:04 2012 (r305653) @@ -1,4 +1,2 @@ -SHA256 (portmaster-3.14.tar.gz) = 676314bee13a02cc8b6a82df5c5062f80ba96083dfbe3bb90be7e96f05af5d31 -SIZE (portmaster-3.14.tar.gz) = 42062 -SHA256 (portmaster-3.14.tar.gz.asc) = b04e8ff40dac2778403546443fb319a4e2b573714d8ec18e5f8dc085c77e4f5e -SIZE (portmaster-3.14.tar.gz.asc) = 488 +SHA256 (portmaster-portmaster-3.14-31009f6.tar.gz) = 9029531c486d937c09974baa0174f5a59b5e54c2400ab60caabb09af3add9605 +SIZE (portmaster-portmaster-3.14-31009f6.tar.gz) = 42265 Modified: head/ports-mgmt/portmaster/pkg-descr ============================================================================== --- head/ports-mgmt/portmaster/pkg-descr Wed Oct 10 13:02:03 2012 (r305652) +++ head/ports-mgmt/portmaster/pkg-descr Wed Oct 10 13:03:04 2012 (r305653) @@ -18,3 +18,5 @@ Portmaster has the following features: * Options to list installed ports by category, and those with new versions * Packages can be used for installation either exclusively, if available, or only for build dependencies + +WWW: http://www.github.com/portmaster/portmaster From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:03:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 599A7A10; Wed, 10 Oct 2012 13:03:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 27E428FC16; Wed, 10 Oct 2012 13:03:08 +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 q9AD38Vj031797; Wed, 10 Oct 2012 13:03:08 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD37uX031793; Wed, 10 Oct 2012 13:03:07 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101303.q9AD37uX031793@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305654 - head/www/p5-PocketIO X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:03:08 -0000 Author: sunpoet Date: Wed Oct 10 13:03:07 2012 New Revision: 305654 URL: http://svn.freebsd.org/changeset/ports/305654 Log: - Update to 0.14 - Cleanup Makefile header Changes: http://search.cpan.org/dist/PocketIO/Changes Modified: head/www/p5-PocketIO/Makefile (contents, props changed) head/www/p5-PocketIO/distinfo (contents, props changed) head/www/p5-PocketIO/pkg-plist (contents, props changed) Modified: head/www/p5-PocketIO/Makefile ============================================================================== --- head/www/p5-PocketIO/Makefile Wed Oct 10 13:03:04 2012 (r305653) +++ head/www/p5-PocketIO/Makefile Wed Oct 10 13:03:07 2012 (r305654) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-PocketIO -# Date created: 2011-10-01 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= PocketIO -PORTVERSION= 0.13000 +PORTVERSION= 0.14000 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:VTI @@ -23,7 +19,6 @@ BUILD_DEPENDS= p5-AnyEvent>=0:${PORTSDIR p5-Protocol-SocketIO>=0.04:${PORTSDIR}/www/p5-Protocol-SocketIO \ p5-Protocol-WebSocket>=0.00906:${PORTSDIR}/www/p5-Protocol-WebSocket RUN_DEPENDS:= ${BUILD_DEPENDS} - TEST_DEPENDS= p5-Plack>=0:${PORTSDIR}/www/p5-Plack \ p5-Test-TCP>=0:${PORTSDIR}/devel/p5-Test-TCP \ p5-Twiggy>=0:${PORTSDIR}/www/p5-Twiggy Modified: head/www/p5-PocketIO/distinfo ============================================================================== --- head/www/p5-PocketIO/distinfo Wed Oct 10 13:03:04 2012 (r305653) +++ head/www/p5-PocketIO/distinfo Wed Oct 10 13:03:07 2012 (r305654) @@ -1,2 +1,2 @@ -SHA256 (PocketIO-0.13.tar.gz) = b274cf2ef698e3b1ca2ccf046dc27a745ed4cf2bacfbbbe10990a9ddca231fd6 -SIZE (PocketIO-0.13.tar.gz) = 403143 +SHA256 (PocketIO-0.14.tar.gz) = 260ec8ba0ded77901a509c8dc5d0d973f61afc80bdfe2088d923a90555e7301c +SIZE (PocketIO-0.14.tar.gz) = 405111 Modified: head/www/p5-PocketIO/pkg-plist ============================================================================== --- head/www/p5-PocketIO/pkg-plist Wed Oct 10 13:03:04 2012 (r305653) +++ head/www/p5-PocketIO/pkg-plist Wed Oct 10 13:03:07 2012 (r305654) @@ -7,6 +7,7 @@ %%SITE_PERL%%/PocketIO/Pool.pm %%SITE_PERL%%/PocketIO/Pool/Redis.pm %%SITE_PERL%%/PocketIO/Resource.pm +%%SITE_PERL%%/PocketIO/Room.pm %%SITE_PERL%%/PocketIO/Socket.pm %%SITE_PERL%%/PocketIO/Sockets.pm %%SITE_PERL%%/PocketIO/Test.pm From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:05:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C5F0C02; Wed, 10 Oct 2012 13:05:02 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DEB1D8FC0A; Wed, 10 Oct 2012 13:05: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 q9AD51KY032171; Wed, 10 Oct 2012 13:05:01 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD51LO032168; Wed, 10 Oct 2012 13:05:01 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101305.q9AD51LO032168@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 13:05:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305655 - head/x11-wm/e16 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:05:02 -0000 Author: gahr Date: Wed Oct 10 13:05:01 2012 New Revision: 305655 URL: http://svn.freebsd.org/changeset/ports/305655 Log: - Update to 1.0.11 - Add OptionsNG to select ESD sound server - Convert NLS and PORTDOCS checks to OptionsNG Modified: head/x11-wm/e16/Makefile head/x11-wm/e16/distinfo (contents, props changed) Modified: head/x11-wm/e16/Makefile ============================================================================== --- head/x11-wm/e16/Makefile Wed Oct 10 13:03:07 2012 (r305654) +++ head/x11-wm/e16/Makefile Wed Oct 10 13:05:01 2012 (r305655) @@ -1,19 +1,16 @@ -# New ports collection makefile for: enlightenment -# Date created: 10 June 1997 -# Whom: Yukihiro Nakai -# +# Created by: Yukihiro Nakai # $FreeBSD$ -# PORTNAME= e16 -PORTVERSION= 1.0.10.002 +PORTVERSION= 1.0.11 CATEGORIES= x11-wm enlightenment -MASTER_SITES= SF/enlightenment/${PORTNAME}/Snapshots/ +MASTER_SITES= SF/enlightenment/${PORTNAME}/${PORTVERSION}/ MAINTAINER= gahr@FreeBSD.org COMMENT= A very artistic X window manager -#BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash +OPTIONS_DEFINE= ESOUND +OPTIONS_DEFAULT=ESOUND USE_XORG= compositeproto damageproto xextproto x11 xbitmaps xcomposite xdamage \ xext xfixes xft xinerama xrandr xrender xxf86vm @@ -25,13 +22,15 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-esdtest --disable-dependency-tracking \ --disable-rpath --enable-mans SHELL=/bin/sh -.if !defined(WITHOUT_ESOUND) +.include + +.if ${PORT_OPTIONS:MESOUND} USE_GNOME= esound .else CONFIGURE_ARGS+=--disable-sound .endif -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" .else @@ -39,7 +38,7 @@ CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} MAN1= e16.1 CONFIGURE_ARGS+=--enable-docs=yes .else Modified: head/x11-wm/e16/distinfo ============================================================================== --- head/x11-wm/e16/distinfo Wed Oct 10 13:03:07 2012 (r305654) +++ head/x11-wm/e16/distinfo Wed Oct 10 13:05:01 2012 (r305655) @@ -1,2 +1,2 @@ -SHA256 (e16-1.0.10.002.tar.gz) = 1e535d1cbcc72d799dd12f7d5f6e1e03565495bb9fd4469e25e6ff731bb4606e -SIZE (e16-1.0.10.002.tar.gz) = 2289750 +SHA256 (e16-1.0.11.tar.gz) = c7bc9fed4a83d2791df2acd6aa9e710cc162f2b54312c834f41940fb60a1f13e +SIZE (e16-1.0.11.tar.gz) = 2281672 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:05:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA721D16 for ; Wed, 10 Oct 2012 13:05:59 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id C8AFC8FC0C for ; Wed, 10 Oct 2012 13:05:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9AD5xgY089923 for ; Wed, 10 Oct 2012 13:05:59 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9AD5xpc089920 for svn-ports-head@freebsd.org; Wed, 10 Oct 2012 13:05:59 GMT (envelope-from bdrewery) Received: (qmail 27031 invoked from network); 10 Oct 2012 08:05:58 -0500 Received: from unknown (HELO ?10.10.0.115?) (freebsd@shatow.net@10.10.0.115) by sweb.xzibition.com with ESMTPA; 10 Oct 2012 08:05:58 -0500 Message-ID: <507572AE.8040202@FreeBSD.org> Date: Wed, 10 Oct 2012 08:05:50 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r305653 - head/ports-mgmt/portmaster References: <201210101303.q9AD355A031712@svn.freebsd.org> In-Reply-To: <201210101303.q9AD355A031712@svn.freebsd.org> X-Enigmail-Version: 1.4.4 OpenPGP: id=3C9B0CF9; url=http://www.shatow.net/bryan/bryan.asc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:06:00 -0000 On 10/10/2012 8:03 AM, Bryan Drewery wrote: > - Move to new home, http://github.com/portmaster > - Take maintainership Being github, it will be easy to track issues, be transparent about contributions, and allow a sane team effort. Please contact me if you are interested. -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:08:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A19EE46; Wed, 10 Oct 2012 13:08:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D077B8FC0C; Wed, 10 Oct 2012 13:08: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 q9AD8Nke032742; Wed, 10 Oct 2012 13:08:23 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD8N0V032737; Wed, 10 Oct 2012 13:08:23 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101308.q9AD8N0V032737@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:08:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305656 - head/www/tinymce3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:08:24 -0000 Author: sunpoet Date: Wed Oct 10 13:08:23 2012 New Revision: 305656 URL: http://svn.freebsd.org/changeset/ports/305656 Log: - Update to 3.5.7 - Cleanup Makefile header Changes: http://www.tinymce.com/develop/changelog/index.php?type=tinymce Modified: head/www/tinymce3/Makefile (contents, props changed) head/www/tinymce3/distinfo (contents, props changed) head/www/tinymce3/pkg-plist (contents, props changed) Modified: head/www/tinymce3/Makefile ============================================================================== --- head/www/tinymce3/Makefile Wed Oct 10 13:05:01 2012 (r305655) +++ head/www/tinymce3/Makefile Wed Oct 10 13:08:23 2012 (r305656) @@ -1,12 +1,8 @@ -# New ports collection makefile for: tinymce -# Date created: 26 Mar 2007 -# Whom: Nick Hilliard -# +# Created by: Nick Hilliard # $FreeBSD$ -# PORTNAME= tinymce -PORTVERSION= 3.4.9 +PORTVERSION= 3.5.7 CATEGORIES= www MASTER_SITES= http://cloud.github.com/downloads/${PORTNAME}/${PORTNAME}/ \ LOCAL/sunpoet Modified: head/www/tinymce3/distinfo ============================================================================== --- head/www/tinymce3/distinfo Wed Oct 10 13:05:01 2012 (r305655) +++ head/www/tinymce3/distinfo Wed Oct 10 13:08:23 2012 (r305656) @@ -1,2 +1,2 @@ -SHA256 (tinymce_3.4.9.zip) = 085909fd8ff12f93de4867d85c98718c474017419f573cb89ba28e9c8ae7324c -SIZE (tinymce_3.4.9.zip) = 814430 +SHA256 (tinymce_3.5.7.zip) = c0a8a037d18aa83f6e3f50766b66602fa631be8d7237d96c39456d0c8476118a +SIZE (tinymce_3.5.7.zip) = 825411 Modified: head/www/tinymce3/pkg-plist ============================================================================== --- head/www/tinymce3/pkg-plist Wed Oct 10 13:05:01 2012 (r305655) +++ head/www/tinymce3/pkg-plist Wed Oct 10 13:08:23 2012 (r305656) @@ -166,6 +166,7 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/style/js/props.js %%WWWDIR%%/jscripts/tiny_mce/plugins/style/langs/en_dlg.js %%WWWDIR%%/jscripts/tiny_mce/plugins/style/props.htm +%%WWWDIR%%/jscripts/tiny_mce/plugins/style/readme.txt %%WWWDIR%%/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/table/cell.htm @@ -189,6 +190,9 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/template/js/template.js %%WWWDIR%%/jscripts/tiny_mce/plugins/template/langs/en_dlg.js %%WWWDIR%%/jscripts/tiny_mce/plugins/template/template.htm +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js @@ -302,6 +306,8 @@ @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/xhtmlxtras @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/wordcount @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/visualchars +@dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/css +@dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/template/langs @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/template/js @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/template/css From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:11:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 12A9B348; Wed, 10 Oct 2012 13:11:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D4D978FC0A; Wed, 10 Oct 2012 13:11: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 q9ADBDp3033272; Wed, 10 Oct 2012 13:11:13 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADBDua033268; Wed, 10 Oct 2012 13:11:13 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101311.q9ADBDua033268@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:11:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305657 - in head/finance/p5-Finance-Quote: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:11:14 -0000 Author: sunpoet Date: Wed Oct 10 13:11:13 2012 New Revision: 305657 URL: http://svn.freebsd.org/changeset/ports/305657 Log: - Update to 1.18 Changes: https://github.com/pfenwick/finance-quote/commits/master Deleted: head/finance/p5-Finance-Quote/files/ Modified: head/finance/p5-Finance-Quote/Makefile head/finance/p5-Finance-Quote/distinfo (contents, props changed) head/finance/p5-Finance-Quote/pkg-plist (contents, props changed) Modified: head/finance/p5-Finance-Quote/Makefile ============================================================================== --- head/finance/p5-Finance-Quote/Makefile Wed Oct 10 13:08:23 2012 (r305656) +++ head/finance/p5-Finance-Quote/Makefile Wed Oct 10 13:11:13 2012 (r305657) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Finance-Quote -PORTVERSION= 1.17 -PORTREVISION= 2 +PORTVERSION= 1.18 CATEGORIES= finance perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -17,11 +16,9 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Crypt-SSLeay>=0:${PORTSDIR}/security/p5-Crypt-SSLeay \ p5-HTML-TableExtract>=0:${PORTSDIR}/www/p5-HTML-TableExtract \ p5-HTML-Tree>=0:${PORTSDIR}/www/p5-HTML-Tree \ + p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww -RUN_DEPENDS= p5-Crypt-SSLeay>=0:${PORTSDIR}/security/p5-Crypt-SSLeay \ - p5-HTML-TableExtract>=0:${PORTSDIR}/www/p5-HTML-TableExtract \ - p5-HTML-Tree>=0:${PORTSDIR}/www/p5-HTML-Tree \ - p5-libwww>=0:${PORTSDIR}/www/p5-libwww +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes Modified: head/finance/p5-Finance-Quote/distinfo ============================================================================== --- head/finance/p5-Finance-Quote/distinfo Wed Oct 10 13:08:23 2012 (r305656) +++ head/finance/p5-Finance-Quote/distinfo Wed Oct 10 13:11:13 2012 (r305657) @@ -1,2 +1,2 @@ -SHA256 (Finance-Quote-1.17.tar.gz) = 10c3e7d98e71997f7e32bff5898ff5153c9ebf1b46063f91c184db8e6089e170 -SIZE (Finance-Quote-1.17.tar.gz) = 130686 +SHA256 (Finance-Quote-1.18.tar.gz) = 4240faabe0646defd4ec76ca9e111977b9e8060eaec41adeb284eb422a428393 +SIZE (Finance-Quote-1.18.tar.gz) = 147575 Modified: head/finance/p5-Finance-Quote/pkg-plist ============================================================================== --- head/finance/p5-Finance-Quote/pkg-plist Wed Oct 10 13:08:23 2012 (r305656) +++ head/finance/p5-Finance-Quote/pkg-plist Wed Oct 10 13:11:13 2012 (r305657) @@ -26,6 +26,8 @@ %%SITE_PERL%%/Finance/Quote/NZX.pm %%SITE_PERL%%/Finance/Quote/Platinum.pm %%SITE_PERL%%/Finance/Quote/SEB.pm +%%SITE_PERL%%/Finance/Quote/SIXfunds.pm +%%SITE_PERL%%/Finance/Quote/SIXshares.pm %%SITE_PERL%%/Finance/Quote/StockHouseCanada.pm %%SITE_PERL%%/Finance/Quote/TSP.pm %%SITE_PERL%%/Finance/Quote/TSX.pm From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:12:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28D75459; Wed, 10 Oct 2012 13:12:18 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 110858FC0C; Wed, 10 Oct 2012 13:12: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 q9ADCH3b033521; Wed, 10 Oct 2012 13:12:17 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADCHem033516; Wed, 10 Oct 2012 13:12:17 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210101312.q9ADCHem033516@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 13:12:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305658 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:12:18 -0000 Author: bapt Date: Wed Oct 10 13:12:17 2012 New Revision: 305658 URL: http://svn.freebsd.org/changeset/ports/305658 Log: Add a part forgotten in previous commit concerning switching to pkgng Modified: head/Mk/bsd.commands.mk head/Mk/bsd.port.mk Modified: head/Mk/bsd.commands.mk ============================================================================== --- head/Mk/bsd.commands.mk Wed Oct 10 13:11:13 2012 (r305657) +++ head/Mk/bsd.commands.mk Wed Oct 10 13:12:17 2012 (r305658) @@ -115,6 +115,8 @@ ECHO_CMD?= echo # Shell builtin # Used to print all the '===>' style prompts - override this to turn them off. ECHO_MSG?= ${ECHO_CMD} +.elif !defined(_PKGTOOLSDEFINED) +_PKGTOOLDEFINED= yes .if defined(WITH_PKGNG) PKG_BIN?= ${LOCALBASE}/sbin/pkg PKG_CMD?= ${PKG_BIN} register Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 10 13:11:13 2012 (r305657) +++ head/Mk/bsd.port.mk Wed Oct 10 13:12:17 2012 (r305658) @@ -1217,6 +1217,9 @@ WITH_PKGNG= yes .endif .endif +# Only define tools here (for transition period with between pkg tools) +.include "${PORTSDIR}/Mk/bsd.commands.mk" + MASTERDIR?= ${.CURDIR} .if ${MASTERDIR} != ${.CURDIR} From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:14:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 195AD59C; Wed, 10 Oct 2012 13:14:28 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F39AA8FC0C; Wed, 10 Oct 2012 13:14:27 +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 q9ADERws033990; Wed, 10 Oct 2012 13:14:27 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADER5S033982; Wed, 10 Oct 2012 13:14:27 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101314.q9ADER5S033982@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 13:14:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305659 - in head/x11-wm/epplets: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:14:28 -0000 Author: gahr Date: Wed Oct 10 13:14:27 2012 New Revision: 305659 URL: http://svn.freebsd.org/changeset/ports/305659 Log: - Update to 0.14 Modified: head/x11-wm/epplets/Makefile (contents, props changed) head/x11-wm/epplets/distinfo (contents, props changed) head/x11-wm/epplets/files/patch-epplets_E-Power.c (contents, props changed) head/x11-wm/epplets/files/patch-epplets_Makefile (contents, props changed) head/x11-wm/epplets/files/patch-epplets_net.c (contents, props changed) head/x11-wm/epplets/pkg-plist (contents, props changed) Modified: head/x11-wm/epplets/Makefile ============================================================================== --- head/x11-wm/epplets/Makefile Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/Makefile Wed Oct 10 13:14:27 2012 (r305659) @@ -1,13 +1,8 @@ -# New ports collection makefile for: epplets -# Date created: 18 October 1999 -# Whom: Yukihiro Nakai -# +# Created by: Yukihiro Nakai # $FreeBSD$ -# PORTNAME= epplets -PORTVERSION= 0.13 -PORTREVISION= 3 +PORTVERSION= 0.14 CATEGORIES= x11-wm MASTER_SITES= SF/enlightenment/${PORTNAME}/${PORTVERSION} Modified: head/x11-wm/epplets/distinfo ============================================================================== --- head/x11-wm/epplets/distinfo Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/distinfo Wed Oct 10 13:14:27 2012 (r305659) @@ -1,2 +1,2 @@ -SHA256 (epplets-0.13.tar.gz) = 605dfec7ce380eefa42dbd36bcec9b41e7754d4cc5d4f7365761743df5640021 -SIZE (epplets-0.13.tar.gz) = 953034 +SHA256 (epplets-0.14.tar.gz) = e3d1520344532f602a0a7807cda363d6435655aed302967a8580f102e3468132 +SIZE (epplets-0.14.tar.gz) = 971885 Modified: head/x11-wm/epplets/files/patch-epplets_E-Power.c ============================================================================== --- head/x11-wm/epplets/files/patch-epplets_E-Power.c Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/files/patch-epplets_E-Power.c Wed Oct 10 13:14:27 2012 (r305659) @@ -1,5 +1,5 @@ ---- epplets/E-Power.c.orig 2006-04-16 00:32:43.000000000 +0200 -+++ epplets/E-Power.c 2008-03-10 17:12:55.000000000 +0100 +--- epplets/E-Power.c.orig 2011-11-26 11:38:40.000000000 +0100 ++++ epplets/E-Power.c 2012-10-10 15:01:17.000000000 +0200 @@ -1,9 +1,22 @@ +/*- + * Copyright 2008, Pietro Cerutti (FreeBSD adaptation) @@ -23,7 +23,7 @@ /* Modified by Attila ZIMLER , 2003/11/16 Added ACPI power management support. */ -@@ -11,6 +24,19 @@ +@@ -11,6 +24,20 @@ /* Length of explain strings in /proc/acpi/battery/BAT0 data files */ #define DATA_EXPLAIN_STR_LEN 25 @@ -31,6 +31,7 @@ +#define MODE_NONE 0x0 +#define MODE_APM 0x1 +#define MODE_ACPI 0x2 ++#define MODE_SYS 0x3 +static unsigned mode = MODE_NONE; + +#ifdef __FreeBSD__ @@ -43,59 +44,68 @@ int prev_bat_val = 110; int bat_val = 0; int time_val = 0; -@@ -31,17 +57,39 @@ +@@ -33,14 +60,37 @@ static void cb_timer(void *data) { -- struct stat st; - +#ifdef linux -+ struct stat st; + struct stat st; + if ((stat("/proc/apm", &st) > -1) && S_ISREG(st.st_mode)) - cb_timer_apm(data); -+ mode = MODE_APM; - else if ((stat("/proc/acpi", &st) > -1) && S_ISDIR(st.st_mode)) -+ mode = MODE_ACPI; -+#elif defined(__FreeBSD__) ++ mode = MODE_APM; + else if ((stat("/proc/acpi/battery", &st) > -1) && S_ISDIR(st.st_mode)) +- cb_timer_acpi(data); ++ mode = MODE_ACPI; + else if ((stat("/sys/class/power_supply", &st) > -1) && S_ISDIR(st.st_mode)) +- cb_timer_sys(data); ++ mode = MODE_SYS; ++ else ++ mode = MODE_NONE; ++#elif defined (__FreeBSD__) + /* -+ * Try ACPI first, if does not work, revert to APM ++ * Try ACPI first, if it doesn't work, revert to APM + */ -+ if(acpi_fd != -1 || ((acpi_fd = open(ACPI_DEV, O_RDONLY)) != -1)) -+ mode = MODE_ACPI; -+ else if(apm_fd != -1 || ((apm_fd = open(APM_DEV, O_RDONLY)) != -1)) -+ mode = MODE_APM; ++ if (acpi_fd != 1 || ((acpi_fd = open(ACPI_DEV, O_RDONLY)) != -1)) ++ mode = MODE_ACPI; ++ else if (apm_fd != 1 || (apm_fd = open(APM_DEV, O_RDONLY)) != -1) ++ mode = MODE_APM; ++ else ++ mode = MODE_NONE; +#else + mode = MODE_NONE; +#endif + -+ -+ if(mode & MODE_APM) -+ cb_timer_apm(data); -+ else if(mode & MODE_ACPI) - cb_timer_acpi(data); ++ if (mode & MODE_APM) ++ cb_timer_apm(data); ++ else if (mode & MODE_ACPI) ++ cb_timer_acpi(data); ++ else if (mode & MODE_SYS) ++ tb_timer_sys(data); } static void - cb_timer_acpi(void *data) - { -+ char current_status[256]; -+ int bat_val = 0; -+ -+#ifdef linux - /* We don't have any data from the remaining percentage, and time directly, - * so we have to calculate and measure them. - * (Measure the time and calculate the percentage.) -@@ -57,9 +105,6 @@ +@@ -61,9 +111,8 @@ int bat_level = 0; int bat_drain = 1; - int bat_val = 0; - -- char current_status[256]; + char current_status[256]; ++ char *line = 0; size_t lsize = 0; int discharging = 0; -@@ -203,27 +248,74 @@ +@@ -77,6 +126,8 @@ + + int hours, minutes; + ++#ifdef linux ++ + /* Read some information on first run. */ + dirp = opendir("/proc/acpi/battery"); + if (dirp) +@@ -207,27 +258,74 @@ else snprintf(current_status, sizeof(current_status), "Full"); @@ -176,7 +186,7 @@ int apm_flags, ac_stat, bat_stat, bat_flags; int i, hours, minutes, up, up2; char *s_ptr; -@@ -296,14 +388,57 @@ +@@ -300,14 +398,57 @@ else s_ptr += sprintf(s_ptr, "%i:%02i", hours, minutes); } @@ -187,7 +197,7 @@ + int c; + if(ioctl(apm_fd, APMIO_GETINFO, &apm) == -1) + return; - ++ + /* + * Get percent + */ @@ -221,7 +231,7 @@ + snprintf(&s[c], sizeof(s) - c, "%d:%2d", + apm.ai_batt_time / 3600, apm.ai_batt_time / 60 % 60); +#endif -+ + + /* Display current status */ + Epplet_change_label(label, s); sprintf(s, "E-Power-Bat-%i.png", ((bat_val + 5) / 10) * 10); @@ -237,7 +247,7 @@ data = NULL; } -@@ -351,7 +486,14 @@ +@@ -530,7 +671,14 @@ static void cb_suspend(void *data) { @@ -252,7 +262,7 @@ return; data = NULL; } -@@ -359,7 +501,14 @@ +@@ -538,7 +686,14 @@ static void cb_sleep(void *data) { Modified: head/x11-wm/epplets/files/patch-epplets_Makefile ============================================================================== --- head/x11-wm/epplets/files/patch-epplets_Makefile Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/files/patch-epplets_Makefile Wed Oct 10 13:14:27 2012 (r305659) @@ -1,33 +1,27 @@ ---- epplets/Makefile.in.orig 2012-06-11 09:51:10.000000000 +0200 -+++ epplets/Makefile.in 2012-06-11 09:51:31.000000000 +0200 -@@ -554,11 +554,11 @@ - E_Biff_epplet_LDFLAGS = -rpath $(libdir) - E_MemWatch_epplet_SOURCES = E-MemWatch.c - E_MemWatch_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la --E_MemWatch_epplet_LDFLAGS = -rpath $(libdir) -+E_MemWatch_epplet_LDFLAGS = -rpath $(libdir) -lkvm - E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) - E_Disk_epplet_SOURCES = E-Disk.c - E_Disk_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la --E_Disk_epplet_LDFLAGS = -rpath $(libdir) -+E_Disk_epplet_LDFLAGS = -rpath $(libdir) -ldevstat - E_Sys_epplet_SOURCES = E-Sys.c - E_Sys_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la - E_Sys_epplet_LDFLAGS = -rpath $(libdir) ---- epplets/Makefile.am.orig 2012-06-11 09:51:16.000000000 +0200 -+++ epplets/Makefile.am 2012-06-11 09:51:44.000000000 +0200 -@@ -122,12 +122,12 @@ +--- epplets/Makefile.am.orig 2012-10-10 14:52:30.000000000 +0200 ++++ epplets/Makefile.am 2012-10-10 14:53:32.000000000 +0200 +@@ -79,9 +79,10 @@ + E_Biff_epplet_LDADD = $(LDADD) -lX11 E_MemWatch_epplet_SOURCES = E-MemWatch.c - E_MemWatch_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la --E_MemWatch_epplet_LDFLAGS = -rpath $(libdir) -+E_MemWatch_epplet_LDFLAGS = -rpath $(libdir) -lkvm - E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) +-E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) ++E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) -lkvm E_Disk_epplet_SOURCES = E-Disk.c - E_Disk_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la --E_Disk_epplet_LDFLAGS = -rpath $(libdir) -+E_Disk_epplet_LDFLAGS = -rpath $(libdir) -ldevstat ++E_Disk_epplet_LDADD = $(LDADD) -ldevstat E_Sys_epplet_SOURCES = E-Sys.c - E_Sys_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la + E_Sys_epplet_LDADD = $(LDADD) $(GTLIBS) +--- epplets/Makefile.in.orig 2012-10-10 15:02:11.000000000 +0200 ++++ epplets/Makefile.in 2012-10-10 15:03:03.000000000 +0200 +@@ -479,8 +479,9 @@ + E_Biff_epplet_SOURCES = E-Biff.c mbox.c + E_Biff_epplet_LDADD = $(LDADD) -lX11 + E_MemWatch_epplet_SOURCES = E-MemWatch.c +-E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) ++E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) -lkvm + E_Disk_epplet_SOURCES = E-Disk.c ++E_Disk_epplet_LDADD = $(LDADD) -ldevstat + E_Sys_epplet_SOURCES = E-Sys.c + E_Sys_epplet_LDADD = $(LDADD) $(GTLIBS) + E_Slides_epplet_SOURCES = E-Slides.c Modified: head/x11-wm/epplets/files/patch-epplets_net.c ============================================================================== --- head/x11-wm/epplets/files/patch-epplets_net.c Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/files/patch-epplets_net.c Wed Oct 10 13:14:27 2012 (r305659) @@ -1,5 +1,5 @@ ---- epplets/net.c.orig 2006-04-16 00:32:43.000000000 +0200 -+++ epplets/net.c 2008-03-10 21:26:47.000000000 +0100 +--- epplets/net.c.orig 2012-09-30 11:38:35.000000000 +0200 ++++ epplets/net.c 2012-10-10 14:56:21.000000000 +0200 @@ -1,5 +1,6 @@ /* * Copyright (C) 1999-2000, Michael Jennings @@ -9,7 +9,7 @@ * of this software and associated documentation files (the "Software"), to @@ -38,6 +39,14 @@ #ifdef linux - # include + #include #endif +#ifdef __FreeBSD__ +# include @@ -71,7 +71,7 @@ #elif defined(__sun__) return ((char **)NULL); #else -@@ -107,8 +158,11 @@ +@@ -107,6 +158,10 @@ FILE *fp; char buff[256], *colon = NULL, dev[64], in_str[64], out_str[64]; @@ -80,11 +80,9 @@ + int mib[6], ifno_mib[5], row, nof_ifaces; + size_t len; #endif -- - if (device == NULL) - { - return (EFAULT); -@@ -173,6 +227,43 @@ + + if (!device) +@@ -173,6 +228,43 @@ } fclose(fp); return ((match) ? (0) : (ENODEV)); @@ -127,4 +125,4 @@ + #else /* Unsupported platform. */ - if (in_bytes != NULL) + if (in_bytes) Modified: head/x11-wm/epplets/pkg-plist ============================================================================== --- head/x11-wm/epplets/pkg-plist Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/pkg-plist Wed Oct 10 13:14:27 2012 (r305659) @@ -204,7 +204,6 @@ share/e16/epplet_data/Emix/Emix.AUTHORS share/e16/epplet_data/Emix/Emix.COPYING share/e16/epplet_data/Emix/Emix.README share/e16/epplet_data/Emix/Emix.TODO -@dirrmtry share/e16/epplet_icons @dirrm share/e16/epplet_data/Emix/ABOUT @dirrm share/e16/epplet_data/Emix @dirrm share/e16/epplet_data/E-Wireless/ABOUT From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:15:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 025016A1; Wed, 10 Oct 2012 13:15:48 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DC6758FC16; Wed, 10 Oct 2012 13:15:47 +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 q9ADFlkT034312; Wed, 10 Oct 2012 13:15:47 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADFlOR034304; Wed, 10 Oct 2012 13:15:47 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101315.q9ADFlOR034304@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 13:15:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305660 - in head/math/vtk5: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:15:48 -0000 Author: gahr Date: Wed Oct 10 13:15:47 2012 New Revision: 305660 URL: http://svn.freebsd.org/changeset/ports/305660 Log: - Update to 5.10.0 Release notes: http://www.kitware.com/news/home/browse/408 - Convert to OptionsNG Added: head/math/vtk5/files/patch-Common_vtkMath.h (contents, props changed) head/math/vtk5/files/patch-Rendering_vtkTkRenderWidget.cxx (contents, props changed) head/math/vtk5/files/patch-Utilities-LSDyna_LSDynaFamily.cxx (contents, props changed) head/math/vtk5/files/patch-Wrapping_vtkParsePreprocess.c (contents, props changed) Modified: head/math/vtk5/Makefile (contents, props changed) head/math/vtk5/distinfo (contents, props changed) head/math/vtk5/pkg-plist (contents, props changed) Modified: head/math/vtk5/Makefile ============================================================================== --- head/math/vtk5/Makefile Wed Oct 10 13:14:27 2012 (r305659) +++ head/math/vtk5/Makefile Wed Oct 10 13:15:47 2012 (r305660) @@ -7,8 +7,7 @@ # PORTNAME= vtk -PORTVERSION= 5.8.0 -PORTREVISION= 3 +PORTVERSION= 5.10.0 CATEGORIES= math graphics MASTER_SITES= http://www.vtk.org/files/release/${PORTVERSION:R}/ \ http://www.neuro.mcw.edu/Ports/distfiles/VTK5/ @@ -32,16 +31,16 @@ SUB_FILES= vtk.3 USE_CMAKE= yes USE_XORG= xt USE_LDCONFIG= ${PREFIX}/lib/vtk-${PORTVERSION:R} +CXXFLAGS+= -DUSE_INTERP_ERRORLINE MAKE_JOBS_SAFE= yes -OPTIONS= SHARED "Build shared libraries" On \ - VTKMPEG2 "Install patented MPEG2 encoder module" Off \ - GL2PS "Install support conversion OpenGL to PostScript" On \ - OSMESA "Use Mesa for off-screen rendering" Off \ - QT "Enable Qt gui support" On \ - WRAP_JAVA "Enable Java wrapping" Off \ - WRAP_PYTHON "Enable Python wrapping" On \ - WRAP_TCLTK "Enable Tcl/Tk wrapping" On +OPTIONS_DEFINE= SHARED VTKMPEG2 GL2PS OSMESA QT4 JAVA PYTHON TCLTK +OPTIONS_DEFAULT=SHARED GL2PS QT4 PYTHON TCLTK + +SHARED_DESC= Build shared libraries +VTKMPEG2_DESC= Patented MPEG2 encoder module +GL2PS_DESC= OpenGL to PostScript conversion module +OSMESA_DESC= Use Mesa for off-screen rendering PLIST_SUB+= VER1="${PORTVERSION}" \ VER2="${PORTVERSION:R}" \ @@ -61,11 +60,12 @@ CMAKE_ARGS+= -DBUILD_DOCUMENTATION:BOOL= -DVTK_DATA_ROOT:PATH=${EXAMPLESDIR}/VTKData \ -DOPENGL_INCLUDE_DIR:PATH=${LOCALBASE}/include \ -DOPENGL_gl_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGL.so \ - -DOPENGL_glu_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGLU.so + -DOPENGL_glu_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGLU.so \ + -DCMAKE_BUILD_TYPE=CMAKE_CXX_FLAGS_RELWITHDEBINFO .include -.if defined(WITH_SHARED) +.if ${PORT_OPTIONS:MSHARED} CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON \ -DVTK_USE_SYSTEM_EXPAT:BOOL=ON \ -DVTK_USE_SYSTEM_JPEG:BOOL=ON \ @@ -85,7 +85,7 @@ PLIST_SUB+= SHARED="@comment " \ STATIC="" .endif -.if defined(WITH_VTKMPEG2) +.if ${PORT_OPTIONS:MVTKMPEG2} LIB_DEPENDS+= vtkMPEG2Encode:${PORTSDIR}/multimedia/vtkmpeg2encode PLIST_SUB+= MPEG="" CMAKE_ARGS+= -DVTK_USE_PATENTED:BOOL=ON \ @@ -96,7 +96,7 @@ CMAKE_ARGS+= -DVTK_USE_PATENTED:BOOL=ON PLIST_SUB+= MPEG="@comment " .endif -.if defined(WITH_GL2PS) +.if ${PORT_OPTIONS:MGL2PS} LIB_DEPENDS+= gl2ps:${PORTSDIR}/print/gl2ps CMAKE_ARGS+= -DVTK_USE_GL2PS:BOOL=ON PLIST_SUB+= GL2PS="" @@ -104,7 +104,7 @@ PLIST_SUB+= GL2PS="" PLIST_SUB+= GL2PS="@comment " .endif -.if defined(WITH_OSMESA) +.if ${PORT_OPTIONS:MOSMESA} LIB_DEPENDS+= OSMesa32:${PORTSDIR}/graphics/libosmesa CMAKE_ARGS+= -DVTK_OPENGL_HAS_OSMESA:BOOL=ON \ -DOSMESA_INCLUDE_DIR:PATH=${LOCALBASE}/include/Mesa \ @@ -119,7 +119,7 @@ CMAKE_ARGS+= -DVTK_USE_X:BOOL=ON PLIST_SUB+= X11="" .endif -.if defined(WITH_QT) +.if ${PORT_OPTIONS:MQT4} USE_QT4= corelib designer gui opengl qmake_build uic_build \ moc_build rcc_build CMAKE_ARGS+= -DVTK_USE_GUISUPPORT:BOOL=ON \ @@ -134,8 +134,8 @@ CMAKE_ARGS+= -DVTK_USE_GUISUPPORT:BOOL=O PLIST_SUB+= QT="@comment " .endif -.if defined(WITH_WRAP_PYTHON) -.if !defined(WITH_SHARED) +.if ${PORT_OPTIONS:MPYTHON} +.if ${PORT_OPTIONS:MSHARED} == "" IGNORE= python wrapping requires shared libraries.\ Run make config again and enable the SHARED option .endif @@ -150,7 +150,7 @@ CMAKE_ARGS+= -DVTK_WRAP_PYTHON:BOOL=OFF PLIST_SUB+= PYTHON="@comment " .endif -.if defined(WITH_WRAP_TCLTK) +.if ${PORT_OPTIONS:MTCLTK} CMAKE_ARGS+= -DVTK_WRAP_TCL:BOOL=ON PLIST_SUB+= TCLTK="" .else @@ -159,7 +159,7 @@ PLIST_SUB+= TCLTK="@comment " .endif # Used by both tcl/tk and python -.if defined(WITH_WRAP_TCLTK) || defined(WITH_WRAP_PYTHON) +.if ${PORT_OPTIONS:MTCLTK} || ${PORT_OPTIONS:MPYTHON} USE_TCL= 84+ USE_TK= 84+ CMAKE_ARGS+= -DVTK_USE_TK:BOOL=ON \ @@ -171,8 +171,8 @@ PLIST_SUB+= WRAP_PYTHON_OR_TCLTK="" \ PLIST_SUB+= WRAP_PYTHON_OR_TCLTK="@comment " .endif -.if defined(WITH_WRAP_JAVA) -.if !defined(WITH_SHARED) +.if ${PORT_OPTIONS:MJAVA} +.if ${PORT_OPTIONS:MSHARED} == "" IGNORE= java wrapping requires shared libraries.\ Run make config again and enable the SHARED option .endif @@ -194,7 +194,7 @@ PLIST_SUB+= JAVA="@comment " .endif # Wrapping -.if defined(WITH_WRAP_PYTHON) || defined(WITH_WRAP_TCLTK) || defined(WITH_WRAP_JAVA) +.if ${PORT_OPTIONS:MPYTHON} || ${PORT_OPTIONS:MTCLTK} || ${PORT_OPTIONS:MJAVA} PLIST_SUB+= WRAPPING="" .else PLIST_SUB+= WRAPPING="@comment " @@ -206,24 +206,24 @@ post-patch: # ${REINPLACE_CMD} -e '222s|)|) \&\& !defined(__FreeBSD__)|' \ # ${WRKSRC}/Utilities/kwsys/SharedForward.h.in ${REINPLACE_CMD} -e '25,30d' ${WRKSRC}/Wrapping/Python/setup.py.in -.if defined(WITH_SHARED) +.if ${PORT_OPTIONS:MSHARED} ${REINPLACE_CMD} -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|g' \ ${WRKSRC}/IO/vtkPNGReader.cxx .endif post-configure: -.if defined(WITH_WRAP_JAVA) +.if ${PORT_OPTIONS:MJAVA} ${REINPLACE_CMD} -e 's|-ljawt$$||' \ ${CONFIGURE_WRKSRC}/Wrapping/Java/CMakeFiles/VTKJavaExecutable.dir/link.txt .endif pre-install: -.if defined(WITH_PYTHON) +.if ${PORT_OPTIONS:MPYTHON} ${MKDIR} ${PYTHONPREFIX_SITELIBDIR} .endif ${MKDIR} ${MANPREFIX}/man/man3 ${INSTALL_MAN} ${WRKDIR}/vtk.3 ${MANPREFIX}/man/man3 -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.html ${DOCSDIR} .endif @@ -234,7 +234,7 @@ LIBDIR= ${PREFIX}/lib/vtk-${PORTVERSION post-install: # Ports system wants us to conform to lib.so.x format, but VTK5 # only installs lib.so.x.y and lib.so.x.y.z. -.if defined(WITH_SHARED) +.if ${PORT_OPTIONS:MSHARED} @for lib in ${LIBS_TOFIX}; do \ ${CP} ${LIBDIR}/lib$$lib.so ${LIBDIR}/lib$$lib.so.${PORTVERSION}; \ done @@ -244,7 +244,7 @@ post-install: ${LN} -sf $$lib.${PORTVERSION:R} $$lib.${PORTVERSION:R:R}; \ ${LN} -sf $$lib.${PORTVERSION:R:R} $$lib; \ done -.if defined(WITH_QT) +.if ${PORT_OPTIONS:MQT4} @for lib in ${LIBDIR}/libQVTK*.so; do \ ${RM} -f $$lib; \ ${LN} -sf $$lib.${PORTVERSION} $$lib; \ @@ -252,7 +252,7 @@ post-install: done .endif .endif -.if defined(WITH_VTKMPEG2) +.if ${PORT_OPTIONS:MVTKMPEG2} @${ECHO_CMD} @${ECHO_CMD} "This port uses the patented MPEG2 encoder." @${ECHO_CMD} Modified: head/math/vtk5/distinfo ============================================================================== --- head/math/vtk5/distinfo Wed Oct 10 13:14:27 2012 (r305659) +++ head/math/vtk5/distinfo Wed Oct 10 13:15:47 2012 (r305660) @@ -1,2 +1,2 @@ -SHA256 (vtk-5.8.0.tar.gz) = 83ee74b83403590342c079a52b06eef7ab862417f941d5f4558aea25c6bbc2d5 -SIZE (vtk-5.8.0.tar.gz) = 23745803 +SHA256 (vtk-5.10.0.tar.gz) = 9dd8c750f5d974ca92734d0168db6b534109b9ec30461eb7082a9f71d4716392 +SIZE (vtk-5.10.0.tar.gz) = 24803686 Added: head/math/vtk5/files/patch-Common_vtkMath.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk5/files/patch-Common_vtkMath.h Wed Oct 10 13:15:47 2012 (r305660) @@ -0,0 +1,17 @@ +--- Common/vtkMath.h.orig 2012-05-12 13:59:27.000000000 +0200 ++++ Common/vtkMath.h 2012-09-13 09:24:53.000000000 +0200 +@@ -1336,6 +1336,7 @@ + return result; + } + ++#ifndef __WRAP__ + #if defined(VTK_HAS_ISINF) + //----------------------------------------------------------------------------- + inline int vtkMath::IsInf(double x) +@@ -1351,5 +1352,6 @@ + return (isnan(x) ? 1 : 0); + } + #endif ++#endif + + #endif Added: head/math/vtk5/files/patch-Rendering_vtkTkRenderWidget.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk5/files/patch-Rendering_vtkTkRenderWidget.cxx Wed Oct 10 13:15:47 2012 (r305660) @@ -0,0 +1,38 @@ +--- Rendering/vtkTkRenderWidget.cxx.orig ++++ Rendering/vtkTkRenderWidget.cxx +@@ -941,8 +941,9 @@ static int vtkTkRenderWidget_MakeRenderWindow(struct vtkTkRenderWidget *self) + vtkTclGetObjectFromPointer(self->Interp, self->RenderWindow, + "vtkRenderWindow"); + #endif +- self->RW = ckalloc( +- static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1)); ++ // in Tcl 8.6.x, ckalloc was changed to return "void *". ++ self->RW = static_cast(ckalloc( ++ static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1))); + strcpy(self->RW, Tcl_GetStringResult(self->Interp)); + Tcl_ResetResult(self->Interp); + } +@@ -1113,8 +1114,9 @@ vtkTkRenderWidget_MakeRenderWindow(struct vtkTkRenderWidget *self) + vtkTclGetObjectFromPointer(self->Interp, self->RenderWindow, + "vtkRenderWindow"); + #endif +- self->RW = ckalloc( +- static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1)); ++ // in Tcl 8.6.x, ckalloc was changed to return "void *". ++ self->RW = static_cast(ckalloc( ++ static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1))); + strcpy(self->RW, Tcl_GetStringResult(self->Interp)); + Tcl_ResetResult(self->Interp); + } +@@ -1306,8 +1308,9 @@ vtkTkRenderWidget_MakeRenderWindow(struct vtkTkRenderWidget *self) + vtkTclGetObjectFromPointer(self->Interp, self->RenderWindow, + "vtkRenderWindow"); + #endif +- self->RW = ckalloc( +- static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1)); ++ // in Tcl 8.6.x, ckalloc was changed to return "void *". ++ self->RW = static_cast(ckalloc( ++ static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1))); + strcpy(self->RW, Tcl_GetStringResult(self->Interp)); + Tcl_ResetResult(self->Interp); + } Added: head/math/vtk5/files/patch-Utilities-LSDyna_LSDynaFamily.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk5/files/patch-Utilities-LSDyna_LSDynaFamily.cxx Wed Oct 10 13:15:47 2012 (r305660) @@ -0,0 +1,11 @@ +--- Utilities/LSDyna/LSDynaFamily.cxx.orig 2012-09-07 10:04:57.000000000 +0200 ++++ Utilities/LSDyna/LSDynaFamily.cxx 2012-09-07 10:07:21.000000000 +0200 +@@ -33,7 +33,7 @@ + namespace + { + //Documentation on why the exemption +-#define USE_STAT_64 VTK_SIZEOF_ID_TYPE==8 && !defined _DARWIN_FEATURE_64_BIT_INODE ++#define USE_STAT_64 VTK_SIZEOF_ID_TYPE==8 && !defined _DARWIN_FEATURE_64_BIT_INODE && !defined __FreeBSD__ + //OSX uses stat instead of stat64 + #if (USE_STAT_64) + //64bit Added: head/math/vtk5/files/patch-Wrapping_vtkParsePreprocess.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk5/files/patch-Wrapping_vtkParsePreprocess.c Wed Oct 10 13:15:47 2012 (r305660) @@ -0,0 +1,129 @@ +--- Wrapping/vtkParsePreprocess.c.orig 2012-09-10 16:13:54.000000000 +0200 ++++ Wrapping/vtkParsePreprocess.c 2012-09-10 16:14:03.000000000 +0200 +@@ -33,6 +33,9 @@ + + #define PREPROC_DEBUG 0 + ++/** Block size for reading files */ ++#define FILE_BUFFER_SIZE 8192 ++ + /** Preprocessor tokens. */ + enum _preproc_token_t + { +@@ -1787,10 +1790,10 @@ + PreprocessInfo *info, const char *filename, int system_first) + { + char *tbuf; +- size_t tbuflen = 8192; ++ size_t tbuflen = FILE_BUFFER_SIZE; + char *line; + size_t linelen = 80; +- size_t i, j, n; ++ size_t i, j, n, r; + int in_comment = 0; + int in_quote = 0; + int result = VTK_PARSE_OK; +@@ -1849,29 +1852,48 @@ + info->IsExternal = 1; + info->FileName = path; + +- tbuf = (char *)malloc(tbuflen); ++ tbuf = (char *)malloc(tbuflen+4); + line = (char *)malloc(linelen); + + /* the buffer must hold a whole line for it to be processed */ + j = 0; + i = 0; + n = 0; ++ r = 0; + + do + { +- if (i == n) ++ if (i >= n) + { ++ /* recycle unused lookahead chars */ ++ if (r) ++ { ++ r = n + 2 - i; ++ if (r == 2) ++ { ++ tbuf[0] = tbuf[tbuflen-2]; ++ tbuf[1] = tbuf[tbuflen-1]; ++ } ++ else if (r == 1) ++ { ++ tbuf[0] = tbuf[tbuflen-1]; ++ } ++ } ++ + /* read the next chunk of the file */ + i = 0; + if (feof(fp)) + { +- n = 0; ++ /* still have the lookahead chars left */ ++ n = r; ++ r = 0; + } + else + { ++ /* fill the remainder of the buffer */ + errno = 0; +- i = 0; +- while ((n = fread(tbuf, 1, tbuflen, fp)) == 0 && ferror(fp)) ++ tbuflen = r + FILE_BUFFER_SIZE; ++ while ((n = fread(&tbuf[r], 1, tbuflen-r, fp)) == 0 && ferror(fp)) + { + if (errno != EINTR) + { +@@ -1884,6 +1906,22 @@ + errno = 0; + clearerr(fp); + } ++ ++ if (n + r < tbuflen) ++ { ++ /* this only occurs if the final fread does not fill the buffer */ ++ n += r; ++ r = 0; ++ } ++ else ++ { ++ /* set a lookahead reserve of two chars */ ++ n -= (2 - r); ++ r = 2; ++ } ++ ++ /* guard against lookahead past last char in file */ ++ tbuf[n + r] = '\0'; + } + } + +@@ -1891,7 +1929,7 @@ + while (i < n) + { + /* expand line buffer as necessary */ +- if (j+4 > linelen) ++ while (j+4 > linelen) + { + linelen *= 2; + line = (char *)realloc(line, linelen); +@@ -1917,7 +1955,7 @@ + line[j++] = tbuf[i++]; + in_quote = 0; + } +- else if (tbuf[i] == '\\' && tbuf[i] == '\"') ++ else if (tbuf[i] == '\\' && tbuf[i+1] == '\"') + { + line[j++] = tbuf[i++]; + line[j++] = tbuf[i++]; +@@ -1927,7 +1965,7 @@ + line[j++] = tbuf[i++]; + } + } +- else if (tbuf[i] == '/' && tbuf[i] == '*') ++ else if (tbuf[i] == '/' && tbuf[i+1] == '*') + { + line[j++] = tbuf[i++]; + line[j++] = tbuf[i++]; Modified: head/math/vtk5/pkg-plist ============================================================================== --- head/math/vtk5/pkg-plist Wed Oct 10 13:14:27 2012 (r305659) +++ head/math/vtk5/pkg-plist Wed Oct 10 13:15:47 2012 (r305660) @@ -16,12 +16,18 @@ %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/geovis.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/graphics.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/graphics.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindow.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindow.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindowInteractor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindowInteractor.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindow.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindow.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindowInteractor.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindowInteractor.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/__init__.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/chemistry.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/chemistry.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/hybrid.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/hybrid.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/imaging.py @@ -419,6 +425,7 @@ %%TCLTK%%lib/vtk-%%VER2%%/tcl/README %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtk/vtk.tcl %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkbase/vtkbase.tcl +%%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkcharts/vtkcharts.tcl %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkcommon/vtkcommon.tcl %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkfiltering/vtkfiltering.tcl %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkgeovis/vtkgeovis.tcl @@ -508,7 +515,6 @@ include/vtk-%%VER2%%/alglib/reflections. include/vtk-%%VER2%%/alglib/rotations.h include/vtk-%%VER2%%/alglib/svd.h include/vtk-%%VER2%%/internal/stdio_core.h -include/vtk-%%VER2%%/metaIOConfig.h include/vtk-%%VER2%%/mrmpi/cmapreduce.h include/vtk-%%VER2%%/mrmpi/error.h include/vtk-%%VER2%%/mrmpi/hash.h @@ -642,7 +648,6 @@ include/vtk-%%VER2%%/vtkBiQuadraticTrian include/vtk-%%VER2%%/vtkBitArray.h include/vtk-%%VER2%%/vtkBitArrayIterator.h include/vtk-%%VER2%%/vtkBivariateLinearTableThreshold.h -include/vtk-%%VER2%%/vtkBivariateStatisticsAlgorithm.h include/vtk-%%VER2%%/vtkBlankStructuredGrid.h include/vtk-%%VER2%%/vtkBlankStructuredGridWithImage.h include/vtk-%%VER2%%/vtkBlockIdScalars.h @@ -1581,7 +1586,6 @@ include/vtk-%%VER2%%/vtkOpenGLGPUVolumeR include/vtk-%%VER2%%/vtkOpenGLGlyph3DMapper.h include/vtk-%%VER2%%/vtkOpenGLHAVSVolumeMapper.h include/vtk-%%VER2%%/vtkOpenGLHardwareSupport.h -include/vtk-%%VER2%%/vtkOpenGLImageActor.h include/vtk-%%VER2%%/vtkOpenGLImageMapper.h include/vtk-%%VER2%%/vtkOpenGLLight.h include/vtk-%%VER2%%/vtkOpenGLLightingPainter.h @@ -2230,7 +2234,6 @@ include/vtk-%%VER2%%/vtkUnicodeString.h include/vtk-%%VER2%%/vtkUnicodeStringArray.h include/vtk-%%VER2%%/vtkUniformGrid.h include/vtk-%%VER2%%/vtkUniformVariables.h -include/vtk-%%VER2%%/vtkUnivariateStatisticsAlgorithm.h include/vtk-%%VER2%%/vtkUnsignedCharArray.h include/vtk-%%VER2%%/vtkUnsignedIntArray.h include/vtk-%%VER2%%/vtkUnsignedLongArray.h @@ -2408,6 +2411,150 @@ include/vtk-%%VER2%%/vtkXMLWriter.h include/vtk-%%VER2%%/vtkXMLWriterC.h %%X11%%include/vtk-%%VER2%%/vtkXOpenGLRenderWindow.h %%X11%%include/vtk-%%VER2%%/vtkXRenderWindowInteractor.h +include/vtk-%%VER2%%/LSDyna/LSDynaExport.h +include/vtk-%%VER2%%/LSDyna/LSDynaFamily.h +include/vtk-%%VER2%%/LSDyna/LSDynaMetaData.h +include/vtk-%%VER2%%/vtkAbstractImageInterpolator.h +include/vtk-%%VER2%%/vtkArrayDataReader.h +include/vtk-%%VER2%%/vtkArrayDataWriter.h +include/vtk-%%VER2%%/vtkAtom.h +include/vtk-%%VER2%%/vtkAxisExtended.h +include/vtk-%%VER2%%/vtkAxisFollower.h +include/vtk-%%VER2%%/vtkBSplineTransform.h +include/vtk-%%VER2%%/vtkBond.h +include/vtk-%%VER2%%/vtkBooleanOperationPolyDataFilter.h +include/vtk-%%VER2%%/vtkBrokenLineWidget.h +include/vtk-%%VER2%%/vtkCellCentersPointPlacer.h +include/vtk-%%VER2%%/vtkCellTreeLocator.h +include/vtk-%%VER2%%/vtkCenterOfMass.h +include/vtk-%%VER2%%/vtkChartMatrix.h +include/vtk-%%VER2%%/vtkCirclePackFrontChainLayoutStrategy.h +include/vtk-%%VER2%%/vtkCirclePackLayout.h +include/vtk-%%VER2%%/vtkCirclePackLayoutStrategy.h +include/vtk-%%VER2%%/vtkCirclePackToPolyData.h +include/vtk-%%VER2%%/vtkColorMaterialHelper_vs.h +include/vtk-%%VER2%%/vtkContextKeyEvent.h +include/vtk-%%VER2%%/vtkConvexHull2D.h +include/vtk-%%VER2%%/vtkDepthPeeling_fs.h +include/vtk-%%VER2%%/vtkDistancePolyDataFilter.h +include/vtk-%%VER2%%/vtkFixedSizeHandleRepresentation3D.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_AdditiveCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_AdditiveFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_AdditiveNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeBinaryMaskFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeMaskFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_FourComponentsFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_HeaderFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPBinaryMaskFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPFourDependentCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPFourDependentFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPFourDependentNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPBinaryMaskFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPFourDependentCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPFourDependentFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPFourDependentNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_NoShadeFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_OneComponentFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_ParallelProjectionFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_PerspectiveProjectionFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_ScaleBiasFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_ShadeFS.h +include/vtk-%%VER2%%/vtkGaussianBlurPassShader_fs.h +include/vtk-%%VER2%%/vtkGraphAnnotationLayersFilter.h +include/vtk-%%VER2%%/vtkGraphWeightEuclideanDistanceFilter.h +include/vtk-%%VER2%%/vtkGraphWeightFilter.h +include/vtk-%%VER2%%/vtkImageBSplineCoefficients.h +include/vtk-%%VER2%%/vtkImageBSplineInternals.h +include/vtk-%%VER2%%/vtkImageBSplineInterpolator.h +include/vtk-%%VER2%%/vtkImageCroppingRegionsWidget.h +include/vtk-%%VER2%%/vtkImageDataToPointSet.h +include/vtk-%%VER2%%/vtkImageHistogram.h +include/vtk-%%VER2%%/vtkImageHistogramStatistics.h +include/vtk-%%VER2%%/vtkImageInterpolator.h +include/vtk-%%VER2%%/vtkImageInterpolatorInternals.h +include/vtk-%%VER2%%/vtkImageMapper3D.h +include/vtk-%%VER2%%/vtkImageProperty.h +include/vtk-%%VER2%%/vtkImageResize.h +include/vtk-%%VER2%%/vtkImageResliceMapper.h +include/vtk-%%VER2%%/vtkImageResliceToColors.h +include/vtk-%%VER2%%/vtkImageSincInterpolator.h +include/vtk-%%VER2%%/vtkImageSlabReslice.h +include/vtk-%%VER2%%/vtkImageSlice.h +include/vtk-%%VER2%%/vtkImageSliceCollection.h +include/vtk-%%VER2%%/vtkImageSliceMapper.h +include/vtk-%%VER2%%/vtkImageStack.h +include/vtk-%%VER2%%/vtkImageThresholdConnectivity.h +include/vtk-%%VER2%%/vtkImageToStructuredGrid.h +include/vtk-%%VER2%%/vtkImplicitPolyDataDistance.h +include/vtk-%%VER2%%/vtkIntersectionPolyDataFilter.h +include/vtk-%%VER2%%/vtkKCoreDecomposition.h +include/vtk-%%VER2%%/vtkKCoreLayout.h +include/vtk-%%VER2%%/vtkLSDynaPart.h +include/vtk-%%VER2%%/vtkLSDynaPartCollection.h +include/vtk-%%VER2%%/vtkLSDynaSummaryParser.h +include/vtk-%%VER2%%/vtkLightingHelper_s.h +include/vtk-%%VER2%%/vtkLighting_s.h +include/vtk-%%VER2%%/vtkLineIntegralConvolution2D_fs.h +include/vtk-%%VER2%%/vtkLineIntegralConvolution2D_fs1.h +include/vtk-%%VER2%%/vtkLineIntegralConvolution2D_fs2.h +include/vtk-%%VER2%%/vtkLinearSelector.h +include/vtk-%%VER2%%/vtkMarchingCubesTriangleCases.h +include/vtk-%%VER2%%/vtkMarchingSquaresLineCases.h +include/vtk-%%VER2%%/vtkMathConfigure.h +include/vtk-%%VER2%%/vtkMathUtilities.h +include/vtk-%%VER2%%/vtkMolecule.h +include/vtk-%%VER2%%/vtkNetCDFCAMReader.h +include/vtk-%%VER2%%/vtkOpenGLImageSliceMapper.h +include/vtk-%%VER2%%/vtkOpenGLPropertyDefaultMain_fs.h +include/vtk-%%VER2%%/vtkOpenGLPropertyDefaultMain_vs.h +include/vtk-%%VER2%%/vtkOpenGLPropertyDefaultPropFunc_fs.h +include/vtk-%%VER2%%/vtkOpenGLPropertyDefaultPropFunc_vs.h +include/vtk-%%VER2%%/vtkOpenGLRenderer_PeelingFS.h +include/vtk-%%VER2%%/vtkPLSDynaReader.h +include/vtk-%%VER2%%/vtkPMaskPoints.h +include/vtk-%%VER2%%/vtkPYoungsMaterialInterface.h +include/vtk-%%VER2%%/vtkPiecewisePointHandleItem.h +include/vtk-%%VER2%%/vtkPolarAxesActor.h +include/vtk-%%VER2%%/vtkPolyPlane.h +include/vtk-%%VER2%%/vtkProjectedAAHexahedraMapper_FS.h +include/vtk-%%VER2%%/vtkProjectedAAHexahedraMapper_GS.h +include/vtk-%%VER2%%/vtkProjectedAAHexahedraMapper_VS.h +include/vtk-%%VER2%%/vtkQtDebugLeaksModel.h +include/vtk-%%VER2%%/vtkQtDebugLeaksView.h +include/vtk-%%VER2%%/vtkQuadRotationalExtrusionFilter.h +include/vtk-%%VER2%%/vtkRectilinearGridToPointSet.h +include/vtk-%%VER2%%/vtkResliceCursor.h +include/vtk-%%VER2%%/vtkResliceCursorActor.h +include/vtk-%%VER2%%/vtkResliceCursorLineRepresentation.h +include/vtk-%%VER2%%/vtkResliceCursorPicker.h +include/vtk-%%VER2%%/vtkResliceCursorPolyDataAlgorithm.h +include/vtk-%%VER2%%/vtkResliceCursorRepresentation.h +include/vtk-%%VER2%%/vtkResliceCursorThickLineRepresentation.h +include/vtk-%%VER2%%/vtkResliceCursorWidget.h +include/vtk-%%VER2%%/vtkResliceImageViewer.h +include/vtk-%%VER2%%/vtkResliceImageViewerMeasurements.h +include/vtk-%%VER2%%/vtkScatterPlotMatrix.h +include/vtk-%%VER2%%/vtkShaderDeviceAdapter2.h +include/vtk-%%VER2%%/vtkShadowMapPassShader_fs.h +include/vtk-%%VER2%%/vtkShadowMapPassShader_vs.h +include/vtk-%%VER2%%/vtkSimplePointsWriter.h +include/vtk-%%VER2%%/vtkSobelGradientMagnitudePassShader1_fs.h +include/vtk-%%VER2%%/vtkSobelGradientMagnitudePassShader2_fs.h +include/vtk-%%VER2%%/vtkStructuredGridLIC2D_fs.h +include/vtk-%%VER2%%/vtkSurfaceLICPainter_fs1.h +include/vtk-%%VER2%%/vtkSurfaceLICPainter_fs2.h +include/vtk-%%VER2%%/vtkSurfaceLICPainter_vs1.h +include/vtk-%%VER2%%/vtkTreeIterator.h +include/vtk-%%VER2%%/vtkTuple.h include/vtk-%%VER2%%/vtkXYPlotActor.h include/vtk-%%VER2%%/vtkXYPlotWidget.h include/vtk-%%VER2%%/vtkXYZMolReader.h @@ -2416,7 +2563,9 @@ include/vtk-%%VER2%%/vtkZLibDataCompress include/vtk-%%VER2%%/vtk_expat.h include/vtk-%%VER2%%/vtk_freetype.h include/vtk-%%VER2%%/vtk_gl2ps.h +include/vtk-%%VER2%%/vtk_hdf5.h include/vtk-%%VER2%%/vtk_jpeg.h +include/vtk-%%VER2%%/vtk_libproj4.h include/vtk-%%VER2%%/vtk_libxml2.h include/vtk-%%VER2%%/vtk_oggtheora.h include/vtk-%%VER2%%/vtk_png.h @@ -2432,6 +2581,7 @@ include/vtk-%%VER2%%/vtkfreetype/include include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftbbox.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftbdf.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftbitmap.h +include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftbzip2.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftcache.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftchapters.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftcid.h @@ -2477,7 +2627,6 @@ include/vtk-%%VER2%%/vtkfreetype/include include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/fttrace.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/ftvalid.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/internal.h -include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/pcftypes.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/psaux.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/pshints.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/sfnt.h @@ -2509,6 +2658,7 @@ include/vtk-%%VER2%%/vtkhdf5/H5CSprivate include/vtk-%%VER2%%/vtkhdf5/H5Cpkg.h include/vtk-%%VER2%%/vtkhdf5/H5Cprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Cpublic.h +include/vtk-%%VER2%%/vtkhdf5/H5DSpublic.h include/vtk-%%VER2%%/vtkhdf5/H5Dpkg.h include/vtk-%%VER2%%/vtkhdf5/H5Dprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Dpublic.h @@ -2553,9 +2703,12 @@ include/vtk-%%VER2%%/vtkhdf5/H5HLpkg.h include/vtk-%%VER2%%/vtkhdf5/H5HLprivate.h include/vtk-%%VER2%%/vtkhdf5/H5HLpublic.h include/vtk-%%VER2%%/vtkhdf5/H5HPprivate.h +include/vtk-%%VER2%%/vtkhdf5/H5IMpublic.h include/vtk-%%VER2%%/vtkhdf5/H5Ipkg.h include/vtk-%%VER2%%/vtkhdf5/H5Iprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Ipublic.h +include/vtk-%%VER2%%/vtkhdf5/H5LTparse.h +include/vtk-%%VER2%%/vtkhdf5/H5LTpublic.h include/vtk-%%VER2%%/vtkhdf5/H5Lpkg.h include/vtk-%%VER2%%/vtkhdf5/H5Lprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Lpublic.h @@ -2568,6 +2721,7 @@ include/vtk-%%VER2%%/vtkhdf5/H5Opkg.h include/vtk-%%VER2%%/vtkhdf5/H5Oprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Opublic.h include/vtk-%%VER2%%/vtkhdf5/H5Oshared.h +include/vtk-%%VER2%%/vtkhdf5/H5PTpublic.h include/vtk-%%VER2%%/vtkhdf5/H5Ppkg.h include/vtk-%%VER2%%/vtkhdf5/H5Pprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Ppublic.h @@ -2583,6 +2737,7 @@ include/vtk-%%VER2%%/vtkhdf5/H5STprivate include/vtk-%%VER2%%/vtkhdf5/H5Spkg.h include/vtk-%%VER2%%/vtkhdf5/H5Sprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Spublic.h +include/vtk-%%VER2%%/vtkhdf5/H5TBpublic.h include/vtk-%%VER2%%/vtkhdf5/H5TSprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Tpkg.h include/vtk-%%VER2%%/vtkhdf5/H5Tprivate.h @@ -2599,6 +2754,8 @@ include/vtk-%%VER2%%/vtkhdf5/H5pubconf.h include/vtk-%%VER2%%/vtkhdf5/H5public.h include/vtk-%%VER2%%/vtkhdf5/H5version.h include/vtk-%%VER2%%/vtkhdf5/hdf5.h +include/vtk-%%VER2%%/vtkhdf5/hdf5_hl.h +include/vtk-%%VER2%%/vtkhdf5/vtk_libhdf5_hl_mangle.h include/vtk-%%VER2%%/vtkhdf5/vtk_libhdf5_mangle.h include/vtk-%%VER2%%/vtklibproj4/lib_proj.h include/vtk-%%VER2%%/vtklibproj4/proj_config.h @@ -2659,9 +2816,11 @@ include/vtk-%%VER2%%/vtkmetaio/metaConto include/vtk-%%VER2%%/vtkmetaio/metaDTITube.h include/vtk-%%VER2%%/vtkmetaio/metaEllipse.h include/vtk-%%VER2%%/vtkmetaio/metaEvent.h +include/vtk-%%VER2%%/vtkmetaio/metaFEMObject.h include/vtk-%%VER2%%/vtkmetaio/metaForm.h include/vtk-%%VER2%%/vtkmetaio/metaGaussian.h include/vtk-%%VER2%%/vtkmetaio/metaGroup.h +include/vtk-%%VER2%%/vtkmetaio/metaIOConfig.h include/vtk-%%VER2%%/vtkmetaio/metaITKUtils.h include/vtk-%%VER2%%/vtkmetaio/metaImage.h include/vtk-%%VER2%%/vtkmetaio/metaImageTypes.h @@ -2679,11 +2838,24 @@ include/vtk-%%VER2%%/vtkmetaio/metaTubeG include/vtk-%%VER2%%/vtkmetaio/metaTypes.h include/vtk-%%VER2%%/vtkmetaio/metaUtils.h include/vtk-%%VER2%%/vtkmetaio/metaVesselTube.h +include/vtk-%%VER2%%/vtknetcdf/include/fbits.h +include/vtk-%%VER2%%/vtknetcdf/include/nc.h +include/vtk-%%VER2%%/vtknetcdf/include/nc3dispatch.h +include/vtk-%%VER2%%/vtknetcdf/include/nc_logging.h +include/vtk-%%VER2%%/vtknetcdf/include/nc_tests.h +include/vtk-%%VER2%%/vtknetcdf/include/nc_url.h +include/vtk-%%VER2%%/vtknetcdf/include/ncdimscale.h +include/vtk-%%VER2%%/vtknetcdf/include/ncdispatch.h +include/vtk-%%VER2%%/vtknetcdf/include/ncio.h +include/vtk-%%VER2%%/vtknetcdf/include/nclist.h +include/vtk-%%VER2%%/vtknetcdf/include/netcdf.h +include/vtk-%%VER2%%/vtknetcdf/include/netcdf_f.h +include/vtk-%%VER2%%/vtknetcdf/include/netcdf_par.h +include/vtk-%%VER2%%/vtknetcdf/include/utf8proc.h +include/vtk-%%VER2%%/vtknetcdf/include/vtk_netcdf_mangle.h include/vtk-%%VER2%%/vtknetcdf/ncconfig.h -include/vtk-%%VER2%%/vtknetcdf/netcdf.h -include/vtk-%%VER2%%/vtknetcdf/netcdf3.h +include/vtk-%%VER2%%/vtknetcdf/ncvalues.h include/vtk-%%VER2%%/vtknetcdf/netcdfcpp.h -include/vtk-%%VER2%%/vtknetcdf/vtk_netcdf_mangle.h include/vtk-%%VER2%%/vtksqlite/vtk_sqlite3.h include/vtk-%%VER2%%/vtkstd/algorithm include/vtk-%%VER2%%/vtkstd/deque @@ -2788,19 +2960,14 @@ lib/vtk-%%VER2%%/doxygen/paper-clip.gif lib/vtk-%%VER2%%/doxygen/pic.gif lib/vtk-%%VER2%%/doxygen/vtk-logo.gif lib/vtk-%%VER2%%/hints -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER1%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER2%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER3%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.1.8.5 -%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so -%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER1%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER2%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER3%% %%SHARED%%lib/vtk-%%VER2%%/libCosmo.so %%SHARED%%lib/vtk-%%VER2%%/libCosmo.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libCosmo.so.%%VER2%% %%SHARED%%lib/vtk-%%VER2%%/libCosmo.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libLSDyna.so +%%SHARED%%lib/vtk-%%VER2%%/libLSDyna.so.%%VER1%% +%%SHARED%%lib/vtk-%%VER2%%/libLSDyna.so.%%VER2%% +%%SHARED%%lib/vtk-%%VER2%%/libLSDyna.so.%%VER3%% %%SHARED%%lib/vtk-%%VER2%%/libMapReduceMPI.so %%SHARED%%lib/vtk-%%VER2%%/libMapReduceMPI.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libMapReduceMPI.so.%%VER2%% @@ -2861,6 +3028,10 @@ lib/vtk-%%VER2%%/hints %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF.so.%%VER2%% %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so +%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER1%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER2%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER3%% %%SHARED%%lib/vtk-%%VER2%%/libvtkParallel.so %%SHARED%%lib/vtk-%%VER2%%/libvtkParallel.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libvtkParallel.so.%%VER2%% @@ -2897,6 +3068,15 @@ lib/vtk-%%VER2%%/hints %%SHARED%%lib/vtk-%%VER2%%/libvtkftgl.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libvtkftgl.so.%%VER2%% %%SHARED%%lib/vtk-%%VER2%%/libvtkftgl.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER1%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER2%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.1.8.5 +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl.so +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl.so.%%VER2%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl.so.1.8.5 %%SHARED%%lib/vtk-%%VER2%%/libvtklibxml2.so %%SHARED%%lib/vtk-%%VER2%%/libvtklibxml2.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libvtklibxml2.so.%%VER2%% @@ -2987,6 +3167,7 @@ lib/vtk-%%VER2%%/vtkWidgetsKit.cmake %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkgeovis %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkfiltering %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkcommon +%%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkcharts %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkbase %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtk %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl @@ -3005,6 +3186,7 @@ lib/vtk-%%VER2%%/vtkWidgetsKit.cmake @dirrm include/vtk-%%VER2%%/vtksys @dirrm include/vtk-%%VER2%%/vtkstd @dirrm include/vtk-%%VER2%%/vtksqlite +@dirrm include/vtk-%%VER2%%/vtknetcdf/include @dirrm include/vtk-%%VER2%%/vtknetcdf @dirrm include/vtk-%%VER2%%/vtkmetaio @dirrm include/vtk-%%VER2%%/vtklibxml2/libxml @@ -3020,6 +3202,7 @@ lib/vtk-%%VER2%%/vtkWidgetsKit.cmake @dirrm include/vtk-%%VER2%%/internal @dirrm include/vtk-%%VER2%%/alglib @dirrm include/vtk-%%VER2%%/VPIC +@dirrm include/vtk-%%VER2%%/LSDyna @dirrm include/vtk-%%VER2%%/Cosmo %%STATIC%%@dirrm include/vtk-%%VER2%%/vtkzlib %%STATIC%%@dirrm include/vtk-%%VER2%%/vtkjpeg From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:22:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DED67E8; Wed, 10 Oct 2012 13:22:13 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 46DEB8FC14; Wed, 10 Oct 2012 13:22: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 q9ADMDND035375; Wed, 10 Oct 2012 13:22:13 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADMDVZ035373; Wed, 10 Oct 2012 13:22:13 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101322.q9ADMDVZ035373@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 13:22:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305661 - head/math/vtk5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:22:13 -0000 Author: gahr Date: Wed Oct 10 13:22:12 2012 New Revision: 305661 URL: http://svn.freebsd.org/changeset/ports/305661 Log: - Do not build with debug symbols (used in testing) Modified: head/math/vtk5/Makefile Modified: head/math/vtk5/Makefile ============================================================================== --- head/math/vtk5/Makefile Wed Oct 10 13:15:47 2012 (r305660) +++ head/math/vtk5/Makefile Wed Oct 10 13:22:12 2012 (r305661) @@ -60,8 +60,7 @@ CMAKE_ARGS+= -DBUILD_DOCUMENTATION:BOOL= -DVTK_DATA_ROOT:PATH=${EXAMPLESDIR}/VTKData \ -DOPENGL_INCLUDE_DIR:PATH=${LOCALBASE}/include \ -DOPENGL_gl_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGL.so \ - -DOPENGL_glu_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGLU.so \ - -DCMAKE_BUILD_TYPE=CMAKE_CXX_FLAGS_RELWITHDEBINFO + -DOPENGL_glu_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGLU.so .include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:27:15 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 755B6ADC; Wed, 10 Oct 2012 13:27:15 +0000 (UTC) (envelope-from ehaupt@critical.ch) Received: from mx.critical.ch (cl-8.zrh-02.ch.sixxs.net [IPv6:2001:1620:f00:7::2]) by mx1.freebsd.org (Postfix) with ESMTP id 09C2A8FC08; Wed, 10 Oct 2012 13:27:14 +0000 (UTC) Received: from wiggles.bwns.ch (snow.ethz.ch [129.132.80.16]) (authenticated bits=0) by mx.critical.ch (8.14.4/8.14.4/critical-1.0) with ESMTP id q9ADR7ef011616; Wed, 10 Oct 2012 15:27:08 +0200 (CEST) (envelope-from ehaupt@critical.ch) Date: Wed, 10 Oct 2012 15:27:07 +0200 From: Emanuel Haupt To: Bryan Drewery Subject: Re: svn commit: r305653 - head/ports-mgmt/portmaster Message-Id: <20121010152707.202753dc2ca04e0a228dad09@critical.ch> In-Reply-To: <507572AE.8040202@FreeBSD.org> References: <201210101303.q9AD355A031712@svn.freebsd.org> <507572AE.8040202@FreeBSD.org> X-Mailer: Sylpheed 3.2.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:27:15 -0000 Bryan Drewery wrote: > On 10/10/2012 8:03 AM, Bryan Drewery wrote: > > - Move to new home, http://github.com/portmaster > > - Take maintainership > > Being github, it will be easy to track issues, be transparent about > contributions, and allow a sane team effort. > > Please contact me if you are interested. Could you please add the pkgng patch as a non default option? Emanuel From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:34:40 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E0F3C51 for ; Wed, 10 Oct 2012 13:34:40 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id E7EE18FC16 for ; Wed, 10 Oct 2012 13:34:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9ADYdR2023167 for ; Wed, 10 Oct 2012 13:34:39 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9ADYdUS023161 for svn-ports-head@FreeBSD.org; Wed, 10 Oct 2012 13:34:39 GMT (envelope-from bdrewery) Received: (qmail 20788 invoked from network); 10 Oct 2012 08:34:38 -0500 Received: from unknown (HELO ?10.10.0.115?) (freebsd@shatow.net@10.10.0.115) by sweb.xzibition.com with ESMTPA; 10 Oct 2012 08:34:38 -0500 Message-ID: <50757967.7000609@FreeBSD.org> Date: Wed, 10 Oct 2012 08:34:31 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Emanuel Haupt Subject: Re: svn commit: r305653 - head/ports-mgmt/portmaster References: <201210101303.q9AD355A031712@svn.freebsd.org> <507572AE.8040202@FreeBSD.org> <20121010152707.202753dc2ca04e0a228dad09@critical.ch> In-Reply-To: <20121010152707.202753dc2ca04e0a228dad09@critical.ch> X-Enigmail-Version: 1.4.4 OpenPGP: id=3C9B0CF9; url=http://www.shatow.net/bryan/bryan.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:34:40 -0000 On 10/10/2012 8:27 AM, Emanuel Haupt wrote: > Bryan Drewery wrote: >> On 10/10/2012 8:03 AM, Bryan Drewery wrote: >>> - Move to new home, http://github.com/portmaster >>> - Take maintainership >> >> Being github, it will be easy to track issues, be transparent about >> contributions, and allow a sane team effort. >> >> Please contact me if you are interested. > > Could you please add the pkgng patch as a non default option? > > Emanuel > It is conditionalized such that if you do not have WITH_PKGNG in /etc/make.conf, it will change no functionality. We may end up setting up a -devel port for now to get broader testing and weed out issues. -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 14:28:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC25E2B0 for ; Wed, 10 Oct 2012 14:28:41 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 83E598FC24 for ; Wed, 10 Oct 2012 14:28:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9AESfp7099772 for ; Wed, 10 Oct 2012 14:28:41 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9AESfCu099766 for svn-ports-head@freebsd.org; Wed, 10 Oct 2012 14:28:41 GMT (envelope-from bdrewery) Received: (qmail 47026 invoked from network); 10 Oct 2012 09:28:39 -0500 Received: from unknown (HELO ?192.168.0.74?) (freebsd@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 10 Oct 2012 09:28:39 -0500 Message-ID: <50758617.8030109@FreeBSD.org> Date: Wed, 10 Oct 2012 09:28:39 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Pietro Cerutti Subject: Re: svn commit: r305648 - head/devel/tcllib References: <201210101228.q9ACSN9w026185@svn.freebsd.org> In-Reply-To: <201210101228.q9ACSN9w026185@svn.freebsd.org> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 14:28:41 -0000 On 10/10/2012 7:28 AM, Pietro Cerutti wrote: > Author: gahr > Date: Wed Oct 10 12:28:22 2012 > New Revision: 305648 > URL: http://svn.freebsd.org/changeset/ports/305648 > > Log: > - Do not install the try.n manpage when using Tcl 8.6, cause try/catch/finally > are part of Tcl 8.6 core and the relevant manpage is installed by lang/tcl86 > http://www.tcl.tk/cgi-bin/tct/tip/329.html This causes patch error on 7.4: ================================================= ===> Patching for tcllib-1.14_1 ===> Applying FreeBSD patches for tcllib-1.14_1 # # Ensure, the detailed output of vendors' self-tests is # available in addition to the pretty progress report: # /usr/bin/sed -i.bak -e 's,test run,test run -l testlog,' -e 's,$(libdir)/@PACKAGE@@VERSION@,$(libdir)/@PACKAGE@,' /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/Makefile.in /usr/bin/find /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/apps -type f ! -name "*.man" | /usr/bin/xargs /usr/bin/sed -i.bak -e 's,exec tclsh,exec /usr/local/bin/tclsh8.5,' # # patch(1) adds a newline at eof, so we need to remove it here # /usr/bin/awk 'NR > 1 { print h } { h = $0 } END { ORS = ""; print h }' /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04 > /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04.new /bin/mv /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04.new /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04 # try(n) is part of Tcl core since 8.6 MANN+= try.n MANN+=: not found *** Error code 127 Stop in /usr/ports/devel/tcllib. > > Modified: > head/devel/tcllib/Makefile > head/devel/tcllib/Makefile.man > > Modified: head/devel/tcllib/Makefile > ============================================================================== > --- head/devel/tcllib/Makefile Wed Oct 10 12:20:32 2012 (r305647) > +++ head/devel/tcllib/Makefile Wed Oct 10 12:28:22 2012 (r305648) > @@ -7,6 +7,7 @@ > > PORTNAME= tcllib > PORTVERSION= 1.14 > +PORTREVISION= 1 > CATEGORIES= devel tcl > MASTER_SITES= SF > > @@ -43,6 +44,14 @@ post-patch: > ${WRKSRC}/modules/doctools/tests/text/04 > ${WRKSRC}/modules/doctools/tests/text/04.new > ${MV} ${WRKSRC}/modules/doctools/tests/text/04.new ${WRKSRC}/modules/doctools/tests/text/04 > > + # try(n) is part of Tcl core since 8.6 > +.if ${TCL_VER:S/.//} < 86 > + MANN+= try.n > +.else > + ${MV} ${WRKSRC}/modules/try/try.man ${WRKSRC}/modules/try/try.man.noinstall > +.endif > + > + > RUNTEST= ${SETENV} LANG=C DISPLAY= ${MAKE} -C ${WRKSRC} test > MYID != ${ID} -u > .if ${MYID} == 0 > > Modified: head/devel/tcllib/Makefile.man > ============================================================================== > --- head/devel/tcllib/Makefile.man Wed Oct 10 12:20:32 2012 (r305647) > +++ head/devel/tcllib/Makefile.man Wed Oct 10 12:28:22 2012 (r305648) > @@ -303,7 +303,6 @@ MANN= S3.n \ > traverse.n \ > treeql.n \ > trim.n \ > - try.n \ > uevent.n \ > uevent_onidle.n \ > unicode.n \ > -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 14:51:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36A8195; Wed, 10 Oct 2012 14:51:35 +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 043DB8FC08; Wed, 10 Oct 2012 14:51: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 q9AEpYxO047766; Wed, 10 Oct 2012 14:51:34 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AEpYNf047762; Wed, 10 Oct 2012 14:51:34 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201210101451.q9AEpYNf047762@svn.freebsd.org> From: Max Brazhnikov Date: Wed, 10 Oct 2012 14:51:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305662 - head/editors/kile-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 14:51:35 -0000 Author: makc Date: Wed Oct 10 14:51:34 2012 New Revision: 305662 URL: http://svn.freebsd.org/changeset/ports/305662 Log: Update to 2.1.3 Modified: head/editors/kile-kde4/Makefile head/editors/kile-kde4/distinfo (contents, props changed) head/editors/kile-kde4/pkg-plist (contents, props changed) Modified: head/editors/kile-kde4/Makefile ============================================================================== --- head/editors/kile-kde4/Makefile Wed Oct 10 13:22:12 2012 (r305661) +++ head/editors/kile-kde4/Makefile Wed Oct 10 14:51:34 2012 (r305662) @@ -6,8 +6,7 @@ # PORTNAME= kile -PORTVERSION= 2.1.2 -PORTREVISION= 1 +PORTVERSION= 2.1.3 CATEGORIES= editors kde MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${DISTVERSION} Modified: head/editors/kile-kde4/distinfo ============================================================================== --- head/editors/kile-kde4/distinfo Wed Oct 10 13:22:12 2012 (r305661) +++ head/editors/kile-kde4/distinfo Wed Oct 10 14:51:34 2012 (r305662) @@ -1,2 +1,2 @@ -SHA256 (kile-2.1.2.tar.bz2) = 82d1e405e0b2aa8125cdc2dbf5bbfbb20488515bde763bf7b7cde69e6575a55b -SIZE (kile-2.1.2.tar.bz2) = 4858519 +SHA256 (kile-2.1.3.tar.bz2) = a063ec4fca1ba5a063ffdcdb538967af35ade01d71fa7db6ea691ba2cf88cea2 +SIZE (kile-2.1.3.tar.bz2) = 4911212 Modified: head/editors/kile-kde4/pkg-plist ============================================================================== --- head/editors/kile-kde4/pkg-plist Wed Oct 10 13:22:12 2012 (r305661) +++ head/editors/kile-kde4/pkg-plist Wed Oct 10 14:51:34 2012 (r305662) @@ -69,6 +69,7 @@ share/apps/kile/complete/tex/gauss.cwl share/apps/kile/complete/tex/glosstex.cwl share/apps/kile/complete/tex/graphicx.cwl share/apps/kile/complete/tex/hyperref.cwl +share/apps/kile/complete/tex/ifplatform.cwl share/apps/kile/complete/tex/ifthen.cwl share/apps/kile/complete/tex/import.cwl share/apps/kile/complete/tex/jurabib.cwl @@ -1579,8 +1580,10 @@ share/locale/ga/LC_MESSAGES/kile.mo share/locale/gl/LC_MESSAGES/kile.mo share/locale/hi/LC_MESSAGES/kile.mo share/locale/hne/LC_MESSAGES/kile.mo +share/locale/hu/LC_MESSAGES/kile.mo share/locale/it/LC_MESSAGES/kile.mo share/locale/ja/LC_MESSAGES/kile.mo +share/locale/kk/LC_MESSAGES/kile.mo share/locale/lt/LC_MESSAGES/kile.mo share/locale/mai/LC_MESSAGES/kile.mo share/locale/ms/LC_MESSAGES/kile.mo From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 14:56:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD631211; Wed, 10 Oct 2012 14:56:44 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A50C98FC08; Wed, 10 Oct 2012 14:56: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 q9AEui3u048475; Wed, 10 Oct 2012 14:56:44 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AEui7j048473; Wed, 10 Oct 2012 14:56:44 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201210101456.q9AEui7j048473@svn.freebsd.org> From: Greg Larkin Date: Wed, 10 Oct 2012 14:56:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305663 - head/devel/cvsbook X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 14:56:44 -0000 Author: glarkin Date: Wed Oct 10 14:56:43 2012 New Revision: 305663 URL: http://svn.freebsd.org/changeset/ports/305663 Log: - Converted to OptionsNG Modified: head/devel/cvsbook/Makefile Modified: head/devel/cvsbook/Makefile ============================================================================== --- head/devel/cvsbook/Makefile Wed Oct 10 14:51:34 2012 (r305662) +++ head/devel/cvsbook/Makefile Wed Oct 10 14:56:43 2012 (r305663) @@ -15,55 +15,63 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-all MAINTAINER= glarkin@FreeBSD.org COMMENT= A tutorial and reference for CVS -OPTIONS= CVSBOOK_INFO "Install the info version" on \ - CVSBOOK_SINGLE_HTML "Install the single-html version" on \ - CVSBOOK_SPLIT_HTML "Install the split-html version" off \ - CVSBOOK_POSTSCRIPT "Install the postscript version" on \ - CVSBOOK_PDF "Install the PDF version" on +OPTIONS_MULTI= CVSBOOK +OPTIONS_MULTI_CVSBOOK= INFO SINGLE_HTML SPLIT_HTML POSTSCRIPT PDF +INFO_DESC= Install the info version +SINGLE_HTML_DESC= Install the single HTML version +SPLIT_HTML_DESC= Install the split HTML version +POSTSCRIPT_DESC= Install the Postscript version +PDF_DESC= Install the PDF version +OPTIONS_DEFAULT= INFO SINGLE_HTML POSTSCRIPT PDF WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -.include +.include -.if defined(WITH_CVSBOOK_SPLIT_HTML) +.if ${PORT_OPTIONS:MSPLIT_HTML} ALL_TARGET= html-distributed .else NO_BUILD= yes .endif -.if !defined(WITHOUT_CVSBOOK_INFO) +.if ${PORT_OPTIONS:MINFO} INFO= cvsbook INFODIR= ${PREFIX}/${INFO_PATH} INSTALL_INFO?= install-info .endif -.if !defined(WITHOUT_CVSBOOK_SINGLE_HTML) + +.if ${PORT_OPTIONS:MSINGLE_HTML} PLIST_FILES+= %%DOCSDIR%%/cvsbook.html WANT_DOCSDIR= yes .endif -.if !defined(WITHOUT_CVSBOOK_POSTSCRIPT) + +.if ${PORT_OPTIONS:MPOSTSCRIPT} PLIST_FILES+= %%DOCSDIR%%/cvsbook.ps WANT_DOCSDIR= yes .endif -.if !defined(WITHOUT_CVSBOOK_PDF) + +.if ${PORT_OPTIONS:MPDF} PLIST_FILES+= %%DOCSDIR%%/cvsbook.pdf WANT_DOCSDIR= yes .endif -.if defined(WITH_CVSBOOK_SPLIT_HTML) + +.if ${PORT_OPTIONS:MSPLIT_HTML} PLIST_DIRS+= %%DOCSDIR%%/cvsbook-shtml WANT_DOCSDIR= yes .endif + .if defined(WANT_DOCSDIR) PLIST_DIRS+= %%DOCSDIR%% .endif -.if defined(WITH_CVSBOOK_SPLIT_HTML) +.if ${PORT_OPTIONS:MSPLIT_HTML} post-patch: - ${REINPLACE_CMD} -e \ + @${REINPLACE_CMD} -e \ '/Non-monolithic HTML not supported/s|@.*|makeinfo --html main.texi|' \ ${WRKSRC}/Makefile .endif -.if defined(WITH_CVSBOOK_SPLIT_HTML) +.if ${PORT_OPTIONS:MSPLIT_HTML} pre-install: PLIST_FILES+= `cd ${WRKSRC}/cvsbook && ${FIND} . -type f| ${CUT} -c2- \ | ${SED} 's|^|${DOCSDIR:S,${PREFIX}/,,}/cvsbook-shtml|' \ @@ -74,22 +82,22 @@ do-install: .if defined(WANT_DOCSDIR) @${MKDIR} ${DOCSDIR} .endif -.if defined(WITH_CVSBOOK_SPLIT_HTML) +.if ${PORT_OPTIONS:MSPLIT_HTML} @${MKDIR} ${DOCSDIR}/cvsbook-shtml @cd ${WRKSRC}/cvsbook && ${INSTALL_DATA} -- *.html ${DOCSDIR}/cvsbook-shtml .endif -.if !defined(WITHOUT_CVSBOOK_SINGLE_HTML) +.if ${PORT_OPTIONS:MSINGLE_HTML} @${INSTALL_DATA} ${WRKSRC}/cvsbook.html ${DOCSDIR} .endif -.if !defined(WITHOUT_CVSBOOK_PDF) +.if ${PORT_OPTIONS:MPDF} @${INSTALL_DATA} ${WRKSRC}/cvsbook.pdf ${DOCSDIR} .endif -.if !defined(WITHOUT_CVSBOOK_POSTSCRIPT) +.if ${PORT_OPTIONS:MPOSTSCRIPT} @${INSTALL_DATA} ${WRKSRC}/cvsbook.ps ${DOCSDIR} .endif -.if !defined(WITHOUT_CVSBOOK_INFO) +.if ${PORT_OPTIONS:MINFO} @${INSTALL_DATA} ${WRKSRC}/cvsbook.info* ${INFODIR} @${INSTALL_INFO} ${INFODIR}/cvsbook.info ${INFODIR}/dir .endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:05:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F60E48A; Wed, 10 Oct 2012 15:05:16 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 66F7E8FC0A; Wed, 10 Oct 2012 15:05:16 +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 q9AF5GNx049752; Wed, 10 Oct 2012 15:05:16 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AF5GMB049749; Wed, 10 Oct 2012 15:05:16 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201210101505.q9AF5GMB049749@svn.freebsd.org> From: Greg Larkin Date: Wed, 10 Oct 2012 15:05:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305664 - head/devel/p5-SVN-Notify-Snapshot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:05:16 -0000 Author: glarkin Date: Wed Oct 10 15:05:15 2012 New Revision: 305664 URL: http://svn.freebsd.org/changeset/ports/305664 Log: - Converted to OptionsNG - Added missing RUN_DEPENDS entry Modified: head/devel/p5-SVN-Notify-Snapshot/Makefile Modified: head/devel/p5-SVN-Notify-Snapshot/Makefile ============================================================================== --- head/devel/p5-SVN-Notify-Snapshot/Makefile Wed Oct 10 14:56:43 2012 (r305663) +++ head/devel/p5-SVN-Notify-Snapshot/Makefile Wed Oct 10 15:05:15 2012 (r305664) @@ -17,16 +17,18 @@ COMMENT= Take snapshots from Subversion BUILD_DEPENDS= ${LOCALBASE}/bin/svnnotify:${PORTSDIR}/devel/p5-SVN-Notify RUN_DEPENDS= ${LOCALBASE}/bin/svnnotify:${PORTSDIR}/devel/p5-SVN-Notify -OPTIONS= CONFIG "Enable YAML syntax for post-commit hook" Off +OPTIONS_DEFINE= CONFIG +CONFIG_DESC= Enable YAML syntax for post-commit hook PERL_MODBUILD= yes -.include +.include -.if defined(WITH_CONFIG) +.if ${PORT_OPTIONS:MCONFIG} BUILD_DEPENDS+= p5-SVN-Notify-Config>=0:${PORTSDIR}/devel/p5-SVN-Notify-Config +RUN_DEPENDS+= p5-SVN-Notify-Config>=0:${PORTSDIR}/devel/p5-SVN-Notify-Config .endif MAN3= SVN::Notify::Snapshot.3 SVN::Notify::Snapshot::ConfigData.3 -.include +.include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:09:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1294B672; Wed, 10 Oct 2012 15:09:26 +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 E25CD8FC12; Wed, 10 Oct 2012 15:09:25 +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 q9AF9Pxk050416; Wed, 10 Oct 2012 15:09:25 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AF9PBI050410; Wed, 10 Oct 2012 15:09:25 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101509.q9AF9PBI050410@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 15:09:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305665 - in head/chinese: . bsdconv-opencc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:09:26 -0000 Author: bdrewery Date: Wed Oct 10 15:09:25 2012 New Revision: 305665 URL: http://svn.freebsd.org/changeset/ports/305665 Log: Open Chinese Convert (OpenCC) is an open source Simplified-Traditional Chinese conversion project, providing high quality thesaurus and libopencc, as well as a conversion utility and a dictionary generator. bsdconv is a BSD licensed charset/encoding converter library with more function than libiconv. (Currently, only a few codecs are supported) This port is a opencc conversion module for bsdconv. WWW: https://github.com/buganini/bsdconv-opencc PR: ports/172266 Submitted by: Kuan-Chung Chiu Added: head/chinese/bsdconv-opencc/ head/chinese/bsdconv-opencc/Makefile (contents, props changed) head/chinese/bsdconv-opencc/distinfo (contents, props changed) head/chinese/bsdconv-opencc/pkg-descr (contents, props changed) head/chinese/bsdconv-opencc/pkg-plist (contents, props changed) Modified: head/chinese/Makefile Modified: head/chinese/Makefile ============================================================================== --- head/chinese/Makefile Wed Oct 10 15:05:15 2012 (r305664) +++ head/chinese/Makefile Wed Oct 10 15:09:25 2012 (r305665) @@ -19,6 +19,7 @@ SUBDIR += big5con SUBDIR += big5width SUBDIR += bitchx + SUBDIR += bsdconv-opencc SUBDIR += bug5 SUBDIR += c2t SUBDIR += calligra-l10n-zh_CN Added: head/chinese/bsdconv-opencc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/bsdconv-opencc/Makefile Wed Oct 10 15:09:25 2012 (r305665) @@ -0,0 +1,26 @@ +# Created by: buganini@gmail.com +# $FreeBSD$ + +PORTNAME= opencc +PORTVERSION= 1.0 +CATEGORIES= chinese converters +PKGNAMEPREFIX= bsdconv- +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} + +MAINTAINER= buganini@gmail.com +COMMENT= OpenCC conversion module for bsdconv + +LICENSE= BSD + +BUILD_DEPENDS= bsdconv_mktable:${PORTSDIR}/converters/bsdconv +LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv \ + opencc:${PORTSDIR}/chinese/opencc + +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_PROJECT= bsdconv-${PORTNAME} +GH_COMMIT= be3e559 + +MAKE_ARGS= PREFIX=${PREFIX} + +.include Added: head/chinese/bsdconv-opencc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/bsdconv-opencc/distinfo Wed Oct 10 15:09:25 2012 (r305665) @@ -0,0 +1,2 @@ +SHA256 (buganini-bsdconv-opencc-1.0-0-gbe3e559.tar.gz) = 4f21bcc78a5165d7919cc65bcb42c740224acb6de9d14f16915af0f56ba85a63 +SIZE (buganini-bsdconv-opencc-1.0-0-gbe3e559.tar.gz) = 2777 Added: head/chinese/bsdconv-opencc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/bsdconv-opencc/pkg-descr Wed Oct 10 15:09:25 2012 (r305665) @@ -0,0 +1,10 @@ +Open Chinese Convert (OpenCC) is an open source Simplified-Traditional +Chinese conversion project, providing high quality thesaurus and libopencc, +as well as a conversion utility and a dictionary generator. + +bsdconv is a BSD licensed charset/encoding converter library with more function +than libiconv. (Currently, only a few codecs are supported) + +This port is a opencc conversion module for bsdconv. + +WWW: https://github.com/buganini/bsdconv-opencc Added: head/chinese/bsdconv-opencc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/bsdconv-opencc/pkg-plist Wed Oct 10 15:09:25 2012 (r305665) @@ -0,0 +1,32 @@ +share/bsdconv/inter/OPENCC +share/bsdconv/inter/OPENCC.so +share/bsdconv/inter/OPENCC-MIX2ZHS +share/bsdconv/inter/OPENCC-MIX2ZHS.so +share/bsdconv/inter/OPENCC-MIX2ZHT +share/bsdconv/inter/OPENCC-MIX2ZHT.so +share/bsdconv/inter/OPENCC-ZHS2ZHT +share/bsdconv/inter/OPENCC-ZHS2ZHT.so +share/bsdconv/inter/OPENCC-ZHS2ZHTW_P +share/bsdconv/inter/OPENCC-ZHS2ZHTW_P.so +share/bsdconv/inter/OPENCC-ZHS2ZHTW_V +share/bsdconv/inter/OPENCC-ZHS2ZHTW_VP +share/bsdconv/inter/OPENCC-ZHS2ZHTW_VP.so +share/bsdconv/inter/OPENCC-ZHS2ZHTW_V.so +share/bsdconv/inter/OPENCC-ZHT2ZHS +share/bsdconv/inter/OPENCC-ZHT2ZHS.so +share/bsdconv/inter/OPENCC-ZHT2ZHTW_P +share/bsdconv/inter/OPENCC-ZHT2ZHTW_P.so +share/bsdconv/inter/OPENCC-ZHT2ZHTW_V +share/bsdconv/inter/OPENCC-ZHT2ZHTW_VP +share/bsdconv/inter/OPENCC-ZHT2ZHTW_VP.so +share/bsdconv/inter/OPENCC-ZHT2ZHTW_V.so +share/bsdconv/inter/OPENCC-ZHTW2ZHCN_S +share/bsdconv/inter/OPENCC-ZHTW2ZHCN_S.so +share/bsdconv/inter/OPENCC-ZHTW2ZHCN_T +share/bsdconv/inter/OPENCC-ZHTW2ZHCN_T.so +share/bsdconv/inter/OPENCC-ZHTW2ZHS +share/bsdconv/inter/OPENCC-ZHTW2ZHS.so +share/bsdconv/inter/OPENCC-ZHTW2ZHT +share/bsdconv/inter/OPENCC-ZHTW2ZHT.so +@dirrmtry share/bsdconv/inter +@dirrmtry share/bsdconv From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:21:56 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D2AEC2C; Wed, 10 Oct 2012 15:21:56 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3B1588FC1D; Wed, 10 Oct 2012 15:21:56 +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 q9AFLuL6052584; Wed, 10 Oct 2012 15:21:56 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFLuYw052580; Wed, 10 Oct 2012 15:21:56 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210101521.q9AFLuYw052580@svn.freebsd.org> From: "Jason E. Hale" Date: Wed, 10 Oct 2012 15:21:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305666 - head/security/libassuan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:21:56 -0000 Author: jhale Date: Wed Oct 10 15:21:55 2012 New Revision: 305666 URL: http://svn.freebsd.org/changeset/ports/305666 Log: - Update to 2.0.3 - Remove devel/pth dependency; libassuan-pth was dropped in 2.0.0 - Remove additional CFLAGS for amd64; builds fine on tinderbox without them Approved by: makc, avilla (mentors, implicit) Modified: head/security/libassuan/Makefile head/security/libassuan/distinfo (contents, props changed) Modified: head/security/libassuan/Makefile ============================================================================== --- head/security/libassuan/Makefile Wed Oct 10 15:09:25 2012 (r305665) +++ head/security/libassuan/Makefile Wed Oct 10 15:21:55 2012 (r305666) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libassuan -PORTVERSION= 2.0.2 +PORTVERSION= 2.0.3 CATEGORIES= security devel MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR=${PORTNAME} @@ -12,8 +12,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= jhale@FreeBSD.org COMMENT= IPC library used by GnuPG and gpgme -LIB_DEPENDS+= pth.20:${PORTSDIR}/devel/pth \ - gpg-error:${PORTSDIR}/security/libgpg-error +LIB_DEPENDS= gpg-error:${PORTSDIR}/security/libgpg-error USE_BZIP2= yes GNU_CONFIGURE= yes @@ -28,13 +27,7 @@ PLIST_FILES= bin/libassuan-config includ lib/libassuan.a lib/libassuan.la \ lib/libassuan.so.0 lib/libassuan.so share/aclocal/libassuan.m4 -.include - -.if ${ARCH} == "amd64" -CFLAGS+= -fPIC -.endif - verify: checksum gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.sig -.include +.include Modified: head/security/libassuan/distinfo ============================================================================== --- head/security/libassuan/distinfo Wed Oct 10 15:09:25 2012 (r305665) +++ head/security/libassuan/distinfo Wed Oct 10 15:21:55 2012 (r305666) @@ -1,4 +1,4 @@ -SHA256 (libassuan-2.0.2.tar.bz2) = 61e0cba33dcbade2dce953b95f06b843af2a73de875303f2585227ecd475b4d8 -SIZE (libassuan-2.0.2.tar.bz2) = 491172 -SHA256 (libassuan-2.0.2.tar.bz2.sig) = 13c2189acc2c3f054fba829c0f5578b357afb04ae09b8c85b268edb02ed22bae -SIZE (libassuan-2.0.2.tar.bz2.sig) = 326 +SHA256 (libassuan-2.0.3.tar.bz2) = bad5682374c76bcc0abb1a7a34c9557af6874a477500748e64a7d3def79cac1b +SIZE (libassuan-2.0.3.tar.bz2) = 529149 +SHA256 (libassuan-2.0.3.tar.bz2.sig) = dc3948dd031a453ed03a7c1ce5cc27d144df5ed030f834d613b61ffb2011d460 +SIZE (libassuan-2.0.3.tar.bz2.sig) = 287 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:34:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 094C1F8B; Wed, 10 Oct 2012 15:34:03 +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 CBF0F8FC08; Wed, 10 Oct 2012 15:34: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 q9AFY2BO054319; Wed, 10 Oct 2012 15:34:02 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFY2FQ054314; Wed, 10 Oct 2012 15:34:02 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101534.q9AFY2FQ054314@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 15:34:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305667 - in head/chinese: . chiconv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:34:03 -0000 Author: bdrewery Date: Wed Oct 10 15:34:02 2012 New Revision: 305667 URL: http://svn.freebsd.org/changeset/ports/305667 Log: Auto chinese encoding converter. It can detect UTF-8/Big5/GBK text and convert them to specified chinese encoding with transliteration. WWW: https://github.com/buganini/chiconv PR: ports/172267 Submitted by: Kuan-Chung Chiu Added: head/chinese/chiconv/ head/chinese/chiconv/Makefile (contents, props changed) head/chinese/chiconv/distinfo (contents, props changed) head/chinese/chiconv/pkg-descr (contents, props changed) Modified: head/chinese/Makefile Modified: head/chinese/Makefile ============================================================================== --- head/chinese/Makefile Wed Oct 10 15:21:55 2012 (r305666) +++ head/chinese/Makefile Wed Oct 10 15:34:02 2012 (r305667) @@ -27,6 +27,7 @@ SUBDIR += cce SUBDIR += cconv SUBDIR += celvis + SUBDIR += chiconv SUBDIR += cless SUBDIR += cmexfonts SUBDIR += cnprint Added: head/chinese/chiconv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/Makefile Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,24 @@ +# Created by: buganini@gmail.com +# $FreeBSD$ + +PORTNAME= chiconv +PORTVERSION= 1.0 +CATEGORIES= chinese converters +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} + +MAINTAINER= buganini@gmail.com +COMMENT= Auto chinese encoding converter + +LICENSE= BSD + +LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv + +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_COMMIT= 046010f + +MAKE_ARGS= PREFIX=${PREFIX} + +PLIST_FILES= bin/chiconv + +.include Added: head/chinese/chiconv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/distinfo Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,2 @@ +SHA256 (buganini-chiconv-1.0-0-g046010f.tar.gz) = ac8cdf73cebaf9725cdb2034d188fe1d2b988379b87fde269aa9b9b15fddf27c +SIZE (buganini-chiconv-1.0-0-g046010f.tar.gz) = 1531 Added: head/chinese/chiconv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/pkg-descr Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,4 @@ +Auto chinese encoding converter. It can detect UTF-8/Big5/GBK text and convert +them to specified chinese encoding with transliteration. + +WWW: https://github.com/buganini/chiconv From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:53:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8596BC0E; Wed, 10 Oct 2012 15:53:54 +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 6D9118FC18; Wed, 10 Oct 2012 15:53: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 q9AFrstI057457; Wed, 10 Oct 2012 15:53:54 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFrsmA057455; Wed, 10 Oct 2012 15:53:54 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210101553.q9AFrsmA057455@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 10 Oct 2012 15:53:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305668 - head/sysutils/amrstat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:53:54 -0000 Author: jkim Date: Wed Oct 10 15:53:53 2012 New Revision: 305668 URL: http://svn.freebsd.org/changeset/ports/305668 Log: Create a directory with default permissions to fix pkgng failure. Reported by: bapt (via pkgng exp-run) Modified: head/sysutils/amrstat/Makefile Modified: head/sysutils/amrstat/Makefile ============================================================================== --- head/sysutils/amrstat/Makefile Wed Oct 10 15:34:02 2012 (r305667) +++ head/sysutils/amrstat/Makefile Wed Oct 10 15:53:53 2012 (r305668) @@ -1,9 +1,5 @@ -# Ports collection makefile for: amrstat -# Date created: 2006-04-11 -# Whom: "Bjoern A. Zeeb" -# +# Created by: Bjoern A. Zeeb # $FreeBSD$ -# PORTNAME= amrstat PORTVERSION= 20070216 @@ -39,7 +35,8 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/amrstat ${PREFIX}/sbin - ${INSTALL_SCRIPT} -d ${PREFIX}/etc/periodic/daily - ${INSTALL_SCRIPT} ${WRKDIR}/${PERIODICSCRIPT} ${PREFIX}/etc/periodic/daily + ${MKDIR} ${PREFIX}/etc/periodic/daily + ${INSTALL_SCRIPT} ${WRKDIR}/${PERIODICSCRIPT} \ + ${PREFIX}/etc/periodic/daily .include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:55:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 442E8E3D; Wed, 10 Oct 2012 15:55:35 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2CBA08FC1C; Wed, 10 Oct 2012 15:55: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 q9AFtZ5Y057730; Wed, 10 Oct 2012 15:55:35 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFtYhR057728; Wed, 10 Oct 2012 15:55:34 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210101555.q9AFtYhR057728@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 15:55:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305669 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:55:35 -0000 Author: bapt Date: Wed Oct 10 15:55:34 2012 New Revision: 305669 URL: http://svn.freebsd.org/changeset/ports/305669 Log: Update the AFFECTS line to reflect the exact freebsd version concerned by the switch. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 15:53:53 2012 (r305668) +++ head/UPDATING Wed Oct 10 15:55:34 2012 (r305669) @@ -6,7 +6,7 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20121010: - AFFECTS: users of CURRENT + AFFECTS: users of CURRENT (OSVERSION >= 1000017) AUTHOR: bapt@FreeBSD.org The ports tree is now using pkgng as the default package manager From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 16:11:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9460C0; Wed, 10 Oct 2012 16:11:21 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C1F358FC18; Wed, 10 Oct 2012 16:11: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 q9AGBLtf059795; Wed, 10 Oct 2012 16:11:21 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AGBLi8059793; Wed, 10 Oct 2012 16:11:21 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210101611.q9AGBLi8059793@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 16:11:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305670 - head/lang/tcl85 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 16:11:21 -0000 Author: bapt Date: Wed Oct 10 16:11:21 2012 New Revision: 305670 URL: http://svn.freebsd.org/changeset/ports/305670 Log: Do not try to delete a directory where nothing is being added by the package and not created by the package. This fix tcl86 building on pointyhat with pkgng. Approved by: c.petrik.sosa@gmail.com (maintainer) Modified: head/lang/tcl85/pkg-plist.tm Modified: head/lang/tcl85/pkg-plist.tm ============================================================================== --- head/lang/tcl85/pkg-plist.tm Wed Oct 10 15:55:34 2012 (r305669) +++ head/lang/tcl85/pkg-plist.tm Wed Oct 10 16:11:21 2012 (r305670) @@ -7,5 +7,4 @@ lib/tcl8/8.5/tcltest-2.3.4.tm @dirrmtry lib/tcl8/8.4/platform @dirrmtry lib/tcl8/8.4 @dirrmtry lib/tcl8/8.5 -@dirrmtry lib/tcl8/8.6 @dirrmtry lib/tcl8 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 16:14:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 26804522; Wed, 10 Oct 2012 16:14:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0F6BA8FC08; Wed, 10 Oct 2012 16:14: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 q9AGEvRL060300; Wed, 10 Oct 2012 16:14:57 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AGEvv4060297; Wed, 10 Oct 2012 16:14:57 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101614.q9AGEvv4060297@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 16:14:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305671 - head/audio/pacpl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 16:14:58 -0000 Author: sunpoet Date: Wed Oct 10 16:14:57 2012 New Revision: 305671 URL: http://svn.freebsd.org/changeset/ports/305671 Log: - Remove unnecessary double quote in OPTIMFROG_DESC Submitted by: Riccardo Torrini Modified: head/audio/pacpl/Makefile Modified: head/audio/pacpl/Makefile ============================================================================== --- head/audio/pacpl/Makefile Wed Oct 10 16:11:21 2012 (r305670) +++ head/audio/pacpl/Makefile Wed Oct 10 16:14:57 2012 (r305671) @@ -42,7 +42,7 @@ MP3TAG_DESC= Enable MP3 tagging support MP4TAG_DESC= Enable MP4 tagging support MPLAYER_DESC= Enable Mplayer support MPPTAG_DESC= Enable Musepack tagging support -OPTIMFROG_DESC= Enable OptimFROG support" +OPTIMFROG_DESC= Enable OptimFROG support VORBISTAG_DESC= Enable Ogg/Vorbis tagging support SHORTEN_DESC= Enable Shorten support SOX_DESC= Enable SoX support From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 16:56:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9A8B933; Wed, 10 Oct 2012 16:56:08 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8F30A8FC16; Wed, 10 Oct 2012 16:56:08 +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 q9AGu8Mq065810; Wed, 10 Oct 2012 16:56:08 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AGu8Hj065791; Wed, 10 Oct 2012 16:56:08 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201210101656.q9AGu8Hj065791@svn.freebsd.org> From: Andrej Zverev Date: Wed, 10 Oct 2012 16:56:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305672 - in head: astro/wmspaceweather databases/namazu2 devel/p5-Carp-Datum graphics/p5-Imager-AverageGray japanese/another-htmllint japanese/eijiro-fpw japanese/mypaedia-fpw japanese... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 16:56:08 -0000 Author: az Date: Wed Oct 10 16:56:07 2012 New Revision: 305672 URL: http://svn.freebsd.org/changeset/ports/305672 Log: - Remove SITE_PERL from *_DEPENDS (final part) Approved by: portmgr@ (bapt@) Modified: head/astro/wmspaceweather/Makefile head/databases/namazu2/Makefile head/devel/p5-Carp-Datum/Makefile head/graphics/p5-Imager-AverageGray/Makefile head/japanese/another-htmllint/Makefile head/japanese/eijiro-fpw/Makefile head/japanese/mypaedia-fpw/Makefile head/japanese/namazu2/Makefile head/japanese/otojiro-fpw/Makefile head/japanese/srd-fpw/Makefile head/japanese/waeijiro-fpw/Makefile head/mail/websieve/Makefile head/net-mgmt/p5-Net-SNMP/Makefile head/security/p5-Crypt-Primes/Makefile head/sysutils/psgconf/Makefile head/textproc/ruby-xmlparser/Makefile head/www/bins/Makefile head/www/fswiki/Makefile Modified: head/astro/wmspaceweather/Makefile ============================================================================== --- head/astro/wmspaceweather/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/astro/wmspaceweather/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -17,7 +17,7 @@ COMMENT= A DockApp that shows the weathe LICENSE= GPLv2 -RUN_DEPENDS= ${SITE_PERL}/Time/CTime.pm:${PORTSDIR}/devel/p5-Time-modules +RUN_DEPENDS= p5-Time-modules>=0:${PORTSDIR}/devel/p5-Time-modules WRKSRC= ${WRKDIR}/${DISTNAME}/wmSpaceWeather Modified: head/databases/namazu2/Makefile ============================================================================== --- head/databases/namazu2/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/databases/namazu2/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,10 +14,8 @@ PKGNAMESUFFIX= 2 MAINTAINER= ports@FreeBSD.org COMMENT= Full-text search system intended for easy use -BUILD_DEPENDS= ${PM_BASE}/File/MMagic.pm:${PORTSDIR}/devel/p5-File-MMagic -RUN_DEPENDS= ${PM_BASE}/File/MMagic.pm:${PORTSDIR}/devel/p5-File-MMagic - -PM_BASE= ${SITE_PERL} +BUILD_DEPENDS= p5-File-MMagic>=0:${PORTSDIR}/devel/p5-File-MMagic +RUN_DEPENDS= p5-File-MMagic>=0:${PORTSDIR}/devel/p5-File-MMagic USE_PERL5= yes USE_ICONV= yes Modified: head/devel/p5-Carp-Datum/Makefile ============================================================================== --- head/devel/p5-Carp-Datum/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/devel/p5-Carp-Datum/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,12 +14,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Debugging And Tracing Ultimate Module -BUILD_DEPENDS= ${PM_BASE}/Log/Agent.pm:${PORTSDIR}/devel/p5-Log-Agent \ - ${PM_BASE}/Getargs/Long.pm:${PORTSDIR}/devel/p5-Getargs-Long +BUILD_DEPENDS= p5-Log-Agent>=0:${PORTSDIR}/devel/p5-Log-Agent \ + p5-Getargs-Long>=0:${PORTSDIR}/devel/p5-Getargs-Long RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes -PM_BASE= ${SITE_PERL} MAN1= datum_strip.1 MAN3= Carp::Datum::Assert.3 \ Modified: head/graphics/p5-Imager-AverageGray/Makefile ============================================================================== --- head/graphics/p5-Imager-AverageGray/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/graphics/p5-Imager-AverageGray/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -15,7 +15,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= vvelox@vvelox.net COMMENT= Finds the average gray for a Imager object or image -RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Imager.pm:${PORTSDIR}/graphics/p5-Imager/ +RUN_DEPENDS= p5-Imager>=0:${PORTSDIR}/graphics/p5-Imager/ PERL_CONFIGURE= yes Modified: head/japanese/another-htmllint/Makefile ============================================================================== --- head/japanese/another-htmllint/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/another-htmllint/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,7 +14,7 @@ MAINTAINER= kuriyama@FreeBSD.org COMMENT= Another HTML-lint (all messages are written in Japanese) RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode USE_PERL5= YES USE_ZIP= YES @@ -51,6 +51,4 @@ do-install: post-install: @${CAT} ${PKGMESSAGE} -JCODE= ${SITE_PERL}/Jcode.pm - .include Modified: head/japanese/eijiro-fpw/Makefile ============================================================================== --- head/japanese/eijiro-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/eijiro-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -17,7 +17,7 @@ COMMENT= EIJIRO English - Japanese Dicti EXTRACT_DEPENDS=${LOCALBASE}/share/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing BUILD_DEPENDS= ${LOCALBASE}/libexec/freepwing/catdump:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode MANUAL_PACKAGE_BUILD=Needs data from CDROM RESTRICTED= "The original dictionary is not free" @@ -30,8 +30,6 @@ SRCFILE?= eijiro52.txt # For eijiro included in a book sold by ALC Inc. # (http://www.alc.co.jp/alcshop/eng/eijiro/) -JCODE= ${SITE_PERL}/Jcode.pm - .include DICT_ARCHIVE!= ${ECHO_CMD} ${DICT_PATH}/eijiro-original/*.exe || ${TRUE} Modified: head/japanese/mypaedia-fpw/Makefile ============================================================================== --- head/japanese/mypaedia-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/mypaedia-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= An encyclopedia "Mypaedia" (EPWING V1 format) BUILD_DEPENDS= fpwmake:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode IS_INTERACTIVE= YES RESTRICTED= "The original dictionary is not free" @@ -56,6 +56,4 @@ do-install: .endfor .endif -JCODE= ${SITE_PERL}/Jcode.pm - .include Modified: head/japanese/namazu2/Makefile ============================================================================== --- head/japanese/namazu2/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/namazu2/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -17,9 +17,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Meta-port of Namazu and Japanese support modules LIB_DEPENDS= nmz.8:${PORTSDIR}/databases/namazu2 -RUN_DEPENDS= ${PM_BASE}/${PERL_ARCH}/NKF.pm:${PORTSDIR}/japanese/p5-nkf +RUN_DEPENDS= ja-p5-nkf>=0:${PORTSDIR}/japanese/p5-nkf -PM_BASE= ${SITE_PERL} PLIST= "@comment this plist is intentionally left empty" .if defined(WITH_CHASEN) Modified: head/japanese/otojiro-fpw/Makefile ============================================================================== --- head/japanese/otojiro-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/otojiro-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -21,7 +21,7 @@ EXPIRATION_DATE= 2012-10-20 EXTRACT_DEPENDS=${LOCALBASE}/share/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing BUILD_DEPENDS= ${LOCALBASE}/libexec/freepwing/catdump:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode MANUAL_PACKAGE_BUILD=Needs data from CDROM RESTRICTED= "The original dictionary is not free" @@ -35,8 +35,6 @@ SRCFILE?= otojiro.txt # (http://www.alc.co.jp/alcshop/eng/eijiro/) .include -JCODE= ${SITE_PERL}/Jcode.pm - DICT_ARCHIVE!= ${ECHO_CMD} ${DICT_PATH}/eijiro-original/*.exe || ${TRUE} .if exists(${DICT_ARCHIVE}) EXTRACT_DEPENDS+= lha:${PORTSDIR}/archivers/lha Modified: head/japanese/srd-fpw/Makefile ============================================================================== --- head/japanese/srd-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/srd-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A English - Japanese Dictionary "Random House" (EPWING V1 format) BUILD_DEPENDS= fpwmake:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode IS_INTERACTIVE= YES RESTRICTED= "The original dictionary is not free" @@ -60,6 +60,4 @@ do-install: .endfor .endif -JCODE= ${SITE_PERL}/Jcode.pm - .include Modified: head/japanese/waeijiro-fpw/Makefile ============================================================================== --- head/japanese/waeijiro-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/waeijiro-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -18,7 +18,7 @@ COMMENT= WAEIJIRO English - Japanese Dic EXTRACT_DEPENDS=${LOCALBASE}/share/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing BUILD_DEPENDS= ${LOCALBASE}/libexec/freepwing/catdump:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode MANUAL_PACKAGE_BUILD=Needs data from a CDROM RESTRICTED= "The original dictionary is not free" @@ -29,7 +29,6 @@ SRCFILE?= waeiji52.txt # For eijiro included in a book sold by ALC Inc. # (http://www.alc.co.jp/alcshop/eng/eijiro/) -JCODE= ${SITE_PERL}/Jcode.pm .include DICT_ARCHIVE!= ${ECHO_CMD} ${DICT_PATH}/eijiro-original/*.exe || ${TRUE} Modified: head/mail/websieve/Makefile ============================================================================== --- head/mail/websieve/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/mail/websieve/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -34,19 +34,17 @@ CYRUS_IMAPD_24_DESC= With Cyrus IMAPd ve .include -CYRUS_IMAP_PM= ${SITE_PERL}/${PERL_ARCH}/Cyrus/IMAP/Admin.pm - .if ${PORT_OPTIONS:MCYRUS_IMAPD_24} -RUN_DEPENDS+= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd24 +RUN_DEPENDS+= cyrus-imapd>=0:${PORTSDIR}/mail/cyrus-imapd24 FUNCLIB_PL= funclib.cyrus .elif ${PORT_OPTIONS:MCYRUS_IMAPD_23} -RUN_DEPENDS+= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd23 +RUN_DEPENDS+= cyrus-imapd>=0:${PORTSDIR}/mail/cyrus-imapd23 FUNCLIB_PL= funclib.cyrus .elif ${PORT_OPTIONS:MCYRUS_IMAPD_22} -RUN_DEPENDS+= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd22 +RUN_DEPENDS+= cyrus-imapd>=0:${PORTSDIR}/mail/cyrus-imapd22 FUNCLIB_PL= funclib.cyrus .elif ${PORT_OPTIONS:MCYRUS_IMAPD_21} -RUN_DEPENDS+= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd2 +RUN_DEPENDS+= cyrus-imapd>=0:${PORTSDIR}/mail/cyrus-imapd2 FUNCLIB_PL= funclib.cyrus .else RUN_DEPENDS+= p5-IMAP-Admin>=0:${PORTSDIR}/mail/p5-IMAP-Admin \ Modified: head/net-mgmt/p5-Net-SNMP/Makefile ============================================================================== --- head/net-mgmt/p5-Net-SNMP/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/net-mgmt/p5-Net-SNMP/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -16,13 +16,12 @@ DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= lth@FreeBSD.org COMMENT= Object oriented interface to SNMP -BUILD_DEPENDS= ${ARCH_PERL}/Crypt/DES.pm:${PORTSDIR}/security/p5-Crypt-DES \ - ${ARCH_PERL}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \ +BUILD_DEPENDS= p5-Crypt-DES>=0:${PORTSDIR}/security/p5-Crypt-DES \ + p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ p5-Digest-HMAC>=0:${PORTSDIR}/security/p5-Digest-HMAC RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes -ARCH_PERL= ${SITE_PERL}/${PERL_ARCH} CONFLICTS= p5-Net-SNMP3-[0-9]* MAN1= snmpkey.1 Modified: head/security/p5-Crypt-Primes/Makefile ============================================================================== --- head/security/p5-Crypt-Primes/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/security/p5-Crypt-Primes/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,10 +14,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provable Prime Number Generator suitable for Cryptographic Applications -PERLBASE= ${SITE_PERL} - -BUILD_DEPENDS= ${PERLBASE}/Crypt/Random.pm:${PORTSDIR}/security/p5-Crypt-Random \ - ${PERLBASE}/${PERL_ARCH}/Math/Pari.pm:${PORTSDIR}/math/p5-Math-Pari +BUILD_DEPENDS= p5-Crypt-Random>=0:${PORTSDIR}/security/p5-Crypt-Random \ + p5-Math-Pari>=0:${PORTSDIR}/math/p5-Math-Pari PERL_CONFIGURE= yes Modified: head/sysutils/psgconf/Makefile ============================================================================== --- head/sysutils/psgconf/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/sysutils/psgconf/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,14 +14,14 @@ MASTER_SITES= ftp://ftp-dev.cites.uiuc.e MAINTAINER= pirzyk@FreeBSD.org COMMENT= Controls system configuration -BUILD_DEPENDS= ${SITE_PERL}/Config/Objective.pm:${PORTSDIR}/devel/p5-Config-Objective \ - ${SITE_PERL}/AppConfig.pm:${PORTSDIR}/devel/p5-AppConfig \ - p5-NetAddr-IP>0:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \ - ${SITE_PERL}/${PERL_ARCH}/Proc/ProcessTable/Process.pm:${PORTSDIR}/devel/p5-Proc-ProcessTable \ - ${SITE_PERL}/${PERL_ARCH}/Unix/Mknod.pm:${PORTSDIR}/sysutils/p5-Unix-Mknod \ - ${SITE_PERL}/${PERL_ARCH}/Unix/Syslog.pm:${PORTSDIR}/sysutils/p5-Unix-Syslog \ - ${SITE_PERL}/${PERL_ARCH}/version.pm:${PORTSDIR}/devel/p5-version \ - ${SITE_PERL}/Text/Diff.pm:${PORTSDIR}/textproc/p5-Text-Diff +BUILD_DEPENDS= p5-Config-Objective>=0:${PORTSDIR}/devel/p5-Config-Objective \ + p5-AppConfig>=0:${PORTSDIR}/devel/p5-AppConfig \ + p5-NetAddr-IP>=0:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \ + p5-Proc-ProcessTable>=0:${PORTSDIR}/devel/p5-Proc-ProcessTable \ + Unix-Mknod>=0:${PORTSDIR}/sysutils/p5-Unix-Mknod \ + p5-Unix-Syslog>=0:${PORTSDIR}/sysutils/p5-Unix-Syslog \ + p5-version>=0:${PORTSDIR}/devel/p5-version \ + p5-Text-Diff>=0:${PORTSDIR}/textproc/p5-Text-Diff RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= YES Modified: head/textproc/ruby-xmlparser/Makefile ============================================================================== --- head/textproc/ruby-xmlparser/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/textproc/ruby-xmlparser/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -15,20 +15,18 @@ DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby module to access James Clark XML Parser ToolKit ("expat") -BUILD_DEPENDS= ${PERL_ARCHLIB}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-Parser +BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/uconv.so:${PORTSDIR}/japanese/ruby-uconv \ - ${PERL_ARCHLIB}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-Parser + p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser # to utilize encoding maps included in p5-XML-Parser USE_PERL5= yes USE_RUBY= yes USE_RUBY_EXTCONF= yes -PERL_ARCHLIB= ${SITE_PERL}/${PERL_ARCH} - WRKSRC= ${WRKDIR}/${PORTNAME} -CONFIGURE_ARGS= --with-perl-enc-map=${PERL_ARCHLIB}/XML/Parser/Encodings +CONFIGURE_ARGS= --with-perl-enc-map=${SITE_PERL}/${PERL_ARCH}/XML/Parser/Encodings INSTALL_TARGET= site-install post-extract: Modified: head/www/bins/Makefile ============================================================================== --- head/www/bins/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/www/bins/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -15,28 +15,25 @@ MAINTAINER= araujo@FreeBSD.org COMMENT= Tool to generate HTML photo albums with XML support RUN_DEPENDS= \ - ${PBASE}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ - ${PBASE}/${PERL_ARCH}/Image/Magick.pm:${PORTSDIR}/graphics/ImageMagick \ - ${PBASE}/${PERL_ARCH}/Text/Iconv.pm:${PORTSDIR}/converters/p5-Text-Iconv \ - ${PBASE}/${PERL_ARCH}/Text/Unaccent.pm:${PORTSDIR}/textproc/p5-Text-Unaccent \ - ${PBASE}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \ - ${PBASE}/HTML/Clean.pm:${PORTSDIR}/www/p5-HTML-Clean \ - ${PBASE}/HTML/Template.pm:${PORTSDIR}/www/p5-HTML-Template \ - ${PBASE}/IO/String.pm:${PORTSDIR}/devel/p5-IO-String \ - ${PBASE}/Image/Info.pm:${PORTSDIR}/graphics/p5-Image-Info \ - ${PBASE}/Image/Size.pm:${PORTSDIR}/graphics/p5-Image-Size \ - ${PBASE}/URI/Escape.pm:${PORTSDIR}/net/p5-URI \ - ${PBASE}/XML/Grove.pm:${PORTSDIR}/textproc/p5-XML-Grove \ - ${PBASE}/XML/Handler/YAWriter.pm:${PORTSDIR}/textproc/p5-XML-Handler-YAWriter \ - ${PBASE}/XML/Parser/PerlSAX.pm:${PORTSDIR}/textproc/p5-libxml + p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ + convert:${PORTSDIR}/graphics/ImageMagick \ + p5-Text-Iconv>=0:${PORTSDIR}/converters/p5-Text-Iconv \ + p5-Text-Iconv>=0:${PORTSDIR}/textproc/p5-Text-Unaccent \ + p5-TimeDate>=0:${PORTSDIR}/devel/p5-TimeDate \ + p5-HTML-Clean>0:${PORTSDIR}/www/p5-HTML-Clean \ + p5-HTML-Template>=0:${PORTSDIR}/www/p5-HTML-Template \ + p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String \ + p5-Image-Info>=0:${PORTSDIR}/graphics/p5-Image-Info \ + p5-Image-Size>=0:${PORTSDIR}/graphics/p5-Image-Size \ + p5-URI>=0:${PORTSDIR}/net/p5-URI \ + p5-XML-Grove>=0:${PORTSDIR}/textproc/p5-XML-Grove \ + p5-XML-Handler-YAWriter>=0:${PORTSDIR}/textproc/p5-XML-Handler-YAWriter \ + p5-libxml>=0:${PORTSDIR}/textproc/p5-libxml USE_BZIP2= yes USE_PERL5_RUN= yes NO_BUILD= yes -# perlbase -PBASE= ${SITE_PERL} - # additional scripts BINS_SCRIPTS= tools/bins_txt2xml # doc file extension @@ -84,8 +81,7 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- # localization support .if defined(WITH_I18N) -RUN_DEPENDS+= \ - ${PBASE}/${PERL_ARCH}/Locale/gettext.pm:${PORTSDIR}/devel/p5-Locale-gettext +RUN_DEPENDS+= p5-Locale-gettext>=0:${PORTSDIR}/devel/p5-Locale-gettext .endif pre-everything:: Modified: head/www/fswiki/Makefile ============================================================================== --- head/www/fswiki/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/www/fswiki/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -15,15 +15,13 @@ DISTNAME= wiki${PORTVERSION:S|.|_|g} MAINTAINER= kuriyama@FreeBSD.org COMMENT= FreeStyle Wiki (perl based wiki clone) -RUN_DEPENDS= ${JCODE}:${PORTSDIR}/japanese/p5-Jcode \ +RUN_DEPENDS= ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode \ p5-HTML-Template>=0:${PORTSDIR}/www/p5-HTML-Template USE_ZIP= yes USE_PERL5= yes NO_BUILD= yes -JCODE= ${SITE_PERL}/Jcode.pm - post-extract: ${SED} -e 's|__DATADIR__|${DATADIR}|' ${FILESDIR}/setup.sh \ >${WRKSRC}/setup.sh From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:20:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A81CB7D; Wed, 10 Oct 2012 17:20:50 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3380A8FC08; Wed, 10 Oct 2012 17:20: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 q9AHKorC069159; Wed, 10 Oct 2012 17:20:50 GMT (envelope-from tabthorpe@svn.freebsd.org) Received: (from tabthorpe@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AHKoTH069156; Wed, 10 Oct 2012 17:20:50 GMT (envelope-from tabthorpe@svn.freebsd.org) Message-Id: <201210101720.q9AHKoTH069156@svn.freebsd.org> From: Thomas Abthorpe Date: Wed, 10 Oct 2012 17:20:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305673 - head/net/pchar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:20:50 -0000 Author: tabthorpe Date: Wed Oct 10 17:20:49 2012 New Revision: 305673 URL: http://svn.freebsd.org/changeset/ports/305673 Log: - Reassign to the heap at maintainer's request Modified: head/net/pchar/Makefile (contents, props changed) Modified: head/net/pchar/Makefile ============================================================================== --- head/net/pchar/Makefile Wed Oct 10 16:56:07 2012 (r305672) +++ head/net/pchar/Makefile Wed Oct 10 17:20:49 2012 (r305673) @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: pchar -# Date created: Wed Nov 03, 1999 -# Whom: David O'Brien (obrien@NUXI.com) -# +# Whom: David O'Brien (obrien@NUXI.com) # $FreeBSD$ -# PORTNAME= pchar PORTVERSION= 1.5 @@ -13,7 +8,7 @@ MASTER_SITES= http://www.kitchenlab.org/ MASTER_SITES+= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= bmah -MAINTAINER= bmah@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Sandia Internet path characterization tool GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:29:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1C7EFE3; Wed, 10 Oct 2012 17:29:42 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BA7E38FC1D; Wed, 10 Oct 2012 17:29: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 q9AHTgkH070343; Wed, 10 Oct 2012 17:29:42 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AHTgoY070340; Wed, 10 Oct 2012 17:29:42 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201210101729.q9AHTgoY070340@svn.freebsd.org> From: Matthew Seaman Date: Wed, 10 Oct 2012 17:29:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305674 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:29:42 -0000 Author: matthew Date: Wed Oct 10 17:29:42 2012 New Revision: 305674 URL: http://svn.freebsd.org/changeset/ports/305674 Log: Tweak the layout slightly to improve readability. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 17:20:49 2012 (r305673) +++ head/UPDATING Wed Oct 10 17:29:42 2012 (r305674) @@ -23,9 +23,9 @@ you update your ports collection, before 2/ Install ports-mgmt/pkg - 3/ Remove WITHOUT_PKGNG from make.conf and run + 3/ Remove WITHOUT_PKGNG from make.conf and run: - # pkg2ng + # pkg2ng 20121009: AFFECTS: users of multimedia/vdpau-video From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:30:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63A7C2C1; Wed, 10 Oct 2012 17:30:44 +0000 (UTC) (envelope-from garga.bsd@gmail.com) Received: from mail-gg0-f182.google.com (mail-gg0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8DED08FC1A; Wed, 10 Oct 2012 17:30:43 +0000 (UTC) Received: by mail-gg0-f182.google.com with SMTP id l1so206018ggn.13 for ; Wed, 10 Oct 2012 10:30:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=Fm9ZzYPoCSEvqkW81ixbJSjemTMy9Zw9uqcCh2nAy6g=; b=XDhS9pB0st1/XXIEXwkX34iiQWfep2GHxsa2ZLIHHqqxeke9KFtkGsOBUXjt37Hvtz x7KXaks7zHqWlC5pC9TKxpw/UAtHEEN2Afh0J97EBchQ9WfDqWHjX4VfFdx330N7FLsP 8S+gZy9BsjWgzZ0ZW2t6G7khCwTjN3wQqGgaNXeEyURnWka6mDA3yNWbuq7rUQlYiRtw 7d/XGP44akw2Foen5eAbOhiDI7cWtNkCqw+uuUAT9yMQmcnJhJKZpSPVoMD3+HB6dKSu 0Myjw9dSpdOECeD7kZPXhkspgXN9xKYF75sGFnbLS+0599yPB2WlGoj/1FpZpyUabQts 3cqQ== Received: by 10.236.77.39 with SMTP id c27mr23278806yhe.99.1349890237637; Wed, 10 Oct 2012 10:30:37 -0700 (PDT) Received: from localhost (201-92-84-70.dsl.telesp.net.br. [201.92.84.70]) by mx.google.com with ESMTPS id h17sm1560104ang.21.2012.10.10.10.30.33 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 10 Oct 2012 10:30:35 -0700 (PDT) Sender: Renato Botelho Date: Wed, 10 Oct 2012 14:30:27 -0300 From: Renato Botelho To: Thomas Abthorpe Subject: Re: svn commit: r305673 - head/net/pchar Message-ID: <20121010173027.GA24323@rbcouto.ibm.com> References: <201210101720.q9AHKoTH069156@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PNTmBPCT7hxwcZjr" Content-Disposition: inline In-Reply-To: <201210101720.q9AHKoTH069156@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:30:44 -0000 --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 10, 2012 at 05:20:50PM +0000, Thomas Abthorpe wrote: > Author: tabthorpe > Date: Wed Oct 10 17:20:49 2012 > New Revision: 305673 > URL: http://svn.freebsd.org/changeset/ports/305673 >=20 > Log: > - Reassign to the heap at maintainer's request >=20 > Modified: > head/net/pchar/Makefile (contents, props changed) >=20 > Modified: head/net/pchar/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/net/pchar/Makefile Wed Oct 10 16:56:07 2012 (r305672) > +++ head/net/pchar/Makefile Wed Oct 10 17:20:49 2012 (r305673) > @@ -1,10 +1,5 @@ > -# ex:ts=3D8 > -# Ports collection makefile for: pchar > -# Date created: Wed Nov 03, 1999 > -# Whom: David O'Brien (obrien@NUXI.com) > -# > +# Whom: David O'Brien (obrien@NUXI.com) Hello Thomas, You need to s/Whom/Created by/ here. Regards --=20 Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc --PNTmBPCT7hxwcZjr Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlB1sLMACgkQ6CRbiSJE7akkFgCeMzgYAC2k5Vm3WrnyLBI87BBl H4UAn3TsFMbq4R8x7tNGzy+zYW/5rA1m =GS76 -----END PGP SIGNATURE----- --PNTmBPCT7hxwcZjr-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:34:52 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99DC340B; Wed, 10 Oct 2012 17:34:52 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 481618FC08; Wed, 10 Oct 2012 17:34:52 +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 q9AHYqOv071094; Wed, 10 Oct 2012 17:34:52 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AHYqsf071092; Wed, 10 Oct 2012 17:34:52 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201210101734.q9AHYqsf071092@svn.freebsd.org> From: Matthew Seaman Date: Wed, 10 Oct 2012 17:34:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305675 - head/mail/sa-utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:34:52 -0000 Author: matthew Date: Wed Oct 10 17:34:51 2012 New Revision: 305675 URL: http://svn.freebsd.org/changeset/ports/305675 Log: - Trim Makefile headers - Remove extraneous quote marks from option DESC Submitted by: Riccardo Torrini Modified: head/mail/sa-utils/Makefile (contents, props changed) Modified: head/mail/sa-utils/Makefile ============================================================================== --- head/mail/sa-utils/Makefile Wed Oct 10 17:29:42 2012 (r305674) +++ head/mail/sa-utils/Makefile Wed Oct 10 17:34:51 2012 (r305675) @@ -1,7 +1,4 @@ -# New ports collection makefile for: sa-utils -# Date created: 3 January 2010 -# Whom: Matthew Seaman -# +# Created by: Matthew Seaman # $FreeBSD$ # # Port is self-contained in the files directory. @@ -19,7 +16,7 @@ COMMENT= SpamAssassin nightly periodic m RUN_DEPENDS= sa-update:${PORTSDIR}/mail/p5-Mail-SpamAssassin OPTIONS_DEFINE= SACOMPILE -SACOMPILE_DESC= "Enable sa-compile support" +SACOMPILE_DESC= Enable sa-compile support NO_BUILD= yes SUB_FILES= sa-utils From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:44:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 705AD9CB; Wed, 10 Oct 2012 17:44:08 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 597998FC0A; Wed, 10 Oct 2012 17:44:08 +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 q9AHi8qh072321; Wed, 10 Oct 2012 17:44:08 GMT (envelope-from tabthorpe@svn.freebsd.org) Received: (from tabthorpe@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AHi81d072319; Wed, 10 Oct 2012 17:44:08 GMT (envelope-from tabthorpe@svn.freebsd.org) Message-Id: <201210101744.q9AHi81d072319@svn.freebsd.org> From: Thomas Abthorpe Date: Wed, 10 Oct 2012 17:44:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305676 - head/net/pchar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:44:08 -0000 Author: tabthorpe Date: Wed Oct 10 17:44:07 2012 New Revision: 305676 URL: http://svn.freebsd.org/changeset/ports/305676 Log: - Fix Whom line - Seems I neglected to abide by the community rules Submitted by: flo@ via irc Pointyhat to: tabthorpe Modified: head/net/pchar/Makefile Modified: head/net/pchar/Makefile ============================================================================== --- head/net/pchar/Makefile Wed Oct 10 17:34:51 2012 (r305675) +++ head/net/pchar/Makefile Wed Oct 10 17:44:07 2012 (r305676) @@ -1,4 +1,4 @@ -# Whom: David O'Brien (obrien@NUXI.com) +# Created by: David O'Brien (obrien@NUXI.com) # $FreeBSD$ PORTNAME= pchar From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:49:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2887CD7 for ; Wed, 10 Oct 2012 17:49:39 +0000 (UTC) (envelope-from tabthorpe@goodking.ca) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 92BB98FC14 for ; Wed, 10 Oct 2012 17:49:39 +0000 (UTC) Received: by mail-qc0-f182.google.com with SMTP id l39so782401qcs.13 for ; Wed, 10 Oct 2012 10:49:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=goodking.ca; s=google; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:x-url:x-pgp-key :x-pgp-key-id:x-pgp-key-fingerprint:user-agent; bh=XaLkrTYHLhpbiu9espZBJNKjcnTTdhEZBgVfps/4TRw=; b=QeFnQbZSTnpx2w+lHrRu6AUUpP7uCzWfiY017G62YsBaVGsmS8cACwEdPjiSj4wZrW zIS8RFvvgkxkExWcWFYYjMaYyhIZTH0EtHZq7mK6pWyCbmPS+GXRd4rZpeMGCeB2b3Sa 1JDln5x1aMcvyVWDWArNKH6HvIwkW/NsDL2X8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:x-url:x-pgp-key :x-pgp-key-id:x-pgp-key-fingerprint:user-agent:x-gm-message-state; bh=XaLkrTYHLhpbiu9espZBJNKjcnTTdhEZBgVfps/4TRw=; b=Jn/MXwaDWBbQa7vOVOmcLJIW6nFfpVgK8hDZiAX7dmLgiYtYsqiaFMkNm0YqHfB8sj g2ENxHl9jWZFNeEijeLCkTfSw865CXXpz/qQoXz4OykYHSbeFFADe+Lr3U0Z+50lTfJw ZuCZti1KhmnztMN++jW4Bsc6+X/dsWQx5WRvvQ+nXq90JSXZo0eOliQy/vxELBAy4lxj gYfUNQ7YmlwqFHB2NjVs9Imf9dOm6RPeT6+ayf1N70yWj3lfXRoLTW66/Pi1aTa6IL36 48xdR/eniQaDDONjjQlquqqRd1G+Bv8sfwOXc1uEx4wfb51fg1+czsBny0mOsCXXCkIW CP5A== Received: by 10.224.60.2 with SMTP id n2mr17783661qah.4.1349891378584; Wed, 10 Oct 2012 10:49:38 -0700 (PDT) Received: from goodking.ca ([2001:470:1c:66::2]) by mx.google.com with ESMTPS id g13sm2165819qaj.19.2012.10.10.10.49.36 (version=SSLv3 cipher=OTHER); Wed, 10 Oct 2012 10:49:37 -0700 (PDT) Sender: Thomas Abthorpe Date: Wed, 10 Oct 2012 13:49:34 -0400 From: Thomas Abthorpe To: Renato Botelho Subject: Re: svn commit: r305673 - head/net/pchar Message-ID: <20121010174934.GD28599@goodking.ca> References: <201210101720.q9AHKoTH069156@svn.freebsd.org> <20121010173027.GA24323@rbcouto.ibm.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2Z2K0IlrPCVsbNpk" Content-Disposition: inline In-Reply-To: <20121010173027.GA24323@rbcouto.ibm.com> X-URL: http://www.goodking.org/ X-PGP-Key: http://people.freebsd.org/~tabthorpe/tabthorpe.asc X-PGP-Key-ID: 0xA473C990 X-PGP-Key-Fingerprint: D883 2D7C EB78 944A 69FC 36A6 D937 1097 A473 C990 User-Agent: Mutt/1.5.21 (2010-09-15) X-Gm-Message-State: ALoCoQmo2sFQrj6DtD2sBw0QZmncLRtaunmSiQYsWoRIe/moSesmv3xPvc87KpjKg9E7LAQcSCeO Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:49:40 -0000 --2Z2K0IlrPCVsbNpk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 10, 2012 at 02:30:27PM -0300, Renato Botelho wrote: > On Wed, Oct 10, 2012 at 05:20:50PM +0000, Thomas Abthorpe wrote: > > Author: tabthorpe > > Date: Wed Oct 10 17:20:49 2012 > > New Revision: 305673 > > URL: http://svn.freebsd.org/changeset/ports/305673 > >=20 > > Log: > > - Reassign to the heap at maintainer's request > >=20 > > Modified: > > head/net/pchar/Makefile (contents, props changed) > >=20 > > Modified: head/net/pchar/Makefile > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/net/pchar/Makefile Wed Oct 10 16:56:07 2012 (r305672) > > +++ head/net/pchar/Makefile Wed Oct 10 17:20:49 2012 (r305673) > > @@ -1,10 +1,5 @@ > > -# ex:ts=3D8 > > -# Ports collection makefile for: pchar > > -# Date created: Wed Nov 03, 1999 > > -# Whom: David O'Brien (obrien@NUXI.com) > > -# > > +# Whom: David O'Brien (obrien@NUXI.com) >=20 > Hello Thomas, >=20 > You need to s/Whom/Created by/ here. >=20 > Regards > --=20 > Renato Botelho > > GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc Thanks, fixed it :) --=20 Thomas Abthorpe | FreeBSD Committer tabthorpe@FreeBSD.org | http://people.freebsd.org/~tabthorpe --2Z2K0IlrPCVsbNpk Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQEcBAEBAgAGBQJQdbUuAAoJENk3EJekc8mQDCUH/RrP5zPOD48z+KxOT/xxaP6r j2ihi6gFn84XKOIhrzFr9ETzOaJlY8rCYnQFhXtTCHdzmst/V5WTowcr2ZtB+z7m 5NHdAE1RrthRNz2M107Y4K/dmIkA3aGa2rfzLbX/t67FE4wTR2keqqP/mDC3dsTz z+q2jdnI5AoOAMcfpffIT62LMOaq/ehWlZyybCsX2nnt0bJvdBgMP5QIfWUz+ryz FknD+ZilDhLYpF9PpmLTNlYrgmc4PXFdheKV5XYcwFqbHHJcwjVKpGlDf3nihqmi hlsBuJegmDWIZ7SCyVtxcbsUegJlrXMt/nMOUH3BYlsWDKBnQos47MQ0Uk7bvF8= =RzcL -----END PGP SIGNATURE----- --2Z2K0IlrPCVsbNpk-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 18:20:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75AE1E3C; Wed, 10 Oct 2012 18:20:22 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5F2648FC0A; Wed, 10 Oct 2012 18:20:22 +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 q9AIKMcc077269; Wed, 10 Oct 2012 18:20:22 GMT (envelope-from beat@svn.freebsd.org) Received: (from beat@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AIKM98077265; Wed, 10 Oct 2012 18:20:22 GMT (envelope-from beat@svn.freebsd.org) Message-Id: <201210101820.q9AIKM98077265@svn.freebsd.org> From: Beat Gaetzi Date: Wed, 10 Oct 2012 18:20:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305677 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 18:20:22 -0000 Author: beat Date: Wed Oct 10 18:20:21 2012 New Revision: 305677 URL: http://svn.freebsd.org/changeset/ports/305677 Log: - Only add GH to MASTER_SITES if not already there [1] - Allow WRKSRC to be overridden when using USE_GITHUB [2] PR: ports/171644 [1], ports/171688 [2] Submitted by: bdrewery Reviewed by: gahr Tested by: Exp-run on pointyhat Modified: head/Mk/bsd.port.mk head/Mk/bsd.sites.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 10 17:44:07 2012 (r305676) +++ head/Mk/bsd.port.mk Wed Oct 10 18:20:21 2012 (r305677) @@ -1534,6 +1534,9 @@ check-makefile:: _POSTMKINCLUDED= yes WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work +.if !defined(IGNORE_MASTER_SITE_GITHUB) && defined(USE_GITHUB) +WRKSRC?= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} +.endif .if defined(NO_WRKSUBDIR) WRKSRC?= ${WRKDIR} .else Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Wed Oct 10 17:44:07 2012 (r305676) +++ head/Mk/bsd.sites.mk Wed Oct 10 18:20:21 2012 (r305677) @@ -546,10 +546,11 @@ MASTER_SITE_GET_E+= \ # .if defined(USE_GITHUB) MASTER_SITE_GITHUB+= https://nodeload.github.com/%SUBDIR% +.if !defined(MASTER_SITES) || !${MASTER_SITES:MGH} MASTER_SITES+= GH +.endif GH_PROJECT?= ${PORTNAME} GH_TAGNAME?= ${DISTVERSION} -WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} .endif .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 18:45:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB34D7DB; Wed, 10 Oct 2012 18:45:26 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9BECF8FC12; Wed, 10 Oct 2012 18:45:26 +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 q9AIjQAU080638; Wed, 10 Oct 2012 18:45:26 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AIjQV2080636; Wed, 10 Oct 2012 18:45:26 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201210101845.q9AIjQV2080636@svn.freebsd.org> From: Greg Larkin Date: Wed, 10 Oct 2012 18:45:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305678 - head/mail/ezmlm-idx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 18:45:26 -0000 Author: glarkin Date: Wed Oct 10 18:45:26 2012 New Revision: 305678 URL: http://svn.freebsd.org/changeset/ports/305678 Log: - Converted to OptionsNG Modified: head/mail/ezmlm-idx/Makefile Modified: head/mail/ezmlm-idx/Makefile ============================================================================== --- head/mail/ezmlm-idx/Makefile Wed Oct 10 18:20:21 2012 (r305677) +++ head/mail/ezmlm-idx/Makefile Wed Oct 10 18:45:26 2012 (r305678) @@ -25,28 +25,35 @@ CONFLICTS= ezmlm-0.* SUB_FILES= pkg-message -OPTIONS= MYSQL "Build MySQL extensions" off \ - PGSQL "Build PostgreSQL extensions" off \ - SQLITE "Build SQLite3 extensions" off +OPTIONS_DEFINE= DB DOCS +OPTIONS_SINGLE= DB +OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE +DB_DESC= Enable database extension support +MYSQL_DESC= Build the MySQL extension +PGSQL_DESC= Build the PostgreSQL extension +SQLITE_DESC= Build the SQLite3 extension -.include +.include ALL_TARGET= it -# If WITH_MYSQL is defined, build with MySQL extensions -.if defined(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes EXTRACT_INCLUDE+= -I${LOCALBASE}/include/mysql EXTRACT_LIB+= -L${LOCALBASE}/lib/mysql -lmysqlclient -lm ALL_TARGET+= mysql PLIST_SUB+= MYSQL="" PGSQL="@comment " SQLITE="@comment " -.elif defined(WITH_PGSQL) +.endif + +.if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes EXTRACT_INCLUDE+= -I${LOCALBASE}/include EXTRACT_LIB+= -L${LOCALBASE}/lib -lpq -lcrypt ALL_TARGET+= pgsql PLIST_SUB+= MYSQL="@comment " PGSQL="" SQLITE="@comment " -.elif defined(WITH_SQLITE) +.endif + +.if ${PORT_OPTIONS:MSQLITE} USE_SQLITE= yes EXTRACT_INCLUDE+= -I${LOCALBASE}/include EXTRACT_LIB+= -L${LOCALBASE}/lib -lsqlite3 @@ -100,10 +107,10 @@ post-install: .for file in ${CONFIG} @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/etc/ezmlm/${file}.sample .endfor -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} .endif @${CAT} ${PKGMESSAGE} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 19:07:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1D85021F; Wed, 10 Oct 2012 19:07:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E05EA8FC08; Wed, 10 Oct 2012 19:07:17 +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 q9AJ7HEQ083607; Wed, 10 Oct 2012 19:07:17 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AJ7Hxp083603; Wed, 10 Oct 2012 19:07:17 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101907.q9AJ7Hxp083603@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 19:07:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305679 - head/portuguese/hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 19:07:18 -0000 Author: sunpoet Date: Wed Oct 10 19:07:17 2012 New Revision: 305679 URL: http://svn.freebsd.org/changeset/ports/305679 Log: - Update to 20121006 (pt_PT) and 2012-06-09 (pt_BR) - Cleanup Makefile header Modified: head/portuguese/hunspell/Makefile (contents, props changed) head/portuguese/hunspell/distinfo (contents, props changed) head/portuguese/hunspell/pkg-descr (contents, props changed) Modified: head/portuguese/hunspell/Makefile ============================================================================== --- head/portuguese/hunspell/Makefile Wed Oct 10 18:45:26 2012 (r305678) +++ head/portuguese/hunspell/Makefile Wed Oct 10 19:07:17 2012 (r305679) @@ -1,17 +1,13 @@ -# New ports collection makefile for: hunspell -# Date created: 2011-07-20 -# Whom: Baptiste Daroussin -# +# Created by: Baptiste Daroussin # $FreeBSD$ -# PORTNAME= hunspell -PORTVERSION= 20120711 +PORTVERSION= 20121006 CATEGORIES= portuguese textproc MASTER_SITES= http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/ \ http://www.broffice.org/files/:BR DISTFILES= hunspell-pt_PT-${PORTVERSION}.tar.gz \ - pt_BR-2011-05-27AOC.zip:BR + pt_BR-2012-06-09AOC.zip:BR DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org Modified: head/portuguese/hunspell/distinfo ============================================================================== --- head/portuguese/hunspell/distinfo Wed Oct 10 18:45:26 2012 (r305678) +++ head/portuguese/hunspell/distinfo Wed Oct 10 19:07:17 2012 (r305679) @@ -1,4 +1,4 @@ -SHA256 (hunspell/hunspell-pt_PT-20120711.tar.gz) = 25d8150234968c9bf8361816fb9ddf6e9d6fd6bad6e3e1cc93d06454dfff6b57 -SIZE (hunspell/hunspell-pt_PT-20120711.tar.gz) = 254139 -SHA256 (hunspell/pt_BR-2011-05-27AOC.zip) = 84bf782ac0d65dc6f8a3822913b96e698d3e2e9fb72ffbd48661488844363f91 -SIZE (hunspell/pt_BR-2011-05-27AOC.zip) = 1348076 +SHA256 (hunspell/hunspell-pt_PT-20121006.tar.gz) = 87c3e9557120cc32cf545d1f822b1bf6a3ea6a7e7eebc55a36f052d88196c8d6 +SIZE (hunspell/hunspell-pt_PT-20121006.tar.gz) = 254327 +SHA256 (hunspell/pt_BR-2012-06-09AOC.zip) = 883d616f2f302a34802e8a60e17c2d6d292c9d125022c0f79ab4a60870c73f4f +SIZE (hunspell/pt_BR-2012-06-09AOC.zip) = 1362087 Modified: head/portuguese/hunspell/pkg-descr ============================================================================== --- head/portuguese/hunspell/pkg-descr Wed Oct 10 18:45:26 2012 (r305678) +++ head/portuguese/hunspell/pkg-descr Wed Oct 10 19:07:17 2012 (r305679) @@ -1,4 +1,4 @@ Portuguese hunspell dictionaries -WWW: http://www.broffice.org/verortografico/baixar -WWW: http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:hunspell +WWW: http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:hunspell +WWW: http://www.broffice.org/verortografico/baixar From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 19:10:01 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB6365F4; Wed, 10 Oct 2012 19:10:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A49EC8FC08; Wed, 10 Oct 2012 19:10: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 q9AJA1LP084107; Wed, 10 Oct 2012 19:10:01 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AJA1gK084104; Wed, 10 Oct 2012 19:10:01 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101910.q9AJA1gK084104@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 19:10:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305680 - head/textproc/es-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 19:10:01 -0000 Author: sunpoet Date: Wed Oct 10 19:10:01 2012 New Revision: 305680 URL: http://svn.freebsd.org/changeset/ports/305680 Log: - Update to 20121002 - Cleanup Makefile header Modified: head/textproc/es-mythes/Makefile head/textproc/es-mythes/distinfo (contents, props changed) Modified: head/textproc/es-mythes/Makefile ============================================================================== --- head/textproc/es-mythes/Makefile Wed Oct 10 19:07:17 2012 (r305679) +++ head/textproc/es-mythes/Makefile Wed Oct 10 19:10:01 2012 (r305680) @@ -1,12 +1,8 @@ -# New ports collection makefile for: es-mythes -# Date created: 2011-07-21 -# Whom: Baptiste Daroussin -# +# Created by: Baptiste Daroussin # $FreeBSD$ -# PORTNAME= mythes -PORTVERSION= 20120902 +PORTVERSION= 20121002 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= es- Modified: head/textproc/es-mythes/distinfo ============================================================================== --- head/textproc/es-mythes/distinfo Wed Oct 10 19:07:17 2012 (r305679) +++ head/textproc/es-mythes/distinfo Wed Oct 10 19:10:01 2012 (r305680) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo2-thes_es_ES-20120902.tar.bz2) = 96b1835edfcfe64207fd3e74005888ae8bcb02139f075e8f8805bcdc25854577 -SIZE (mythes/OOo2-thes_es_ES-20120902.tar.bz2) = 829753 +SHA256 (mythes/OOo2-thes_es_ES-20121002.tar.bz2) = a8e8a447e777992908ab04e80213521d4bf9ff48acc99766405b7a432e43f005 +SIZE (mythes/OOo2-thes_es_ES-20121002.tar.bz2) = 829654 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 19:55:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B58F9DCC; Wed, 10 Oct 2012 19:55:27 +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 947698FC17; Wed, 10 Oct 2012 19:55:27 +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 q9AJtRuQ090313; Wed, 10 Oct 2012 19:55:27 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AJtRdg090311; Wed, 10 Oct 2012 19:55:27 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210101955.q9AJtRdg090311@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 10 Oct 2012 19:55:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305682 - head/java/openjdk6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 19:55:27 -0000 Author: jkim Date: Wed Oct 10 19:55:27 2012 New Revision: 305682 URL: http://svn.freebsd.org/changeset/ports/305682 Log: - Explicitly set registervm as build dependency. When BOOTSTRAPJDKDIR is manually set, this dependency may not be fulfilled. - Consistently use WRKSRC over WRKDIR where it makes sense. Although they are actually the same directory, there is no reason to confuse users. Feature safe: yes Modified: head/java/openjdk6/Makefile Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Wed Oct 10 19:42:18 2012 (r305681) +++ head/java/openjdk6/Makefile Wed Oct 10 19:55:27 2012 (r305682) @@ -32,6 +32,7 @@ LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/bin/zip:${PORTSDIR}/archivers/zip \ ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip \ + ${LOCALBASE}/bin/registervm:${PORTSDIR}/java/javavmwrapper \ ${LOCALBASE}/include/cups/cups.h:${PORTSDIR}/print/cups-client LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ @@ -226,31 +227,31 @@ COPYFILES= \ post-extract: @for d in ${COPYDIRS}; do \ - ${MKDIR} `echo ${WRKDIR}/$$d | ${SED} 's/linux/bsd/g;'`; \ - cd ${WRKDIR}/$$d; \ + ${MKDIR} `echo ${WRKSRC}/$$d | ${SED} 's/linux/bsd/g;'`; \ + cd ${WRKSRC}/$$d; \ for f in *; do \ if [ -f $$f ]; then \ - t=`echo ${WRKDIR}/$$d/$$f | ${SED} 's/linux/bsd/g; s/Linux/Bsd/g'`; \ + t=`echo ${WRKSRC}/$$d/$$f | ${SED} 's/linux/bsd/g; s/Linux/Bsd/g'`; \ ${SED} 's/linux/bsd/g; s/Linux/Bsd/g; s/LINUX/BSD/g' < $$f > $$t; \ fi; \ done; \ done @for f in ${COPYFILES}; do \ t=`echo $$f | ${SED} 's/linux/bsd/g; s/Linux/Bsd/g'`; \ - ${SED} 's/linux/bsd/g; s/Linux/Bsd/g' < ${WRKDIR}/$$f > ${WRKDIR}/$$t; \ + ${SED} 's/linux/bsd/g; s/Linux/Bsd/g' < ${WRKSRC}/$$f > ${WRKSRC}/$$t; \ done @${SED} 's/solaris/bsd/g; s/Solaris/Bsd/g' \ - < ${WRKDIR}/jdk/src/solaris/hpi/native_threads/src/threads_solaris.c \ - > ${WRKDIR}/jdk/src/solaris/hpi/native_threads/src/threads_bsd.c + < ${WRKSRC}/jdk/src/solaris/hpi/native_threads/src/threads_solaris.c \ + > ${WRKSRC}/jdk/src/solaris/hpi/native_threads/src/threads_bsd.c @${SED} "s|/usr/local|${LOCALBASE}|" < ${FILESDIR}/fontconfig.properties \ - > ${WRKDIR}/jdk/src/solaris/classes/sun/awt/fontconfigs/bsd.fontconfig.properties + > ${WRKSRC}/jdk/src/solaris/classes/sun/awt/fontconfigs/bsd.fontconfig.properties @${SED} "s|%%LOCALBASE%%|${LOCALBASE}|" < ${FILESDIR}/Makefile.test \ - > ${WRKDIR}/jdk/test/Makefile - @${FIND} ${WRKDIR}/jdk/test -type f -name \*.sh -exec ${SED} -i "" -e s/Linux/FreeBSD/g {} \; + > ${WRKSRC}/jdk/test/Makefile + @${FIND} ${WRKSRC}/jdk/test -type f -name \*.sh -exec ${SED} -i "" -e s/Linux/FreeBSD/g {} \; post-patch: @${REINPLACE_CMD} "s|/lib:/usr/lib|/lib:/usr/lib:${LOCALBASE}/lib|" \ - ${WRKDIR}/hotspot/src/os/bsd/vm/os_bsd.cpp + ${WRKSRC}/hotspot/src/os/bsd/vm/os_bsd.cpp .if ${PORT_OPTIONS:MPOLICY} @${REINPLACE_CMD} 's|build-policy install-limited|build-policy install-unlimited|' \ ${WRKSRC}/jdk/make/javax/crypto/Makefile From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:58:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7586F3A; Tue, 9 Oct 2012 13:58:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE148FC17; Tue, 9 Oct 2012 13:58:53 +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 q99Dwr6u016443; Tue, 9 Oct 2012 13:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DwrNv016440; Tue, 9 Oct 2012 13:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091358.q99DwrNv016440@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:58:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305581 - head/german/mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 Author: sunpoet Date: Tue Oct 9 13:58:53 2012 New Revision: 305581 URL: http://svn.freebsd.org/changeset/ports/305581 Log: - Update to 2012.09.07 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Tue Oct 9 13:53:17 2012 (r305580) +++ head/german/mythes/Makefile Tue Oct 9 13:58:53 2012 (r305581) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Tue Oct 9 13:53:17 2012 (r305580) +++ head/german/mythes/distinfo Tue Oct 9 13:58:53 2012 (r305581) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20120930.oxt) = ea46b6f997d692c42bad38cffb4561b9fd917255bbeb7246e122f1b6075f2a4f -SIZE (mythes/Deutscher-Thesaurus-20120930.oxt) = 4110312 +SHA256 (mythes/Deutscher-Thesaurus-20120907.oxt) = d62a7b9f4257916c20bee702e016b59e565a8793fec39af48a2a01d8ffd2a2ea +SIZE (mythes/Deutscher-Thesaurus-20120907.oxt) = 3953926 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0237D79; Tue, 9 Oct 2012 13:59:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE6F98FC0C; Tue, 9 Oct 2012 13:59:03 +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 q99Dx3Qv016601; Tue, 9 Oct 2012 13:59:03 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Dx3Gq016597; Tue, 9 Oct 2012 13:59:03 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99Dx3Gq016597@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305583 - head/textproc/nl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 Author: sunpoet Date: Tue Oct 9 13:59:03 2012 New Revision: 305583 URL: http://svn.freebsd.org/changeset/ports/305583 Log: - Update to 2012.09.07 Modified: head/textproc/nl-mythes/Makefile head/textproc/nl-mythes/distinfo Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Tue Oct 9 13:58:58 2012 (r305582) +++ head/textproc/nl-mythes/Makefile Tue Oct 9 13:59:03 2012 (r305583) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= nl- Modified: head/textproc/nl-mythes/distinfo ============================================================================== --- head/textproc/nl-mythes/distinfo Tue Oct 9 13:58:58 2012 (r305582) +++ head/textproc/nl-mythes/distinfo Tue Oct 9 13:59:03 2012 (r305583) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_nl-20120930.oxt) = 168d05c538d4f960d875af74b2d61ec680860b4731134843a0ea99daf1340dd9 -SIZE (mythes/thes_nl-20120930.oxt) = 1956025 +SHA256 (mythes/thes_nl-20120907.oxt) = dd8b5074581afe76e1ef50fa9187ec47ba3f15d647910d58b3837e49092949ae +SIZE (mythes/thes_nl-20120907.oxt) = 1956026 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AB6514A; Tue, 9 Oct 2012 13:59:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 136BD8FC19; Tue, 9 Oct 2012 13:59:09 +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 q99Dx8Pb016676; Tue, 9 Oct 2012 13:59:08 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Dx8Ml016673; Tue, 9 Oct 2012 13:59:08 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99Dx8Ml016673@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305584 - head/textproc/sk-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 Author: sunpoet Date: Tue Oct 9 13:59:08 2012 New Revision: 305584 URL: http://svn.freebsd.org/changeset/ports/305584 Log: - Update to 2012.09.07 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Tue Oct 9 13:59:03 2012 (r305583) +++ head/textproc/sk-mythes/Makefile Tue Oct 9 13:59:08 2012 (r305584) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Tue Oct 9 13:59:03 2012 (r305583) +++ head/textproc/sk-mythes/distinfo Tue Oct 9 13:59:08 2012 (r305584) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120930.zip) = 43cf135810074f4066f9d474370194a9026ac5e72011036e3237796b1c1209cb -SIZE (mythes/OOo-Thesaurus2-sk_SK-20120930.zip) = 331753 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = e5c5db882aa31eee0b81e36c432e089ef1529cc29707c911781a668e66a42f1d +SIZE (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = 331575 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C6F621D; Tue, 9 Oct 2012 13:59:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4457B8FC0A; Tue, 9 Oct 2012 13:59: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 q99DxEe6016754; Tue, 9 Oct 2012 13:59:14 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DxEbY016751; Tue, 9 Oct 2012 13:59:14 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99DxEbY016751@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305585 - head/textproc/sl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 Author: sunpoet Date: Tue Oct 9 13:59:13 2012 New Revision: 305585 URL: http://svn.freebsd.org/changeset/ports/305585 Log: - Update to 2012.10.08 Modified: head/textproc/sl-mythes/Makefile head/textproc/sl-mythes/distinfo Modified: head/textproc/sl-mythes/Makefile ============================================================================== --- head/textproc/sl-mythes/Makefile Tue Oct 9 13:59:08 2012 (r305584) +++ head/textproc/sl-mythes/Makefile Tue Oct 9 13:59:13 2012 (r305585) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.10.01 +PORTVERSION= 2012.10.08 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sl- Modified: head/textproc/sl-mythes/distinfo ============================================================================== --- head/textproc/sl-mythes/distinfo Tue Oct 9 13:59:08 2012 (r305584) +++ head/textproc/sl-mythes/distinfo Tue Oct 9 13:59:13 2012 (r305585) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_sl_SI_v2-20121001.zip) = 63b26b8e88cd876d8819539bf8eefa1ce986ce64a63410fbfa1d029388f5da5b -SIZE (mythes/thes_sl_SI_v2-20121001.zip) = 327988 +SHA256 (mythes/thes_sl_SI_v2-20121008.zip) = f8891f289ed3853d9fd33364f14f17b8e4ec41b4339913ff817aaf3cf2c877ef +SIZE (mythes/thes_sl_SI_v2-20121008.zip) = 327996 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 789C5406; Tue, 9 Oct 2012 13:59:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5FF738FC19; Tue, 9 Oct 2012 13:59: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 q99DxgH1016870; Tue, 9 Oct 2012 13:59:42 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DxgcD016868; Tue, 9 Oct 2012 13:59:42 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99DxgcD016868@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305586 - head/databases/kyotocabinet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 Author: sunpoet Date: Tue Oct 9 13:59:41 2012 New Revision: 305586 URL: http://svn.freebsd.org/changeset/ports/305586 Log: - Convert to new options framework - Cleanup Makefile header Modified: head/databases/kyotocabinet/Makefile (contents, props changed) Modified: head/databases/kyotocabinet/Makefile ============================================================================== --- head/databases/kyotocabinet/Makefile Tue Oct 9 13:59:13 2012 (r305585) +++ head/databases/kyotocabinet/Makefile Tue Oct 9 13:59:41 2012 (r305586) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kyotocabinet -# Date created: 22 April 2010 -# Whom: Akinori MUSHA aka knu -# +# Created by: Akinori MUSHA aka knu # $FreeBSD$ -# PORTNAME= kyotocabinet PORTVERSION= 1.2.76 @@ -16,6 +12,8 @@ COMMENT= A straightforward implementatio LICENSE= GPLv3 +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes MAKE_ARGS= PCDIR="${PREFIX}/libdata/pkgconfig" MAKE_JOBS_SAFE= yes @@ -56,12 +54,12 @@ BROKEN= Does not link on powerpc .endif post-patch: -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${FIND} ${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; ${FIND} ${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:00:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1758E4FC; Tue, 9 Oct 2012 14:00:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F39668FC1C; Tue, 9 Oct 2012 14:00: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 q99E0YU1017071; Tue, 9 Oct 2012 14:00:34 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99E0Y2l017068; Tue, 9 Oct 2012 14:00:34 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091400.q99E0Y2l017068@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:00:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305587 - head/databases/kyototycoon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 Author: sunpoet Date: Tue Oct 9 14:00:34 2012 New Revision: 305587 URL: http://svn.freebsd.org/changeset/ports/305587 Log: - Add LICENSE - Convert to new options framework - Cleanup Makefile header Modified: head/databases/kyototycoon/Makefile (contents, props changed) Modified: head/databases/kyototycoon/Makefile ============================================================================== --- head/databases/kyototycoon/Makefile Tue Oct 9 13:59:41 2012 (r305586) +++ head/databases/kyototycoon/Makefile Tue Oct 9 14:00:34 2012 (r305587) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kyototycoon -# Date created: 2011-10-04 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= kyototycoon PORTVERSION= 0.9.56 @@ -14,8 +10,12 @@ MASTER_SITES= http://fallabs.com/${PORTN MAINTAINER= sunpoet@FreeBSD.org COMMENT= A handy cache/storage server +LICENSE= GPLv3 + LIB_DEPENDS= kyotocabinet:${PORTSDIR}/databases/kyotocabinet +OPTIONS_DEFINE= DOCS + CONFIGURE_ARGS= --enable-profile --enable-uyield GNU_CONFIGURE= yes MAKE_ARGS= PCDIR="${PREFIX}/libdata/pkgconfig" @@ -32,8 +32,10 @@ MAN1= ktremotemgr.1 \ ktutilserv.1 \ ktutiltest.1 +.include + post-patch: -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif @@ -41,7 +43,7 @@ post-configure: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' ${WRKSRC}/Makefile post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${FIND} ${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; ${FIND} ${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:15:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48F40835; Tue, 9 Oct 2012 14:15:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 16C948FC14; Tue, 9 Oct 2012 14:15: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 q99EFIau019035; Tue, 9 Oct 2012 14:15:18 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EFIeD019032; Tue, 9 Oct 2012 14:15:18 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091415.q99EFIeD019032@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:15:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305588 - head/devel/p5-Class-Load-XS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 Author: sunpoet Date: Tue Oct 9 14:15:18 2012 New Revision: 305588 URL: http://svn.freebsd.org/changeset/ports/305588 Log: - Update to 0.05 - Cleanup Makefile header Changes: http://search.cpan.org/dist/Class-Load-XS/Changes Modified: head/devel/p5-Class-Load-XS/Makefile (contents, props changed) head/devel/p5-Class-Load-XS/distinfo (contents, props changed) Modified: head/devel/p5-Class-Load-XS/Makefile ============================================================================== --- head/devel/p5-Class-Load-XS/Makefile Tue Oct 9 14:00:34 2012 (r305587) +++ head/devel/p5-Class-Load-XS/Makefile Tue Oct 9 14:15:18 2012 (r305588) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Class-Load-XS -# Date created: 2011-11-16 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= Class-Load-XS -PORTVERSION= 0.04 +PORTVERSION= 0.05 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,9 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= XS implementation of parts of Class::Load -BUILD_DEPENDS= p5-Class-Load>=0.15:${PORTSDIR}/devel/p5-Class-Load -RUN_DEPENDS= p5-Class-Load>=0.15:${PORTSDIR}/devel/p5-Class-Load - +BUILD_DEPENDS= p5-Class-Load>=0.20:${PORTSDIR}/devel/p5-Class-Load +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Module-Implementation>=0.04:${PORTSDIR}/devel/p5-Module-Implementation \ p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires \ Modified: head/devel/p5-Class-Load-XS/distinfo ============================================================================== --- head/devel/p5-Class-Load-XS/distinfo Tue Oct 9 14:00:34 2012 (r305587) +++ head/devel/p5-Class-Load-XS/distinfo Tue Oct 9 14:15:18 2012 (r305588) @@ -1,2 +1,2 @@ -SHA256 (Class-Load-XS-0.04.tar.gz) = d4731aee4d5484cd1eef9b2aa46d0370be3f4c9aeb8fd14fc11bbd48201e05e3 -SIZE (Class-Load-XS-0.04.tar.gz) = 55168 +SHA256 (Class-Load-XS-0.05.tar.gz) = 91901b3dbd7feb8f7e646a68201ad41fb0c7b2e60aa114fdedbd9f64f22d157d +SIZE (Class-Load-XS-0.05.tar.gz) = 56007 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:15:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B980D90E; Tue, 9 Oct 2012 14:15:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A195D8FC0A; Tue, 9 Oct 2012 14:15:38 +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 q99EFcLI019144; Tue, 9 Oct 2012 14:15:38 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EFc2J019141; Tue, 9 Oct 2012 14:15:38 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091415.q99EFc2J019141@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:15:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305589 - head/net/rubygem-httpauth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 Author: sunpoet Date: Tue Oct 9 14:15:38 2012 New Revision: 305589 URL: http://svn.freebsd.org/changeset/ports/305589 Log: - Update to 0.2.0 - Cleanup Makefile header Changes: https://github.com/Manfred/HTTPauth/commits/master Modified: head/net/rubygem-httpauth/Makefile (contents, props changed) head/net/rubygem-httpauth/distinfo (contents, props changed) Modified: head/net/rubygem-httpauth/Makefile ============================================================================== --- head/net/rubygem-httpauth/Makefile Tue Oct 9 14:15:18 2012 (r305588) +++ head/net/rubygem-httpauth/Makefile Tue Oct 9 14:15:38 2012 (r305589) @@ -1,12 +1,8 @@ -# New ports collection makefile for: rubygem-httpauth -# Date created: 2012-04-16 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= httpauth -PORTVERSION= 0.1 +PORTVERSION= 0.2.0 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-httpauth/distinfo ============================================================================== --- head/net/rubygem-httpauth/distinfo Tue Oct 9 14:15:18 2012 (r305588) +++ head/net/rubygem-httpauth/distinfo Tue Oct 9 14:15:38 2012 (r305589) @@ -1,2 +1,2 @@ -SHA256 (rubygem/httpauth-0.1.gem) = 18d4b8b9048932303e1c22580c8391dff6a6ec24f92b7b8e6d436b621a85d9f1 -SIZE (rubygem/httpauth-0.1.gem) = 15872 +SHA256 (rubygem/httpauth-0.2.0.gem) = 61693bd3849f348c075861a014c95af777a89581e04cae231641c56fc2a9e21f +SIZE (rubygem/httpauth-0.2.0.gem) = 13824 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:18:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C34F5AB2; Tue, 9 Oct 2012 14:18:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AB9838FC08; Tue, 9 Oct 2012 14:18: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 q99EIOq5019652; Tue, 9 Oct 2012 14:18:24 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EIO6f019650; Tue, 9 Oct 2012 14:18:24 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091418.q99EIO6f019650@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:18:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305590 - head/net-mgmt/ettercap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 Author: sunpoet Date: Tue Oct 9 14:18:24 2012 New Revision: 305590 URL: http://svn.freebsd.org/changeset/ports/305590 Log: - Convert to new options framework - Rename options: GTK -> GTK2, ICONV -> UTF8 - Pet portlint: remove ABI version number from LIB_DEPENDS - Cleanup Makefile header - Cosmetic change Modified: head/net-mgmt/ettercap/Makefile (contents, props changed) Modified: head/net-mgmt/ettercap/Makefile ============================================================================== --- head/net-mgmt/ettercap/Makefile Tue Oct 9 14:15:38 2012 (r305589) +++ head/net-mgmt/ettercap/Makefile Tue Oct 9 14:18:24 2012 (r305590) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ettercap -# Date created: 19 February 2001 -# Whom: George Reid -# +# Created by: George Reid # $FreeBSD$ -# PORTNAME= ettercap PORTVERSION= 0.7.4.1 @@ -18,11 +14,11 @@ COMMENT= A network sniffer/interceptor/i BUILD_DEPENDS= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet -OPTIONS= GTK "Build with GTK2+ GUI" on \ - ICONV "Build with support for UTF-8" on \ - PCRE "Build with PCRE regexps in filters" on \ - PLUGINS "Build with ettercap plugins" on \ - SSL "Build with support for SSH1 and SSL decryption" on +# GTK -> GTK2, ICONV -> UTF8 +OPTIONS_DEFINE= DOCS GTK2 PCRE PLUGINS SSL UTF8 +OPTIONS_DEFAULT=GTK2 PCRE PLUGINS SSL UTF8 +PCRE_DESC= Use PCRE in filters +SSL_DESC= SSH1 and SSL decryption support CFLAGS+= ${PTHREAD_CFLAGS} CONFIGURE_ENV= LIBS="${LDFLAGS}" @@ -36,49 +32,49 @@ USE_BISON= build WANT_GNOME= yes WRKSRC= ${WRKDIR}/${PORTNAME} -MAN5= etter.conf.5 -MAN8= ettercap.8 ettercap_curses.8 etterfilter.8 etterlog.8 DOCS= AUTHORS CHANGELOG README README.BINARIES README.BUGS \ README.GIT README.PLATFORMS THANKS TODO TODO.TESTING \ doc/capture doc/decoders doc/dissectors doc/threads +MAN5= etter.conf.5 +MAN8= ettercap.8 ettercap_curses.8 etterfilter.8 etterlog.8 LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config .include -.if !defined(WITHOUT_GTK) -USE_GNOME= atk glib20 gtk20 pango +.if ${PORT_OPTIONS:MGTK2} PKGNAMESUFFIX+= -gtk2 CONFIGURE_ARGS+=--enable-gtk +USE_GNOME= atk glib20 gtk20 pango .else CONFIGURE_ARGS+=--disable-gtk .endif -.if !defined(WITHOUT_ICONV) -USE_ICONV= yes +.if ${PORT_OPTIONS:MUTF8} CONFIGURE_ARGS+=--with-iconv=${LOCALBASE} +USE_ICONV= yes .endif -.if !defined(WITHOUT_PCRE) -LIB_DEPENDS+= pcre.1:${PORTSDIR}/devel/pcre +.if ${PORT_OPTIONS:MPCRE} +LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre CONFIGURE_ARGS+=--with-libpcre=${LOCALBASE} .else CONFIGURE_ARGS+=--without-libpcre .endif -.if !defined(WITHOUT_PLUGINS) -MAN8+= ettercap_plugins.8 -DOCS+= doc/plugins +.if ${PORT_OPTIONS:MPLUGINS} CONFIGURE_ARGS+=--enable-plugins +DOCS+= doc/plugins +MAN8+= ettercap_plugins.8 PLIST_SUB+= PLUGINS="" .else CONFIGURE_ARGS+=--disable-plugins PLIST_SUB+= PLUGINS="@comment " .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes +.if ${PORT_OPTIONS:MSSL} CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} +USE_OPENSSL= yes .else CONFIGURE_ARGS+=--without-openssl .endif @@ -109,7 +105,7 @@ post-install: .if !exists(${PREFIX}/etc/etter.conf) ${INSTALL_DATA} ${WRKSRC}/share/etter.conf ${PREFIX}/etc/etter.conf .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/ .endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:04:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8F7FB8B for ; Tue, 9 Oct 2012 15:04:28 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 8AC948FC17 for ; Tue, 9 Oct 2012 15:04:28 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so5815812pad.13 for ; Tue, 09 Oct 2012 08:04:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=mdW1Jd/EW2Qrr1h9szs2i0TforFvJvlYjmwrJZ2lbbo=; b=NkHaCM1LZJ4ImMvxLiWezbC0bqgjFRAPcSTufreoPL7hJFoUKI1io4iLI0YbPJU/SK wcvjlK6dw90jriv04ovyvqU/09IKd/NB8WOEP3sWatpPcPShdef5E3TjROcaBwX2Im1s eoaP4Z+guqtEZG8blDfLDt+5fJ9Z2JTy2J42I= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=mdW1Jd/EW2Qrr1h9szs2i0TforFvJvlYjmwrJZ2lbbo=; b=GwN/nEocCvYCqB1zHHC2DX/T8Q9xLO0h8ubVnH2Nlh9o23rCSDiWEOAWmdpJOIBdMz a+zpZ0G5D2UQulQLEVzvHFRv5Zl10VucffVAeCdLDPzmLbbD8wvHBdkTWTHpJCSEOk2A ESz+wPL1W4y1W/jzSB89+TvpP0VJODzEOI9yWvRJMKZqgXRkD3EbFi3CYDpwYVCoJpSB 5pZEKD5jGPLAext33OyLEVnGVHuKdMAI5CydWP8qw0Qq1Eo6FuRIJMxf3hHZLTHsCtvG AoMglVqwuUhRZoTrutP62IjhA+iXLXHTBeZKu8jwoG/DIOda/B0RxInIiLmrmzKbCXZp VZ6A== Received: by 10.66.75.168 with SMTP id d8mr53474380paw.63.1349795067746; Tue, 09 Oct 2012 08:04:27 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.161.163 with HTTP; Tue, 9 Oct 2012 08:03:57 -0700 (PDT) In-Reply-To: <201210082045.q98KjqgO068427@svn.freebsd.org> References: <201210082045.q98KjqgO068427@svn.freebsd.org> From: Eitan Adler Date: Tue, 9 Oct 2012 11:03:57 -0400 X-Google-Sender-Auth: UsBG3OrRCvAJFydOXARKtBYmxOc Message-ID: Subject: Re: svn commit: r305556 - head/security/vuxml To: Rene Ladan Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQlUsbjKwL4jLuV/TQOo1Clu6I5+du3TpD8aOySL9PIAHZGlRuz+WjrXQmUmHTQblhJKVjK1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 On 8 October 2012 16:45, Rene Ladan wrote: > Author: rene > Date: Mon Oct 8 20:45:52 2012 > New Revision: 305556 > URL: http://svn.freebsd.org/changeset/ports/305556 > > Log: > Document new vulnerabilities in www/chromium < 22.0.1229.92 You do a really good job at documenting the chrome vulns. Thanks! -- Eitan Adler Source & Ports committer X11, Bugbusting teams From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:26:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E223C1AB; Tue, 9 Oct 2012 15:26:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B15F38FC1B; Tue, 9 Oct 2012 15:26: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 q99FQwEY028850; Tue, 9 Oct 2012 15:26:58 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99FQwks028847; Tue, 9 Oct 2012 15:26:58 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201210091526.q99FQwks028847@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 9 Oct 2012 15:26:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305591 - head/astro/josm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 Author: amdmi3 Date: Tue Oct 9 15:26:58 2012 New Revision: 305591 URL: http://svn.freebsd.org/changeset/ports/305591 Log: - Update to 5531 Modified: head/astro/josm/Makefile head/astro/josm/distinfo Modified: head/astro/josm/Makefile ============================================================================== --- head/astro/josm/Makefile Tue Oct 9 14:18:24 2012 (r305590) +++ head/astro/josm/Makefile Tue Oct 9 15:26:58 2012 (r305591) @@ -6,7 +6,7 @@ # PORTNAME= josm -PORTVERSION= 5485 +PORTVERSION= 5531 CATEGORIES= astro java MASTER_SITES= http://josm.openstreetmap.de/download/:josm \ http://mirror.amdmi3.ru/distfiles/:josm \ @@ -25,6 +25,8 @@ JAVA_VERSION= 1.5+ JOSM_MEMORY_LIMIT?=1024 +NO_BUILD= yes + SUB_FILES= josm.sh SUB_LIST= JARNAME=${DISTNAME} JOSM_MEMORY_LIMIT=${JOSM_MEMORY_LIMIT} @@ -33,31 +35,10 @@ WEBKITIMG_SRC= ${WEBKITIMG}.cpp PLIST_FILES= bin/josm ${JAVAJARDIR:C,${PREFIX}/?,,}/${DISTNAME} -OPTIONS= WEBKIT_IMAGE "Build webkit-image (needed for Yahoo imagery)" off - -.include - pre-everything:: @${ECHO_CMD} "You can change limit of memory available to josm by defining" @${ECHO_CMD} "JOSM_MEMORY_LIMIT variable in /etc/make.conf. Default is 1024 (MB)." -.if defined(WITH_WEBKIT_IMAGE) -PLIST_FILES+= bin/webkit-image - -USE_QT4= corelib gui webkit moc_build - -do-build: - cd ${WRKSRC} && \ - ${MOC} ${DISTDIR}/${WEBKITIMG_SRC} > ${WEBKITIMG}.h && \ - ${CXX} ${CFLAGS} ${PTHREAD_LIBS} -I. -I${QT_INCDIR} -L${QT_LIBDIR} \ - ${DISTDIR}/${WEBKITIMG_SRC} -o ${WEBKITIMG} -lQtCore -lQtWebKit \ - -lQtGui -.else -# setting NO_BUILD here won't work -do-build: - @${DO_NADA} -.endif - do-install: ${MKDIR} ${JAVAJARDIR}/ ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${JAVAJARDIR}/ Modified: head/astro/josm/distinfo ============================================================================== --- head/astro/josm/distinfo Tue Oct 9 14:18:24 2012 (r305590) +++ head/astro/josm/distinfo Tue Oct 9 15:26:58 2012 (r305591) @@ -1,4 +1,4 @@ -SHA256 (josm-snapshot-5485.jar) = c392040d84539e68add3ecf60fb886cfb6fa5f36c125329ec5f55c92397d4bc2 -SIZE (josm-snapshot-5485.jar) = 7530751 +SHA256 (josm-snapshot-5531.jar) = 7e10272416903a0cc70249769f876e19a68bce346c69d587a9cf512c6fa67035 +SIZE (josm-snapshot-5531.jar) = 7578075 SHA256 (webkit-image.cpp) = 431f5b956c0e3d1615289dd6cb64effb988b30ace7c80f5a51f9546aa80d300d SIZE (webkit-image.cpp) = 2718 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:55:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1BEBA45; Tue, 9 Oct 2012 15:55:15 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 89EEF8FC08; Tue, 9 Oct 2012 15:55:15 +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 q99FtFHa032498; Tue, 9 Oct 2012 15:55:15 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99FtFfk032496; Tue, 9 Oct 2012 15:55:15 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210091555.q99FtFfk032496@svn.freebsd.org> From: Alex Dupre Date: Tue, 9 Oct 2012 15:55:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305592 - head/Tools/scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 Author: ale Date: Tue Oct 9 15:55:15 2012 New Revision: 305592 URL: http://svn.freebsd.org/changeset/ports/305592 Log: Clean-up command-line options. Approved by: crees Modified: head/Tools/scripts/addport Modified: head/Tools/scripts/addport ============================================================================== --- head/Tools/scripts/addport Tue Oct 9 15:26:58 2012 (r305591) +++ head/Tools/scripts/addport Tue Oct 9 15:55:15 2012 (r305592) @@ -58,7 +58,7 @@ sub lastcomment(); my %opts; -getopts('ac:d:fh:il:L:M:mns:tu:y', \%opts); +getopts('ac:d:fh:il:L:mns:tu:y', \%opts); my $autofill_l = $opts{'l'}; my $autofill_L = $opts{'L'}; @@ -71,7 +71,6 @@ $h = $opts{'h'} if ($opts{'h'} ne ""); my $u = $ENV{USER}; $u = $opts{'u'} if ($opts{'u'} ne ""); my $more_testing = $opts{'t'}; -my $moduleshost = $opts{'M'}; my $interactive = $opts{'i'}; my $nomkdir = $opts{'m'}; my $addlchk = $opts{'a'}; @@ -111,9 +110,6 @@ my $tmp2; my $offset; my $commitfile = " my $moved = ""; $tmp = $tmp2 = $offset = 0; -chomp(my $myhost = lc(hostname())); -$moduleshost = $myhost if ($moduleshost eq ""); - # Check the editor. my $edit = "/usr/bin/vi"; $edit = $ENV{EDITOR} if ($ENV{EDITOR} ne ""); @@ -504,8 +500,8 @@ print <, SYNOPSIS - $0 [-c commitfile] [-h host] [-l PR number] [-s distdir] [-u user] - [-abfimnt] -d directory + $0 [-c commitfile] [-h host] [-l PR number | -L PR number] + [-s distdir] [-u user] [-afimnty] -d directory Where "directory" contains the comma-delimited list of root directories of new ports that you wish to From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:59:46 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 5D4D1CCF; Tue, 9 Oct 2012 15:59:46 +0000 (UTC) Date: Tue, 9 Oct 2012 15:59:46 +0000 From: Alexey Dokuchaev To: Baptiste Daroussin Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121009155946.GA70759@FreeBSD.org> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20121008061249.GA47691@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, Doug Barton , ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > > That's because OptionsNG poorly implement mutually exclusive options. I > > hope that eventually dialog's --radiolist would be utilized for proper > > handling, and sane knobs names would be restored. > > > > Sounds like a nice port junior hacker project. > > Not hat junior dialog(1) can't mix radiolist and classic checklist that is > why it doesn't use it, using libdialog(3), it would be easiy to implement, > but that won't be usable for a while (until all supported version of > freebsd has it. Ah, OK, that explains it (lack of radiobuttons now). Is it known what's preventing all supported versions to have working libdialog(3), if we have working dialog(1) already? ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:07:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D173D27B; Tue, 9 Oct 2012 16:07:33 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9F6028FC0A; Tue, 9 Oct 2012 16:07:33 +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 q99G7XmR034163; Tue, 9 Oct 2012 16:07:33 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99G7XWU034160; Tue, 9 Oct 2012 16:07:33 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210091607.q99G7XWU034160@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 9 Oct 2012 16:07:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305593 - head/ports-mgmt/poudriere-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 Author: bapt Date: Tue Oct 9 16:07:33 2012 New Revision: 305593 URL: http://svn.freebsd.org/changeset/ports/305593 Log: - update to checkin 06e052c2c9 - changes: * Add explicit check-config phase to detect invalid OPTIONS * Fix finding run-depends packages as leftovers * Search for eligible ports trees on all ZFS pools * Fix '[: die: bad number' error in testport * bulk: If given -C, clean any previous packages only for the ports provided * Switch back to github for ports git as it is the preferred source * Call leftovers phase 'leftovers' instead of 'fscheck' Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Tue Oct 9 15:55:15 2012 (r305592) +++ head/ports-mgmt/poudriere-devel/Makefile Tue Oct 9 16:07:33 2012 (r305593) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 2.1.99.20121004 +PORTVERSION= 2.1.99.20121009 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ PKGNAMESUFFIX= -devel @@ -13,7 +13,7 @@ COMMENT= Port build and test system LICENSE= BSD -FSL_CHKIN= 86c7d4bd7c +FSL_CHKIN= 06e052c2c9 NO_BUILD= yes MANCOMPRESSED= yes Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Tue Oct 9 15:55:15 2012 (r305592) +++ head/ports-mgmt/poudriere-devel/distinfo Tue Oct 9 16:07:33 2012 (r305593) @@ -1,2 +1,2 @@ -SHA256 (poudriere-2.1.99.20121004.tar.gz?uuid=86c7d4bd7c) = bcf732ce9326c8f4787ac11ddcfda3e793a653b8e9eedc99f020d9ee6eae5c7c -SIZE (poudriere-2.1.99.20121004.tar.gz?uuid=86c7d4bd7c) = 33866 +SHA256 (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 2cdec948f233bfc9e2ba142f24127b9cde85827a6d160f63e6c5f1400d3d57ac +SIZE (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 34110 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:10:12 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B744573; Tue, 9 Oct 2012 16:10:12 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 1F7D78FC0A; Tue, 9 Oct 2012 16:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99GACZ8031999; Tue, 9 Oct 2012 16:10:12 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99GABV7031998; Tue, 9 Oct 2012 16:10:11 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Tue, 9 Oct 2012 18:10:09 +0200 From: Baptiste Daroussin To: Alexey Dokuchaev Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121009161009.GF8713@ithaqua.etoilebsd.net> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WlEyl6ow+jlIgNUh" Content-Disposition: inline In-Reply-To: <20121009155946.GA70759@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 --WlEyl6ow+jlIgNUh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > > > That's because OptionsNG poorly implement mutually exclusive options.= I > > > hope that eventually dialog's --radiolist would be utilized for proper > > > handling, and sane knobs names would be restored. > > >=20 > > > Sounds like a nice port junior hacker project. > >=20 > > Not hat junior dialog(1) can't mix radiolist and classic checklist that= is > > why it doesn't use it, using libdialog(3), it would be easiy to impleme= nt, > > but that won't be usable for a while (until all supported version of > > freebsd has it. >=20 > Ah, OK, that explains it (lack of radiobuttons now). Is it known what's > preventing all supported versions to have working libdialog(3), if we have > working dialog(1) already? >=20 > ./danfe new dialog is only on 9.x and 10.x, if will require to code some special dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicated because the API isn't compatible. regards, Bapt --WlEyl6ow+jlIgNUh Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB0TGEACgkQ8kTtMUmk6EyvpwCfbQQST7/3AMVG0+NDF155nqY6 eY8An1L/rj15/L6nAyPYSKuaYscQiEUk =aa9D -----END PGP SIGNATURE----- --WlEyl6ow+jlIgNUh-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:12:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EA296F9; Tue, 9 Oct 2012 16:12:19 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7B07C8FC1A; Tue, 9 Oct 2012 16:12: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 q99GCJQh034851; Tue, 9 Oct 2012 16:12:19 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99GCJlf034848; Tue, 9 Oct 2012 16:12:19 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210091612.q99GCJlf034848@svn.freebsd.org> From: Alex Kozlov Date: Tue, 9 Oct 2012 16:12:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305594 - head/games/xgalaga++ X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 Author: ak Date: Tue Oct 9 16:12:18 2012 New Revision: 305594 URL: http://svn.freebsd.org/changeset/ports/305594 Log: - Remove indefinite article from COMMENT - Convert Makefile headers to new style - Add DESKTOP_ENTRIES - Fix manpage name - Remove redundant comments Submitted by: nemysis (maintainer) Modified: head/games/xgalaga++/Makefile head/games/xgalaga++/distinfo Modified: head/games/xgalaga++/Makefile ============================================================================== --- head/games/xgalaga++/Makefile Tue Oct 9 16:07:33 2012 (r305593) +++ head/games/xgalaga++/Makefile Tue Oct 9 16:12:18 2012 (r305594) @@ -1,18 +1,17 @@ -# New Ports collection makefile for: xgalaga++ -# Date created: 2012-04-20 -# Whom: nemysis@gmx.ch -# # $FreeBSD$ -# PORTNAME= xgalaga++ PORTVERSION= 0.8.3 CATEGORIES= games -MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ -DISTNAME= ${PORTNAME}_${PORTVERSION} +MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ \ + http://packages.nimblex.net/slacky/games/xgalaga++/0.8.2/src/:icons +DISTFILES= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}.png:icons +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= nemysis@gmx.ch -COMMENT= A classic single screen vertical shoot em up +COMMENT= Classic single screen vertical shoot em up LICENSE= GPLv2 @@ -21,14 +20,18 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USE_GMAKE= yes ALL_TARGET= ${PORTNAME} USE_XORG= x11 xpm -MAN6= xgalaga++.6x +MAN6= xgalaga++.6 SUB_FILES= pkg-install -PLIST_FILES= bin/xgalaga++ +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.png PORTDOCS= README +DESKTOP_ENTRIES="XGalaga++" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + .include post-patch: @@ -37,14 +40,14 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MAN6PREFIX}/man/man6 - ${CHOWN} :games ${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${WRKSRC}/${MAN6}x ${MAN6PREFIX}/man/man6/${MAN6} + ${CHGRP} games ${PREFIX}/bin/${PORTNAME} ${CHMOD} g+s ${PREFIX}/bin/${PORTNAME} + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps -# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL Modified: head/games/xgalaga++/distinfo ============================================================================== --- head/games/xgalaga++/distinfo Tue Oct 9 16:07:33 2012 (r305593) +++ head/games/xgalaga++/distinfo Tue Oct 9 16:12:18 2012 (r305594) @@ -1,2 +1,4 @@ -SHA256 (xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2 -SIZE (xgalaga++_0.8.3.tar.gz) = 32466 +SHA256 (xgalaga++/xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2 +SIZE (xgalaga++/xgalaga++_0.8.3.tar.gz) = 32466 +SHA256 (xgalaga++/xgalaga++.png) = cc14035e06fafc78057db52376fe2f809fd8da3f946f7bdccfe4fd5b431c6287 +SIZE (xgalaga++/xgalaga++.png) = 3232 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:18:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3B9DB12; Tue, 9 Oct 2012 17:18:43 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2EB28FC16; Tue, 9 Oct 2012 17:18: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 q99HIhPh043036; Tue, 9 Oct 2012 17:18:43 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99HIhjC043033; Tue, 9 Oct 2012 17:18:43 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210091718.q99HIhjC043033@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 9 Oct 2012 17:18:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305595 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 Author: bapt Date: Tue Oct 9 17:18:43 2012 New Revision: 305595 URL: http://svn.freebsd.org/changeset/ports/305595 Log: - add STAT to bsd.commands.mk - use ${STAT} -f \"%z\" in make makesum to calculate size - speed up USE_PKGCONFIG by using a more efficient syntax [1] and test in the order it is most expected to appear: "yes/build" first, "both" second, "run being the last one. Reported by: dougb [1] Exp-Run by: beat Modified: head/Mk/bsd.commands.mk head/Mk/bsd.port.mk Modified: head/Mk/bsd.commands.mk ============================================================================== --- head/Mk/bsd.commands.mk Tue Oct 9 16:12:18 2012 (r305594) +++ head/Mk/bsd.commands.mk Tue Oct 9 17:18:43 2012 (r305595) @@ -79,6 +79,7 @@ SETENV?= /usr/bin/env SH?= /bin/sh SORT?= /usr/bin/sort STRIP_CMD?= /usr/bin/strip +STAT?= /usr/bin/stat # Command to run commands as privileged user # Example: "/usr/local/bin/sudo -E sh -c" to use "sudo" instead of "su" SU_CMD?= /usr/bin/su root -c Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Tue Oct 9 16:12:18 2012 (r305594) +++ head/Mk/bsd.port.mk Tue Oct 9 17:18:43 2012 (r305595) @@ -1657,20 +1657,15 @@ BUILD_DEPENDS+= gmake:${PORTSDIR}/devel CONFIGURE_ENV+= MAKE=${GMAKE} .endif .if defined(USE_PKGCONFIG) -.if ${USE_PKGCONFIG:L} == yes -USE_PKGCONFIG= build -.endif -.if ${USE_PKGCONFIG:L} == run -RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf -.endif -.if ${USE_PKGCONFIG:L} == build +.if ${USE_PKGCONFIG:L} == yes || ${USE_PKGCONFIG:L} == build BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf CONFIGURE_ENV+= PKG_CONFIG=pkgconf -.endif -.if ${USE_PKGCONFIG:L} == both +.elif ${USE_PKGCONFIG:L} == both RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf CONFIGURE_ENV+= PKG_CONFIG=pkgconf +.elif ${USE_PKGCONFIG:L} == run +RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf .endif .endif @@ -4814,7 +4809,7 @@ makesum: check-checksum-algorithms $$alg_executable $$file >> ${DISTINFO_FILE}; \ fi; \ done; \ - ${ECHO_CMD} "SIZE ($$file) = "`${LS} -ALln $$file | ${AWK} '{print $$5}'` >> ${DISTINFO_FILE}; \ + ${ECHO_CMD} "SIZE ($$file) = `${STAT} -f \"%z\" $$file`" >> ${DISTINFO_FILE}; \ done \ ) @for file in ${_IGNOREFILES}; do \ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:47:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 380532C6; Tue, 9 Oct 2012 17:47:07 +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 1F4808FC08; Tue, 9 Oct 2012 17:47: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 q99Hl6OX046664; Tue, 9 Oct 2012 17:47:06 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Hl6uj046660; Tue, 9 Oct 2012 17:47:06 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210091747.q99Hl6uj046660@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 17:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305596 - in head/java: . openjdk6 openjdk6-jre X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 Author: jkim Date: Tue Oct 9 17:47:06 2012 New Revision: 305596 URL: http://svn.freebsd.org/changeset/ports/305596 Log: - Sanitize user, group and permission. Inspired by openjdk7. - Add a slave port to create JRE-only package. Added: head/java/openjdk6-jre/ head/java/openjdk6-jre/Makefile (contents, props changed) Modified: head/java/Makefile head/java/openjdk6/Makefile Modified: head/java/Makefile ============================================================================== --- head/java/Makefile Tue Oct 9 17:18:43 2012 (r305595) +++ head/java/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -137,6 +137,7 @@ SUBDIR += netrexx SUBDIR += netty SUBDIR += openjdk6 + SUBDIR += openjdk6-jre SUBDIR += openjdk7 SUBDIR += phpeclipse SUBDIR += poseidon Added: head/java/openjdk6-jre/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/openjdk6-jre/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +PORTREVISION= 0 +CATEGORIES= java devel +PKGNAMESUFFIX= -jre + +COMMENT= Oracle's Java 6 Runtime Environment under the GPL v2 + +BUILD_JRE= yes +MASTERDIR= ${.CURDIR}/../openjdk6 +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} + +.include "${MASTERDIR}/Makefile" Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Tue Oct 9 17:18:43 2012 (r305595) +++ head/java/openjdk6/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -3,7 +3,7 @@ PORTNAME= openjdk6 PORTVERSION= b25 -PORTREVISION= 3 +PORTREVISION?= 4 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk6/promoted/${PORTVERSION}/ \ http://download.java.net/jaxp/openjdk/jdk6/:jaxp \ @@ -26,7 +26,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} ${ANTFILE} MAINTAINER= java@FreeBSD.org -COMMENT= Oracle's Java 6 virtual machine release under the GPL v2 +COMMENT?= Oracle's Java 6 virtual machine release under the GPL v2 LICENSE= GPLv2 @@ -39,18 +39,22 @@ RUN_DEPENDS= javavm:${PORTSDIR}/java/jav OPENJDK_BUILDDATE= 01_may_2012 -.include - -OPTIONS_DEFINE= DEBUG FASTDEBUG ICEDTEA IPV6 POLICY SOUND TEST TZUPDATE +OPTIONS_DEFINE= ICEDTEA IPV6 POLICY SOUND TZUPDATE OPTIONS_DEFAULT=ICEDTEA TZUPDATE -DEBUG_DESC= Enable legacy debugging support -FASTDEBUG_DESC= Include fastdebug build ICEDTEA_DESC= Apply additional patches from IcedTea POLICY_DESC= Install the Unlimited Strength Policy Files SOUND_DESC= Enable sound support -TEST_DESC= Add support for running regression test TZUPDATE_DESC= Update the time zone data +.if !defined(BUILD_JRE) +OPTIONS_DEFINE+=DEBUG FASTDEBUG TEST +DEBUG_DESC= Enable legacy debugging support +FASTDEBUG_DESC= Include fastdebug build +TEST_DESC= Add support for running regression test +.endif + +.include + # java extracts directly to the cwd WRKSRC= ${WRKDIR} @@ -255,10 +259,16 @@ post-patch: post-build: .if ${PORT_OPTIONS:MTZUPDATE} @# Update time zones +.if defined(BUILD_JRE) + @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image/lib/zi + @${LN} -s -f ${LOCALBASE}/share/java/zi \ + ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image/lib +.else @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib/zi @${LN} -s -f ${LOCALBASE}/share/java/zi \ ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib .endif +.endif .if ${PORT_OPTIONS:MTEST} @${ECHO_MSG} "" @${ECHO_MSG} "Run \"make test\" to execute regression test (it could take a few hours to complete)." @@ -282,12 +292,46 @@ test: build-depends build .endif do-install: +.if defined(BUILD_JRE) + @${MKDIR} ${PREFIX}/openjdk6-jre/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6-jre + @${CHOWN} ${BINOWN}:${BINGRP} ${PREFIX}/openjdk6-jre/bin/* \ + ${PREFIX}/openjdk6-jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} ${PREFIX}/openjdk6-jre/bin/* \ + ${PREFIX}/openjdk6-jre/lib/${ARCH}/jexec + @${ECHO_MSG} "@unexec ${LOCALBASE}/bin/unregistervm ${PREFIX}/openjdk6-jre/bin/java" >> ${TMPPLIST} + @${FIND} -s ${PREFIX}/openjdk6-jre -not -type d | \ + ${SED} -e 's#^${PREFIX}/##' >> ${TMPPLIST} + @${ECHO} "@exec mkdir ${PREFIX}/openjdk6-jre/lib/applet" >> ${TMPPLIST} + @${FIND} ${PREFIX}/openjdk6-jre -type d | ${SORT} -r | \ + ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + @${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm '${PREFIX}/openjdk6-jre/bin/java # OpenJDK6 JRE'" >> ${TMPPLIST} +.else @${MKDIR} ${PREFIX}/openjdk6/ - @${CP} -Rp ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/ ${PREFIX}/openjdk6/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6 @${INSTALL_DATA} ${WRKSRC}/build/${OPENJDK_OSARCH}/btjars/compilefontconfig.jar ${WRKSRC}/build/${OPENJDK_OSARCH}/btjars/javazic.jar ${PREFIX}/openjdk6/jre/lib/ + @for dir in `${FIND} ${PREFIX}/openjdk6 -name bin -type d`; do \ + ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ + ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ + done + @${CHOWN} ${BINOWN}:${BINGRP} \ + ${PREFIX}/openjdk6/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} \ + ${PREFIX}/openjdk6/jre/lib/${ARCH}/jexec .if ${PORT_OPTIONS:MFASTDEBUG} @${MKDIR} ${PREFIX}/openjdk6-fastdebug/ - @${CP} -Rp ${WRKSRC}/build/${OPENJDK_OSARCH}-fastdebug/j2sdk-image/ ${PREFIX}/openjdk6-fastdebug/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6-fastdebug + @for dir in `${FIND} ${PREFIX}/openjdk6-fastdebug -name bin -type d`; do \ + ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ + ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ + done + @${CHOWN} ${BINOWN}:${BINGRP} \ + ${PREFIX}/openjdk6-fastdebug/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} \ + ${PREFIX}/openjdk6-fastdebug/jre/lib/${ARCH}/jexec .endif @${ECHO_MSG} "@unexec ${LOCALBASE}/bin/unregistervm ${PREFIX}/openjdk6/bin/java" >> ${TMPPLIST} @${FIND} -s ${PREFIX}/openjdk6 -not -type d | \ @@ -305,10 +349,15 @@ do-install: ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} @${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm '${PREFIX}/openjdk6-fastdebug/bin/java # OpenJDK6'" >> ${TMPPLIST} .endif +.endif post-install: @# Register the VM +.if defined(BUILD_JRE) + @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6-jre/bin/java # OpenJDK6 JRE" +.else @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6/bin/java # OpenJDK6" +.endif .if ${PORT_OPTIONS:MFASTDEBUG} @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6-fastdebug/bin/java # OpenJDK6" .endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:47:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D41A93AE; Tue, 9 Oct 2012 17:47:53 +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 BD5FC8FC0C; Tue, 9 Oct 2012 17:47:53 +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 q99HlrdN046806; Tue, 9 Oct 2012 17:47:53 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Hlrlp046804; Tue, 9 Oct 2012 17:47:53 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210091747.q99Hlrlp046804@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 17:47:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305597 - head/java/linux-sun-jre16 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 Author: jkim Date: Tue Oct 9 17:47:53 2012 New Revision: 305597 URL: http://svn.freebsd.org/changeset/ports/305597 Log: Recommend newly added openjdk6-jre. Modified: head/java/linux-sun-jre16/pkg-message Modified: head/java/linux-sun-jre16/pkg-message ============================================================================== --- head/java/linux-sun-jre16/pkg-message Tue Oct 9 17:47:06 2012 (r305596) +++ head/java/linux-sun-jre16/pkg-message Tue Oct 9 17:47:53 2012 (r305597) @@ -1,6 +1,6 @@ ====================================================================== Warning: This JRE may be unstable. You are advised to use the native -FreeBSD 1.6 JDK, in ports/java/openjdk6. +FreeBSD 1.6 JDK, in ports/java/openjdk6-jre. This Java VM will attempt to obtain some system information by accessing files in linux's procfs. You must install the Linux From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:51:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id AD21D7E7; Tue, 9 Oct 2012 17:51:14 +0000 (UTC) Date: Tue, 9 Oct 2012 17:51:14 +0000 From: Alexey Dokuchaev To: Bryan Drewery Subject: Re: svn commit: r305357 - head/net/ssvnc Message-ID: <20121009175114.GB70759@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <507307F7.3030406@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Chris Rees , svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: > Can you add: > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > I swear there is a case where !${} results in an Error. I am not even sure if !${...} works or not, as it looks very ugly. I was always separating it with space. ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:04:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E916FD8; Tue, 9 Oct 2012 18:04:47 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id EE1878FC14; Tue, 9 Oct 2012 18:04:46 +0000 (UTC) Received: from mercury.ph.man.ac.uk [130.88.75.175:4284] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id q99I4tVi022869 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Tue, 9 Oct 2012 22:04:55 +0400 (MSK) From: Max Brazhnikov To: Alexey Dokuchaev Subject: Re: svn commit: r305357 - head/net/ssvnc Date: Tue, 9 Oct 2012 18:05:04 +0000 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.9.1; amd64; ; ) References: <201210061123.q96BNHVx053948@svn.freebsd.org> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> In-Reply-To: <20121009175114.GB70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201210091805.05226.makc@freebsd.org> Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org, Chris Rees , Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 On Tue, 9 Oct 2012 17:51:14 +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: > > Can you add: > > > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > > > I swear there is a case where !${} results in an Error. > > I am not even sure if !${...} works or not, as it looks very ugly. I was > always separating it with space. It looks perfect for me, why don't you like it? :) Max From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:20:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BC0A504; Tue, 9 Oct 2012 18:20:50 +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 367068FC0A; Tue, 9 Oct 2012 18:20:48 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so2807629bkc.13 for ; Tue, 09 Oct 2012 11:20:48 -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=Cm78apgJCmDIl7saUpP9vKpdQbTtQ2r0EKPxzBKZ0As=; b=Rc0ju3e4zxDX2rVDw0FgOoDAtLRXLSTYi5AIZysONw++KS44m/3C3HNhcH9yLInjLN 0FFk23JwpuXsqZCwCohuGmrCbZyw8Am1mYzpm9d+aNJtxzD7MWdisXmYkYBIyiAHkGF4 fAdEtRPuB7tUPVm7WcUKP5RYcv86ao9pTmgHOdb2HsirNU2lox/1aC7jAoYpEaNnEnTu TOqquRijj45BwN6UIpGrxbWwTW+kMu+qbMuJ1FR/PI9zzJrJuFVCHp5sbA6qja+6cPu3 9URFpjTrNcQ9ldxHom4vAeYQU5goukv8ZWm9elwqdfqgyN//8HU9gN2jldXuBQG45cPm sXDg== Received: by 10.204.4.200 with SMTP id 8mr7234378bks.81.1349806848041; Tue, 09 Oct 2012 11:20:48 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Tue, 9 Oct 2012 11:20:17 -0700 (PDT) In-Reply-To: <20121009175114.GB70759@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> From: Chris Rees Date: Tue, 9 Oct 2012 19:20:17 +0100 X-Google-Sender-Auth: 28IbvCWQyZRMP3bIvJC7UMrUUYE Message-ID: Subject: Re: svn commit: r305357 - head/net/ssvnc To: Alexey Dokuchaev Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:20:50 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:20:50 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:20:50 -0000 On 9 October 2012 18:51, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: >> Can you add: >> >> !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} >> >> I swear there is a case where !${} results in an Error. > > I am not even sure if !${...} works or not, as it looks very ugly. I was > always separating it with space. > As you and Boris prefer-- I've put a space in. I've sent a PR, but it's waiting for my email to be reenabled.... Chris From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:26:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 0CA85C9E; Tue, 9 Oct 2012 18:26:28 +0000 (UTC) Date: Tue, 9 Oct 2012 18:26:28 +0000 From: Alexey Dokuchaev To: Chris Rees Subject: Re: svn commit: r305357 - head/net/ssvnc Message-ID: <20121009182628.GA81030@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:26:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:26:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:26:28 -0000 On Tue, Oct 09, 2012 at 07:20:17PM +0100, Chris Rees wrote: > On 9 October 2012 18:51, Alexey Dokuchaev wrote: > > I am not even sure if !${...} works or not, as it looks very ugly. I was > > always separating it with space. > > As you and Boris prefer-- I've put a space in. Thanks, much appreciated. ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:32:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2ADCEFD8; Tue, 9 Oct 2012 18:32:40 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C19898FC50; Tue, 9 Oct 2012 18:32: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 q99IWdu1052806; Tue, 9 Oct 2012 18:32:39 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99IWdeJ052802; Tue, 9 Oct 2012 18:32:39 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201210091832.q99IWdeJ052802@svn.freebsd.org> From: Xin LI Date: Tue, 9 Oct 2012 18:32:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305598 - head/net/openldap23-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:32:40 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:32:40 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:32:40 -0000 Author: delphij Date: Tue Oct 9 18:32:39 2012 New Revision: 305598 URL: http://svn.freebsd.org/changeset/ports/305598 Log: fix plist for use with pkg. PR: ports/172387 Submitted by: kwm Modified: head/net/openldap23-server/pkg-plist head/net/openldap23-server/pkg-plist.client Modified: head/net/openldap23-server/pkg-plist ============================================================================== --- head/net/openldap23-server/pkg-plist Tue Oct 9 17:47:53 2012 (r305597) +++ head/net/openldap23-server/pkg-plist Tue Oct 9 18:32:39 2012 (r305598) @@ -56,7 +56,7 @@ etc/openldap/DB_CONFIG.example %%BACK_SQL%%libexec/openldap/back_sql.so libexec/slapd %%SLURPD%%libexec/slurpd -@dirrmtry libexec/openldap +%%MODULES%%@dirrmtry libexec/openldap sbin/slapacl sbin/slapadd sbin/slapauth Modified: head/net/openldap23-server/pkg-plist.client ============================================================================== --- head/net/openldap23-server/pkg-plist.client Tue Oct 9 17:47:53 2012 (r305597) +++ head/net/openldap23-server/pkg-plist.client Tue Oct 9 18:32:39 2012 (r305598) @@ -43,4 +43,3 @@ lib/libldap_r.so @comment share/openldap/ucdata/num.dat @comment @dirrm share/openldap/ucdata @comment @dirrm share/openldap -@dirrmtry libexec/openldap From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:33:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28F0233B; Tue, 9 Oct 2012 18:33:18 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 120DE8FC14; Tue, 9 Oct 2012 18:33: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 q99IXHcR052969; Tue, 9 Oct 2012 18:33:17 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99IXHSI052964; Tue, 9 Oct 2012 18:33:17 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201210091833.q99IXHSI052964@svn.freebsd.org> From: Xin LI Date: Tue, 9 Oct 2012 18:33:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305599 - head/net/openldap24-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:33:18 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:33:18 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:33:18 -0000 Author: delphij Date: Tue Oct 9 18:33:17 2012 New Revision: 305599 URL: http://svn.freebsd.org/changeset/ports/305599 Log: fix plist for use with pkg. PR: ports/172387 Submitted by: kwm Modified: head/net/openldap24-server/pkg-plist head/net/openldap24-server/pkg-plist.client Modified: head/net/openldap24-server/pkg-plist ============================================================================== --- head/net/openldap24-server/pkg-plist Tue Oct 9 18:32:39 2012 (r305598) +++ head/net/openldap24-server/pkg-plist Tue Oct 9 18:33:17 2012 (r305599) @@ -86,7 +86,7 @@ etc/openldap/DB_CONFIG.example %%SMBPWD%%libexec/openldap/smbk5pwd.so %%SMBPWD%%libexec/openldap/smbk5pwd.so.0 libexec/slapd -@dirrmtry libexec/openldap +%%MODULES%%@dirrmtry libexec/openldap sbin/slapacl sbin/slapadd sbin/slapauth Modified: head/net/openldap24-server/pkg-plist.client ============================================================================== --- head/net/openldap24-server/pkg-plist.client Tue Oct 9 18:32:39 2012 (r305598) +++ head/net/openldap24-server/pkg-plist.client Tue Oct 9 18:33:17 2012 (r305599) @@ -37,4 +37,3 @@ lib/libldap_r-2.4.so.%%SHLIB_MAJOR%% lib/libldap_r.a lib/libldap_r.la lib/libldap_r.so -@dirrmtry libexec/openldap From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:50:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C96AC7A5; Tue, 9 Oct 2012 19:50:57 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2B938FC19; Tue, 9 Oct 2012 19:50:57 +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 q99Jovub065698; Tue, 9 Oct 2012 19:50:57 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Jov0t065695; Tue, 9 Oct 2012 19:50:57 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210091950.q99Jov0t065695@svn.freebsd.org> From: Alex Kozlov Date: Tue, 9 Oct 2012 19:50:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305600 - head/games/3dpong X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:50:57 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:50:57 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:50:57 -0000 Author: ak Date: Tue Oct 9 19:50:57 2012 New Revision: 305600 URL: http://svn.freebsd.org/changeset/ports/305600 Log: - Convert Makefile headers to new style - Remove redundant comments - Add DESKTOP_ENTRIES - Bump PORTREVISION Submitted by: nemysis (maintainer) Modified: head/games/3dpong/Makefile head/games/3dpong/distinfo (contents, props changed) Modified: head/games/3dpong/Makefile ============================================================================== --- head/games/3dpong/Makefile Tue Oct 9 18:33:17 2012 (r305599) +++ head/games/3dpong/Makefile Tue Oct 9 19:50:57 2012 (r305600) @@ -1,19 +1,15 @@ -# New ports collection makefile for: 3dpong -# Date created: 10 March 1998 -# Whom: Andrey Zakhvatov -# # $FreeBSD$ -# PORTNAME= 3dpong PORTVERSION= 0.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= ftp://ftp.tuxpaint.org/unix/x/3dpong/src/ \ ftp://ftp.billsgames.com/unix/x/3dpong/src/ \ http://www.newbreedsoftware.com/images/prodicons/:icons DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ ${PORTNAME}.gif:icons +DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= nemysis@gmx.ch @@ -21,6 +17,8 @@ COMMENT= X Window 3D Pong game for 1 or LICENSE= GPLv2 +BUILD_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm + USE_XORG= x11 USE_GMAKE= yes MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ @@ -29,7 +27,7 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} MAN6= ${PORTNAME}.6 PLIST_FILES= bin/${PORTNAME} \ - share/pixmaps/${PORTNAME}.gif \ + share/pixmaps/${PORTNAME}.png \ share/examples/${PORTNAME}/${PORTNAME}-handball.sh \ share/examples/${PORTNAME}/${PORTNAME}-vs-computer.sh PLIST_DIRS= share/examples/${PORTNAME} @@ -37,32 +35,32 @@ PLIST_DIRS= share/examples/${PORTNAME} PORTDATA= * PORTDOCS= AUTHORS.txt CHANGES.txt README.txt TODO.txt +DESKTOP_ENTRIES="3D Pong" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + .include post-patch: @${REINPLACE_CMD} -e 's|cat sounds/|cat ${DATADIR}/|g' ${WRKSRC}/src/3dpong.c +post-build: + @(cd ${WRKSRC} && \ + ${LOCALBASE}/bin/giftopnm ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.gif | \ + ${LOCALBASE}/bin/pnmtopng > ${PORTNAME}.png) + do-install: -# Executable ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin -# Data ${MKDIR} ${DATADIR} ${INSTALL_DATA} ${WRKSRC}/sounds/*.au ${DATADIR} ${INSTALL_MAN} ${WRKSRC}/src/${MAN6} ${MAN6PREFIX}/man/man6 + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.png ${PREFIX}/share/pixmaps -# Pixmaps - ${INSTALL_DATA} ${DISTDIR}/${PORTNAME}.gif ${PREFIX}/share/pixmaps/ - -# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} -. for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR} -. endfor + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${DOCSDIR} .endif -# Examples @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) .include Modified: head/games/3dpong/distinfo ============================================================================== --- head/games/3dpong/distinfo Tue Oct 9 18:33:17 2012 (r305599) +++ head/games/3dpong/distinfo Tue Oct 9 19:50:57 2012 (r305600) @@ -1,4 +1,4 @@ -SHA256 (3dpong-0.5.tar.gz) = b1557818319f482c1e0795192f013ecf998c9f1013033b542676d1bf743a6bc5 -SIZE (3dpong-0.5.tar.gz) = 37004 -SHA256 (3dpong.gif) = 52524304fd79bb31740ac59a6ce249cc8461112adca0e4f3ab57ff4ab5623a1f -SIZE (3dpong.gif) = 321 +SHA256 (3dpong/3dpong-0.5.tar.gz) = b1557818319f482c1e0795192f013ecf998c9f1013033b542676d1bf743a6bc5 +SIZE (3dpong/3dpong-0.5.tar.gz) = 37004 +SHA256 (3dpong/3dpong.gif) = 52524304fd79bb31740ac59a6ce249cc8461112adca0e4f3ab57ff4ab5623a1f +SIZE (3dpong/3dpong.gif) = 321 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:53:01 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 358DF7EA; Tue, 9 Oct 2012 19:53:01 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 050928FC0C; Tue, 9 Oct 2012 19:53: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 q99Jr0Qs066161; Tue, 9 Oct 2012 19:53:00 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Jr0Kn066157; Tue, 9 Oct 2012 19:53:00 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201210091953.q99Jr0Kn066157@svn.freebsd.org> From: Cy Schubert Date: Tue, 9 Oct 2012 19:53:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305601 - head/sysutils/syslog-ng-rc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:53:01 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:53:01 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:53:01 -0000 Author: cy Date: Tue Oct 9 19:53:00 2012 New Revision: 305601 URL: http://svn.freebsd.org/changeset/ports/305601 Log: Update from RC1 to RC2. Submitted by: Peter Czanik (our syslog-ng upline) Modified: head/sysutils/syslog-ng-rc/Makefile head/sysutils/syslog-ng-rc/distinfo head/sysutils/syslog-ng-rc/pkg-plist Modified: head/sysutils/syslog-ng-rc/Makefile ============================================================================== --- head/sysutils/syslog-ng-rc/Makefile Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/Makefile Tue Oct 9 19:53:00 2012 (r305601) @@ -7,18 +7,18 @@ PORTNAME= syslog-ng PORTVERSION= 3.3.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils PKGNAMESUFFIX= -rc -MASTER_SITES= http://packages.madhouse-project.org/syslog-ng/3.3/3.3.6.90/ -DISTFILES= $(PORTNAME)-3.3.6.90-20120906-v3.3.6.90.tar.gz +MASTER_SITES= http://packages.madhouse-project.org/syslog-ng/3.3/3.3.6.91/ +DISTFILES= $(PORTNAME)-3.3.6.91-20121008-v3.3.6.91.tar.gz MAINTAINER= cy@FreeBSD.org COMMENT= A powerful syslogd replacement CONFLICTS?= syslog-ng-[0-9]* syslog-ng[0-9]-[0-9]* \ syslog-ng-devel-[0-9]* -WRKSRC= $(WRKDIR)/$(PORTNAME)-3.3.6.90 +WRKSRC= $(WRKDIR)/$(PORTNAME)-3.3.6.91 OPTIONS= SYS_SSL "Build with OpenSSL support (from system)" off \ PORTS_SSL "Build with OpenSSL support (from ports)" on \ Modified: head/sysutils/syslog-ng-rc/distinfo ============================================================================== --- head/sysutils/syslog-ng-rc/distinfo Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/distinfo Tue Oct 9 19:53:00 2012 (r305601) @@ -1,2 +1,2 @@ -SHA256 (syslog-ng-3.3.6.90-20120906-v3.3.6.90.tar.gz) = bc59328232485192734eedf1006cbc40f4d748629f08f50b61476db5378c40ac -SIZE (syslog-ng-3.3.6.90-20120906-v3.3.6.90.tar.gz) = 2508070 +SHA256 (syslog-ng-3.3.6.91-20121008-v3.3.6.91.tar.gz) = d8d9de30b17ef633ce8efaea1b2fcb6e4962b58724f5210d603858f21ab1d9c8 +SIZE (syslog-ng-3.3.6.91-20121008-v3.3.6.91.tar.gz) = 2510209 Modified: head/sysutils/syslog-ng-rc/pkg-plist ============================================================================== --- head/sysutils/syslog-ng-rc/pkg-plist Tue Oct 9 19:50:57 2012 (r305600) +++ head/sysutils/syslog-ng-rc/pkg-plist Tue Oct 9 19:53:00 2012 (r305601) @@ -75,7 +75,7 @@ include/syslog-ng/utils.h include/syslog-ng/value-pairs.h lib/libsyslog-ng.la lib/libsyslog-ng.so -lib/libsyslog-ng-3.3.6.90.so +lib/libsyslog-ng-3.3.6.91.so libdata/pkgconfig/syslog-ng.pc lib/syslog-ng/libaffile.la lib/syslog-ng/libaffile.so From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 19:58:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CCA3DA13; Tue, 9 Oct 2012 19:58:57 +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 AB39D8FC0A; Tue, 9 Oct 2012 19:58:57 +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 q99JwvNl067527; Tue, 9 Oct 2012 19:58:57 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99JwvRA067525; Tue, 9 Oct 2012 19:58:57 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210091958.q99JwvRA067525@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 19:58:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305602 - head/www/cgiwrap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 19:58:57 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:58:57 -0000 X-List-Received-Date: Tue, 09 Oct 2012 19:58:57 -0000 Author: madpilot Date: Tue Oct 9 19:58:56 2012 New Revision: 305602 URL: http://svn.freebsd.org/changeset/ports/305602 Log: - Convert to new options framework - Trim Makefile headers PR: ports/172423 Submitted by: Michael Gmelin Modified: head/www/cgiwrap/Makefile (contents, props changed) Modified: head/www/cgiwrap/Makefile ============================================================================== --- head/www/cgiwrap/Makefile Tue Oct 9 19:53:00 2012 (r305601) +++ head/www/cgiwrap/Makefile Tue Oct 9 19:58:56 2012 (r305602) @@ -1,9 +1,5 @@ -# New ports collection makefile for: cgiwrap -# Date created: 30 July 1998 -# Whom: Brent J. Nordquist -# +# Created by: Brent J. Nordquist # $FreeBSD$ -# PORTNAME= cgiwrap PORTVERSION= 4.1 @@ -16,16 +12,22 @@ COMMENT= Securely execute Web CGI script WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PKGMESSAGE= ${WRKDIR}/pkg-message -OPTIONS= CGI_OWNER "Check CGI file owner" on \ - CGI_GROUP "Check CGI file group" on \ - CGI_SETUID "Check CGI file setuid permissions" on \ - CGI_SETGID "Check CGI file setgid permissions" on \ - CGI_GROUP_WRITABLE "Check CGI g+w file permissions" on \ - CGI_WORLD_WRITABLE "Check CGI o+w file permissions" on \ - USE_REDIRECT_URL "Use REDIRECT_URL to build SCRIPT_NAME" off \ - USE_SCRIPT_URL "Use SCRIPT_URL to build SCRIPT_NAME" off \ - NPH "Enable nph binaries" off \ - DEBUG "Enable cgiwrapd binaries" off +OPTIONS_DEFINE= CGI_OWNER CGI_GROUP CGI_SETUID CGI_SETGID \ + CGI_GROUP_WRITABLE CGI_WORLD_WRITABLE DEBUG \ + DOCS NPH USE_REDIRECT_URL USE_SCRIPT_URL +OPTIONS_DEFAULT=CGI_OWNER CGI_GROUP CGI_SETUID CGI_SETGID \ + CGI_GROUP_WRITABLE CGI_WORLD_WRITABLE + +CGI_OWNER_DESC= Check CGI file owner +CGI_GROUP_DESC= Check CGI file group +CGI_SETUID_DESC=Check CGI file setuid permissions +CGI_SETGID_DESC=Check CGI file setgid permissions +CGI_GROUP_WRITABLE_DESC=Check CGI g+w file permissions +CGI_WORLD_WRITABLE_DESC=Check CGI o+w file permissions +USE_REDIRECT_URL_DESC=Use REDIRECT_URL to build SCRIPT_NAME +USE_SCRIPT_URL_DESC=Use SCRIPT_URL to build SCRIPT_NAME +NPH_DESC= Enable nph binaries +DEBUG_DESC= Enable cgiwrapd binaries ## # INSTALL_DIR @@ -65,7 +67,7 @@ CONFIGURE_ARGS= --with-httpd-user=${WWWO --with-check-shell \ --with-wall -.include +.include ## # LOG_FILE @@ -78,46 +80,46 @@ CONFIGURE_ARGS+= --with-logging-file=${L .else CONFIGURE_ARGS+= --without-logging-file .endif -.if !defined(WITH_CGI_OWNER) +.if empty(PORT_OPTIONS:MCGI_OWNER) CONFIGURE_ARGS+= --without-check-owner .endif -.if !defined(WITH_CGI_GROUP) +.if empty(PORT_OPTIONS:MCGI_GROUP) CONFIGURE_ARGS+= --without-check-group .endif -.if !defined(WITH_CGI_SETUID) +.if empty(PORT_OPTIONS:MCGI_SETUID) CONFIGURE_ARGS+= --without-check-setuid .endif -.if !defined(WITH_CGI_SETGID) +.if empty(PORT_OPTIONS:MCGI_SETGID) CONFIGURE_ARGS+= --without-check-setgid .endif -.if !defined(WITH_CGI_GROUP_WRITABLE) +.if empty(PORT_OPTIONS:MCGI_GROUP_WRITABLE) CONFIGURE_ARGS+= --without-check-group-writable .endif -.if !defined(WITH_CGI_WORLD_WRITABLE) +.if empty(PORT_OPTIONS:MCGI_WORLD_WRITABLE) CONFIGURE_ARGS+= --without-check-world-writable .endif -.if defined(WITH_USE_REDIRECT_URL) +.if ${PORT_OPTIONS:MUSE_REDIRECT_URL} CONFIGURE_ARGS+= --with-use-redirect-url .endif -.if defined(WITH_USE_SCRIPT_URL) +.if ${PORT_OPTIONS:MUSE_SCRIPT_URL} CONFIGURE_ARGS+= --with-use-script-url .endif -.if !defined(WITH_NPH) +.if empty(PORT_OPTIONS:MNPH) PLIST_SUB+= NPHFLAG="@comment " CONFIGURE_ARGS+= --without-nph .else PLIST_SUB+= NPHFLAG= .endif -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} PLIST_SUB+= DEBUGFLAG= CONFIGURE_ARGS+= --with-cgiwrapd .else PLIST_SUB+= DEBUGFLAG="@comment " .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} PORTDOCS= accesscontrol.html afs.html changes.html \ chroot.html comments.html download.html faq.html \ index.html install.html intro.html maillist.html \ @@ -131,15 +133,15 @@ pre-install: post-install: @${STRIP_CMD} ${INSTALL_DIR}/cgiwrap @${CHMOD} 4550 ${INSTALL_DIR}/cgiwrap -.if defined(WITH_DEBUG) +.if ${PORT_OPTIONS:MDEBUG} @${STRIP_CMD} ${INSTALL_DIR}/cgiwrapd @${CHMOD} 4550 ${INSTALL_DIR}/cgiwrapd -.if defined(WITH_NPH) +.if ${PORT_OPTIONS:MNPH} @${STRIP_CMD} ${INSTALL_DIR}/nph-cgiwrapd @${CHMOD} 4550 ${INSTALL_DIR}/nph-cgiwrapd .endif .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/htdocs/${f} ${DOCSDIR} @@ -151,4 +153,4 @@ post-install: ${MASTERDIR}/pkg-message > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 20:41:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC4CF8A7; Tue, 9 Oct 2012 20:41:30 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C59A08FC0C; Tue, 9 Oct 2012 20:41: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 q99KfUJQ076764; Tue, 9 Oct 2012 20:41:30 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99KfUEk076762; Tue, 9 Oct 2012 20:41:30 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210092041.q99KfUEk076762@svn.freebsd.org> From: Raphael Kubo da Costa Date: Tue, 9 Oct 2012 20:41:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305603 - head/x11-fonts/tolkien-ttf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 20:41:30 -0000 X-List-Received-Date: Tue, 09 Oct 2012 20:41:30 -0000 X-List-Received-Date: Tue, 09 Oct 2012 20:41:30 -0000 Author: rakuco Date: Tue Oct 9 20:41:30 2012 New Revision: 305603 URL: http://svn.freebsd.org/changeset/ports/305603 Log: Mark as DEPRECATED since there are no more public distfiles available. EXPIRATION_DATE set to 2012-11-09. Modified: head/x11-fonts/tolkien-ttf/Makefile Modified: head/x11-fonts/tolkien-ttf/Makefile ============================================================================== --- head/x11-fonts/tolkien-ttf/Makefile Tue Oct 9 19:58:56 2012 (r305602) +++ head/x11-fonts/tolkien-ttf/Makefile Tue Oct 9 20:41:30 2012 (r305603) @@ -16,6 +16,9 @@ COMMENT= A selection of the best TrueTyp RUN_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig +DEPRECATED= Does not fetch: there are no more public distfiles +EXPIRATION_DATE= 2012-11-09 + RESTRICTED= "Shareware. Unlicensed commercial usage/redistribution prohibited." USE_BZIP2= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 20:59:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21954F28; Tue, 9 Oct 2012 20:59:38 +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 09A8D8FC0C; Tue, 9 Oct 2012 20:59:38 +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 q99KxbfB080675; Tue, 9 Oct 2012 20:59:37 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Kxbth080670; Tue, 9 Oct 2012 20:59:37 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210092059.q99Kxbth080670@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 20:59:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305604 - in head/java/openjdk6: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 20:59:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 20:59:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 20:59:38 -0000 Author: jkim Date: Tue Oct 9 20:59:37 2012 New Revision: 305604 URL: http://svn.freebsd.org/changeset/ports/305604 Log: Update to build 26. Deleted: head/java/openjdk6/files/patch-security Modified: head/java/openjdk6/Makefile head/java/openjdk6/distinfo head/java/openjdk6/files/patch-set Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/Makefile Tue Oct 9 20:59:37 2012 (r305604) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= openjdk6 -PORTVERSION= b25 -PORTREVISION?= 4 +PORTVERSION= b26 +PORTREVISION?= 0 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk6/promoted/${PORTVERSION}/ \ http://download.java.net/jaxp/openjdk/jdk6/:jaxp \ @@ -37,7 +37,7 @@ LIB_DEPENDS= freetype:${PORTSDIR}/print/ RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ ${LOCALBASE}/lib/X11/fonts/dejavu:${PORTSDIR}/x11-fonts/dejavu -OPENJDK_BUILDDATE= 01_may_2012 +OPENJDK_BUILDDATE= 21_sep_2012 OPTIONS_DEFINE= ICEDTEA IPV6 POLICY SOUND TZUPDATE OPTIONS_DEFAULT=ICEDTEA TZUPDATE @@ -63,7 +63,7 @@ USE_MOTIF= yes USE_XORG= x11 xext xi xt xtst MAKE_JOBS_UNSAFE= yes -JAXP_BUILD= 144_03 +JAXP_BUILD= 144_04 JAXPFILE= jaxp${JAXP_BUILD}.zip JAXWS_BUILD= 2_1_6-2011_06_13 JAXWSFILE= jdk6-jaxws${JAXWS_BUILD}.zip Modified: head/java/openjdk6/distinfo ============================================================================== --- head/java/openjdk6/distinfo Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/distinfo Tue Oct 9 20:59:37 2012 (r305604) @@ -1,7 +1,7 @@ -SHA256 (openjdk-6-src-b25-01_may_2012.tar.gz) = 42db988b436593017e29d6543ac09168a901027817e41dc1be5c795b85d53b05 -SIZE (openjdk-6-src-b25-01_may_2012.tar.gz) = 45761297 -SHA256 (jaxp144_03.zip) = c1a5348e17b330a7e4b18431e61a40efd2ba99a7da71102cf2c604478ef96012 -SIZE (jaxp144_03.zip) = 5964999 +SHA256 (openjdk-6-src-b26-21_sep_2012.tar.gz) = 9635d8563b9ba811f1d6e333861f235a2d8835c623451abc44791891d40d8b09 +SIZE (openjdk-6-src-b26-21_sep_2012.tar.gz) = 45775426 +SHA256 (jaxp144_04.zip) = 490f696218c1fed9cb180680af883fe309b414fec232e9cec19645e12ad0b43c +SIZE (jaxp144_04.zip) = 5976385 SHA256 (jdk6-jaxws2_1_6-2011_06_13.zip) = 229040544e791f44906e8e7b6f6faf503c730a5d854275135f3925490d5c3be3 SIZE (jdk6-jaxws2_1_6-2011_06_13.zip) = 5512710 SHA256 (jdk6-jaf-b20.zip) = 78c7b5c9d6271e88ee46abadd018a61f1e9645f8936cc8df1617e5f4f5074012 Modified: head/java/openjdk6/files/patch-set ============================================================================== --- head/java/openjdk6/files/patch-set Tue Oct 9 20:41:30 2012 (r305603) +++ head/java/openjdk6/files/patch-set Tue Oct 9 20:59:37 2012 (r305604) @@ -1,5 +1,5 @@ ---- Makefile 2011-07-05 14:29:12.000000000 -0400 -+++ Makefile 2011-07-07 19:17:02.000000000 -0400 +--- Makefile ++++ Makefile @@ -236,6 +236,18 @@ clean: clobber @@ -19,8 +19,8 @@ # # Dev builds # ---- corba/make/common/Defs-bsd.gmk 2011-07-07 19:16:00.000000000 -0400 -+++ corba/make/common/Defs-bsd.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs-bsd.gmk ++++ corba/make/common/Defs-bsd.gmk @@ -40,18 +40,12 @@ # Get shared JDK settings include $(BUILDDIR)/common/shared/Defs.gmk @@ -142,8 +142,8 @@ override OTHER_M4FLAGS = -D__GLIBC__ -DGNU_ASSEMBLER override SUN_CMM_SUBDIR = override THREADS_FLAG = native ---- corba/make/common/Defs-linux.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Defs-linux.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs-linux.gmk ++++ corba/make/common/Defs-linux.gmk @@ -290,7 +290,7 @@ override LIBTHREAD = override MOOT_PRIORITIES = true @@ -153,8 +153,8 @@ ifeq ($(ARCH), amd64) override OPENWIN_LIB = $(OPENWIN_HOME)/lib64 else ---- corba/make/common/Defs.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Defs.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Defs.gmk ++++ corba/make/common/Defs.gmk @@ -53,6 +53,24 @@ _OUTPUTDIR=$(TOPDIR)/build/$(PLATFORM)-$(ARCH) @@ -190,8 +190,8 @@ endif # PROGRAM LDLIBS_COMMON += $(EXTRA_LIBS) ---- corba/make/common/Mapfile-vers.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/Mapfile-vers.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/Mapfile-vers.gmk ++++ corba/make/common/Mapfile-vers.gmk @@ -77,7 +77,7 @@ endif # PLATFORM @@ -201,8 +201,8 @@ ifeq ($(VARIANT), OPT) # OPT build MUST have a mapfile? ---- corba/make/common/shared/Compiler-gcc.gmk 2012-05-01 17:14:04.000000000 -0400 -+++ corba/make/common/shared/Compiler-gcc.gmk 2012-09-11 18:17:45.000000000 -0400 +--- corba/make/common/shared/Compiler-gcc.gmk ++++ corba/make/common/shared/Compiler-gcc.gmk @@ -100,6 +100,24 @@ endif @@ -228,8 +228,8 @@ ifeq ($(PLATFORM), solaris) # Settings specific to Solaris ---- corba/make/common/shared/Compiler.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Compiler.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Compiler.gmk ++++ corba/make/common/shared/Compiler.gmk @@ -42,6 +42,11 @@ override CC_VERSION = gcc endif @@ -242,8 +242,8 @@ # Get the compiler specific settings include $(BUILDDIR)/common/shared/Compiler-$(CC_VERSION).gmk ---- corba/make/common/shared/Defs-bsd.gmk 2011-07-07 19:16:00.000000000 -0400 -+++ corba/make/common/shared/Defs-bsd.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-bsd.gmk ++++ corba/make/common/shared/Defs-bsd.gmk @@ -54,7 +54,7 @@ endef @@ -262,8 +262,8 @@ endif # _BOOTDIR1: First choice for a Bootstrap JDK, previous released JDK. ---- corba/make/common/shared/Defs-java.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Defs-java.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-java.gmk ++++ corba/make/common/shared/Defs-java.gmk @@ -38,7 +38,7 @@ # Suspect this may not be needed anymore. JAVA_MEM_FLAGS += -Xms$(MAX_VM_MEMORY)m -XX:-Inline @@ -273,8 +273,8 @@ endif # ---- corba/make/common/shared/Defs-utils.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Defs-utils.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Defs-utils.gmk ++++ corba/make/common/shared/Defs-utils.gmk @@ -53,6 +53,13 @@ UTILS_DEVTOOL_PATH=$(USRBIN_PATH) endif @@ -322,8 +322,8 @@ + TAR = $(UTILS_USR_BIN_PATH)tar + endif +endif ---- corba/make/common/shared/Platform.gmk 2011-07-05 14:29:22.000000000 -0400 -+++ corba/make/common/shared/Platform.gmk 2011-07-07 19:17:02.000000000 -0400 +--- corba/make/common/shared/Platform.gmk ++++ corba/make/common/shared/Platform.gmk @@ -261,6 +261,76 @@ MB_OF_MEMORY := $(shell free -m | fgrep Mem: | sed -e 's@\ \ *@ @g' | cut -d' ' -f2) endif @@ -401,7 +401,7 @@ # Windows with and without CYGWIN will be slightly different ifeq ($(SYSTEM_UNAME), Windows_NT) PLATFORM = windows -@@ -375,7 +445,14 @@ +@@ -408,7 +478,14 @@ # build machines and adjustments will be made to prevent excessing # system swapping during the build. # If we don't know, assume 512. Subtract 128 from MB for VM MAX. @@ -417,7 +417,7 @@ ifneq ($(MB_OF_MEMORY),) LOW_MEMORY_MACHINE := $(shell \ if [ $(MB_OF_MEMORY) -le 512 ] ; then \ -@@ -387,7 +464,7 @@ +@@ -420,7 +497,7 @@ if [ $(MB_OF_MEMORY) -le 1024 ] ; then \ expr $(MB_OF_MEMORY) '-' 128 ; \ else \ @@ -426,8 +426,8 @@ fi) MIN_VM_MEMORY := $(shell \ if [ $(MAX_VM_MEMORY) -le 128 ] ; then \ ---- hotspot/agent/make/Makefile 2011-07-05 14:30:51.000000000 -0400 -+++ hotspot/agent/make/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/make/Makefile ++++ hotspot/agent/make/Makefile @@ -52,6 +52,9 @@ sun.jvm.hotspot.compiler \ sun.jvm.hotspot.debugger \ @@ -468,8 +468,8 @@ sun/jvm/hotspot/runtime/ia64/*.java \ sun/jvm/hotspot/runtime/linux/*.java \ sun/jvm/hotspot/runtime/linux_amd64/*.java \ ---- hotspot/agent/src/os/bsd/BsdDebuggerLocal.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/BsdDebuggerLocal.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/BsdDebuggerLocal.c ++++ hotspot/agent/src/os/bsd/BsdDebuggerLocal.c @@ -22,6 +22,7 @@ * */ @@ -609,8 +609,8 @@ #endif /* amd64 */ ---- hotspot/agent/src/os/bsd/Makefile 2012-05-01 17:15:02.000000000 -0400 -+++ hotspot/agent/src/os/bsd/Makefile 2012-09-18 17:50:06.000000000 -0400 +--- hotspot/agent/src/os/bsd/Makefile ++++ hotspot/agent/src/os/bsd/Makefile @@ -22,8 +22,8 @@ # # @@ -686,8 +686,8 @@ + rm -f test.o + -rmdir $(ARCH) ---- hotspot/agent/src/os/bsd/elfmacros.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/elfmacros.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/elfmacros.h ++++ hotspot/agent/src/os/bsd/elfmacros.h @@ -25,16 +25,19 @@ #ifndef _ELFMACROS_H_ #define _ELFMACROS_H_ @@ -723,8 +723,8 @@ #endif ---- hotspot/agent/src/os/bsd/libproc.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc.h ++++ hotspot/agent/src/os/bsd/libproc.h @@ -27,7 +27,8 @@ #include @@ -785,8 +785,8 @@ // get number of shared objects int get_num_libs(struct ps_prochandle* ph); ---- hotspot/agent/src/os/bsd/libproc_impl.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc_impl.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc_impl.c ++++ hotspot/agent/src/os/bsd/libproc_impl.c @@ -174,10 +174,13 @@ return NULL; } @@ -929,8 +929,8 @@ + print_debug("ps_pcontinue not implemented\n"); return PS_OK; } ---- hotspot/agent/src/os/bsd/libproc_impl.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/libproc_impl.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/libproc_impl.h ++++ hotspot/agent/src/os/bsd/libproc_impl.h @@ -47,7 +47,7 @@ typedef struct thread_info { lwpid_t lwp_id; @@ -984,8 +984,8 @@ // a test for ELF signature without using libelf bool is_elf_file(int fd); ---- hotspot/agent/src/os/bsd/mapfile 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/mapfile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/mapfile ++++ hotspot/agent/src/os/bsd/mapfile @@ -43,13 +43,17 @@ # proc_service.h functions - to be used by libthread_db ps_getpid; @@ -1007,8 +1007,8 @@ # used by attach test program init_libproc; ---- hotspot/agent/src/os/bsd/proc_service.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/proc_service.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/proc_service.h ++++ hotspot/agent/src/os/bsd/proc_service.h 1969-12-31 19:00:00.000000000 -0500 @@ -1,76 +0,0 @@ -/* - * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved. @@ -1086,8 +1086,8 @@ -ps_err_e ps_get_thread_area(); - -#endif /* _PROC_SERVICE_H_ */ ---- hotspot/agent/src/os/bsd/ps_core.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/ps_core.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/ps_core.c ++++ hotspot/agent/src/os/bsd/ps_core.c @@ -142,6 +142,7 @@ map->next = ph->core->class_share_maps; @@ -1409,8 +1409,8 @@ struct ps_prochandle* ph = (struct ps_prochandle*) calloc(1, sizeof(struct ps_prochandle)); if (ph == NULL) { ---- hotspot/agent/src/os/bsd/ps_proc.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/ps_proc.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/ps_proc.c ++++ hotspot/agent/src/os/bsd/ps_proc.c @@ -22,20 +22,22 @@ * */ @@ -1982,8 +1982,8 @@ - } return ph; } ---- hotspot/agent/src/os/bsd/salibelf.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/salibelf.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/salibelf.c ++++ hotspot/agent/src/os/bsd/salibelf.c @@ -25,6 +25,7 @@ #include "salibelf.h" #include @@ -1992,8 +1992,8 @@ extern void print_debug(const char*,...); ---- hotspot/agent/src/os/bsd/symtab.c 2012-01-12 17:22:08.000000000 -0500 -+++ hotspot/agent/src/os/bsd/symtab.c 2012-01-12 16:54:45.000000000 -0500 +--- hotspot/agent/src/os/bsd/symtab.c ++++ hotspot/agent/src/os/bsd/symtab.c @@ -23,10 +23,11 @@ */ @@ -2538,8 +2538,8 @@ } return NULL; } ---- hotspot/agent/src/os/bsd/symtab.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/symtab.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/symtab.h ++++ hotspot/agent/src/os/bsd/symtab.h @@ -32,7 +32,7 @@ struct symtab; @@ -2549,8 +2549,8 @@ // destroy the symbol table void destroy_symtab(struct symtab* symtab); ---- hotspot/agent/src/os/bsd/test.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/agent/src/os/bsd/test.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/os/bsd/test.c ++++ hotspot/agent/src/os/bsd/test.c @@ -44,7 +44,7 @@ } @@ -2560,8 +2560,8 @@ return 1; } } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2011-07-05 14:30:52.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java @@ -28,6 +28,7 @@ import java.net.*; import java.rmi.*; @@ -2631,8 +2631,8 @@ /** Convenience routine which should be called by per-platform debugger setup. Should not be called when startupMode is REMOTE_MODE. */ ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2011-07-05 14:30:53.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java @@ -29,6 +29,7 @@ import java.rmi.*; import sun.jvm.hotspot.*; @@ -2704,8 +2704,8 @@ /** Convenience routine which should be called by per-platform debugger setup. Should not be called when startupMode is REMOTE_MODE. */ ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdCDebugger.java @@ -30,10 +30,8 @@ import sun.jvm.hotspot.debugger.cdbg.*; import sun.jvm.hotspot.debugger.x86.*; @@ -2731,8 +2731,8 @@ } else { throw new DebuggerException(cpu + " is not yet supported"); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThreadContextFactory.java @@ -26,9 +26,7 @@ import sun.jvm.hotspot.debugger.*; @@ -2754,8 +2754,8 @@ } else { throw new RuntimeException("cpu " + cpu + " is not yet supported"); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java 2011-07-05 14:30:54.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/ConnectorImpl.java @@ -217,7 +217,7 @@ } @@ -2765,8 +2765,8 @@ // link "saproc" - SA native library on SunOS and Linux? sm.checkLink("saproc"); } else if (os.startsWith("Windows")) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java 2011-07-05 14:30:54.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/SAPIDAttachingConnector.java @@ -66,7 +66,7 @@ try { // Whether the caller can perform link against SA native library? @@ -2776,8 +2776,8 @@ // Whether the caller can read /proc/ file? sm.checkRead("/proc/" + pid); } ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java 2011-07-05 14:30:55.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/Threads.java @@ -37,6 +37,8 @@ import sun.jvm.hotspot.runtime.linux_ia64.LinuxIA64JavaThreadPDAccess; import sun.jvm.hotspot.runtime.linux_amd64.LinuxAMD64JavaThreadPDAccess; @@ -2801,8 +2801,8 @@ } if (access == null) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd/BsdSignals.java @@ -28,37 +28,36 @@ private static String[] signalNames = { "", /* No signal 0 */ @@ -2863,8 +2863,8 @@ }; public static String getSignalName(int sigNum) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_x86/BsdSignals.java @@ -28,37 +28,36 @@ private static String[] signalNames = { "", /* No signal 0 */ @@ -2925,8 +2925,8 @@ }; public static String getSignalName(int sigNum) { ---- hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java 2011-07-05 14:30:55.000000000 -0400 -+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java ++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/PlatformInfo.java @@ -37,6 +37,14 @@ return "solaris"; } else if (os.equals("Linux")) { @@ -2942,8 +2942,8 @@ } else if (os.startsWith("Windows")) { return "win32"; } else { ---- hotspot/make/Makefile 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/Makefile ++++ hotspot/make/Makefile @@ -321,28 +321,28 @@ ifneq ($(OSNAME),windows) ifeq ($(ZERO_BUILD), true) @@ -2983,8 +2983,8 @@ $(install-file) endif endif ---- hotspot/make/bsd/Makefile 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/Makefile 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/Makefile ++++ hotspot/make/bsd/Makefile @@ -39,11 +39,11 @@ # One can set ALT_BOOTDIR or BOOTDIR to point to a jdk that runs on # an architecture that differs from the target architecture, as long @@ -3017,14 +3017,14 @@ # Solaris 2.5.1, 2.6). # Disable this check by setting DISABLE_HOTSPOT_OS_VERSION_CHECK=ok. --SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7% -+#SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 2.7% +-SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3% ++#SUPPORTED_OS_VERSION = 2.4% 2.5% 2.6% 3% +DISABLE_HOTSPOT_OS_VERSION_CHECK = ok OS_VERSION := $(shell uname -r) EMPTY_IF_NOT_SUPPORTED = $(filter $(SUPPORTED_OS_VERSION),$(OS_VERSION)) ---- hotspot/make/bsd/makefiles/adlc.make 2012-05-01 17:15:06.000000000 -0400 -+++ hotspot/make/bsd/makefiles/adlc.make 2012-09-17 19:50:44.000000000 -0400 +--- hotspot/make/bsd/makefiles/adlc.make ++++ hotspot/make/bsd/makefiles/adlc.make @@ -60,7 +60,8 @@ # CFLAGS_WARN holds compiler options to suppress/enable warnings. @@ -3035,8 +3035,8 @@ CFLAGS += $(CFLAGS_WARN) OBJECTNAMES = \ ---- hotspot/make/bsd/makefiles/buildtree.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/buildtree.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/buildtree.make ++++ hotspot/make/bsd/makefiles/buildtree.make @@ -303,10 +303,11 @@ [ -n "$$JAVA_HOME" ] && { echo ": \$${JAVA_HOME:=$${JAVA_HOME}}"; }; \ { \ @@ -3050,8 +3050,8 @@ ) > $@ env.csh: env.sh ---- hotspot/make/bsd/makefiles/cscope.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/cscope.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/cscope.make ++++ hotspot/make/bsd/makefiles/cscope.make @@ -71,7 +71,7 @@ # OS-specific files for other systems are excluded by default. Use CS_OS=yes # to include platform-specific files for other platforms. @@ -3061,8 +3061,8 @@ CS_PRUNE_OS = $(patsubst %,-o -name '*%*',$(filter-out ${OS},${CS_OS})) endif ---- hotspot/make/bsd/makefiles/defs.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/defs.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/defs.make ++++ hotspot/make/bsd/makefiles/defs.make @@ -72,8 +72,8 @@ HS_ARCH = sparc endif @@ -3169,8 +3169,8 @@ EXPORT_LIST += $(ADD_SA_BINARIES/$(HS_ARCH)) - - ---- hotspot/make/bsd/makefiles/gcc.make 2012-05-01 17:15:06.000000000 -0400 -+++ hotspot/make/bsd/makefiles/gcc.make 2012-09-18 11:31:25.000000000 -0400 +--- hotspot/make/bsd/makefiles/gcc.make ++++ hotspot/make/bsd/makefiles/gcc.make @@ -22,20 +22,24 @@ # # @@ -3303,8 +3303,8 @@ #------------------------------------------------------------------------ # Debug flags ---- hotspot/make/bsd/makefiles/jsig.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/jsig.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/jsig.make ++++ hotspot/make/bsd/makefiles/jsig.make @@ -25,11 +25,16 @@ # Rules to build signal interposition library, used by vm.make @@ -3344,8 +3344,8 @@ $(QUIETLY) [ -f $(LIBJSIG_G) ] || { ln -s $@ $(LIBJSIG_G); } install_jsig: $(LIBJSIG) ---- hotspot/make/bsd/makefiles/launcher.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/launcher.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/launcher.make ++++ hotspot/make/bsd/makefiles/launcher.make @@ -50,7 +50,7 @@ LIBS_LAUNCHER += $(STATIC_STDCXX) $(LIBS) else @@ -3355,8 +3355,8 @@ LIBS_LAUNCHER += -l$(JVM) $(LIBS) endif ---- hotspot/make/bsd/makefiles/sa.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/sa.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/sa.make ++++ hotspot/make/bsd/makefiles/sa.make @@ -45,8 +45,8 @@ # gnumake 3.78.1 does not accept the *s that @@ -3368,8 +3368,8 @@ AGENT_FILES1_LIST := $(GENERATED)/agent1.classes.list AGENT_FILES2_LIST := $(GENERATED)/agent2.classes.list ---- hotspot/make/bsd/makefiles/saproc.make 2012-01-12 17:22:09.000000000 -0500 -+++ hotspot/make/bsd/makefiles/saproc.make 2012-01-12 16:55:29.000000000 -0500 +--- hotspot/make/bsd/makefiles/saproc.make ++++ hotspot/make/bsd/makefiles/saproc.make @@ -25,23 +25,33 @@ # Rules to build serviceability agent library, used by vm.make @@ -3436,8 +3436,8 @@ $(QUIETLY) [ -f $(LIBSAPROC_G) ] || { ln -s $@ $(LIBSAPROC_G); } install_saproc: $(BUILDLIBSAPROC) ---- hotspot/make/bsd/makefiles/vm.make 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/makefiles/vm.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/makefiles/vm.make ++++ hotspot/make/bsd/makefiles/vm.make @@ -91,6 +91,10 @@ ${JRE_VERSION} \ ${VM_DISTRO} @@ -3555,24 +3555,24 @@ } DEST_JVM = $(JDK_LIBDIR)/$(VM_SUBDIR)/$(LIBJVM) ---- hotspot/make/bsd/platform_amd64 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/platform_amd64 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/platform_amd64 ++++ hotspot/make/bsd/platform_amd64 @@ -12,4 +12,4 @@ compiler = gcc -sysdefs = -DBSD -D_GNU_SOURCE -DAMD64 +sysdefs = -D_ALLBSD_SOURCE -D_GNU_SOURCE -DAMD64 ---- hotspot/make/bsd/platform_i486 2011-07-07 19:16:00.000000000 -0400 -+++ hotspot/make/bsd/platform_i486 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/bsd/platform_i486 ++++ hotspot/make/bsd/platform_i486 @@ -12,4 +12,4 @@ compiler = gcc -sysdefs = -DBSD -D_GNU_SOURCE -DIA32 +sysdefs = -D_ALLBSD_SOURCE -D_GNU_SOURCE -DIA32 ---- hotspot/make/defs.make 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/defs.make 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/defs.make ++++ hotspot/make/defs.make @@ -118,13 +118,23 @@ # Windows should have OS predefined ifeq ($(OS),) @@ -3599,8 +3599,8 @@ else OSNAME=solaris endif ---- hotspot/make/sa.files 2011-07-05 14:30:56.000000000 -0400 -+++ hotspot/make/sa.files 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/make/sa.files ++++ hotspot/make/sa.files @@ -50,6 +50,9 @@ $(AGENT_SRC_DIR)/sun/jvm/hotspot/compiler/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/debugger/*.java \ @@ -3621,8 +3621,8 @@ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/ia64/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux/*.java \ $(AGENT_SRC_DIR)/sun/jvm/hotspot/runtime/linux_amd64/*.java \ ---- hotspot/src/cpu/x86/vm/bytes_x86.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/bytes_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/bytes_x86.hpp ++++ hotspot/src/cpu/x86/vm/bytes_x86.hpp @@ -81,6 +81,9 @@ #ifdef TARGET_OS_ARCH_windows_x86 # include "bytes_windows_x86.inline.hpp" @@ -3633,8 +3633,8 @@ #endif // CPU_X86_VM_BYTES_X86_HPP ---- hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp ++++ hotspot/src/cpu/x86/vm/c1_LIRAssembler_x86.cpp @@ -481,8 +481,8 @@ // Fetch the exception from TLS and clear out exception related thread state __ get_thread(rsi); @@ -3646,8 +3646,8 @@ __ bind(_unwind_handler_entry); __ verify_not_null_oop(rax); ---- hotspot/src/cpu/x86/vm/copy_x86.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/copy_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/copy_x86.hpp ++++ hotspot/src/cpu/x86/vm/copy_x86.hpp @@ -37,6 +37,9 @@ #ifdef TARGET_OS_ARCH_windows_x86 # include "copy_windows_x86.inline.hpp" @@ -3658,8 +3658,8 @@ static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) { ---- hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/interp_masm_x86_32.cpp @@ -45,6 +45,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3688,8 +3688,8 @@ // index is positive and so should have correct value if this code were // used on 64bits imulptr(index, reg2); ---- hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/interp_masm_x86_64.cpp @@ -45,6 +45,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3700,8 +3700,8 @@ // Implementation of InterpreterMacroAssembler ---- hotspot/src/cpu/x86/vm/jni_x86.h 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/jni_x86.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/jni_x86.h ++++ hotspot/src/cpu/x86/vm/jni_x86.h @@ -26,7 +26,7 @@ #ifndef _JAVASOFT_JNI_MD_H_ #define _JAVASOFT_JNI_MD_H_ @@ -3711,8 +3711,8 @@ #define JNIEXPORT #define JNIIMPORT #define JNICALL ---- hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/stubGenerator_x86_32.cpp @@ -47,6 +47,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3723,8 +3723,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/stubGenerator_x86_64.cpp @@ -47,6 +47,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3735,8 +3735,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp ++++ hotspot/src/cpu/x86/vm/stubRoutines_x86_32.cpp @@ -35,6 +35,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3747,8 +3747,8 @@ // Implementation of the platform-specific part of StubRoutines - for // a description of how to extend it, see the stubRoutines.hpp file. ---- hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp ++++ hotspot/src/cpu/x86/vm/stubRoutines_x86_64.cpp @@ -35,6 +35,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "thread_windows.inline.hpp" @@ -3759,8 +3759,8 @@ // Implementation of the platform-specific part of StubRoutines - for // a description of how to extend it, see the stubRoutines.hpp file. ---- hotspot/src/cpu/x86/vm/vm_version_x86.cpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/x86/vm/vm_version_x86.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/x86/vm/vm_version_x86.cpp ++++ hotspot/src/cpu/x86/vm/vm_version_x86.cpp @@ -37,6 +37,9 @@ #ifdef TARGET_OS_FAMILY_windows # include "os_windows.inline.hpp" @@ -3771,8 +3771,8 @@ int VM_Version::_cpu; ---- hotspot/src/cpu/zero/vm/bytes_zero.hpp 2011-07-05 14:30:57.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/bytes_zero.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/bytes_zero.hpp ++++ hotspot/src/cpu/zero/vm/bytes_zero.hpp @@ -168,6 +168,9 @@ #ifdef TARGET_OS_ARCH_linux_zero # include "bytes_linux_zero.inline.hpp" @@ -3783,8 +3783,8 @@ #endif // VM_LITTLE_ENDIAN ---- hotspot/src/cpu/zero/vm/interp_masm_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/interp_masm_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/interp_masm_zero.cpp ++++ hotspot/src/cpu/zero/vm/interp_masm_zero.cpp @@ -40,5 +40,8 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3794,8 +3794,8 @@ +#endif // This file is intentionally empty ---- hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp ++++ hotspot/src/cpu/zero/vm/stubGenerator_zero.cpp @@ -43,6 +43,9 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3806,8 +3806,8 @@ #ifdef COMPILER2 #include "opto/runtime.hpp" #endif ---- hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp ++++ hotspot/src/cpu/zero/vm/stubRoutines_zero.cpp @@ -30,6 +30,9 @@ #ifdef TARGET_OS_FAMILY_linux # include "thread_linux.inline.hpp" @@ -3818,8 +3818,8 @@ #ifdef IA32 address StubRoutines::x86::_call_stub_compiled_return = NULL; ---- hotspot/src/cpu/zero/vm/vm_version_zero.cpp 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/cpu/zero/vm/vm_version_zero.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/cpu/zero/vm/vm_version_zero.cpp ++++ hotspot/src/cpu/zero/vm/vm_version_zero.cpp @@ -32,5 +32,8 @@ #ifdef TARGET_OS_FAMILY_linux # include "os_linux.inline.hpp" @@ -3829,8 +3829,8 @@ +#endif // This file is intentionally empty ---- hotspot/src/os/bsd/vm/attachListener_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/attachListener_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/attachListener_bsd.cpp ++++ hotspot/src/os/bsd/vm/attachListener_bsd.cpp @@ -170,53 +170,41 @@ // Initialization - create a listener socket and bind it to a file @@ -3954,8 +3954,8 @@ if (ret == 0) { // simple check to avoid starting the attach mechanism when // a bogus user creates the file ---- hotspot/src/os/bsd/vm/jsig.c 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jsig.c 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jsig.c ++++ hotspot/src/os/bsd/vm/jsig.c @@ -143,7 +143,8 @@ } @@ -3966,8 +3966,8 @@ } static int call_os_sigaction(int sig, const struct sigaction *act, ---- hotspot/src/os/bsd/vm/jvm_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jvm_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jvm_bsd.cpp ++++ hotspot/src/os/bsd/vm/jvm_bsd.cpp @@ -146,38 +146,31 @@ "ILL", SIGILL, /* Illegal instruction (ANSI). */ "TRAP", SIGTRAP, /* Trace trap (POSIX). */ @@ -4017,8 +4017,8 @@ }; JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name)) ---- hotspot/src/os/bsd/vm/jvm_bsd.h 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/jvm_bsd.h 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/jvm_bsd.h ++++ hotspot/src/os/bsd/vm/jvm_bsd.h @@ -54,7 +54,11 @@ #define AGENT_ONATTACH_SYMBOLS {"Agent_OnAttach"} @@ -4052,8 +4052,8 @@ #endif /* JVM_MD_H */ // Reconciliation History ---- hotspot/src/os/bsd/vm/osThread_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/osThread_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/osThread_bsd.cpp ++++ hotspot/src/os/bsd/vm/osThread_bsd.cpp @@ -43,8 +43,12 @@ void OSThread::pd_initialize() { @@ -4068,8 +4068,8 @@ _siginfo = NULL; _ucontext = NULL; _expanding_stack = 0; ---- hotspot/src/os/bsd/vm/osThread_bsd.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/osThread_bsd.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/osThread_bsd.hpp ++++ hotspot/src/os/bsd/vm/osThread_bsd.hpp @@ -39,6 +39,7 @@ private: @@ -4130,8 +4130,8 @@ pthread_t pthread_id() const { return _pthread_id; } ---- hotspot/src/os/bsd/vm/os_bsd.cpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.cpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.cpp ++++ hotspot/src/os/bsd/vm/os_bsd.cpp @@ -88,7 +88,6 @@ # include # include @@ -5661,8 +5661,8 @@ // execve failed _exit(-1); ---- hotspot/src/os/bsd/vm/os_bsd.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.hpp ++++ hotspot/src/os/bsd/vm/os_bsd.hpp @@ -30,6 +30,12 @@ /* pthread_getattr_np comes with BsdThreads-0.9-7 on RedHat 7.1 */ typedef int (*pthread_getattr_func_type) (pthread_t, pthread_attr_t *); @@ -5801,8 +5801,8 @@ // Stack repair handling ---- hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/bsd/vm/os_bsd.inline.hpp ++++ hotspot/src/os/bsd/vm/os_bsd.inline.hpp @@ -86,7 +86,15 @@ inline bool os::allocate_stack_guard_pages() { @@ -5837,8 +5837,8 @@ } inline struct dirent* os::readdir(DIR* dirp, dirent *dbuf) ---- hotspot/src/os/bsd/vm/vmError_bsd.cpp 2012-09-26 19:40:10.000000000 -0400 -+++ hotspot/src/os/bsd/vm/vmError_bsd.cpp 2012-09-26 19:43:30.000000000 -0400 +--- hotspot/src/os/bsd/vm/vmError_bsd.cpp ++++ hotspot/src/os/bsd/vm/vmError_bsd.cpp @@ -34,6 +34,12 @@ #include #include @@ -5870,8 +5870,8 @@ os::current_process_id(), os::current_process_id()); os::fork_and_exec(buf); ---- hotspot/src/os/posix/launcher/java_md.c 2012-05-01 17:15:07.000000000 -0400 -+++ hotspot/src/os/posix/launcher/java_md.c 2012-09-26 17:49:02.000000000 -0400 +--- hotspot/src/os/posix/launcher/java_md.c ++++ hotspot/src/os/posix/launcher/java_md.c @@ -41,14 +41,21 @@ #include "version_comp.h" #endif @@ -6067,16 +6067,16 @@ pthread_t tid; pthread_attr_t attr; pthread_attr_init(&attr); ---- hotspot/src/os/posix/launcher/launcher.script 2011-07-05 14:30:58.000000000 -0400 -+++ hotspot/src/os/posix/launcher/launcher.script 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os/posix/launcher/launcher.script ++++ hotspot/src/os/posix/launcher/launcher.script @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ---- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s 2012-05-01 17:15:08.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s 2012-09-18 13:13:53.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s ++++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_32.s @@ -21,6 +21,17 @@ # questions. # @@ -6317,8 +6317,8 @@ movl 4(%esp), %eax # src fildll (%eax) movl 8(%esp), %eax # dest ---- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s ++++ hotspot/src/os_cpu/bsd_x86/vm/bsd_x86_64.s @@ -21,6 +21,14 @@ # questions. # @@ -6466,8 +6466,8 @@ cmpq %rdi,%rsi leaq -8(%rdi,%rdx,8),%rax # from + count*8 - 8 jbe acl_CopyRight ---- hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/bytes_bsd_x86.inline.hpp @@ -25,7 +25,33 @@ #ifndef OS_CPU_BSD_X86_VM_BYTES_BSD_X86_INLINE_HPP #define OS_CPU_BSD_X86_VM_BYTES_BSD_X86_INLINE_HPP @@ -6502,8 +6502,8 @@ // Efficient swapping of data bytes from Java byte // ordering to native byte ordering and vice versa. ---- hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp 2011-07-07 19:15:59.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp 2011-07-07 19:17:02.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/globals_bsd_x86.hpp @@ -25,9 +25,10 @@ #ifndef OS_CPU_BSD_X86_VM_GLOBALS_BSD_X86_HPP #define OS_CPU_BSD_X86_VM_GLOBALS_BSD_X86_HPP @@ -6531,8 +6531,8 @@ // Only used on 64 bit Windows platforms define_pd_global(bool, UseVectoredExceptions, false); ---- hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp 2012-05-01 17:15:08.000000000 -0400 -+++ hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp 2012-09-18 18:21:03.000000000 -0400 +--- hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp ++++ hotspot/src/os_cpu/bsd_x86/vm/orderAccess_bsd_x86.inline.hpp @@ -93,7 +93,7 @@ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:04:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B6328F0; Tue, 9 Oct 2012 22:04:24 +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 6212E8FC19; Tue, 9 Oct 2012 22:04: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 q99M4OvN093910; Tue, 9 Oct 2012 22:04:24 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99M4OXj093903; Tue, 9 Oct 2012 22:04:24 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210092204.q99M4OXj093903@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 22:04:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305606 - in head: Mk multimedia/libva multimedia/libva/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:04:24 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:04:24 -0000 Author: madpilot Date: Tue Oct 9 22:04:23 2012 New Revision: 305606 URL: http://svn.freebsd.org/changeset/ports/305606 Log: - Update to 1.1.0 - Take maintainership - Strip Makefile headers - Patch software to install with correct ABI version number - Convert to new options framework - Remove ABI version number from LIB_DEPENDS - Add global option description Added: head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp (contents, props changed) Modified: head/Mk/bsd.options.desc.mk head/multimedia/libva/Makefile (contents, props changed) head/multimedia/libva/distinfo (contents, props changed) head/multimedia/libva/files/extra-patch-va-va_trace.c (contents, props changed) head/multimedia/libva/pkg-plist (contents, props changed) Modified: head/Mk/bsd.options.desc.mk ============================================================================== --- head/Mk/bsd.options.desc.mk Tue Oct 9 21:02:14 2012 (r305605) +++ head/Mk/bsd.options.desc.mk Tue Oct 9 22:04:23 2012 (r305606) @@ -287,6 +287,7 @@ SSE_DESC?= Use SSE optimized routines SSH_DESC?= SSH protocol SSL_DESC?= SSL protocol STATIC_DESC?= Build static executables/libraries +STRIP_DESC?= Strip binaries before installation SVG_DESC?= SVG vector image format SVGALIB_DESC?= SVGA graphics SVN_DESC?= Subversion support Modified: head/multimedia/libva/Makefile ============================================================================== --- head/multimedia/libva/Makefile Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva/Makefile Tue Oct 9 22:04:23 2012 (r305606) @@ -1,23 +1,18 @@ -# New ports collection makefile for: libva -# Date created: 5 Jan 2011 -# Whom: Anonymous -# # $FreeBSD$ -# PORTNAME= libva -PORTVERSION= 1.0.14 +PORTVERSION= 1.1.0 CATEGORIES= multimedia MASTER_SITES= http://cgit.freedesktop.org/${PORTNAME}/snapshot/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= madpilot@FreeBSD.org COMMENT= VAAPI wrapper and dummy driver LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat -LIB_DEPENDS= drm.2:${PORTSDIR}/graphics/libdrm +LIB_DEPENDS= drm:${PORTSDIR}/graphics/libdrm USE_BZIP2= yes USE_XORG= pciaccess xext xfixes @@ -33,7 +28,9 @@ LDFLAGS+= -L${LOCALBASE}/lib # prevent types conflict: videodev2.h vs. drm.h CFLAGS+= -DHAVE_LINUX_INTEGER_TYPES -.include +OPTIONS_DEFINE= DEBUG STRIP + +.include # add strnlen(3) from head/lib/libc/string/strnlen.c .if ${OSVERSION} < 800067 @@ -44,27 +41,31 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch- BROKEN= glXCreateContext fails during configure .endif -.if !defined(WITH_DEBUG) -CFLAGS+= -DNDEBUG -.else +.if ${PORT_OPTIONS:MDEBUG} CFLAGS+= -D_DEBUG +.else +CFLAGS+= -DNDEBUG .endif -.if defined(STRIP) && ${STRIP} != "" +.if {PORT_OPTIONS:MSTRIP} INSTALL_TARGET= install-strip .endif post-patch: .SILENT ${REINPLACE_CMD} -e 's|\($$libdir\)/dri|\1/va|' \ -e 's|$${libdir}/\(pkgconfig\)|$${prefix}/libdata/\1|' \ + -e 's/\(LIBVA_LT_CURRENT\)=libva_lt_current/\1=1/' \ + -e 's/\(LIBVA_LT_REV\)=libva_lt_revision/\1=3300/' \ + -e 's/\(LIBVA_LT_AGE\)=libva_lt_age/\1=0/' \ ${WRKSRC}/configure.ac - ${REINPLACE_CMD} 's/va\(info\)/\1/' \ + ${REINPLACE_CMD} -e 's/va\(info\)/\1/g' -e 's/info\.c/vainfo\.c/' \ ${WRKSRC}/test/vainfo/Makefile.am + ${REINPLACE_CMD} '/^export VA_HEADER_/d' \ + ${WRKSRC}/doc/Makefile.am ${REINPLACE_CMD} 's/-ldl//' ${WRKSRC}/va/Makefile.am post-configure: .SILENT ${REINPLACE_CMD} 's/-lpthread/${PTHREAD_LIBS}/' \ - ${WRKSRC}/i965_drv_video/Makefile \ ${WRKSRC}/test/putsurface/Makefile -.include +.include Modified: head/multimedia/libva/distinfo ============================================================================== --- head/multimedia/libva/distinfo Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva/distinfo Tue Oct 9 22:04:23 2012 (r305606) @@ -1,2 +1,2 @@ -SHA256 (libva-1.0.14.tar.bz2) = b15ab93b549651a07664ced831b20e559e0f7edabb57169af8049b3e761ea764 -SIZE (libva-1.0.14.tar.bz2) = 769706 +SHA256 (libva-1.1.0.tar.bz2) = 4505200f7fdf862c832448662b7c14133ff984313e7d4f2530f7184bb3821353 +SIZE (libva-1.1.0.tar.bz2) = 539195 Modified: head/multimedia/libva/files/extra-patch-va-va_trace.c ============================================================================== --- head/multimedia/libva/files/extra-patch-va-va_trace.c Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva/files/extra-patch-va-va_trace.c Tue Oct 9 22:04:23 2012 (r305606) @@ -1,6 +1,6 @@ ---- va/va_trace.c~ -+++ va/va_trace.c -@@ -140,6 +140,17 @@ VAStatus vaUnlockSurface(VADisplay dpy, +--- va/va_trace.c.orig 2012-10-04 15:30:51.000000000 +0200 ++++ va/va_trace.c 2012-10-09 23:12:35.888197737 +0200 +@@ -137,6 +137,18 @@ VASurfaceID surface ); @@ -15,6 +15,7 @@ + } + return (len); +} - - void va_TraceInit(VADisplay dpy) - { ++ + #define FILE_NAME_SUFFIX(env_value) \ + do { \ + int tmp = strnlen(env_value, sizeof(env_value)); \ Added: head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp Tue Oct 9 22:04:23 2012 (r305606) @@ -0,0 +1,30 @@ +--- test/v4l_h264/encode/capture.cpp.orig 2012-10-04 15:30:51.000000000 +0200 ++++ test/v4l_h264/encode/capture.cpp 2012-10-08 22:31:01.067189237 +0200 +@@ -37,7 +37,11 @@ + #include /* low-level i/o */ + #include + #include ++#ifdef __FreeBSD__ ++#include ++#else + #include ++#endif + #include + #include + #include +@@ -451,10 +455,15 @@ + } + for (n_buffers = 0; n_buffers < 4; ++n_buffers) { + buffers[n_buffers].length = buffer_size; ++#ifdef __FreeBSD__ ++ if(posix_memalign(&buffers[n_buffers].start, page_size, buffer_size)) ++ { ++#else + buffers[n_buffers].start = memalign (/* boundary */ page_size, + buffer_size); + + if (!buffers[n_buffers].start) { ++#endif + std::cerr << "Out of memory\n"; + exit (EXIT_FAILURE); + } Modified: head/multimedia/libva/pkg-plist ============================================================================== --- head/multimedia/libva/pkg-plist Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva/pkg-plist Tue Oct 9 22:04:23 2012 (r305606) @@ -1,25 +1,25 @@ bin/vaavcenc bin/vah264encode bin/vainfo +bin/valoadjpeg bin/vampeg2vldemo bin/vaputsurface include/va/va.h include/va/va_backend.h -include/va/va_backend_egl.h include/va/va_backend_glx.h include/va/va_backend_tpi.h -include/va/va_dri.h +include/va/va_dec_jpeg.h include/va/va_dri2.h include/va/va_dricommon.h -include/va/va_dummy.h -include/va/va_egl.h +include/va/va_drm.h +include/va/va_drmcommon.h include/va/va_glx.h include/va/va_tpi.h include/va/va_version.h include/va/va_x11.h -lib/libva-egl.la -lib/libva-egl.so -lib/libva-egl.so.1 +lib/libva-drm.la +lib/libva-drm.so +lib/libva-drm.so.1 lib/libva-glx.la lib/libva-glx.so lib/libva-glx.so.1 @@ -34,7 +34,7 @@ lib/libva.so lib/libva.so.1 lib/va/dummy_drv_video.la lib/va/dummy_drv_video.so -libdata/pkgconfig/libva-egl.pc +libdata/pkgconfig/libva-drm.pc libdata/pkgconfig/libva-glx.pc libdata/pkgconfig/libva-tpi.pc libdata/pkgconfig/libva-x11.pc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:05:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23CE8968; Tue, 9 Oct 2012 22:05:58 +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 0306C8FC1A; Tue, 9 Oct 2012 22:05: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 q99M5vkX094278; Tue, 9 Oct 2012 22:05:57 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99M5vYS094272; Tue, 9 Oct 2012 22:05:57 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210092205.q99M5vYS094272@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 22:05:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305607 - in head: . multimedia multimedia/libva-vdpau-driver multimedia/vdpau-video X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:05:58 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:05:58 -0000 Author: madpilot Date: Tue Oct 9 22:05:57 2012 New Revision: 305607 URL: http://svn.freebsd.org/changeset/ports/305607 Log: - Move vdpau-video to libva-vdpau-driver to follow upstream project name change - Update to 0.7.4 - Take maintainership - Update master site - Undeprecate - Remove ABI version number from LIB_DEPENDS - Convert to new options framework - Add note in UPDATING about the move Added: head/multimedia/libva-vdpau-driver/ - copied from r305605, head/multimedia/vdpau-video/ Deleted: head/multimedia/vdpau-video/ Modified: head/MOVED head/UPDATING head/multimedia/Makefile head/multimedia/libva-vdpau-driver/Makefile (contents, props changed) head/multimedia/libva-vdpau-driver/distinfo (contents, props changed) Modified: head/MOVED ============================================================================== --- head/MOVED Tue Oct 9 22:04:23 2012 (r305606) +++ head/MOVED Tue Oct 9 22:05:57 2012 (r305607) @@ -3716,3 +3716,4 @@ textproc/aspell-without-dicten|textproc/ www/jakarta-jmeter|www/jmeter|2012-09-25|Former Jakarta projects now live on their own www/smarty|www/smarty2|2012-09-26|Renamed to prepare for addition of Smarty 3.x to the tree devel/p5-Devel-Mallinfo||2012-10-08|Has expired: Does not work on FreeBSD, mallinfo() is a GNU libc function and is not available on FreeBSD +multimedia/vdpau-video|multimedia/libva-vdpau-driver|2012-10-09|Project renamed Modified: head/UPDATING ============================================================================== --- head/UPDATING Tue Oct 9 22:04:23 2012 (r305606) +++ head/UPDATING Tue Oct 9 22:05:57 2012 (r305607) @@ -5,6 +5,21 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20121009: + AFFECTS: users of multimedia/vdpau-video + AUTHOR: madpilot@FreeBSD.org + + vdpau-video has been renamed upstream to libva-vdpau-driver. The + port has been changed accordingly. + + Please update the port origins as follows: + + # portmaster -o multimedia/vdpau-video multimedia/libva-vdpau-driver + or + # portupgrade -fo multimedia/vdpau-video multimedia/libva-vdpau-driver + or + # pkg set -o multimedia/vdpau-video:multimedia/libva-vdpau-driver + 20121008: AFFECTS: users of mail/squirrelmail AUTHOR: adamw@FreeBSD.org Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Tue Oct 9 22:04:23 2012 (r305606) +++ head/multimedia/Makefile Tue Oct 9 22:05:57 2012 (r305607) @@ -168,6 +168,7 @@ SUBDIR += libtuner SUBDIR += libv4l SUBDIR += libva + SUBDIR += libva-vdpau-driver SUBDIR += libvdpau SUBDIR += libvpx SUBDIR += libxine @@ -330,7 +331,6 @@ SUBDIR += vcdimager SUBDIR += vcdpad SUBDIR += vcdtools - SUBDIR += vdpau-video SUBDIR += vdpauinfo SUBDIR += vdr SUBDIR += vdr-plugin-control Modified: head/multimedia/libva-vdpau-driver/Makefile ============================================================================== --- head/multimedia/vdpau-video/Makefile Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva-vdpau-driver/Makefile Tue Oct 9 22:05:57 2012 (r305607) @@ -1,29 +1,22 @@ -# New ports collection makefile for: vdpau-video -# Date created: 5 Jan 2011 -# Whom: Anonymous -# # $FreeBSD$ -# -PORTNAME= vdpau-video -DISTVERSION= 0.7.3 +PORTNAME= libva-vdpau-driver +PORTVERSION= 0.7.4 CATEGORIES= multimedia -MASTER_SITES= http://www.splitted-desktop.com/~gbeauchesne/${PORTNAME}/ +MASTER_SITES= http://www.freedesktop.org/software/vaapi/releases/${PORTNAME}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= madpilot@FreeBSD.org COMMENT= A VDPAU-based backend for VAAPI -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 - LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -LIB_DEPENDS= vdpau.1:${PORTSDIR}/multimedia/libvdpau +LIB_DEPENDS= vdpau:${PORTSDIR}/multimedia/libvdpau BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/libva.pc:${PORTSDIR}/multimedia/libva \ ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING +USE_BZIP2= yes USE_GMAKE= yes USE_GL= gl @@ -31,13 +24,15 @@ GNU_CONFIGURE= yes CPPFLAGS+= -isystem${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -.include +OPTIONS_DEFINE= DEBUG STRIP + +.include -.if !defined(WITH_DEBUG) +.if empty(PORT_OPTIONS:MDEBUG) CONFIGURE_ARGS+= --disable-debug .endif -.if defined(STRIP) && ${STRIP} != "" +.if ${PORT_OPTIONS:MSTRIP} INSTALL_TARGET= install-strip .endif @@ -48,4 +43,4 @@ post-patch: .SILENT -e '/\^vdpau_version/s|$$CC -E|& ${CPPFLAGS}|' \ ${WRKSRC}/configure -.include +.include Modified: head/multimedia/libva-vdpau-driver/distinfo ============================================================================== --- head/multimedia/vdpau-video/distinfo Tue Oct 9 21:02:14 2012 (r305605) +++ head/multimedia/libva-vdpau-driver/distinfo Tue Oct 9 22:05:57 2012 (r305607) @@ -1,2 +1,2 @@ -SHA256 (vdpau-video-0.7.3.tar.gz) = 28f66adc7d87a513a765dd79fda469e895b76692173d2aa79a26f4a618f91266 -SIZE (vdpau-video-0.7.3.tar.gz) = 400121 +SHA256 (libva-vdpau-driver-0.7.4.tar.bz2) = 155c1982f0ac3f5435ba20b221bcaa11be212c37db548cd1f2a030ffa17e9bb9 +SIZE (libva-vdpau-driver-0.7.4.tar.bz2) = 316729 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:06:39 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2380999F; Tue, 9 Oct 2012 22:06:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0C7568FC08; Tue, 9 Oct 2012 22:06: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 q99M6cib094454; Tue, 9 Oct 2012 22:06:38 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99M6c8j094452; Tue, 9 Oct 2012 22:06:38 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210092206.q99M6c8j094452@svn.freebsd.org> From: Mark Linimon Date: Tue, 9 Oct 2012 22:06:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305608 - head/audio/akode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:06:39 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:06:39 -0000 Author: linimon Date: Tue Oct 9 22:06:38 2012 New Revision: 305608 URL: http://svn.freebsd.org/changeset/ports/305608 Log: Force numerous ports that fail to build with clang over to instead always rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to accomplish this. The ports chosen were ports that blocked 2 or more ports from building with clang. (There are several hundred other ports that still fail to build with clang, even with this patch. This is merely one step along the way.) Those interested in fixing these ports with clang, and have clang as their default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes. For those who have gcc as their default compiler, this change is believed to cause no change. Hat: portmgr Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various combinations of patch/no-patch and flag settings. Modified: head/audio/akode/Makefile Modified: head/audio/akode/Makefile ============================================================================== --- head/audio/akode/Makefile Tue Oct 9 22:05:57 2012 (r305607) +++ head/audio/akode/Makefile Tue Oct 9 22:06:38 2012 (r305608) @@ -32,6 +32,7 @@ OPTIONS= FFMPEG "FFMPEG decoder plugin" USE_AUTOTOOLS= libltdl libtool USE_BZIP2= yes +USE_GCC= any USE_GMAKE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_LDCONFIG= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:19:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0155E5A; Tue, 9 Oct 2012 22:19:55 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 999818FC14; Tue, 9 Oct 2012 22:19: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 q99MJtIu097975; Tue, 9 Oct 2012 22:19:55 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MJt4Q097972; Tue, 9 Oct 2012 22:19:55 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210092219.q99MJt4Q097972@svn.freebsd.org> From: Ryan Steinmetz Date: Tue, 9 Oct 2012 22:19:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305611 - head/security/stunnel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:19:55 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:19:55 -0000 Author: zi Date: Tue Oct 9 22:19:55 2012 New Revision: 305611 URL: http://svn.freebsd.org/changeset/ports/305611 Log: - Update to 4.54 Modified: head/security/stunnel/Makefile head/security/stunnel/distinfo Modified: head/security/stunnel/Makefile ============================================================================== --- head/security/stunnel/Makefile Tue Oct 9 22:12:13 2012 (r305610) +++ head/security/stunnel/Makefile Tue Oct 9 22:19:55 2012 (r305611) @@ -6,7 +6,7 @@ # PORTNAME= stunnel -PORTVERSION= 4.53 +PORTVERSION= 4.54 CATEGORIES= security MASTER_SITES= ftp://ftp.stunnel.org/stunnel/%SUBDIR%/ \ http://mirrors.zerg.biz/stunnel/%SUBDIR%/ \ Modified: head/security/stunnel/distinfo ============================================================================== --- head/security/stunnel/distinfo Tue Oct 9 22:12:13 2012 (r305610) +++ head/security/stunnel/distinfo Tue Oct 9 22:19:55 2012 (r305611) @@ -1,2 +1,2 @@ -SHA256 (stunnel-4.53.tar.gz) = 3e640aa4c96861d10addba758b66e99e7c5aec8697764f2a59ca2268901b8e57 -SIZE (stunnel-4.53.tar.gz) = 529720 +SHA256 (stunnel-4.54.tar.gz) = b7e1b9e63569574dbdabee8af90b8ab88db3fe13dcb1268d59a1408c56e6de7b +SIZE (stunnel-4.54.tar.gz) = 535202 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:24:39 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 057A5EEF; Tue, 9 Oct 2012 22:24:39 +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 E21B98FC0A; Tue, 9 Oct 2012 22:24:38 +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 q99MOcOW098685; Tue, 9 Oct 2012 22:24:38 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MOc24098683; Tue, 9 Oct 2012 22:24:38 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210092224.q99MOc24098683@svn.freebsd.org> From: Guido Falsi Date: Tue, 9 Oct 2012 22:24:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305612 - head/multimedia/libva-vdpau-driver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:24:39 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:24:39 -0000 Author: madpilot Date: Tue Oct 9 22:24:38 2012 New Revision: 305612 URL: http://svn.freebsd.org/changeset/ports/305612 Log: Update Home Page. Noticed by: kwm Modified: head/multimedia/libva-vdpau-driver/pkg-descr (contents, props changed) Modified: head/multimedia/libva-vdpau-driver/pkg-descr ============================================================================== --- head/multimedia/libva-vdpau-driver/pkg-descr Tue Oct 9 22:19:55 2012 (r305611) +++ head/multimedia/libva-vdpau-driver/pkg-descr Tue Oct 9 22:24:38 2012 (r305612) @@ -1,3 +1,3 @@ A VDPAU-based backend for VAAPI. -WWW: http://www.splitted-desktop.com/~gbeauchesne/ +WWW: http://cgit.freedesktop.org/vaapi/vdpau-driver/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:24:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FDECF19; Tue, 9 Oct 2012 22:24:55 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2039F8FC08; Tue, 9 Oct 2012 22:24: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 q99MOsC0098778; Tue, 9 Oct 2012 22:24:54 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MOsvI098775; Tue, 9 Oct 2012 22:24:54 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210092224.q99MOsvI098775@svn.freebsd.org> From: Ryan Steinmetz Date: Tue, 9 Oct 2012 22:24:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305613 - head/multimedia/xmms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:24:55 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:24:55 -0000 Author: zi Date: Tue Oct 9 22:24:54 2012 New Revision: 305613 URL: http://svn.freebsd.org/changeset/ports/305613 Log: - Resolve issue on amd64 [1] - Pacify portlint PR: ports/171919 [1] Submitted by: Tomasz CEDRO Approved by: Chris Petrik (maintainer) Modified: head/multimedia/xmms/Makefile Modified: head/multimedia/xmms/Makefile ============================================================================== --- head/multimedia/xmms/Makefile Tue Oct 9 22:24:38 2012 (r305612) +++ head/multimedia/xmms/Makefile Tue Oct 9 22:24:54 2012 (r305613) @@ -41,11 +41,11 @@ VISUALIZATION_PLUGINS= blur_scope sanaly OPTIONS_DEFINE= IPV6 MIKMOD SIMD SPEC VFILEINFO VORBIS RUSXMMS_PATCHES OPTIONS_DEFAULT= IPV6 MIKMOD SIMD VORBIS +OPTIONS_EXCLUDE_amd64= SIMD SPEC_DESC= Visualization opengl_spectrum VFILEINFO_DESC= Enable Extended Vorbis Fileinfo RUSXMMS_PATCHES_DESC= Custom IDv3 patches - .include .if ${PORT_OPTIONS:MIPV6} @@ -60,8 +60,8 @@ DISTFILES+= RusXMMS2-csa${ENC_PATCHLEVEL MASTER_SITES+= SF/rusxmms/rusxmms2/csa41%20%28${PORTVERSION}%29:enc MASTER_SITE_SUBDIR+= rusxmms/:enc -LIB_DEPENDS+= rcc.2:${PORTSDIR}/devel/librcc -LIB_DEPENDS+= rcd.1:${PORTSDIR}/devel/librcd +LIB_DEPENDS+= rcc:${PORTSDIR}/devel/librcc +LIB_DEPENDS+= rcd:${PORTSDIR}/devel/librcd .endif .if ${PORT_OPTIONS:MVFILEINFO} @@ -69,7 +69,7 @@ CFLAGS+= -DALL_VORBIS_TAGS .endif .if ${PORT_OPTIONS:MMIKMOD} -LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod +LIB_DEPENDS+= mikmod:${PORTSDIR}/audio/libmikmod INPUT_PLUGINS+= mikmod PLIST_SUB+= MIKMODPLUGIN:="" .else @@ -78,7 +78,7 @@ PLIST_SUB+= MIKMODPLUGIN:="@comment " .endif .if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis +LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis INPUT_PLUGINS+= vorbis PLIST_SUB+= VORBISPLUGIN:="" .else @@ -95,10 +95,6 @@ CONFIGURE_ARGS+= --disable-esd PLIST_SUB+= ESDPLUGIN:="@comment " .endif -.if ${ARCH} != "i386" -${UNIQUENAME}_UNSET+= SIMD -.endif - .if ${PORT_OPTIONS:MSIMD} CONFIGURE_ARGS+= --enable-simd .else From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:31:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D354A44A; Tue, 9 Oct 2012 22:31:09 +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 A3C578FC24; Tue, 9 Oct 2012 22:31:09 +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 q99MV99Z099763; Tue, 9 Oct 2012 22:31:09 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MV9fO099759; Tue, 9 Oct 2012 22:31:09 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201210092231.q99MV9fO099759@svn.freebsd.org> From: Max Brazhnikov Date: Tue, 9 Oct 2012 22:31:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305614 - head/print/kpdftool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:31:09 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:31:09 -0000 Author: makc Date: Tue Oct 9 22:31:09 2012 New Revision: 305614 URL: http://svn.freebsd.org/changeset/ports/305614 Log: Remove kde from CATEGORIES - the port doesn't depend on KDE Amend desktop file, COMMENT and description Trim Makefile header Take maintainership Modified: head/print/kpdftool/Makefile (contents, props changed) head/print/kpdftool/pkg-descr (contents, props changed) Modified: head/print/kpdftool/Makefile ============================================================================== --- head/print/kpdftool/Makefile Tue Oct 9 22:24:54 2012 (r305613) +++ head/print/kpdftool/Makefile Tue Oct 9 22:31:09 2012 (r305614) @@ -1,18 +1,15 @@ -# New ports collection makefile for: kpdftool -# Date created: 04 May 2006 -# Whom: Yuan, Jue +# Created by: Yuan, Jue # $FreeBSD$ -# PORTNAME= kpdftool PORTVERSION= 0.23.1 -PORTREVISION= 1 -CATEGORIES= print kde +PORTREVISION= 2 +CATEGORIES= print MASTER_SITES= http://www.kde-apps.org/CONTENT/content-files/ DISTFILES= 33194-${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Tool to ease your PDF related work +MAINTAINER= makc@FreeBSD.org +COMMENT= Simple utility to manipulate PS and PDF files RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick @@ -22,7 +19,7 @@ USE_GHOSTSCRIPT_RUN= yes MAKE_JOBS_SAFE= yes DESKTOP_ENTRIES= "KPDFTool" "${COMMENT}" "kpdftool" \ - "kpdftool" "" false + "kpdftool" "Application;Qt;Utility;" false do-configure: cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ Modified: head/print/kpdftool/pkg-descr ============================================================================== --- head/print/kpdftool/pkg-descr Tue Oct 9 22:24:54 2012 (r305613) +++ head/print/kpdftool/pkg-descr Tue Oct 9 22:31:09 2012 (r305614) @@ -1,7 +1,6 @@ -KPDFTool is a GUI interface for GhostView/KGhostview and -ImageMagick to perform basic and useful operations -with PDF and PS (PostScript) files such as merging or -extracting pages, as well as protecting the text from -copying into new files in a simple and practical way. +KPDFTool is a Qt based frontend for GhostView and ImageMagick to +perform basic operations with PDF and PS (PostScript) files such +as merging or extracting pages, as well as protecting the text +from copying. WWW: http://www.kde-apps.org/content/show.php?content=33194 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:32:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 257A1598; Tue, 9 Oct 2012 22:32:59 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0F1F48FC18; Tue, 9 Oct 2012 22:32:59 +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 q99MWwoF000104; Tue, 9 Oct 2012 22:32:58 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99MWwvJ000102; Tue, 9 Oct 2012 22:32:58 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210092232.q99MWwvJ000102@svn.freebsd.org> From: Ryan Steinmetz Date: Tue, 9 Oct 2012 22:32:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305615 - head/russian/xmms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:32:59 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:32:59 -0000 Author: zi Date: Tue Oct 9 22:32:58 2012 New Revision: 305615 URL: http://svn.freebsd.org/changeset/ports/305615 Log: - Reset maintainer to Chris Petrik, who is active and the current maintainer of multimedia/xmms. Approved by: maintainer timeout (4+ years) Modified: head/russian/xmms/Makefile Modified: head/russian/xmms/Makefile ============================================================================== --- head/russian/xmms/Makefile Tue Oct 9 22:31:09 2012 (r305614) +++ head/russian/xmms/Makefile Tue Oct 9 22:32:58 2012 (r305615) @@ -8,7 +8,7 @@ PORTNAME= xmms CATEGORIES= russian -MAINTAINER= be9-ml@be9.ru +MAINTAINER= c.petrik.sosa@gmail.com COMMENT= RusXMMS - X Multimedia System with Russian encoding patch MASTERDIR= ${.CURDIR}/../../multimedia/xmms From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:38:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D3A24A82; Tue, 9 Oct 2012 22:38:05 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BC8628FC1D; Tue, 9 Oct 2012 22:38:05 +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 q99Mc5aX000888; Tue, 9 Oct 2012 22:38:05 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Mc5sX000885; Tue, 9 Oct 2012 22:38:05 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210092238.q99Mc5sX000885@svn.freebsd.org> From: Ryan Steinmetz Date: Tue, 9 Oct 2012 22:38:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305616 - head/devel/uthash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:38:05 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:38:05 -0000 Author: zi Date: Tue Oct 9 22:38:05 2012 New Revision: 305616 URL: http://svn.freebsd.org/changeset/ports/305616 Log: - Update to 1.9.7 Modified: head/devel/uthash/Makefile head/devel/uthash/distinfo Modified: head/devel/uthash/Makefile ============================================================================== --- head/devel/uthash/Makefile Tue Oct 9 22:32:58 2012 (r305615) +++ head/devel/uthash/Makefile Tue Oct 9 22:38:05 2012 (r305616) @@ -6,7 +6,7 @@ # PORTNAME= uthash -PORTVERSION= 1.9.6 +PORTVERSION= 1.9.7 CATEGORIES= devel MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} Modified: head/devel/uthash/distinfo ============================================================================== --- head/devel/uthash/distinfo Tue Oct 9 22:32:58 2012 (r305615) +++ head/devel/uthash/distinfo Tue Oct 9 22:38:05 2012 (r305616) @@ -1,2 +1,2 @@ -SHA256 (uthash-1.9.6.tar.bz2) = 16676465919c14eb8f0207f884e6efc95fbc60d2a990737f390a237a7ebe60f3 -SIZE (uthash-1.9.6.tar.bz2) = 362435 +SHA256 (uthash-1.9.7.tar.bz2) = 956f5c99798349c413275fe4c9ff128d72e280655dadbe4365f8e9fbda91393f +SIZE (uthash-1.9.7.tar.bz2) = 373059 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:38:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10028BF9; Tue, 9 Oct 2012 22:38:57 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EC5B58FC12; Tue, 9 Oct 2012 22:38:56 +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 q99Mcumw001062; Tue, 9 Oct 2012 22:38:56 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99McuTD001059; Tue, 9 Oct 2012 22:38:56 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210092238.q99McuTD001059@svn.freebsd.org> From: Mark Linimon Date: Tue, 9 Oct 2012 22:38:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305617 - head/devel/ncurses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:38:57 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:38:57 -0000 Author: linimon Date: Tue Oct 9 22:38:56 2012 New Revision: 305617 URL: http://svn.freebsd.org/changeset/ports/305617 Log: Back out USE_GCC=any. I failed to notice that the build had been fixed with clang while my tests were still running. Hat: portmgr Modified: head/devel/ncurses/Makefile Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Tue Oct 9 22:38:05 2012 (r305616) +++ head/devel/ncurses/Makefile Tue Oct 9 22:38:56 2012 (r305617) @@ -37,7 +37,6 @@ OPTIONS= EXTCOLORS "Enable 256-color sup CONFIGURE_ENV= gnat_exists="no" -USE_GCC= any USE_LDCONFIG= yes WIDEC_WRKSRC= ${WRKSRC}/build.widec From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 22:43:06 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6159DF9E; Tue, 9 Oct 2012 22:43:06 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4B0A88FC08; Tue, 9 Oct 2012 22:43:06 +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 q99Mh67Q001708; Tue, 9 Oct 2012 22:43:06 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Mh6Ik001706; Tue, 9 Oct 2012 22:43:06 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201210092243.q99Mh6Ik001706@svn.freebsd.org> From: Mark Linimon Date: Tue, 9 Oct 2012 22:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305618 - head/multimedia/x264 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:43:06 -0000 X-List-Received-Date: Tue, 09 Oct 2012 22:43:06 -0000 Author: linimon Date: Tue Oct 9 22:43:05 2012 New Revision: 305618 URL: http://svn.freebsd.org/changeset/ports/305618 Log: Attempt to force this port to build only with gcc. It is known to be broken on clang. However, setting USE_GCC=any appears to be insufficient: the too-clever configure glop sees that clang is installed and attempts to use it regardless. This commit is thus a temporary measure. Hat: portmgr Modified: head/multimedia/x264/Makefile Modified: head/multimedia/x264/Makefile ============================================================================== --- head/multimedia/x264/Makefile Tue Oct 9 22:38:56 2012 (r305617) +++ head/multimedia/x264/Makefile Tue Oct 9 22:43:05 2012 (r305618) @@ -31,6 +31,7 @@ X264_GITVER= ${X264_COMMIT:C/^(.......). X264_SNAPSHOT= 20120721 USE_BZIP2= yes +USE_GCC= any WRKSRC= ${WRKDIR}/${DISTNAME} USE_GMAKE= yes USE_LDCONFIG= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:02:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F218329E; Tue, 9 Oct 2012 23:02:10 +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 DAC0F8FC12; Tue, 9 Oct 2012 23:02: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 q99N2AUg004522; Tue, 9 Oct 2012 23:02:10 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99N2AZd004517; Tue, 9 Oct 2012 23:02:10 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201210092302.q99N2AZd004517@svn.freebsd.org> From: Max Brazhnikov Date: Tue, 9 Oct 2012 23:02:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305619 - in head/net-im/psi: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:02:11 -0000 X-List-Received-Date: Tue, 09 Oct 2012 23:02:11 -0000 Author: makc Date: Tue Oct 9 23:02:10 2012 New Revision: 305619 URL: http://svn.freebsd.org/changeset/ports/305619 Log: Update to 0.15 make D-Bus support optional [1] Respect CC, CFLAGS via QMAKEFLAGS PR: ports/172406 [1] Submitted by: amdmi3 Modified: head/net-im/psi/Makefile head/net-im/psi/distinfo (contents, props changed) head/net-im/psi/files/patch-configure (contents, props changed) Modified: head/net-im/psi/Makefile ============================================================================== --- head/net-im/psi/Makefile Tue Oct 9 22:43:05 2012 (r305618) +++ head/net-im/psi/Makefile Tue Oct 9 23:02:10 2012 (r305619) @@ -1,13 +1,8 @@ -# New ports collection makefile for: psi -# Date created: Wed May 1 20:27:23 NZST 2002 -# Whom: jonc@chen.org.nz -# +# Created by: Jonathan Chen # $FreeBSD$ -# PORTNAME= psi -PORTVERSION= 0.14 -PORTREVISION= 3 +PORTVERSION= 0.15 CATEGORIES= net-im MASTER_SITES= SF/${PORTNAME}/Psi/${PORTVERSION} @@ -19,19 +14,20 @@ RUN_DEPENDS= qca-ossl>=2.0.0.b3:${PORTSD qca-gnupg>=2.0.0.b3:${PORTSDIR}/security/qca-gnupg HAS_CONFIGURE= yes +QT_NONSTANDARD= yes USE_BZIP2= yes -USE_QT4= corelib dbus gui iconengines imageformats qt3support \ - inputmethods network script svg xml \ +USE_PKGCONFIG= build +USE_QT4= gui network xml imageformats_run \ qmake_build moc_build rcc_build uic_build +USE_XORG= xscrnsaver CONFIGURE_ARGS= --prefix=${PREFIX} --qtdir=${LOCALBASE} \ - --disable-growl --disable-bundled-qca \ - --verbose + --disable-growl --verbose +CONFIGURE_ENV= QMAKEFLAGS='${QMAKEFLAGS}' +MAKE_JOBS_SAFE= yes -MAKE_JOBS_UNSAFE= yes - -OPTIONS_DEFINE= ASPELL ENCHANT -OPTIONS_DEFAULT= ASPELL +OPTIONS_DEFINE= ASPELL ENCHANT DBUS +OPTIONS_DEFAULT= ASPELL DBUS ASPELL_DESC= Use aspell for spell checking ENCHANT_DESC= Use Enchant for spell checking @@ -46,6 +42,12 @@ CONFIGURE_ARGS+= --release --no-separat PLIST_SUB+= DEBUG="@comment " .endif +.if ${PORT_OPTIONS:MDBUS} +USE_QT4+= dbus +.else +CONFIGURE_ARGS+= --disable-qdbus +.endif + .if ${PORT_OPTIONS:MASPELL} LIB_DEPENDS+= aspell.16:${PORTSDIR}/textproc/aspell CONFIGURE_ARGS+= --with-aspell-inc=${LOCALBASE}/include \ Modified: head/net-im/psi/distinfo ============================================================================== --- head/net-im/psi/distinfo Tue Oct 9 22:43:05 2012 (r305618) +++ head/net-im/psi/distinfo Tue Oct 9 23:02:10 2012 (r305619) @@ -1,2 +1,2 @@ -SHA256 (psi-0.14.tar.bz2) = aa014a20d59beb23ce2e853fac3d1d70b4b029591627ae0f0a6a3b9f7150a4c0 -SIZE (psi-0.14.tar.bz2) = 2168801 +SHA256 (psi-0.15.tar.bz2) = 593b5ddd7934af69c245afb0e7290047fd7dedcfd8765baca5a3a024c569c7e6 +SIZE (psi-0.15.tar.bz2) = 1984777 Modified: head/net-im/psi/files/patch-configure ============================================================================== --- head/net-im/psi/files/patch-configure Tue Oct 9 22:43:05 2012 (r305618) +++ head/net-im/psi/files/patch-configure Tue Oct 9 23:02:10 2012 (r305619) @@ -1,11 +1,28 @@ ---- configure.orig Sun Jan 8 05:19:01 2006 -+++ configure Sat Feb 4 14:06:18 2006 -@@ -192,6 +192,8 @@ - shift - ;; - --help) show_usage; exit ;; -+ --with-*) -+ shift ;; - *) show_usage; exit ;; - esac - done +--- ./configure.orig 2012-10-04 00:53:03.000000000 +0000 ++++ ./configure 2012-10-06 22:30:21.900714143 +0000 +@@ -100,7 +100,7 @@ + # find a make command + if [ -z "$MAKE" ]; then + MAKE= +- for mk in gmake make; do ++ for mk in make gmake; do + if $WHICH $mk >/dev/null 2>&1; then + MAKE=`$WHICH $mk` + break +@@ -2186,7 +2186,7 @@ + QDir::setCurrent(dir.path()); + + bool ok = false; +- int r = doCommand(qmake_path, QStringList() << "atest.pro"); ++ int r = doCommand(qmake_path, QStringList() << qc_getenv("QMAKEFLAGS") << "atest.pro"); + if(r == 0) + { + r = doCommand(maketool, QStringList()); +@@ -2587,6 +2587,7 @@ + args += "-spec"; + args += qmakespec; + } ++ args += qc_getenv("QMAKEFLAGS"); + args += proPath; + int ret = qc_runprogram(qmake_path, args, 0, true); + if(ret != 0) From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:16:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7135863D; Tue, 9 Oct 2012 23:16:13 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 599E28FC0C; Tue, 9 Oct 2012 23:16: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 q99NGDUq006426; Tue, 9 Oct 2012 23:16:13 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99NGD8h006420; Tue, 9 Oct 2012 23:16:13 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201210092316.q99NGD8h006420@svn.freebsd.org> From: Jason Helfman Date: Tue, 9 Oct 2012 23:16:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305620 - in head/games: . barbie_seahorse_adventures barbie_seahorse_adventures/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:16:13 -0000 X-List-Received-Date: Tue, 09 Oct 2012 23:16:13 -0000 Author: jgh Date: Tue Oct 9 23:16:12 2012 New Revision: 305620 URL: http://svn.freebsd.org/changeset/ports/305620 Log: - add new port: games/barbie_seahorse_adventures You are a seahorse and you want to go to the moon! WWW: http://www.imitationpickles.org/barbie/ PR: 167854 Submitted by: nemysis@gmx.ch Added: head/games/barbie_seahorse_adventures/ head/games/barbie_seahorse_adventures/Makefile (contents, props changed) head/games/barbie_seahorse_adventures/distinfo (contents, props changed) head/games/barbie_seahorse_adventures/files/ head/games/barbie_seahorse_adventures/files/barbie_seahorse_adventures.in (contents, props changed) head/games/barbie_seahorse_adventures/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Tue Oct 9 23:02:10 2012 (r305619) +++ head/games/Makefile Tue Oct 9 23:16:12 2012 (r305620) @@ -64,6 +64,7 @@ SUBDIR += balazar SUBDIR += balazarbrothers SUBDIR += banihstypos + SUBDIR += barbie_seahorse_adventures SUBDIR += barrage SUBDIR += bass SUBDIR += bastet Added: head/games/barbie_seahorse_adventures/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/barbie_seahorse_adventures/Makefile Tue Oct 9 23:16:12 2012 (r305620) @@ -0,0 +1,58 @@ +# Created by: nemysis@gmx.ch +# +# $FreeBSD$ +# + +PORTNAME= barbie_seahorse_adventures +PORTVERSION= 1.0 +CATEGORIES= games python +MASTER_SITES= http://www.imitationpickles.org/barbie/files/ \ + SF/nemysisfreebsdp/:icons +DISTFILES= barbie-${DISTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}.png:icons +DIST_SUBDIR= python +EXTRACT_ONLY= barbie-${DISTVERSION}${EXTRACT_SUFX} + +MAINTAINER= nemysis@gmx.ch +COMMENT= You are a seahorse and you want to go to the moon! + +LICENSE= GPLv2 + +RUN_DEPENDS= ${PYGAME} + +WRKSRC= ${WRKDIR}/barbie-${DISTVERSION} + +USE_PYTHON= yes +NO_BUILD= yes + +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.png + +PORTDATA= * +PORTDOCS= CHANGES.txt LEVELS.txt NOTES.txt README.txt TODO.txt + +SUB_FILES= ${PORTNAME} + +DESKTOP_ENTRIES="Barbie Seahorse Adventures" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + +.include + +post-patch: + @${REINPLACE_CMD} -e 's,/usr/bin/python,${PYTHON_CMD},' \ + ${WRKSRC}/leveledit.py ${WRKSRC}/tileedit.py + @(cd ${WRKSRC} && ${RM} *.py.bak) + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin + ${MKDIR} ${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "data lib" ${DATADIR}) + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} +.endif + +.include Added: head/games/barbie_seahorse_adventures/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/barbie_seahorse_adventures/distinfo Tue Oct 9 23:16:12 2012 (r305620) @@ -0,0 +1,4 @@ +SHA256 (python/barbie-1.0.tar.gz) = 8a5312545e51b94a28194679b2a8b8a7558ac105b706fe07ccabab6d47537861 +SIZE (python/barbie-1.0.tar.gz) = 2172446 +SHA256 (python/barbie_seahorse_adventures.png) = 98b6052da805e533b38ed4b47116b208d8c253ec5cf2bd630a87d311a35488c1 +SIZE (python/barbie_seahorse_adventures.png) = 519 Added: head/games/barbie_seahorse_adventures/files/barbie_seahorse_adventures.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/barbie_seahorse_adventures/files/barbie_seahorse_adventures.in Tue Oct 9 23:16:12 2012 (r305620) @@ -0,0 +1,6 @@ +#!/bin/sh +# +# $FreeBSD$ + +cd "%%DATADIR%%" +exec ./run_game.py "${@}" Added: head/games/barbie_seahorse_adventures/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/barbie_seahorse_adventures/pkg-descr Tue Oct 9 23:16:12 2012 (r305620) @@ -0,0 +1,3 @@ +You are a seahorse and you want to go to the moon! + +WWW: http://www.imitationpickles.org/barbie/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:33:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86F377B3; Tue, 9 Oct 2012 23:33:13 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 65ADA8FC0C; Tue, 9 Oct 2012 23:33: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 q99NXDjr008560; Tue, 9 Oct 2012 23:33:13 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99NXDEq008556; Tue, 9 Oct 2012 23:33:13 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201210092333.q99NXDEq008556@svn.freebsd.org> From: Cy Schubert Date: Tue, 9 Oct 2012 23:33:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305621 - in head/textproc: libexttextcat libtextcat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:33:13 -0000 X-List-Received-Date: Tue, 09 Oct 2012 23:33:13 -0000 Author: cy Date: Tue Oct 9 23:33:12 2012 New Revision: 305621 URL: http://svn.freebsd.org/changeset/ports/305621 Log: Allow textproc/libtextcat and textproc/libexttextcat to coexist on the same system. Reviewed by: thierry, crees, bapt Approved by: bapt (using his portmgr and office hats), thierry Modified: head/textproc/libexttextcat/Makefile head/textproc/libexttextcat/pkg-plist head/textproc/libtextcat/Makefile Modified: head/textproc/libexttextcat/Makefile ============================================================================== --- head/textproc/libexttextcat/Makefile Tue Oct 9 23:16:12 2012 (r305620) +++ head/textproc/libexttextcat/Makefile Tue Oct 9 23:33:12 2012 (r305621) @@ -2,6 +2,7 @@ PORTNAME= libexttextcat PORTVERSION= 3.3.1 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://dev-www.libreoffice.org/src/libexttextcat/ @@ -10,8 +11,6 @@ COMMENT= Language guessing by N-Gram-Bas LICENSE= BSD -CONFLICTS_INSTALL= libtextcat* - USE_XZ= yes GNU_CONFIGURE= yes USE_GMAKE= yes @@ -20,15 +19,21 @@ USE_LDCONFIG= yes PORTDOCS= README README.libtextcat TODO -OPTIONS_DEFINE= COMPAT_TEXTCAT DOCS +OPTIONS_DEFINE= COMPAT_TEXTCAT DOCS COMPAT_TEXTCAT_DESC= Install libtextcat compatible files .include .if ${PORT_OPTIONS:MCOMPAT_TEXTCAT} +.if exists(${PREFIX}/lib/libtextcat.a) +CONFLICTS_INSTALL= libtextcat* +.endif PLIST_SUB+= TEXTCAT='' +PLIST_SUB+= EXEEXT='' .else PLIST_SUB+= TEXTCAT='@comment ' +PLIST_SUB+= EXEEXT='x' +MAKE_ARGS= EXEEXT=x .endif post-install: Modified: head/textproc/libexttextcat/pkg-plist ============================================================================== --- head/textproc/libexttextcat/pkg-plist Tue Oct 9 23:16:12 2012 (r305620) +++ head/textproc/libexttextcat/pkg-plist Tue Oct 9 23:33:12 2012 (r305621) @@ -1,4 +1,4 @@ -bin/createfp +bin/createfp%%EXEEXT%% include/libexttextcat/common.h include/libexttextcat/constants.h include/libexttextcat/exttextcat-version.h @@ -174,6 +174,6 @@ share/vala/vapi/libexttextcat.vapi %%DATADIR%%/zh-Hant.lm %%DATADIR%%/zu.lm @dirrm %%DATADIR%% -@dirrm share/vala/vapi -@dirrm share/vala/ +@dirrmtry share/vala/vapi +@dirrmtry share/vala/ @dirrm include/libexttextcat Modified: head/textproc/libtextcat/Makefile ============================================================================== --- head/textproc/libtextcat/Makefile Tue Oct 9 23:16:12 2012 (r305620) +++ head/textproc/libtextcat/Makefile Tue Oct 9 23:33:12 2012 (r305621) @@ -7,7 +7,7 @@ PORTNAME= libtextcat PORTVERSION= 2.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc MASTER_SITES= http://software.wise-guys.nl/download/ @@ -17,14 +17,18 @@ COMMENT= Language guessing by N-Gram-Bas LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE -CONFLICTS_INSTALL= libexttextcat* - USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes PORTDOCS= LICENSE README TODO +.include + +.if exists($(PREFIX)/lib/libtextcat.a) +CONFLICTS_INSTALL= libexttextcat* +.endif + post-install: ${INSTALL_DATA} ${WRKSRC}/src/textcat.h ${PREFIX}/include/ ${MKDIR} ${DATADIR}/LM @@ -44,4 +48,4 @@ regression-test: ../src/testtextcat conf.txt < $$t ; \ done) -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:36:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 17F06808; Tue, 9 Oct 2012 23:36:35 +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 E524C8FC1B; Tue, 9 Oct 2012 23:36: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 q99NaYcJ009131; Tue, 9 Oct 2012 23:36:34 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99NaYlO009126; Tue, 9 Oct 2012 23:36:34 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210092336.q99NaYlO009126@svn.freebsd.org> From: Florian Smeets Date: Tue, 9 Oct 2012 23:36:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305622 - in head/net/asterisk: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:36:35 -0000 X-List-Received-Date: Tue, 09 Oct 2012 23:36:35 -0000 Author: flo Date: Tue Oct 9 23:36:34 2012 New Revision: 305622 URL: http://svn.freebsd.org/changeset/ports/305622 Log: Update to 1.8.17.0 Modified: head/net/asterisk/Makefile head/net/asterisk/distinfo head/net/asterisk/files/patch-configure (contents, props changed) head/net/asterisk/pkg-plist (contents, props changed) Modified: head/net/asterisk/Makefile ============================================================================== --- head/net/asterisk/Makefile Tue Oct 9 23:33:12 2012 (r305621) +++ head/net/asterisk/Makefile Tue Oct 9 23:36:34 2012 (r305622) @@ -6,7 +6,7 @@ # PORTNAME= asterisk -PORTVERSION= 1.8.16.0 +PORTVERSION= 1.8.17.0 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/asterisk/ \ http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/ Modified: head/net/asterisk/distinfo ============================================================================== --- head/net/asterisk/distinfo Tue Oct 9 23:33:12 2012 (r305621) +++ head/net/asterisk/distinfo Tue Oct 9 23:36:34 2012 (r305622) @@ -1,2 +1,2 @@ -SHA256 (asterisk-1.8.16.0.tar.gz) = c45a8959b06bd789d27e616bcfbe504d48e3f2d37993c45b3c8bc9cb3624d2dc -SIZE (asterisk-1.8.16.0.tar.gz) = 25085895 +SHA256 (asterisk-1.8.17.0.tar.gz) = 065da84b8e65674356efa8d1f25d985490756d2a2d1a582660617f3eab144114 +SIZE (asterisk-1.8.17.0.tar.gz) = 25136583 Modified: head/net/asterisk/files/patch-configure ============================================================================== --- head/net/asterisk/files/patch-configure Tue Oct 9 23:33:12 2012 (r305621) +++ head/net/asterisk/files/patch-configure Tue Oct 9 23:36:34 2012 (r305622) @@ -1,6 +1,6 @@ ---- configure.orig 2012-03-27 16:32:40.000000000 +0200 -+++ configure 2012-05-02 22:18:38.088619968 +0200 -@@ -4671,9 +4671,9 @@ +--- configure.orig 2012-08-09 20:58:44.000000000 +0200 ++++ configure 2012-10-09 00:23:16.383254715 +0200 +@@ -4419,9 +4419,9 @@ astheaderdir='${includedir}/asterisk' astlibdir='${libdir}/asterisk' astmandir='${mandir}' @@ -12,7 +12,7 @@ astkeydir='${astvarlibdir}' astspooldir='${localstatedir}/spool/asterisk' astlogdir='${localstatedir}/log/asterisk' -@@ -4696,8 +4696,6 @@ +@@ -4444,8 +4444,6 @@ case "${host_os}" in freebsd*) ac_default_prefix=/usr/local @@ -21,16 +21,16 @@ ;; openbsd*) ac_default_prefix=/usr/local -@@ -18219,6 +18217,8 @@ - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext +@@ -29734,6 +29732,8 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -+ #include -+ #include - #include ++#include ++#include + #include int main () -@@ -25954,7 +25954,7 @@ +@@ -47845,7 +47845,7 @@ fi @@ -38,4 +38,4 @@ + PLATFORM_OPENH323="h323_${OPENH323_SUFFIX}" if test "${HAS_OPENH323:-unset}" != "unset"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking OpenH323 installation validity" >&5 + { $as_echo "$as_me:$LINENO: checking OpenH323 installation validity" >&5 Modified: head/net/asterisk/pkg-plist ============================================================================== --- head/net/asterisk/pkg-plist Tue Oct 9 23:33:12 2012 (r305621) +++ head/net/asterisk/pkg-plist Tue Oct 9 23:36:34 2012 (r305622) @@ -1242,3 +1242,4 @@ spool/asterisk/voicemail/default/1234/en @dirrm log/asterisk/cdr-custom @dirrm log/asterisk/cel-custom @dirrm log/asterisk +@dirrmtry db/asterisk From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:39:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 621A486E; Tue, 9 Oct 2012 23:39:09 +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 4A8FB8FC16; Tue, 9 Oct 2012 23:39:09 +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 q99Nd9DL009535; Tue, 9 Oct 2012 23:39:09 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Nd9I2009530; Tue, 9 Oct 2012 23:39:09 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210092339.q99Nd9I2009530@svn.freebsd.org> From: Florian Smeets Date: Tue, 9 Oct 2012 23:39:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305623 - in head/net/asterisk10: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:39:09 -0000 X-List-Received-Date: Tue, 09 Oct 2012 23:39:09 -0000 Author: flo Date: Tue Oct 9 23:39:08 2012 New Revision: 305623 URL: http://svn.freebsd.org/changeset/ports/305623 Log: Update to 10.9.0 Modified: head/net/asterisk10/Makefile head/net/asterisk10/distinfo head/net/asterisk10/files/patch-configure (contents, props changed) head/net/asterisk10/pkg-plist (contents, props changed) Modified: head/net/asterisk10/Makefile ============================================================================== --- head/net/asterisk10/Makefile Tue Oct 9 23:36:34 2012 (r305622) +++ head/net/asterisk10/Makefile Tue Oct 9 23:39:08 2012 (r305623) @@ -6,7 +6,7 @@ # PORTNAME= asterisk -PORTVERSION= 10.8.0 +PORTVERSION= 10.9.0 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/asterisk/ \ http://downloads.asterisk.org/pub/telephony/asterisk/old-releases/ Modified: head/net/asterisk10/distinfo ============================================================================== --- head/net/asterisk10/distinfo Tue Oct 9 23:36:34 2012 (r305622) +++ head/net/asterisk10/distinfo Tue Oct 9 23:39:08 2012 (r305623) @@ -1,2 +1,2 @@ -SHA256 (asterisk-10.8.0.tar.gz) = 14aab33e729c18514653b2ebc2fb295de60ca0c467989e5b416cd15e0c7d47ea -SIZE (asterisk-10.8.0.tar.gz) = 25007513 +SHA256 (asterisk-10.9.0.tar.gz) = fb5ba7c4e9c197843b7ccefe732ec6992a7f6d16065d6e7128d37b1049ef6eea +SIZE (asterisk-10.9.0.tar.gz) = 25060275 Modified: head/net/asterisk10/files/patch-configure ============================================================================== --- head/net/asterisk10/files/patch-configure Tue Oct 9 23:36:34 2012 (r305622) +++ head/net/asterisk10/files/patch-configure Tue Oct 9 23:39:08 2012 (r305623) @@ -1,6 +1,6 @@ ---- configure.orig 2012-03-27 16:35:40.000000000 +0200 -+++ configure 2012-05-02 22:16:50.711839687 +0200 -@@ -4495,9 +4495,9 @@ +--- configure.orig 2012-08-09 21:11:01.000000000 +0200 ++++ configure 2012-10-09 00:25:18.433124461 +0200 +@@ -4242,9 +4242,9 @@ astheaderdir='${includedir}/asterisk' astlibdir='${libdir}/asterisk' astmandir='${mandir}' @@ -12,7 +12,7 @@ astkeydir='${astvarlibdir}' astspooldir='${localstatedir}/spool/asterisk' astlogdir='${localstatedir}/log/asterisk' -@@ -4520,8 +4520,6 @@ +@@ -4267,8 +4267,6 @@ case "${host_os}" in freebsd*) ac_default_prefix=/usr/local @@ -21,16 +21,16 @@ ;; openbsd*) ac_default_prefix=/usr/local -@@ -17569,6 +17567,8 @@ - - cat confdefs.h - <<_ACEOF >conftest.$ac_ext +@@ -29069,6 +29067,8 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -+ #include -+ #include - #include ++#include ++#include + #include int main () -@@ -25619,7 +25619,7 @@ +@@ -47981,7 +47981,7 @@ fi @@ -38,4 +38,4 @@ + PLATFORM_OPENH323="h323_${OPENH323_SUFFIX}" if test "${HAS_OPENH323:-unset}" != "unset"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: checking OpenH323 installation validity" >&5 + { $as_echo "$as_me:$LINENO: checking OpenH323 installation validity" >&5 Modified: head/net/asterisk10/pkg-plist ============================================================================== --- head/net/asterisk10/pkg-plist Tue Oct 9 23:36:34 2012 (r305622) +++ head/net/asterisk10/pkg-plist Tue Oct 9 23:39:08 2012 (r305623) @@ -1248,3 +1248,4 @@ spool/asterisk/voicemail/default/1234/en @dirrm log/asterisk/cdr-custom @dirrm log/asterisk/cel-custom @dirrm log/asterisk +@dirrmtry db/asterisk From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:46:07 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B06A1900; Tue, 9 Oct 2012 23:46:07 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 4893E8FC0C; Tue, 9 Oct 2012 23:46:07 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1TLif8-0004oK-H9; Wed, 10 Oct 2012 02:52:31 +0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:In-Reply-To:Subject:Cc:To:From; bh=Zb9KeyGGTKSkajmx0dvJz9pMPFIht+NGjotL97xmOOg=; b=Sc8ac/g5DgnQMLQmBxDHxk4NRl98eWqT8giNd/houjnqYUK5f+H1ylYUDw3sUc3krSZIJXfM3P3x1PhHzO5woWfFTAgDXDDwo8OdDwB9pIFVsx3s2K2OZn9LMYUYrBwZ7LYXO2qkkJRFefjj+HwPnSvE+FTFrePjQMs8gE3TvYM=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1TLidW-000EbL-Lp; Tue, 09 Oct 2012 22:50:51 +0000 From: Jan Beich To: Baptiste Daroussin Subject: Re: svn commit: r305288 - head/Mk In-Reply-To: <20121009161009.GF8713@ithaqua.etoilebsd.net> (Baptiste Daroussin's message of "Tue, 9 Oct 2012 18:10:09 +0200") Date: Tue, 09 Oct 2012 12:51:07 -1000 References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> <20121009161009.GF8713@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1TLidW-000EbL-Lp@internal.tormail.org> Cc: svn-ports-head@FreeBSD.org, Alexey Dokuchaev , svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:46:07 -0000 X-List-Received-Date: Tue, 09 Oct 2012 23:46:07 -0000 Baptiste Daroussin writes: > On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: > >> On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: >> > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: >> > > That's because OptionsNG poorly implement mutually exclusive options. I >> > > hope that eventually dialog's --radiolist would be utilized for proper >> > > handling, and sane knobs names would be restored. >> > > >> > > Sounds like a nice port junior hacker project. >> > >> > Not hat junior dialog(1) can't mix radiolist and classic checklist that is >> > why it doesn't use it, using libdialog(3), it would be easiy to implement, >> > but that won't be usable for a while (until all supported version of >> > freebsd has it. >> >> Ah, OK, that explains it (lack of radiobuttons now). Is it known what's >> preventing all supported versions to have working libdialog(3), if we have >> working dialog(1) already? >> >> ./danfe > > new dialog is only on 9.x and 10.x, if will require to code some special > dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicated > because the API isn't compatible. Why not add devel/cdialog to bootstrap on < 9.0 and install it only when BATCH is not set? > > regards, > Bapt From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 23:56:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D31469E7; Tue, 9 Oct 2012 23:56:53 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BBC028FC14; Tue, 9 Oct 2012 23:56:53 +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 q99NurCl011985; Tue, 9 Oct 2012 23:56:53 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99NurK1011979; Tue, 9 Oct 2012 23:56:53 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201210092356.q99NurK1011979@svn.freebsd.org> From: Jason Helfman Date: Tue, 9 Oct 2012 23:56:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305624 - in head/games: . bombherman X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 23:56:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 23:56:53 -0000 Author: jgh Date: Tue Oct 9 23:56:53 2012 New Revision: 305624 URL: http://svn.freebsd.org/changeset/ports/305624 Log: - add new port: games/bombherman A Bomberman clone written in C++, student project for SUPINFO, France WWW: https://github.com/Keruspe/Bomb-her-man PR: 167973 Submitted by: nemysis@gmx.ch Added: head/games/bombherman/ head/games/bombherman/Makefile (contents, props changed) head/games/bombherman/distinfo (contents, props changed) head/games/bombherman/pkg-descr (contents, props changed) head/games/bombherman/pkg-plist (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Tue Oct 9 23:39:08 2012 (r305623) +++ head/games/Makefile Tue Oct 9 23:56:53 2012 (r305624) @@ -93,6 +93,7 @@ SUBDIR += bomberclone SUBDIR += bomberinstinct SUBDIR += bombermaze + SUBDIR += bombherman SUBDIR += bomns SUBDIR += boswars SUBDIR += braincurses Added: head/games/bombherman/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bombherman/Makefile Tue Oct 9 23:56:53 2012 (r305624) @@ -0,0 +1,73 @@ +# Created by: nemysis@gmx.ch +# +# $FreeBSD$ + +PORTNAME= bomb-her-man +PORTVERSION= 0.3 +CATEGORIES= games +MASTER_SITES= GH \ + SF/nemysisfreebsdp/:icons +DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}_icons.tar.gz:icons + +MAINTAINER= nemysis@gmx.ch +COMMENT= Bomberman clone written in C++ + +LICENSE= GPLv3 + +BUILD_DEPENDS= automake:${PORTSDIR}/devel/automake \ + p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser +LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo + +USE_GITHUB= yes +GH_ACCOUNT= Keruspe +GH_PROJECT= Bomb-her-man +GH_TAGNAME= master +GH_COMMIT= 8f5aa22 + +USE_SDL= sdl image mixer ttf +USE_GNOME= intltool librsvg2 +GNU_CONFIGURE= yes +AUTOMAKE_ARGS= --add-missing +USE_GMAKE= yes +ALL_TARGET= # empty +MAKE_JOBS_SAFE= yes + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PORTDOCS= AUTHORS ChangeLog NEWS README + +DESKTOP_ENTRIES="Bomb-her-man" "${COMMENT}" "${PORTNAME}_48.png" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + +OPTIONS_DEFINE= NLS +OPTIONS_DEFAULT= NLS + +.include + +.if ${PORT_OPTIONS:MNLS} +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.endif + +pre-configure: + @(cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./autogen.sh) + +.if ${PORT_OPTIONS:MNLS} + @${REINPLACE_CMD} -e 's|itlocaledir = $$(prefix)/$$(DATADIRNAME)/locale|itlocaledir = $$(prefix)/share/locale|' \ + ${WRKSRC}/po/Makefile.in.in +.endif + +post-install: + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png ${PREFIX}/share/pixmaps + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} +.endif + +.include Added: head/games/bombherman/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bombherman/distinfo Tue Oct 9 23:56:53 2012 (r305624) @@ -0,0 +1,4 @@ +SHA256 (bomb-her-man-0.3.tar.gz) = 6ccf847f7452afaec664ee6f0dae50895ed7138bfc27479254e539d56b8cca9c +SIZE (bomb-her-man-0.3.tar.gz) = 2019211 +SHA256 (bomb-her-man_icons.tar.gz) = b2a402bd226ccb324c0b9dbe24540da99880409ca2d2e862725eb08120c02978 +SIZE (bomb-her-man_icons.tar.gz) = 29696 Added: head/games/bombherman/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bombherman/pkg-descr Tue Oct 9 23:56:53 2012 (r305624) @@ -0,0 +1,3 @@ +A Bomberman clone written in C++, student project for SUPINFO, France + +WWW: https://github.com/Keruspe/Bomb-her-man Added: head/games/bombherman/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bombherman/pkg-plist Tue Oct 9 23:56:53 2012 (r305624) @@ -0,0 +1,78 @@ +bin/bomb-her-man +%%DATADIR%%/biolinum.ttf +%%DATADIR%%/graphics/background.svg +%%DATADIR%%/graphics/barrel.svg +%%DATADIR%%/graphics/bomb-her-man.svg +%%DATADIR%%/graphics/bomb.svg +%%DATADIR%%/graphics/bonuses/1.svg +%%DATADIR%%/graphics/bonuses/2.svg +%%DATADIR%%/graphics/bonuses/3.svg +%%DATADIR%%/graphics/bonuses/4.svg +%%DATADIR%%/graphics/bonuses/5.svg +%%DATADIR%%/graphics/bonuses/6.svg +%%DATADIR%%/graphics/explosion.svg +%%DATADIR%%/graphics/floor.svg +%%DATADIR%%/graphics/players/1/0/0.svg +%%DATADIR%%/graphics/players/1/0/1.svg +%%DATADIR%%/graphics/players/1/0/2.svg +%%DATADIR%%/graphics/players/1/0/3.svg +%%DATADIR%%/graphics/players/1/1/0.svg +%%DATADIR%%/graphics/players/1/1/1.svg +%%DATADIR%%/graphics/players/1/1/2.svg +%%DATADIR%%/graphics/players/1/1/3.svg +%%DATADIR%%/graphics/players/1/2/0.svg +%%DATADIR%%/graphics/players/1/2/1.svg +%%DATADIR%%/graphics/players/1/2/2.svg +%%DATADIR%%/graphics/players/1/2/3.svg +%%DATADIR%%/graphics/players/1/3/0.svg +%%DATADIR%%/graphics/players/1/3/1.svg +%%DATADIR%%/graphics/players/1/3/2.svg +%%DATADIR%%/graphics/players/1/3/3.svg +%%DATADIR%%/graphics/players/2/0/0.svg +%%DATADIR%%/graphics/players/2/0/1.svg +%%DATADIR%%/graphics/players/2/0/2.svg +%%DATADIR%%/graphics/players/2/0/3.svg +%%DATADIR%%/graphics/players/2/1/0.svg +%%DATADIR%%/graphics/players/2/1/1.svg +%%DATADIR%%/graphics/players/2/1/2.svg +%%DATADIR%%/graphics/players/2/1/3.svg +%%DATADIR%%/graphics/players/2/2/0.svg +%%DATADIR%%/graphics/players/2/2/1.svg +%%DATADIR%%/graphics/players/2/2/2.svg +%%DATADIR%%/graphics/players/2/2/3.svg +%%DATADIR%%/graphics/players/2/3/0.svg +%%DATADIR%%/graphics/players/2/3/1.svg +%%DATADIR%%/graphics/players/2/3/2.svg +%%DATADIR%%/graphics/players/2/3/3.svg +%%DATADIR%%/graphics/scores/1/equal.svg +%%DATADIR%%/graphics/scores/1/lose.svg +%%DATADIR%%/graphics/scores/1/win.svg +%%DATADIR%%/graphics/scores/2/equal.svg +%%DATADIR%%/graphics/scores/2/lose.svg +%%DATADIR%%/graphics/scores/2/win.svg +%%DATADIR%%/graphics/scores/background-horizontal.svg +%%DATADIR%%/graphics/scores/background-vertical.svg +%%DATADIR%%/graphics/tomb1.svg +%%DATADIR%%/graphics/tomb2.svg +%%NLS%%share/locale/fr/LC_MESSAGES/bomb-her-man.mo +share/pixmaps/bomb-her-man_48.png +share/pixmaps/bomb-her-man_64.png +share/pixmaps/bomb-her-man_72.png +share/pixmaps/bomb-her-man_96.png +@dirrm %%DATADIR%%/graphics/scores/2 +@dirrm %%DATADIR%%/graphics/scores/1 +@dirrm %%DATADIR%%/graphics/scores +@dirrm %%DATADIR%%/graphics/players/2/3 +@dirrm %%DATADIR%%/graphics/players/2/2 +@dirrm %%DATADIR%%/graphics/players/2/1 +@dirrm %%DATADIR%%/graphics/players/2/0 +@dirrm %%DATADIR%%/graphics/players/2 +@dirrm %%DATADIR%%/graphics/players/1/3 +@dirrm %%DATADIR%%/graphics/players/1/2 +@dirrm %%DATADIR%%/graphics/players/1/1 +@dirrm %%DATADIR%%/graphics/players/1/0 +@dirrm %%DATADIR%%/graphics/players/1 +@dirrm %%DATADIR%%/graphics/players +@dirrm %%DATADIR%%/graphics/bonuses +@dirrm %%DATADIR%%/graphics +@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 01:34:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6888A265; Wed, 10 Oct 2012 01:34:05 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4F2928FC08; Wed, 10 Oct 2012 01:34:05 +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 q9A1Y5pQ025697; Wed, 10 Oct 2012 01:34:05 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A1Y5L7025694; Wed, 10 Oct 2012 01:34:05 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210100134.q9A1Y5L7025694@svn.freebsd.org> From: Steve Wills Date: Wed, 10 Oct 2012 01:34:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305625 - in head/sysutils/xen-tools: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 01:34:05 -0000 X-List-Received-Date: Wed, 10 Oct 2012 01:34:05 -0000 Author: swills Date: Wed Oct 10 01:34:04 2012 New Revision: 305625 URL: http://svn.freebsd.org/changeset/ports/305625 Log: - Prepare for splitting out guest scripts into another port PR: ports/172466 Submitted by: Mark Felder (maintainer) Deleted: head/sysutils/xen-tools/files/xe-daemon.in head/sysutils/xen-tools/files/xe_wrapper Modified: head/sysutils/xen-tools/Makefile head/sysutils/xen-tools/distinfo Modified: head/sysutils/xen-tools/Makefile ============================================================================== --- head/sysutils/xen-tools/Makefile Tue Oct 9 23:56:53 2012 (r305624) +++ head/sysutils/xen-tools/Makefile Wed Oct 10 01:34:04 2012 (r305625) @@ -6,27 +6,18 @@ PORTNAME= xen-tools PORTVERSION= 4.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils DISTNAME= xen-${PORTVERSION} MAINTAINER= feld@feld.me COMMENT= Xen tools within FreeBSD domU -MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/:xensource \ - https://github.com/${GIT_ACCOUNT}/${GIT_PROJECT}/tarball/${GIT_VERSION}/:github -DISTFILES= xen-${PORTVERSION}.tar.gz:xensource \ - ${GIT_ACCOUNT}-${GIT_PROJECT}-${GIT_VERSION}.tar.gz:github - -FETCH_ARGS= -pRr -GIT_ACCOUNT= felderado -GIT_PROJECT= freebsd-xen-tools-scripts -GIT_VERSION= bfb06da -GITSRC= ${WRKDIR}/${GIT_ACCOUNT}-${GIT_PROJECT}-${GIT_VERSION}/src/ +MASTER_SITES= http://bits.xensource.com/oss-xen/release/${PORTVERSION}/ +DISTFILES= xen-${PORTVERSION}.tar.gz USE_GMAKE= yes USE_PYTHON= yes -USE_RC_SUBR= xe-daemon ONLY_FOR_ARCHS= amd64 i386 ia64 ONLY_FOR_ARCHS_REASON= "not yet ported to anything other than amd64, i386, or ia64" @@ -41,10 +32,7 @@ PLIST_FILES= lib/libxenstore.so.3.0 \ bin/xenstore-ls \ bin/xenstore-read \ bin/xenstore-rm \ - bin/xenstore-write \ - sbin/xe-daemon \ - sbin/xe-update-guest-attrs \ - sbin/xe_wrapper + bin/xenstore-write do-build: cd ${WRKSRC}/tools && ${GMAKE} -C include @@ -56,9 +44,6 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tools/xenstore/xenstore ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/tools/xenstore/xenstore-control ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/tools/xenstore/libxenstore.so.3.0 ${PREFIX}/lib - ${INSTALL_SCRIPT} ${GITSRC}/usr/local/sbin/xe-daemon ${PREFIX}/sbin - ${INSTALL_SCRIPT} ${GITSRC}/usr/local/sbin/xe-update-guest-attrs ${PREFIX}/sbin - ${INSTALL_SCRIPT} ${FILESDIR}/xe_wrapper ${PREFIX}/sbin post-install: ${LN} -sf ${PREFIX}/bin/xenstore ${PREFIX}/bin/xenstore-chmod Modified: head/sysutils/xen-tools/distinfo ============================================================================== --- head/sysutils/xen-tools/distinfo Tue Oct 9 23:56:53 2012 (r305624) +++ head/sysutils/xen-tools/distinfo Wed Oct 10 01:34:04 2012 (r305625) @@ -1,4 +1,2 @@ SHA256 (xen-4.1.3.tar.gz) = 178ef186aca2490126aef69ceb41fc509baf89e0d582768cfa33b17fd145c0e4 SIZE (xen-4.1.3.tar.gz) = 10382132 -SHA256 (felderado-freebsd-xen-tools-scripts-bfb06da.tar.gz) = 58b5c5bb51bccb6843506bbb9c8ce3381ff262e6b221577496468f48226ab038 -SIZE (felderado-freebsd-xen-tools-scripts-bfb06da.tar.gz) = 50775 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 01:47:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAC704F0; Wed, 10 Oct 2012 01:47:02 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C37FD8FC12; Wed, 10 Oct 2012 01:47: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 q9A1l2sF027509; Wed, 10 Oct 2012 01:47:02 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A1l2U6027507; Wed, 10 Oct 2012 01:47:02 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201210100147.q9A1l2U6027507@svn.freebsd.org> From: Greg Larkin Date: Wed, 10 Oct 2012 01:47:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305626 - in head/devel/gearmand: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 01:47:02 -0000 X-List-Received-Date: Wed, 10 Oct 2012 01:47:02 -0000 Author: glarkin Date: Wed Oct 10 01:47:02 2012 New Revision: 305626 URL: http://svn.freebsd.org/changeset/ports/305626 Log: - Added search path for libexecinfo to prevent configure error [1] - Mark port BROKEN for versions of FreeBSD that don't include POSIX spawn(). It may be possible to convert the spawn() code back to fork()/exec() for FreeBSD 7.x, and I'll look into that and unbreak once it's ready. [2] Reported by: ports ML [1] Reported by: bdrewery [2] Deleted: head/devel/gearmand/files/extra-patch-libtest__test.cc Modified: head/devel/gearmand/Makefile Modified: head/devel/gearmand/Makefile ============================================================================== --- head/devel/gearmand/Makefile Wed Oct 10 01:34:04 2012 (r305625) +++ head/devel/gearmand/Makefile Wed Oct 10 01:47:02 2012 (r305626) @@ -44,7 +44,8 @@ SUB_LIST+= USERS=${USERS} GROUPS=${GROUP CONFIGURE_ARGS+=--with-lib-prefix=${LOCALBASE} --with-boost=${LOCALBASE} \ --localstatedir=/var/db/${PORTNAME} --enable-static -LDFLAGS+= -lexecinfo +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo OPTIONS_DEFINE= DRIZZLE MEMCACHED PGSQL SQLITE MYSQL HIREDIS TOKYOCAB OPTIONS_DEFAULT=SQLITE @@ -216,8 +217,8 @@ MAN8= gearmand.8 # Workaround for missing sigignore that wasn't introduced until # FreeBSD 8.0 -.if ${OSVERSION} < 800500 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libtest__test.cc +.if ${OSVERSION} < 800041 +BROKEN= Does not compile without POSIX spawn() support .endif .if ${PORT_OPTIONS:MDRIZZLE} From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 02:07:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 426F8A21; Wed, 10 Oct 2012 02:07:41 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2875B8FC0C; Wed, 10 Oct 2012 02:07:41 +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 q9A27fqT030334; Wed, 10 Oct 2012 02:07:41 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A27ec8030328; Wed, 10 Oct 2012 02:07:40 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210100207.q9A27ec8030328@svn.freebsd.org> From: Steve Wills Date: Wed, 10 Oct 2012 02:07:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305627 - in head/sysutils: . xe-guest-utilities xe-guest-utilities/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 02:07:41 -0000 X-List-Received-Date: Wed, 10 Oct 2012 02:07:41 -0000 Author: swills Date: Wed Oct 10 02:07:40 2012 New Revision: 305627 URL: http://svn.freebsd.org/changeset/ports/305627 Log: FreeBSD VM tools for Citrix XenServer and XCP PR: ports/172468 Submitted by: Mark Felder Added: head/sysutils/xe-guest-utilities/ head/sysutils/xe-guest-utilities/Makefile (contents, props changed) head/sysutils/xe-guest-utilities/distinfo (contents, props changed) head/sysutils/xe-guest-utilities/files/ head/sysutils/xe-guest-utilities/files/xenguest.in (contents, props changed) head/sysutils/xe-guest-utilities/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Oct 10 01:47:02 2012 (r305626) +++ head/sysutils/Makefile Wed Oct 10 02:07:40 2012 (r305627) @@ -1029,6 +1029,7 @@ SUBDIR += xcdroast SUBDIR += xcpustate SUBDIR += xdu + SUBDIR += xe-guest-utilities SUBDIR += xen-tools SUBDIR += xfburn SUBDIR += xfce4-battery-plugin Added: head/sysutils/xe-guest-utilities/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xe-guest-utilities/Makefile Wed Oct 10 02:07:40 2012 (r305627) @@ -0,0 +1,39 @@ +# Created by: Mark Felder +# +# $FreeBSD$ + +PORTNAME= xe-guest-utilities +PORTVERSION= 6.0.2 +CATEGORIES= sysutils +MASTER_SITES= https://github.com/${GIT_ACCOUNT}/${GIT_PROJECT}/tarball/${GIT_VERSION}/ +DISTNAME= ${GIT_ACCOUNT}-${GIT_PROJECT}-${GIT_VERSION} + +MAINTAINER= feld@feld.me +COMMENT= FreeBSD VM tools for Citrix XenServer and XCP + +RUN_DEPENDS= xen-tools>0:${PORTSDIR}/sysutils/xen-tools + +FETCH_ARGS= -pRr +GIT_ACCOUNT= felderado +GIT_PROJECT= freebsd-xen-tools-scripts +GIT_VERSION= 5a355c9 +GITSRC= ${WRKDIR}/${GIT_ACCOUNT}-${GIT_PROJECT}-${GIT_VERSION}/src/ + +USE_GMAKE= yes +USE_PYTHON= yes +USE_RC_SUBR= xenguest + +ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS_REASON= "Requires i385 XEN or amd64 XENHVM kernels" + +PLIST_FILES= sbin/xe-daemon \ + sbin/xe-update-guest-attrs + +do-build: + @${DO_NADA} + +do-install: + ${INSTALL_SCRIPT} ${GITSRC}/sbin/xe-daemon ${PREFIX}/sbin + ${INSTALL_SCRIPT} ${GITSRC}/sbin/xe-update-guest-attrs ${PREFIX}/sbin + +.include Added: head/sysutils/xe-guest-utilities/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xe-guest-utilities/distinfo Wed Oct 10 02:07:40 2012 (r305627) @@ -0,0 +1,2 @@ +SHA256 (felderado-freebsd-xen-tools-scripts-5a355c9.tar.gz) = c6d934103079cae5f9bd4abdb77586cea56eb04bdafd7dfc2e3401ab271bf278 +SIZE (felderado-freebsd-xen-tools-scripts-5a355c9.tar.gz) = 49171 Added: head/sysutils/xe-guest-utilities/files/xenguest.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xe-guest-utilities/files/xenguest.in Wed Oct 10 02:07:40 2012 (r305627) @@ -0,0 +1,29 @@ +#!/bin/sh + +# $FreeBSD$ +# +# PROVIDE: xenguest +# REQUIRE: LOGIN +# KEYWORD: nojail shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# xenguest_enable (bool): Set to NO by default. +# Set it to YES to enable xenguest. + +. /etc/rc.subr + +name=xenguest +rcvar=xenguest_enable + +load_rc_config $name + +: ${xe_daemon_enable="NO"} + +pidfile="/var/run/xe-daemon.pid" +command="%%PREFIX%%/sbin/xe-daemon" +command_interpreter="/bin/sh" +command_args='-p $pidfile &' + +run_rc_command "$1" Added: head/sysutils/xe-guest-utilities/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xe-guest-utilities/pkg-descr Wed Oct 10 02:07:40 2012 (r305627) @@ -0,0 +1 @@ +FreeBSD VM tools for Citrix XenServer and XCP From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:00:31 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05BB57A9; Wed, 10 Oct 2012 06:00:31 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E27398FC14; Wed, 10 Oct 2012 06:00: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 q9A60U2d063612; Wed, 10 Oct 2012 06:00:30 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A60UM6063609; Wed, 10 Oct 2012 06:00:30 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210100600.q9A60UM6063609@svn.freebsd.org> From: Frederic Culot Date: Wed, 10 Oct 2012 06:00:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305630 - head/devel/p5-Data-Dumper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:00:31 -0000 X-List-Received-Date: Wed, 10 Oct 2012 06:00:31 -0000 Author: culot Date: Wed Oct 10 06:00:30 2012 New Revision: 305630 URL: http://svn.freebsd.org/changeset/ports/305630 Log: - Update to 2.136 - Add LICENSE (Artistic 1 & GPL 1) Changes: http://search.cpan.org/dist/Data-Dumper/Changes Modified: head/devel/p5-Data-Dumper/Makefile head/devel/p5-Data-Dumper/distinfo Modified: head/devel/p5-Data-Dumper/Makefile ============================================================================== --- head/devel/p5-Data-Dumper/Makefile Wed Oct 10 04:14:06 2012 (r305629) +++ head/devel/p5-Data-Dumper/Makefile Wed Oct 10 06:00:30 2012 (r305630) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Data-Dumper -# Date created: 23 March 2003 -# Whom: mat -# +# Created by: mat # $FreeBSD$ -# PORTNAME= Data-Dumper -PORTVERSION= 2.131 +PORTVERSION= 2.136 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Stringified perl data structures, suitable for both printing and eval +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + PERL_CONFIGURE= yes .include Modified: head/devel/p5-Data-Dumper/distinfo ============================================================================== --- head/devel/p5-Data-Dumper/distinfo Wed Oct 10 04:14:06 2012 (r305629) +++ head/devel/p5-Data-Dumper/distinfo Wed Oct 10 06:00:30 2012 (r305630) @@ -1,2 +1,2 @@ -SHA256 (Data-Dumper-2.131.tar.gz) = c4d4a10013c8cbab305483537fe09900ad6ac2201d74a4fbb5a1b25ba38eb1c2 -SIZE (Data-Dumper-2.131.tar.gz) = 82420 +SHA256 (Data-Dumper-2.136.tar.gz) = 98416971694df8b7f74f5fd5fa2837b2b50030d4c32f6a1416136c78cadae6c1 +SIZE (Data-Dumper-2.136.tar.gz) = 87354 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:20:35 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D755984; Wed, 10 Oct 2012 06:20:35 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id F32A18FC0C; Wed, 10 Oct 2012 06:20:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9A6KYX9087867; Wed, 10 Oct 2012 06:20:34 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9A6KY8a087863; Wed, 10 Oct 2012 06:20:34 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Wed, 10 Oct 2012 08:20:32 +0200 From: Baptiste Daroussin To: Jan Beich Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121010062031.GI8713@ithaqua.etoilebsd.net> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> <20121009161009.GF8713@ithaqua.etoilebsd.net> <1TLidW-000EbL-Lp@internal.tormail.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ijf6z65S790CMqo8" Content-Disposition: inline In-Reply-To: <1TLidW-000EbL-Lp@internal.tormail.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, Alexey Dokuchaev , svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:20:35 -0000 X-List-Received-Date: Wed, 10 Oct 2012 06:20:35 -0000 --ijf6z65S790CMqo8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 09, 2012 at 12:51:07PM -1000, Jan Beich wrote: > Baptiste Daroussin writes: >=20 > > On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: > > > >> On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > >> > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > >> > > That's because OptionsNG poorly implement mutually exclusive optio= ns. I > >> > > hope that eventually dialog's --radiolist would be utilized for pr= oper > >> > > handling, and sane knobs names would be restored. > >> > >=20 > >> > > Sounds like a nice port junior hacker project. > >> >=20 > >> > Not hat junior dialog(1) can't mix radiolist and classic checklist t= hat is > >> > why it doesn't use it, using libdialog(3), it would be easiy to impl= ement, > >> > but that won't be usable for a while (until all supported version of > >> > freebsd has it. > >>=20 > >> Ah, OK, that explains it (lack of radiobuttons now). Is it known what= 's > >> preventing all supported versions to have working libdialog(3), if we = have > >> working dialog(1) already? > >>=20 > >> ./danfe > > > > new dialog is only on 9.x and 10.x, if will require to code some special > > dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicat= ed > > because the API isn't compatible. >=20 > Why not add devel/cdialog to bootstrap on < 9.0 and install it only when > BATCH is not set? >=20 That do not change the fact that ${SOMEONE} will have to code a dialog(1) dedicated for ports, the library is able to let us mix radio and check, but= the frontend (dialog(1)) is still not able to. if someone stepup to do it, I'll be more than happy :) regards, Bapt --ijf6z65S790CMqo8 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB1E68ACgkQ8kTtMUmk6Exb2wCdGD/0f/IHqP5JePcm4+KDxvge wZsAnA9LqzwAsSInaf0jYSy/NqOZHcPC =svdY -----END PGP SIGNATURE----- --ijf6z65S790CMqo8-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:25:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78044A26; Wed, 10 Oct 2012 06:25:59 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6007C8FC0A; Wed, 10 Oct 2012 06:25:59 +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 q9A6PxJI067628; Wed, 10 Oct 2012 06:25:59 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A6Pxia067623; Wed, 10 Oct 2012 06:25:59 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210100625.q9A6Pxia067623@svn.freebsd.org> From: Wen Heping Date: Wed, 10 Oct 2012 06:25:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305631 - head/science/py-obspy.xseed X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:25:59 -0000 X-List-Received-Date: Wed, 10 Oct 2012 06:25:59 -0000 Author: wen Date: Wed Oct 10 06:25:58 2012 New Revision: 305631 URL: http://svn.freebsd.org/changeset/ports/305631 Log: - Update to 0.7.0 - Trim Makefile headers Modified: head/science/py-obspy.xseed/Makefile head/science/py-obspy.xseed/distinfo head/science/py-obspy.xseed/pkg-plist Modified: head/science/py-obspy.xseed/Makefile ============================================================================== --- head/science/py-obspy.xseed/Makefile Wed Oct 10 06:00:30 2012 (r305630) +++ head/science/py-obspy.xseed/Makefile Wed Oct 10 06:25:58 2012 (r305631) @@ -1,13 +1,8 @@ -# New ports collection makefile for: py-obspy.xseed -# Date created: June 29, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.xseed -PORTVERSION= 0.5.2 -PORTREVISION= 1 +PORTVERSION= 0.7.0 CATEGORIES= science python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,8 +10,8 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wen@FreeBSD.org COMMENT= Dataless SEED, RESP, and XML-SEED read and write support for ObsPy -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}obspy-core>=0.4.6:${PORTSDIR}/science/py-obspy-core -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}obspy-core>=0.4.6:${PORTSDIR}/science/py-obspy-core +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}obspy-core>=0:${PORTSDIR}/science/py-obspy-core +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}obspy-core>=0:${PORTSDIR}/science/py-obspy-core USE_ZIP= yes USE_PYTHON= yes Modified: head/science/py-obspy.xseed/distinfo ============================================================================== --- head/science/py-obspy.xseed/distinfo Wed Oct 10 06:00:30 2012 (r305630) +++ head/science/py-obspy.xseed/distinfo Wed Oct 10 06:25:58 2012 (r305631) @@ -1,2 +1,2 @@ -SHA256 (obspy.xseed-0.5.2.zip) = daacbd5cef4ee41296c11ebb4d8d9e83f9091b2b92039c19383c8e06e4a1e05c -SIZE (obspy.xseed-0.5.2.zip) = 2620735 +SHA256 (obspy.xseed-0.7.0.zip) = fd8d0bea77890010fde59a51f37d03995c1859ab418a55a2d4b181f35346796d +SIZE (obspy.xseed-0.7.0.zip) = 2626720 Modified: head/science/py-obspy.xseed/pkg-plist ============================================================================== --- head/science/py-obspy.xseed/pkg-plist Wed Oct 10 06:00:30 2012 (r305630) +++ head/science/py-obspy.xseed/pkg-plist Wed Oct 10 06:25:58 2012 (r305631) @@ -12,6 +12,7 @@ bin/obspy-xseed2dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/CHANGELOG.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/LICENSE.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/README.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/VERSION.txt @@ -147,6 +148,8 @@ bin/obspy-xseed2dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/AI.ESPZ._.BHE.dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/AI.ESPZ._.BH_.dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/BN.LPW._.BHE.dataless +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/CL.AIO.dataless +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/G.SPB.dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/arclink_full.seed %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/bug165.dataless %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/obspy/xseed/tests/data/dataless.seed.BW_FURT From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:46:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A4E50DC3; Wed, 10 Oct 2012 06:46:08 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 828FF8FC0C; Wed, 10 Oct 2012 06:46:08 +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 q9A6k8CE071586; Wed, 10 Oct 2012 06:46:08 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A6k8V3071575; Wed, 10 Oct 2012 06:46:08 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210100646.q9A6k8V3071575@svn.freebsd.org> From: Wen Heping Date: Wed, 10 Oct 2012 06:46:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305633 - in head/science: py-obspy-core py-obspy.db py-obspy.gse2 py-obspy.imaging py-obspy.iris py-obspy.mseed py-obspy.signal py-obspy.taup py-obspy.wav X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:46:08 -0000 X-List-Received-Date: Wed, 10 Oct 2012 06:46:08 -0000 Author: wen Date: Wed Oct 10 06:46:07 2012 New Revision: 305633 URL: http://svn.freebsd.org/changeset/ports/305633 Log: - Trim Makefile headers Modified: head/science/py-obspy-core/Makefile head/science/py-obspy.db/Makefile head/science/py-obspy.gse2/Makefile head/science/py-obspy.imaging/Makefile head/science/py-obspy.iris/Makefile head/science/py-obspy.mseed/Makefile head/science/py-obspy.signal/Makefile head/science/py-obspy.taup/Makefile head/science/py-obspy.wav/Makefile Modified: head/science/py-obspy-core/Makefile ============================================================================== --- head/science/py-obspy-core/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy-core/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy-core -# Date created: March 16, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy-core PORTVERSION= 0.7.1 Modified: head/science/py-obspy.db/Makefile ============================================================================== --- head/science/py-obspy.db/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.db/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.db -# Date created: Dec 9, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.db PORTVERSION= 0.7.0 Modified: head/science/py-obspy.gse2/Makefile ============================================================================== --- head/science/py-obspy.gse2/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.gse2/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.gse2 -# Date created: Jan 26, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.gse2 PORTVERSION= 0.7.0 Modified: head/science/py-obspy.imaging/Makefile ============================================================================== --- head/science/py-obspy.imaging/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.imaging/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.imaging -# Date created: June 29, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.imaging PORTVERSION= 0.7.0 Modified: head/science/py-obspy.iris/Makefile ============================================================================== --- head/science/py-obspy.iris/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.iris/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.iris -# Date created: Dec 13, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.iris PORTVERSION= 0.7.0 Modified: head/science/py-obspy.mseed/Makefile ============================================================================== --- head/science/py-obspy.mseed/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.mseed/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.mseed -# Date created: Jan 26, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.mseed PORTVERSION= 0.7.0 Modified: head/science/py-obspy.signal/Makefile ============================================================================== --- head/science/py-obspy.signal/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.signal/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.signal -# Date created: Jan 26, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.signal PORTVERSION= 0.7.0 Modified: head/science/py-obspy.taup/Makefile ============================================================================== --- head/science/py-obspy.taup/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.taup/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.taup -# Date created: Jan 11, 2012 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.taup PORTVERSION= 0.7.0 Modified: head/science/py-obspy.wav/Makefile ============================================================================== --- head/science/py-obspy.wav/Makefile Wed Oct 10 06:28:56 2012 (r305632) +++ head/science/py-obspy.wav/Makefile Wed Oct 10 06:46:07 2012 (r305633) @@ -1,9 +1,5 @@ -# New ports collection makefile for: py-obspy.wav -# Date created: March 21, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= obspy.wav PORTVERSION= 0.5.1 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 06:48:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2E9CE17; Wed, 10 Oct 2012 06:48:32 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DC15A8FC08; Wed, 10 Oct 2012 06:48:32 +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 q9A6mWtQ072027; Wed, 10 Oct 2012 06:48:32 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A6mWcR072024; Wed, 10 Oct 2012 06:48:32 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210100648.q9A6mWcR072024@svn.freebsd.org> From: Wen Heping Date: Wed, 10 Oct 2012 06:48:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305634 - head/science/jmol X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 06:48:33 -0000 X-List-Received-Date: Wed, 10 Oct 2012 06:48:33 -0000 Author: wen Date: Wed Oct 10 06:48:32 2012 New Revision: 305634 URL: http://svn.freebsd.org/changeset/ports/305634 Log: - Trim Makefile headers - Reset maintainer to ports@ Modified: head/science/jmol/Makefile Modified: head/science/jmol/Makefile ============================================================================== --- head/science/jmol/Makefile Wed Oct 10 06:46:07 2012 (r305633) +++ head/science/jmol/Makefile Wed Oct 10 06:48:32 2012 (r305634) @@ -1,9 +1,5 @@ -# Ports collection makefile for: jmol -# Date created: May 11, 2008 -# Whom: Wen heping -# +# Created by: Wen heping # $FreeBSD$ -# PORTNAME= jmol PORTVERSION= 12.2.23 @@ -15,7 +11,7 @@ DISTFILES= Jmol-${PORTVERSION}-full.tar. selfSignedCertificate.store:source2 EXTRACT_ONLY= Jmol-${PORTVERSION}-full.tar.gz -MAINTAINER= wen@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= An Open-Source Java Viewer for Chemical Structures in 3D USE_JAVA= yes From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 07:40:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B637273A; Wed, 10 Oct 2012 07:40:13 +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 9DDBF8FC12; Wed, 10 Oct 2012 07:40: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 q9A7eDJa080568; Wed, 10 Oct 2012 07:40:13 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A7eDG0080566; Wed, 10 Oct 2012 07:40:13 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210100740.q9A7eDG0080566@svn.freebsd.org> From: Florian Smeets Date: Wed, 10 Oct 2012 07:40:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305635 - head/net-mgmt/check_logfiles X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 07:40:13 -0000 X-List-Received-Date: Wed, 10 Oct 2012 07:40:13 -0000 Author: flo Date: Wed Oct 10 07:40:13 2012 New Revision: 305635 URL: http://svn.freebsd.org/changeset/ports/305635 Log: Change the header in one of my ports to test ports commit mail Modified: head/net-mgmt/check_logfiles/Makefile (contents, props changed) Modified: head/net-mgmt/check_logfiles/Makefile ============================================================================== --- head/net-mgmt/check_logfiles/Makefile Wed Oct 10 06:48:32 2012 (r305634) +++ head/net-mgmt/check_logfiles/Makefile Wed Oct 10 07:40:13 2012 (r305635) @@ -1,9 +1,4 @@ -# New ports collection makefile for: check_logfile -# Date created: 11 Mar 2011 -# Whom: flo@FreeBSD.org -# # $FreeBSD$ -# PORTNAME= check_logfiles PORTVERSION= 3.4.3.1 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 08:09:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C68E9EC; Wed, 10 Oct 2012 08:09:25 +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 73A958FC0C; Wed, 10 Oct 2012 08:09:25 +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 q9A89P1D084635; Wed, 10 Oct 2012 08:09:25 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A89P2D084633; Wed, 10 Oct 2012 08:09:25 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210100809.q9A89P2D084633@svn.freebsd.org> From: Guido Falsi Date: Wed, 10 Oct 2012 08:09:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305636 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 08:09:25 -0000 X-List-Received-Date: Wed, 10 Oct 2012 08:09:25 -0000 Author: madpilot Date: Wed Oct 10 08:09:24 2012 New Revision: 305636 URL: http://svn.freebsd.org/changeset/ports/305636 Log: Fix Recipes for portmaster and portupgrade regarding libva-vdpau-driver. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 07:40:13 2012 (r305635) +++ head/UPDATING Wed Oct 10 08:09:24 2012 (r305636) @@ -14,9 +14,9 @@ you update your ports collection, before Please update the port origins as follows: - # portmaster -o multimedia/vdpau-video multimedia/libva-vdpau-driver + # portmaster -o multimedia/libva-vdpau-driver multimedia/vdpau-video or - # portupgrade -fo multimedia/vdpau-video multimedia/libva-vdpau-driver + # portupgrade -fo multimedia/libva-vdpau-driver multimedia/vdpau-video or # pkg set -o multimedia/vdpau-video:multimedia/libva-vdpau-driver From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 08:40:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAE8E557; Wed, 10 Oct 2012 08:40:22 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B59BE8FC14; Wed, 10 Oct 2012 08:40:22 +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 q9A8eMaA088951; Wed, 10 Oct 2012 08:40:22 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A8eMcS088946; Wed, 10 Oct 2012 08:40:22 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210100840.q9A8eMcS088946@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 08:40:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305637 - in head: . Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 08:40:23 -0000 X-List-Received-Date: Wed, 10 Oct 2012 08:40:23 -0000 Author: bapt Date: Wed Oct 10 08:40:21 2012 New Revision: 305637 URL: http://svn.freebsd.org/changeset/ports/305637 Log: Switching current to use pkgng by default Adding WITHOUT_PKGNG for people not willing to migrate to pkgng now Hat: portmgr Non-regression: beat Exp-runs: beat Modified: head/CHANGES head/Mk/bsd.port.mk head/Mk/bsd.port.subdir.mk head/UPDATING Modified: head/CHANGES ============================================================================== --- head/CHANGES Wed Oct 10 08:09:24 2012 (r305636) +++ head/CHANGES Wed Oct 10 08:40:21 2012 (r305637) @@ -10,6 +10,16 @@ in the release notes and/or placed into All ports committers are allowed to commit to this file. +20121010: +AUTHOR: bapt@FreeBSD.org + + * The ports tree is now using pkgng as the default package manager + for HEAD. This only affects users of CURRENT -- users of other + branches need not take any action. + + To keep pkg_install as the default package manager, use the new + WITHOUT_PKGNG knob in make.conf + 20120830: AUTHOR: beat@FreeBSD.org Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 10 08:09:24 2012 (r305636) +++ head/Mk/bsd.port.mk Wed Oct 10 08:40:21 2012 (r305637) @@ -1209,6 +1209,14 @@ OSVERSION!= ${SYSCTL} -n kern.osreldate .endif .endif +.if ${OSVERSION} >= 1000017 +.if !defined(WITHOUT_PKGNG) +WITH_PKGNG= yes +.else +.undef WITH_PKGNG +.endif +.endif + MASTERDIR?= ${.CURDIR} .if ${MASTERDIR} != ${.CURDIR} Modified: head/Mk/bsd.port.subdir.mk ============================================================================== --- head/Mk/bsd.port.subdir.mk Wed Oct 10 08:09:24 2012 (r305636) +++ head/Mk/bsd.port.subdir.mk Wed Oct 10 08:40:21 2012 (r305637) @@ -77,6 +77,14 @@ OSVERSION!= ${SYSCTL} -n kern.osreldate .endif .endif +.if ${OSVERSION} >= 1000017 +.if !defined(WITHOUT_PKGNG) +WITH_PKGNG= yes +.else +.undef WITH_PKGNG +.endif +.endif + .if !defined(_OSRELEASE) _OSRELEASE!= uname -r .endif Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 08:09:24 2012 (r305636) +++ head/UPDATING Wed Oct 10 08:40:21 2012 (r305637) @@ -5,6 +5,28 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20121010: + AFFECTS: users of CURRENT + AUTHOR: bapt@FreeBSD.org + + The ports tree is now using pkgng as the default package manager + for HEAD. This only affects users of CURRENT -- users of other + branches need not take any action. + + To keep pkg_install as the default package manager, use the new + WITHOUT_PKGNG knob in make.conf + + To make the switch: + + 1/ Set WITHOUT_PKGNG=yes in make.conf and upgrade all your ports to + the latest available versions using your favourite tools. + + 2/ Install ports-mgmt/pkg + + 3/ Remove WITHOUT_PKGNG from make.conf and run + + # pkg2ng + 20121009: AFFECTS: users of multimedia/vdpau-video AUTHOR: madpilot@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 09:11:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5023E449; Wed, 10 Oct 2012 09:11:42 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1EBEE8FC16; Wed, 10 Oct 2012 09:11: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 q9A9Bfmj093491; Wed, 10 Oct 2012 09:11:41 GMT (envelope-from erwin@svn.freebsd.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9A9Bfvv093486; Wed, 10 Oct 2012 09:11:41 GMT (envelope-from erwin@svn.freebsd.org) Message-Id: <201210100911.q9A9Bfvv093486@svn.freebsd.org> From: Erwin Lansing Date: Wed, 10 Oct 2012 09:11:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305639 - in head/dns: bind96 bind97 bind98 bind99 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 09:11:42 -0000 X-List-Received-Date: Wed, 10 Oct 2012 09:11:42 -0000 Author: erwin Date: Wed Oct 10 09:11:41 2012 New Revision: 305639 URL: http://svn.freebsd.org/changeset/ports/305639 Log: Take maintainership of the BIND ports while I'm working on the latest security releases. Modified: head/dns/bind96/Makefile head/dns/bind97/Makefile head/dns/bind98/Makefile head/dns/bind99/Makefile Modified: head/dns/bind96/Makefile ============================================================================== --- head/dns/bind96/Makefile Wed Oct 10 08:48:47 2012 (r305638) +++ head/dns/bind96/Makefile Wed Oct 10 09:11:41 2012 (r305639) @@ -9,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like Modified: head/dns/bind97/Makefile ============================================================================== --- head/dns/bind97/Makefile Wed Oct 10 08:48:47 2012 (r305638) +++ head/dns/bind97/Makefile Wed Oct 10 09:11:41 2012 (r305639) @@ -10,7 +10,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erwin@FreeBSD.org COMMENT?= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like Modified: head/dns/bind98/Makefile ============================================================================== --- head/dns/bind98/Makefile Wed Oct 10 08:48:47 2012 (r305638) +++ head/dns/bind98/Makefile Wed Oct 10 09:11:41 2012 (r305639) @@ -9,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Wed Oct 10 08:48:47 2012 (r305638) +++ head/dns/bind99/Makefile Wed Oct 10 09:11:41 2012 (r305639) @@ -9,7 +9,7 @@ DISTNAME= bind-${ISCVERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:25:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7BC1FA5D; Wed, 10 Oct 2012 11:25:07 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 644458FC25; Wed, 10 Oct 2012 11:25: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 q9ABP7tW016792; Wed, 10 Oct 2012 11:25:07 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABP7aK016790; Wed, 10 Oct 2012 11:25:07 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210101125.q9ABP7aK016790@svn.freebsd.org> From: Ryan Steinmetz Date: Wed, 10 Oct 2012 11:25:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305640 - head/security/truecrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:25:07 -0000 X-List-Received-Date: Wed, 10 Oct 2012 11:25:07 -0000 Author: zi Date: Wed Oct 10 11:25:06 2012 New Revision: 305640 URL: http://svn.freebsd.org/changeset/ports/305640 Log: - Add additional MASTER_SITES for pkcs header files. Modified: head/security/truecrypt/Makefile Modified: head/security/truecrypt/Makefile ============================================================================== --- head/security/truecrypt/Makefile Wed Oct 10 09:11:41 2012 (r305639) +++ head/security/truecrypt/Makefile Wed Oct 10 11:25:06 2012 (r305640) @@ -5,7 +5,8 @@ PORTNAME= truecrypt PORTVERSION= 7.1a CATEGORIES= security MASTER_SITES= SF/wxwindows/${WX_VER}/:wxwidgets \ - ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/:rsa + ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/:rsa \ + http://mirrors.rit.edu/zi/pkcs-11/v2-20/:rsa DISTFILES= ${TC_SRCFILE}:tc \ wxWidgets-${WX_VER}.tar.gz:wxwidgets \ pkcs11.h:rsa \ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:41:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 423F5EEE; Wed, 10 Oct 2012 11:41:36 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2A4678FC0A; Wed, 10 Oct 2012 11:41:36 +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 q9ABfaiS019020; Wed, 10 Oct 2012 11:41:36 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABfZBe019016; Wed, 10 Oct 2012 11:41:35 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210101141.q9ABfZBe019016@svn.freebsd.org> From: Ryan Steinmetz Date: Wed, 10 Oct 2012 11:41:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305641 - in head/devel/libhtp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:41:36 -0000 X-List-Received-Date: Wed, 10 Oct 2012 11:41:36 -0000 Author: zi Date: Wed Oct 10 11:41:35 2012 New Revision: 305641 URL: http://svn.freebsd.org/changeset/ports/305641 Log: - Add patch to fix null dereference - Bump PORTREVISION Approved by: wxs@ (maintainer) Obtained from: Upstream bug repo Added: head/devel/libhtp/files/ head/devel/libhtp/files/patch-htp__htp_util.c (contents, props changed) Modified: head/devel/libhtp/Makefile Modified: head/devel/libhtp/Makefile ============================================================================== --- head/devel/libhtp/Makefile Wed Oct 10 11:25:06 2012 (r305640) +++ head/devel/libhtp/Makefile Wed Oct 10 11:41:35 2012 (r305641) @@ -7,7 +7,7 @@ PORTNAME= libhtp PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel #MASTER_SITES= # This port uses github Added: head/devel/libhtp/files/patch-htp__htp_util.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libhtp/files/patch-htp__htp_util.c Wed Oct 10 11:41:35 2012 (r305641) @@ -0,0 +1,22 @@ +--- ./htp/htp_util.c.orig 2012-10-09 18:53:48.000000000 -0400 ++++ ./htp/htp_util.c 2012-10-09 18:54:31.000000000 -0400 +@@ -2099,7 +2099,8 @@ + len += bstr_len(hl->line); + } + +- len += bstr_len(tx->request_headers_sep); ++ if (tx->request_headers_sep) ++ len += bstr_len(tx->request_headers_sep); + + request_headers_raw = bstr_alloc(len); + if (request_headers_raw == NULL) { +@@ -2112,7 +2113,8 @@ + bstr_add_noex(request_headers_raw, hl->line); + } + +- bstr_add_noex(request_headers_raw, tx->request_headers_sep); ++ if (tx->request_headers_sep) ++ bstr_add_noex(request_headers_raw, tx->request_headers_sep); + + return request_headers_raw; + } From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:42:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A157FCD; Wed, 10 Oct 2012 11:42:05 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 579548FC0A; Wed, 10 Oct 2012 11:42:05 +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 q9ABg5Tm019167; Wed, 10 Oct 2012 11:42:05 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABg5nt019162; Wed, 10 Oct 2012 11:42:05 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210101142.q9ABg5nt019162@svn.freebsd.org> From: Ryan Steinmetz Date: Wed, 10 Oct 2012 11:42:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305642 - in head/security/suricata: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:42:05 -0000 X-List-Received-Date: Wed, 10 Oct 2012 11:42:05 -0000 Author: zi Date: Wed Oct 10 11:42:04 2012 New Revision: 305642 URL: http://svn.freebsd.org/changeset/ports/305642 Log: - Update to 1.3.2 Added: head/security/suricata/files/patch-src__app-layer-htp.c (contents, props changed) Modified: head/security/suricata/Makefile head/security/suricata/distinfo head/security/suricata/files/patch-src__suricata-common.h Modified: head/security/suricata/Makefile ============================================================================== --- head/security/suricata/Makefile Wed Oct 10 11:41:35 2012 (r305641) +++ head/security/suricata/Makefile Wed Oct 10 11:42:04 2012 (r305642) @@ -6,7 +6,7 @@ # PORTNAME= suricata -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.2 CATEGORIES= security MASTER_SITES= http://www.openinfosecfoundation.org/download/ \ http://mirrors.rit.edu/zi/ Modified: head/security/suricata/distinfo ============================================================================== --- head/security/suricata/distinfo Wed Oct 10 11:41:35 2012 (r305641) +++ head/security/suricata/distinfo Wed Oct 10 11:42:04 2012 (r305642) @@ -1,2 +1,2 @@ -SHA256 (suricata-1.3.1.tar.gz) = 6fe35cca4e3eba34c95ed972ab1157e95c9f3d6ac9c9bb0996344db5a7107e8d -SIZE (suricata-1.3.1.tar.gz) = 2345619 +SHA256 (suricata-1.3.2.tar.gz) = 6fc3b417368069bc8e7901967600c66c8324fdd5bb4cd5bc684e8063e0164b5a +SIZE (suricata-1.3.2.tar.gz) = 2346849 Added: head/security/suricata/files/patch-src__app-layer-htp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/suricata/files/patch-src__app-layer-htp.c Wed Oct 10 11:42:04 2012 (r305642) @@ -0,0 +1,50 @@ +--- ./src/app-layer-htp.c.orig 2012-10-03 09:44:25.000000000 -0400 ++++ ./src/app-layer-htp.c 2012-10-09 18:57:24.000000000 -0400 +@@ -657,14 +657,15 @@ + if (!(hstate->flags & HTP_FLAG_STATE_OPEN)) { + SCLogDebug("opening htp handle at %p", hstate->connp); + +- htp_connp_open(hstate->connp, NULL, f->sp, NULL, f->dp, 0); ++ htp_connp_open(hstate->connp, NULL, f->sp, NULL, f->dp, &f->startts); + hstate->flags |= HTP_FLAG_STATE_OPEN; + } else { + SCLogDebug("using existing htp handle at %p", hstate->connp); + } + ++ htp_time_t ts = { f->lastts_sec, 0 }; + /* pass the new data to the htp parser */ +- r = htp_connp_req_data(hstate->connp, 0, input, input_len); ++ r = htp_connp_req_data(hstate->connp, &ts, input, input_len); + + switch(r) { + case STREAM_STATE_ERROR: +@@ -693,7 +694,8 @@ + hstate->connp->in_status = STREAM_STATE_CLOSED; + // Call the parsers one last time, which will allow them + // to process the events that depend on stream closure +- htp_connp_req_data(hstate->connp, 0, NULL, 0); ++ htp_time_t ts = { f->lastts_sec, 0 }; ++ htp_connp_req_data(hstate->connp, &ts, NULL, 0); + hstate->flags |= HTP_FLAG_STATE_CLOSED_TS; + SCLogDebug("stream eof encountered, closing htp handle for ts"); + } +@@ -747,7 +749,8 @@ + * reactivate it if necessary) */ + hstate->flags &=~ HTP_FLAG_NEW_BODY_SET; + +- r = htp_connp_res_data(hstate->connp, 0, input, input_len); ++ htp_time_t ts = { f->lastts_sec, 0 }; ++ r = htp_connp_res_data(hstate->connp, &ts, input, input_len); + switch(r) { + case STREAM_STATE_ERROR: + HTPHandleError(hstate); +@@ -774,7 +777,8 @@ + hstate->connp->out_status = STREAM_STATE_CLOSED; + // Call the parsers one last time, which will allow them + // to process the events that depend on stream closure +- htp_connp_res_data(hstate->connp, 0, NULL, 0); ++ htp_time_t ts = { f->lastts_sec, 0 }; ++ htp_connp_res_data(hstate->connp, &ts, NULL, 0); + hstate->flags |= HTP_FLAG_STATE_CLOSED_TC; + } + Modified: head/security/suricata/files/patch-src__suricata-common.h ============================================================================== --- head/security/suricata/files/patch-src__suricata-common.h Wed Oct 10 11:41:35 2012 (r305641) +++ head/security/suricata/files/patch-src__suricata-common.h Wed Oct 10 11:42:04 2012 (r305642) @@ -1,10 +1,12 @@ ---- ./src/suricata-common.h.orig 2012-09-05 21:43:08.000000000 -0400 -+++ ./src/suricata-common.h 2012-09-05 21:46:28.000000000 -0400 -@@ -131,6 +131,8 @@ +--- ./src/suricata-common.h.orig 2012-08-21 02:35:15.000000000 -0400 ++++ ./src/suricata-common.h 2012-09-29 08:41:39.000000000 -0400 +@@ -131,6 +131,10 @@ #include #define BUG_ON(x) assert(!(x)) +#define table_getc(x, y) table_get_c(x, y) ++#define bstr_cmpc(x, y) bstr_cmp_c(x, y) ++#define bstr_tocstr(x) bstr_util_strdup_to_c(x) + /* we need this to stringify the defines which are supplied at compiletime see: http://gcc.gnu.org/onlinedocs/gcc-3.4.1/cpp/Stringification.html#Stringification */ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:47:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CB22401; Wed, 10 Oct 2012 11:47:33 +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 656C88FC18; Wed, 10 Oct 2012 11:47:33 +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 q9ABlXEU019979; Wed, 10 Oct 2012 11:47:33 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABlXx5019977; Wed, 10 Oct 2012 11:47:33 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210101147.q9ABlXx5019977@svn.freebsd.org> From: Florian Smeets Date: Wed, 10 Oct 2012 11:47:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305643 - head/lang/php53 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:47:33 -0000 X-List-Received-Date: Wed, 10 Oct 2012 11:47:33 -0000 Author: flo Date: Wed Oct 10 11:47:32 2012 New Revision: 305643 URL: http://svn.freebsd.org/changeset/ports/305643 Log: remove trainling " from MYSQLND_DESC Submitted by: Riccardo Torrini Modified: head/lang/php53/Makefile.ext Modified: head/lang/php53/Makefile.ext ============================================================================== --- head/lang/php53/Makefile.ext Wed Oct 10 11:42:04 2012 (r305642) +++ head/lang/php53/Makefile.ext Wed Oct 10 11:47:32 2012 (r305643) @@ -191,14 +191,14 @@ CONFIGURE_ARGS+=--with-mssql=${LOCALBASE OPTIONS_DEFINE= MYSQLND OPTIONS_DEFAULT= MYSQLND -MYSQLND_DESC= Use MySQL Native Driver" +MYSQLND_DESC= Use MySQL Native Driver .endif .if ${PHP_MODNAME} == "mysqli" OPTIONS_DEFINE= MYSQLND OPTIONS_DEFAULT= MYSQLND -MYSQLND_DESC= Use MySQL Native Driver" +MYSQLND_DESC= Use MySQL Native Driver .endif .if ${PHP_MODNAME} == "odbc" From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:53:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DF143623; Wed, 10 Oct 2012 11:53:08 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C558A8FC08; Wed, 10 Oct 2012 11:53:08 +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 q9ABr8Zs020809; Wed, 10 Oct 2012 11:53:08 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABr88C020806; Wed, 10 Oct 2012 11:53:08 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210101153.q9ABr88C020806@svn.freebsd.org> From: Frederic Culot Date: Wed, 10 Oct 2012 11:53:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305644 - head/devel/p5-Acme-MetaSyntactic X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:53:08 -0000 X-List-Received-Date: Wed, 10 Oct 2012 11:53:08 -0000 Author: culot Date: Wed Oct 10 11:53:08 2012 New Revision: 305644 URL: http://svn.freebsd.org/changeset/ports/305644 Log: - Update to 1.007 Changes: http://search.cpan.org/dist/Acme-MetaSyntactic/Changes Modified: head/devel/p5-Acme-MetaSyntactic/Makefile head/devel/p5-Acme-MetaSyntactic/distinfo Modified: head/devel/p5-Acme-MetaSyntactic/Makefile ============================================================================== --- head/devel/p5-Acme-MetaSyntactic/Makefile Wed Oct 10 11:47:32 2012 (r305643) +++ head/devel/p5-Acme-MetaSyntactic/Makefile Wed Oct 10 11:53:08 2012 (r305644) @@ -1,12 +1,8 @@ -# New ports collection makefile for: devel/p5-Acme-MetaSyntactic -# Date created: 27 April 2006 -# Whom: Anton Berezin -# +# Created by: Anton Berezin # $FreeBSD$ -# PORTNAME= Acme-MetaSyntactic -PORTVERSION= 1.006 +PORTVERSION= 1.007 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Acme-MetaSyntactic/distinfo ============================================================================== --- head/devel/p5-Acme-MetaSyntactic/distinfo Wed Oct 10 11:47:32 2012 (r305643) +++ head/devel/p5-Acme-MetaSyntactic/distinfo Wed Oct 10 11:53:08 2012 (r305644) @@ -1,2 +1,2 @@ -SHA256 (Acme-MetaSyntactic-1.006.tar.gz) = 017e112cd260878aec4bca1a6fc0d40b21ef3aa4e4b3eb4e38aeac14710f289b -SIZE (Acme-MetaSyntactic-1.006.tar.gz) = 51950 +SHA256 (Acme-MetaSyntactic-1.007.tar.gz) = 69948983eb1a1b0a8382f8d1a6490e605f1105daf678146e020116cb2642b1b6 +SIZE (Acme-MetaSyntactic-1.007.tar.gz) = 52087 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:54:45 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4758D713; Wed, 10 Oct 2012 11:54:45 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2CE168FC14; Wed, 10 Oct 2012 11:54:45 +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 q9ABsj8h021189; Wed, 10 Oct 2012 11:54:45 GMT (envelope-from erwin@svn.freebsd.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ABsihq021179; Wed, 10 Oct 2012 11:54:44 GMT (envelope-from erwin@svn.freebsd.org) Message-Id: <201210101154.q9ABsihq021179@svn.freebsd.org> From: Erwin Lansing Date: Wed, 10 Oct 2012 11:54:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305645 - in head: dns/bind96 dns/bind97 dns/bind98 dns/bind99 security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:54:45 -0000 X-List-Received-Date: Wed, 10 Oct 2012 11:54:45 -0000 Author: erwin Date: Wed Oct 10 11:54:44 2012 New Revision: 305645 URL: http://svn.freebsd.org/changeset/ports/305645 Log: Upgrade to the latest BIND patch level: A deliberately constructed combination of records could cause named to hang while populating the additional section of a response. Security: http://www.vuxml.org/freebsd/57a700f9-12c0-11e2-9f86-001d923933b6.html Modified: head/dns/bind96/Makefile head/dns/bind96/distinfo head/dns/bind97/Makefile head/dns/bind97/distinfo head/dns/bind98/Makefile head/dns/bind98/distinfo head/dns/bind99/Makefile head/dns/bind99/distinfo head/security/vuxml/vuln.xml Modified: head/dns/bind96/Makefile ============================================================================== --- head/dns/bind96/Makefile Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind96/Makefile Wed Oct 10 11:54:44 2012 (r305645) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bind96 -PORTVERSION= 9.6.3.1.ESV.R7.3 +PORTVERSION= 9.6.3.1.ESV.R7.4 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} @@ -13,7 +13,7 @@ MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like -ISCVERSION= 9.6-ESV-R7-P3 +ISCVERSION= 9.6-ESV-R7-P4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind96/distinfo ============================================================================== --- head/dns/bind96/distinfo Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind96/distinfo Wed Oct 10 11:54:44 2012 (r305645) @@ -1,4 +1,4 @@ -SHA256 (bind-9.6-ESV-R7-P3.tar.gz) = c3ca6ab6c162689ec9662d822b255c3a99c076d968bc059b4ae11f1d4c35edae -SIZE (bind-9.6-ESV-R7-P3.tar.gz) = 6411767 -SHA256 (bind-9.6-ESV-R7-P3.tar.gz.asc) = 1a9cf3ba23a769d6a2e38a881ab9f714a2203104db88312ef9f931269af0da3d -SIZE (bind-9.6-ESV-R7-P3.tar.gz.asc) = 490 +SHA256 (bind-9.6-ESV-R7-P4.tar.gz) = 27152922fbf32fd5a39243e5daf00b6b74a80105aa357b2d6bb332cd41e68085 +SIZE (bind-9.6-ESV-R7-P4.tar.gz) = 6419312 +SHA256 (bind-9.6-ESV-R7-P4.tar.gz.asc) = 29ca706cd26f3b4cd7c08311927ff5b6c3db01c28df5a9add8f23d95ce601ca3 +SIZE (bind-9.6-ESV-R7-P4.tar.gz.asc) = 490 Modified: head/dns/bind97/Makefile ============================================================================== --- head/dns/bind97/Makefile Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind97/Makefile Wed Oct 10 11:54:44 2012 (r305645) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= bind97 -PORTVERSION= 9.7.6.3 +PORTVERSION= 9.7.6.4 PORTREVISION?= 0 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} @@ -14,7 +14,7 @@ MAINTAINER= erwin@FreeBSD.org COMMENT?= BIND DNS suite with updated DNSSEC and threads # ISC releases things like 9.4.0b3, which our versioning doesn't like -ISCVERSION= 9.7.6-P3 +ISCVERSION= 9.7.6-P4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind97/distinfo ============================================================================== --- head/dns/bind97/distinfo Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind97/distinfo Wed Oct 10 11:54:44 2012 (r305645) @@ -1,4 +1,4 @@ -SHA256 (bind-9.7.6-P3.tar.gz) = 5d5ad5b168fb9231185e363b7d8c391e4b7b801eef269415f273e5e4591ba277 -SIZE (bind-9.7.6-P3.tar.gz) = 6971503 -SHA256 (bind-9.7.6-P3.tar.gz.asc) = 6b388305b98b0b46a4629333b15513a406779bbf70aeccc7be6b74aa1d5fe61c -SIZE (bind-9.7.6-P3.tar.gz.asc) = 490 +SHA256 (bind-9.7.6-P4.tar.gz) = 58b01bcf3ec5e2cfcad99b09379c164e508dc07dd8fb602970812d95fa30292e +SIZE (bind-9.7.6-P4.tar.gz) = 6983647 +SHA256 (bind-9.7.6-P4.tar.gz.asc) = ce01b28e00388e16d4fd4ba7be98b7fe51ac69b32e935913189fcbeed3bb063e +SIZE (bind-9.7.6-P4.tar.gz.asc) = 490 Modified: head/dns/bind98/Makefile ============================================================================== --- head/dns/bind98/Makefile Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind98/Makefile Wed Oct 10 11:54:44 2012 (r305645) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bind98 -PORTVERSION= 9.8.3.3 +PORTVERSION= 9.8.3.4 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} @@ -13,7 +13,7 @@ MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.8.3-P3 +ISCVERSION= 9.8.3-P4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind98/distinfo ============================================================================== --- head/dns/bind98/distinfo Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind98/distinfo Wed Oct 10 11:54:44 2012 (r305645) @@ -1,4 +1,4 @@ -SHA256 (bind-9.8.3-P3.tar.gz) = 2819fc75f686bd0d393e04873f69982e0462a5604bfd2e207396b86334200cd3 -SIZE (bind-9.8.3-P3.tar.gz) = 7109848 -SHA256 (bind-9.8.3-P3.tar.gz.asc) = a7ae019d9ededba3e50fb889eb0096dc0d53117996d20420750776bb176805c2 -SIZE (bind-9.8.3-P3.tar.gz.asc) = 490 +SHA256 (bind-9.8.3-P4.tar.gz) = 2fc27441ed0c3905045c4baca639c953e7f3f2bc684b52abbf35481d617e783f +SIZE (bind-9.8.3-P4.tar.gz) = 7117624 +SHA256 (bind-9.8.3-P4.tar.gz.asc) = 967f4c9fc0b5cd2982d3113f6ed672ac46eb7f8893d35abc19a6282b02ee4c69 +SIZE (bind-9.8.3-P4.tar.gz.asc) = 490 Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind99/Makefile Wed Oct 10 11:54:44 2012 (r305645) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bind99 -PORTVERSION= 9.9.1.3 +PORTVERSION= 9.9.1.4 CATEGORIES= dns net ipv6 MASTER_SITES= ${MASTER_SITE_ISC} MASTER_SITE_SUBDIR= bind9/${ISCVERSION} @@ -13,7 +13,7 @@ MAINTAINER= erwin@FreeBSD.org COMMENT= BIND DNS suite with updated DNSSEC and DNS64 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.9.1-P3 +ISCVERSION= 9.9.1-P4 MAKE_JOBS_UNSAFE= yes Modified: head/dns/bind99/distinfo ============================================================================== --- head/dns/bind99/distinfo Wed Oct 10 11:53:08 2012 (r305644) +++ head/dns/bind99/distinfo Wed Oct 10 11:54:44 2012 (r305645) @@ -1,4 +1,4 @@ -SHA256 (bind-9.9.1-P3.tar.gz) = 1cdb83db76d6f8554dea19e3bd82b8d65261a24b9ce9fc948eade8c57569e302 -SIZE (bind-9.9.1-P3.tar.gz) = 7217415 -SHA256 (bind-9.9.1-P3.tar.gz.asc) = d3047cc5dfd5f4fe941996f363425ce86856b389fe7de6aad251f0d627e4d145 -SIZE (bind-9.9.1-P3.tar.gz.asc) = 490 +SHA256 (bind-9.9.1-P4.tar.gz) = 18f90727fd9566da037e71569d9b3a4834c96b04d9e75f9899eba0bc88c0868a +SIZE (bind-9.9.1-P4.tar.gz) = 7227655 +SHA256 (bind-9.9.1-P4.tar.gz.asc) = f781b8eeeb44b3c88e8f68eddd1c3d85d089dcb00d99fede76ccdaa1a7f1e404 +SIZE (bind-9.9.1-P4.tar.gz.asc) = 490 Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Oct 10 11:53:08 2012 (r305644) +++ head/security/vuxml/vuln.xml Wed Oct 10 11:54:44 2012 (r305645) @@ -51,6 +51,44 @@ Note: Please add new entries to the beg --> + + dns/bind9* -- crash on deliberately constructed combination of records + + + bind99 + 9.9.1.4 + + + bind98 + 9.8.3.4 + + + bind97 + 9.7.6.4 + + + bind96 + 9.6.3.1.ESV.R7.4 + + + + +

ISC reports:

+
+

A deliberately constructed combination of records could cause named + to hang while populating the additional section of a response.

+
+ +
+ + CVE-2012-5166 + + + 2012-09-26 + 2012-10-10 + +
+ chromium -- multiple vulnerabilities From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 11:59:45 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C65E3B00; Wed, 10 Oct 2012 11:59:45 +0000 (UTC) (envelope-from jbeich@tormail.org) Received: from outgoing.tormail.org (outgoing.tormail.org [82.221.96.22]) by mx1.freebsd.org (Postfix) with ESMTP id 5A6948FC3A; Wed, 10 Oct 2012 11:59:45 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=internal.tormail.org) by outgoing.tormail.org with esmtp (Exim 4.72) (envelope-from ) id 1TLuwt-0000Hr-OY; Wed, 10 Oct 2012 15:59:43 +0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tormail.org; s=tm; h=Message-Id:X-TorMail-User:Content-Type:MIME-Version:References:Date:In-Reply-To:Subject:Cc:To:From; bh=iwMpOViTVU9i4uhffOOy/+PJ0bSYwqZuo9xn2ZGlMGY=; b=kAI7FP5OdF8cQ0ZMNqrChEy0PwUD5cpQJ56qlyAONonF80gTfw8L+wNp9Ya/mnNdKRt6SFX3PuYYhIBjsvmOeRcXQJb6BIszayK2nQCsV8H1qqw+ty15qpIJILn7iBZhJXhIp5pPTqZpgzn+NaO2StwvDLNnq2RJ5oqrX3Orp+I=; Received: from jbeich by internal.tormail.org with local (Exim 4.63) (envelope-from ) id 1TLuvE-000Fa2-Ef; Wed, 10 Oct 2012 11:57:58 +0000 From: Jan Beich To: Baptiste Daroussin Subject: Re: svn commit: r305288 - head/Mk In-Reply-To: <1TLpzq-0009Zh-L4@internal.tormail.org> (Baptiste Daroussin's message of "Wed, 10 Oct 2012 08:20:32 +0200") Date: Wed, 10 Oct 2012 06:55:14 -0500 References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> <20121009161009.GF8713@ithaqua.etoilebsd.net> <1TLidW-000EbL-Lp@internal.tormail.org> <1TLpzq-0009Zh-L4@internal.tormail.org> MIME-Version: 1.0 Content-Type: text/plain X-TorMail-User: jbeich Message-Id: <1TLuvE-000Fa2-Ef@internal.tormail.org> Cc: svn-ports-head@FreeBSD.org, Alexey Dokuchaev , svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 11:59:45 -0000 X-List-Received-Date: Wed, 10 Oct 2012 11:59:45 -0000 Baptiste Daroussin writes: > On Tue, Oct 09, 2012 at 12:51:07PM -1000, Jan Beich wrote: > >> Baptiste Daroussin writes: >> >> > On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: >> > >> >> On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: >> >> > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: >> >> > > That's because OptionsNG poorly implement mutually exclusive >> >> > > options. I >> >> > > hope that eventually dialog's --radiolist would be utilized >> >> > > for proper >> >> > > handling, and sane knobs names would be restored. >> >> > > >> >> > > Sounds like a nice port junior hacker project. >> >> > >> >> > Not hat junior dialog(1) can't mix radiolist and classic >> >> > checklist that is >> >> > why it doesn't use it, using libdialog(3), it would be easiy to >> >> > implement, >> >> > but that won't be usable for a while (until all supported version of >> >> > freebsd has it. >> >> >> >> Ah, OK, that explains it (lack of radiobuttons now). Is it known what's >> >> preventing all supported versions to have working libdialog(3), >> >> if we have >> >> working dialog(1) already? >> >> >> >> ./danfe >> > >> > new dialog is only on 9.x and 10.x, if will require to code some special >> > dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicated >> > because the API isn't compatible. >> >> Why not add devel/cdialog to bootstrap on < 9.0 and install it only when >> BATCH is not set? >> > > That do not change the fact that ${SOMEONE} will have to code a dialog(1) > dedicated for ports, the library is able to let us mix radio and > check, but the > frontend (dialog(1)) is still not able to. > > if someone stepup to do it, I'll be more than happy :) Did you miss one? http://lists.freebsd.org/pipermail/freebsd-ports/2010-November/064363.html http://lists.freebsd.org/pipermail/freebsd-ports/2010-December/064772.html > > regards, > Bapt From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:01:34 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 911A4E4A; Wed, 10 Oct 2012 12:01:34 +0000 (UTC) (envelope-from zeising@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id 077608FC21; Wed, 10 Oct 2012 12:01:34 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id D7FFC40004; Wed, 10 Oct 2012 14:01:32 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id CDB454000C; Wed, 10 Oct 2012 14:01:32 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bernadotte.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=AWL autolearn=disabled version=3.3.1 X-Spam-Score: 0.0 Received: from mx.daemonic.se (h-45-105.a163.priv.bahnhof.se [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id BB17640004; Wed, 10 Oct 2012 14:01:31 +0200 (CEST) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3XcDRv2kz6z8ggx; Wed, 10 Oct 2012 14:01:31 +0200 (CEST) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id kMvqHwqdP3Em; Wed, 10 Oct 2012 14:01:25 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3XcDRn6FFHz8ggv; Wed, 10 Oct 2012 14:01:25 +0200 (CEST) Received: from tifa.daemonic.se (tifa.daemonic.se [10.32.0.6]) by mail.daemonic.se (Postfix) with ESMTPSA id 3XcDRn5fTrz9Ctq; Wed, 10 Oct 2012 14:01:25 +0200 (CEST) Received: from tifa.daemonic.se (localhost [IPv6:::1]) by tifa.daemonic.se (Postfix) with ESMTP id 3FDD822AFA; Wed, 10 Oct 2012 14:01:25 +0200 (CEST) Message-ID: <50756395.1050502@daemonic.se> Date: Wed, 10 Oct 2012 14:01:25 +0200 From: Niclas Zeising User-Agent: Mutt/1.5.21 MIME-Version: 1.0 To: Erwin Lansing Subject: Re: svn commit: r305645 - in head: dns/bind96 dns/bind97 dns/bind98 dns/bind99 security/vuxml References: <201210101154.q9ABsihq021179@svn.freebsd.org> In-Reply-To: <201210101154.q9ABsihq021179@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:01:34 -0000 X-List-Received-Date: Wed, 10 Oct 2012 12:01:34 -0000 On 10/10/12 13:54, Erwin Lansing wrote: > Author: erwin > Date: Wed Oct 10 11:54:44 2012 > New Revision: 305645 > URL: http://svn.freebsd.org/changeset/ports/305645 > > Log: > Upgrade to the latest BIND patch level: > > A deliberately constructed combination of records could cause named > to hang while populating the additional section of a response. > > Security: http://www.vuxml.org/freebsd/57a700f9-12c0-11e2-9f86-001d923933b6.html > Any reason to not update to 9.9.2, 9.8.4, etc? Regards! -- Niclas Zeising From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:05:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 096FFAD; Wed, 10 Oct 2012 12:05:16 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (grizzly.droso.dk [IPv6:2a01:4f8:100:9424::3]) by mx1.freebsd.org (Postfix) with ESMTP id 93BA18FC14; Wed, 10 Oct 2012 12:05:15 +0000 (UTC) Received: by mail.droso.net (Postfix, from userid 1001) id 40905603C; Wed, 10 Oct 2012 14:05:14 +0200 (CEST) Date: Wed, 10 Oct 2012 14:05:14 +0200 From: Erwin Lansing To: Niclas Zeising Subject: Re: svn commit: r305645 - in head: dns/bind96 dns/bind97 dns/bind98 dns/bind99 security/vuxml Message-ID: <20121010120512.GU27371@droso.net> References: <201210101154.q9ABsihq021179@svn.freebsd.org> <50756395.1050502@daemonic.se> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <50756395.1050502@daemonic.se> X-Operating-System: FreeBSD/amd64 9.0-RELEASE User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:05:16 -0000 X-List-Received-Date: Wed, 10 Oct 2012 12:05:16 -0000 On Wed, Oct 10, 2012 at 02:01:25PM +0200, Niclas Zeising wrote: > On 10/10/12 13:54, Erwin Lansing wrote: > > Author: erwin > > Date: Wed Oct 10 11:54:44 2012 > > New Revision: 305645 > > URL: http://svn.freebsd.org/changeset/ports/305645 > > > > Log: > > Upgrade to the latest BIND patch level: > > > > A deliberately constructed combination of records could cause named > > to hang while populating the additional section of a response. > > > > Security: http://www.vuxml.org/freebsd/57a700f9-12c0-11e2-9f86-001d923933b6.html > > > > Any reason to not update to 9.9.2, 9.8.4, etc? This was a quick update to get the latest security patches in, updating to the next minor releases will follow later. Erwin -- Erwin Lansing http://droso.dk erwin@FreeBSD.org http:// www.FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:09:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AE0D3F3; Wed, 10 Oct 2012 12:09:55 +0000 (UTC) (envelope-from zeising@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id 2B3D48FC51; Wed, 10 Oct 2012 12:09:54 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 483E840004; Wed, 10 Oct 2012 14:09:54 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id 3AF964000C; Wed, 10 Oct 2012 14:09:54 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bernadotte.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=AWL autolearn=disabled version=3.3.1 X-Spam-Score: 0.0 Received: from mx.daemonic.se (h-45-105.a163.priv.bahnhof.se [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id A2B6440004; Wed, 10 Oct 2012 14:09:53 +0200 (CEST) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3XcDdY3V7qz8ggx; Wed, 10 Oct 2012 14:09:53 +0200 (CEST) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mx.daemonic.se ([10.1.0.3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [10.1.0.6]) (amavisd-new, port 10025) with ESMTPS id 28WrNO6rAteP; Wed, 10 Oct 2012 14:09:51 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [10.1.0.4]) by mx.daemonic.se (Postfix) with ESMTPS id 3XcDdV6zspz8ggv; Wed, 10 Oct 2012 14:09:50 +0200 (CEST) Received: from tifa.daemonic.se (tifa.daemonic.se [10.32.0.6]) by mail.daemonic.se (Postfix) with ESMTPSA id 3XcDdV6gkwz9CvV; Wed, 10 Oct 2012 14:09:50 +0200 (CEST) Received: from tifa.daemonic.se (localhost [IPv6:::1]) by tifa.daemonic.se (Postfix) with ESMTP id 9005F22AFA; Wed, 10 Oct 2012 14:09:50 +0200 (CEST) Message-ID: <5075658E.1020503@daemonic.se> Date: Wed, 10 Oct 2012 14:09:50 +0200 From: Niclas Zeising User-Agent: Mutt/1.5.21 MIME-Version: 1.0 To: Erwin Lansing Subject: Re: svn commit: r305645 - in head: dns/bind96 dns/bind97 dns/bind98 dns/bind99 security/vuxml References: <201210101154.q9ABsihq021179@svn.freebsd.org> <50756395.1050502@daemonic.se> <20121010120512.GU27371@droso.net> In-Reply-To: <20121010120512.GU27371@droso.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:09:55 -0000 X-List-Received-Date: Wed, 10 Oct 2012 12:09:55 -0000 On 10/10/12 14:05, Erwin Lansing wrote: > On Wed, Oct 10, 2012 at 02:01:25PM +0200, Niclas Zeising wrote: >> On 10/10/12 13:54, Erwin Lansing wrote: >>> Author: erwin >>> Date: Wed Oct 10 11:54:44 2012 >>> New Revision: 305645 >>> URL: http://svn.freebsd.org/changeset/ports/305645 >>> >>> Log: >>> Upgrade to the latest BIND patch level: >>> >>> A deliberately constructed combination of records could cause named >>> to hang while populating the additional section of a response. >>> >>> Security: http://www.vuxml.org/freebsd/57a700f9-12c0-11e2-9f86-001d923933b6.html >>> >> >> Any reason to not update to 9.9.2, 9.8.4, etc? > > This was a quick update to get the latest security patches in, updating > to the next minor releases will follow later. > > Erwin > Ok. Thanks for the info! For what it's worth, bind 9.9.2 builds fine... Let me know if you need any help with further testing or anything! Regards! -- Niclas Zeising From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:20:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0D6B7E1; Wed, 10 Oct 2012 12:20:25 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D8F928FC12; Wed, 10 Oct 2012 12:20:25 +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 q9ACKPsb024831; Wed, 10 Oct 2012 12:20:25 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACKPm5024829; Wed, 10 Oct 2012 12:20:25 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210101220.q9ACKPm5024829@svn.freebsd.org> From: "Jason E. Hale" Date: Wed, 10 Oct 2012 12:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305646 - head/security/libassuan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:20:26 -0000 X-List-Received-Date: Wed, 10 Oct 2012 12:20:26 -0000 Author: jhale Date: Wed Oct 10 12:20:25 2012 New Revision: 305646 URL: http://svn.freebsd.org/changeset/ports/305646 Log: - Take maintainership Approved by: makc, avilla (mentors, implicit) Modified: head/security/libassuan/Makefile (contents, props changed) Modified: head/security/libassuan/Makefile ============================================================================== --- head/security/libassuan/Makefile Wed Oct 10 11:54:44 2012 (r305645) +++ head/security/libassuan/Makefile Wed Oct 10 12:20:25 2012 (r305646) @@ -1,5 +1,4 @@ # Created by: Michael Nottebrock -# # $FreeBSD$ PORTNAME= libassuan @@ -10,7 +9,7 @@ MASTER_SITE_SUBDIR=${PORTNAME} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jhale@FreeBSD.org COMMENT= IPC library used by GnuPG and gpgme LIB_DEPENDS+= pth.20:${PORTSDIR}/devel/pth \ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:20:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F8618A1; Wed, 10 Oct 2012 12:20:33 +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 658B08FC1F; Wed, 10 Oct 2012 12:20:33 +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 q9ACKXHS024949; Wed, 10 Oct 2012 12:20:33 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACKXQ6024944; Wed, 10 Oct 2012 12:20:33 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210101220.q9ACKXQ6024944@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Wed, 10 Oct 2012 12:20:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305647 - in head/databases/py-postgresql: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:20:33 -0000 X-List-Received-Date: Wed, 10 Oct 2012 12:20:33 -0000 Author: rm Date: Wed Oct 10 12:20:32 2012 New Revision: 305647 URL: http://svn.freebsd.org/changeset/ports/305647 Log: - update to 1.1.0 - trim Makefile header completely (requested by maintainer) - add CHEESESHOP and make it primary MASTER_SITE, because other locations doesn't hold the new release yet - remove one distfile mirror (requested by maintainer) - add LICENSE (BSD) - replace USE_XZ with USE_ZIP, since it was changed upstream - tune PYDISTUTILS_PKGNAME - move python32 plist stuff into separate file changelog: http://pgfoundry.org/pipermail/python-general/2012-October/001003.html PR: 172544 (but I can't see it in GNATS because of hub transition) Submitted by: rm (myself) Approved by: Volodymyr Kostyrko (maintainer, by mail) Added: head/databases/py-postgresql/files/ head/databases/py-postgresql/files/py3k-fix-pkg-plist.inc (contents, props changed) Modified: head/databases/py-postgresql/Makefile head/databases/py-postgresql/distinfo head/databases/py-postgresql/pkg-plist Modified: head/databases/py-postgresql/Makefile ============================================================================== --- head/databases/py-postgresql/Makefile Wed Oct 10 12:20:25 2012 (r305646) +++ head/databases/py-postgresql/Makefile Wed Oct 10 12:20:32 2012 (r305647) @@ -1,15 +1,10 @@ -# New ports collection makefile for: py-postgresql -# Date created: 15 August 2009 -# Whom: Volodymyr Kostyrko -# # $FreeBSD$ -# PORTNAME= postgresql -PORTVERSION= 1.0.4 +PORTVERSION= 1.1.0 CATEGORIES= databases python -MASTER_SITES= http://python.projects.postgresql.org/files/ \ - http://limbo.xim.bz/distfiles/ +MASTER_SITES= CHEESESHOP \ + http://python.projects.postgresql.org/files/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= py-${PORTNAME}-${PORTVERSION} DIST_SUBDIR= postgresql @@ -17,30 +12,18 @@ DIST_SUBDIR= postgresql MAINTAINER= c.kworr@gmail.com COMMENT= Python 3 compatible PostgreSQL database driver and tools -USE_XZ= yes +LICENSE= BSD + +USE_ZIP= yes USE_PGSQL= yes USE_PYTHON= 3.1+ USE_PYDISTUTILS= yes - -PYDISTUTILS_EGGINFO= py_${PYDISTUTILS_PKGNAME:C/[^A-Za-z0-9.]+/_/g}-${PYDISTUTILS_PKGVERSION:C/[^A-Za-z0-9.]+/_/g}-${PYTHON_VERSION:S/thon//}.egg-info +PYDISTUTILS_PKGNAME= py_${PORTNAME} .include -# When Python version is 3.2+ we rewrite all the filenames -# of TMPPLIST that end with .py[co], so that they conform -# to PEP 3147 (see http://www.python.org/dev/peps/pep-3147/) .if ${PYTHON_REL} >= 320 -PYMAGICTAG= ${PYTHON_CMD} -c 'import imp; print(imp.get_tag())' -add-plist-post: - @${AWK} '\ - /\.py[co]$$/ && !($$0 ~ "/" pc "/") {id = match($$0, /\/[^\/]+\.py[co]$$/); if (id != 0) {d = substr($$0, 1, RSTART - 1); dirs[d] = 1}; sub(/\.py[co]$$/, "." mt "&"); sub(/[^\/]+\.py[co]$$/, pc "/&"); print; next} \ - /^@dirrm / {d = substr($$0, 8); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \ - {print} \ - END {if (sp in dirs) {print "@dirrm " sp "/" pc}} \ - ' \ - pc="__pycache__" mt="$$(${PYMAGICTAG})" sp="${PYTHON_SITELIBDIR:S,${PYTHONBASE}/,,g}" \ - ${TMPPLIST} > ${TMPPLIST}.pyc_tmp - @${MV} ${TMPPLIST}.pyc_tmp ${TMPPLIST} +.include "${FILESDIR}/py3k-fix-pkg-plist.inc" .endif .include Modified: head/databases/py-postgresql/distinfo ============================================================================== --- head/databases/py-postgresql/distinfo Wed Oct 10 12:20:25 2012 (r305646) +++ head/databases/py-postgresql/distinfo Wed Oct 10 12:20:32 2012 (r305647) @@ -1,2 +1,2 @@ -SHA256 (postgresql/py-postgresql-1.0.4.tar.xz) = d0ed0a98a33c598d416a3c713befcdedb14f37b961c6985547a120f8830a41fe -SIZE (postgresql/py-postgresql-1.0.4.tar.xz) = 605228 +SHA256 (postgresql/py-postgresql-1.1.0.zip) = 4bae6e15bf0be03294240acc5b27f5aa2d9649188bc4528cd5b5512582e0ea93 +SIZE (postgresql/py-postgresql-1.1.0.zip) = 254537 Added: head/databases/py-postgresql/files/py3k-fix-pkg-plist.inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-postgresql/files/py3k-fix-pkg-plist.inc Wed Oct 10 12:20:32 2012 (r305647) @@ -0,0 +1,14 @@ +# When Python version is 3.2+ we rewrite all the filenames +# of TMPPLIST that end with .py[co], so that they conform +# to PEP 3147 (see http://www.python.org/dev/peps/pep-3147/) +PYMAGICTAG= ${PYTHON_CMD} -c 'import imp; print(imp.get_tag())' +add-plist-post: + @${AWK} '\ + /\.py[co]$$/ && !($$0 ~ "/" pc "/") {id = match($$0, /\/[^\/]+\.py[co]$$/); if (id != 0) {d = substr($$0, 1, RSTART - 1); dirs[d] = 1}; sub(/\.py[co]$$/, "." mt "&"); sub(/[^\/]+\.py[co]$$/, pc "/&"); print; next} \ + /^@dirrm / {d = substr($$0, 8); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \ + {print} \ + END {if (sp in dirs) {print "@dirrm " sp "/" pc}} \ + ' \ + pc="__pycache__" mt="$$(${PYMAGICTAG})" sp="${PYTHON_SITELIBDIR:S,${PYTHONBASE}/,,g}" \ + ${TMPPLIST} > ${TMPPLIST}.pyc_tmp + @${MV} ${TMPPLIST}.pyc_tmp ${TMPPLIST} Modified: head/databases/py-postgresql/pkg-plist ============================================================================== --- head/databases/py-postgresql/pkg-plist Wed Oct 10 12:20:25 2012 (r305646) +++ head/databases/py-postgresql/pkg-plist Wed Oct 10 12:20:32 2012 (r305647) @@ -26,55 +26,6 @@ %%PYTHON_SITELIBDIR%%/postgresql/copyman.py %%PYTHON_SITELIBDIR%%/postgresql/copyman.pyc %%PYTHON_SITELIBDIR%%/postgresql/copyman.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/admin.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/admin.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/admin.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/admin.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/alock.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/alock.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/alock.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/alock.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/bin.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/bin.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/bin.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/bin.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/changes-v1.0.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/changes.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/changes.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/changes.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/clientparameters.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/clientparameters.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/clientparameters.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/clientparameters.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/cluster.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/cluster.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/cluster.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/cluster.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/copyman.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/copyman.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/copyman.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/copyman.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/driver.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/driver.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/driver.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/driver.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/gotchas.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/gotchas.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/gotchas.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/gotchas.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/index.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/index.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/index.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/index.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/lib.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/lib.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/lib.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/lib.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/notifyman.py -%%PYTHON_SITELIBDIR%%/postgresql/documentation/notifyman.pyc -%%PYTHON_SITELIBDIR%%/postgresql/documentation/notifyman.pyo -%%PYTHON_SITELIBDIR%%/postgresql/documentation/notifyman.txt -%%PYTHON_SITELIBDIR%%/postgresql/documentation/modules.txt %%PYTHON_SITELIBDIR%%/postgresql/documentation/__init__.py %%PYTHON_SITELIBDIR%%/postgresql/documentation/__init__.pyc %%PYTHON_SITELIBDIR%%/postgresql/documentation/__init__.pyo From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:28:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A6E01CA4; Wed, 10 Oct 2012 12:28:23 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8E8C98FC08; Wed, 10 Oct 2012 12:28: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 q9ACSNsA026188; Wed, 10 Oct 2012 12:28:23 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACSN9w026185; Wed, 10 Oct 2012 12:28:23 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101228.q9ACSN9w026185@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 12:28:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305648 - head/devel/tcllib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:28:23 -0000 X-List-Received-Date: Wed, 10 Oct 2012 12:28:23 -0000 Author: gahr Date: Wed Oct 10 12:28:22 2012 New Revision: 305648 URL: http://svn.freebsd.org/changeset/ports/305648 Log: - Do not install the try.n manpage when using Tcl 8.6, cause try/catch/finally are part of Tcl 8.6 core and the relevant manpage is installed by lang/tcl86 http://www.tcl.tk/cgi-bin/tct/tip/329.html Modified: head/devel/tcllib/Makefile head/devel/tcllib/Makefile.man Modified: head/devel/tcllib/Makefile ============================================================================== --- head/devel/tcllib/Makefile Wed Oct 10 12:20:32 2012 (r305647) +++ head/devel/tcllib/Makefile Wed Oct 10 12:28:22 2012 (r305648) @@ -7,6 +7,7 @@ PORTNAME= tcllib PORTVERSION= 1.14 +PORTREVISION= 1 CATEGORIES= devel tcl MASTER_SITES= SF @@ -43,6 +44,14 @@ post-patch: ${WRKSRC}/modules/doctools/tests/text/04 > ${WRKSRC}/modules/doctools/tests/text/04.new ${MV} ${WRKSRC}/modules/doctools/tests/text/04.new ${WRKSRC}/modules/doctools/tests/text/04 + # try(n) is part of Tcl core since 8.6 +.if ${TCL_VER:S/.//} < 86 + MANN+= try.n +.else + ${MV} ${WRKSRC}/modules/try/try.man ${WRKSRC}/modules/try/try.man.noinstall +.endif + + RUNTEST= ${SETENV} LANG=C DISPLAY= ${MAKE} -C ${WRKSRC} test MYID != ${ID} -u .if ${MYID} == 0 Modified: head/devel/tcllib/Makefile.man ============================================================================== --- head/devel/tcllib/Makefile.man Wed Oct 10 12:20:32 2012 (r305647) +++ head/devel/tcllib/Makefile.man Wed Oct 10 12:28:22 2012 (r305648) @@ -303,7 +303,6 @@ MANN= S3.n \ traverse.n \ treeql.n \ trim.n \ - try.n \ uevent.n \ uevent_onidle.n \ unicode.n \ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:31:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A8C2EC6; Wed, 10 Oct 2012 12:31:21 +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 81BBA8FC1E; Wed, 10 Oct 2012 12:31: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 q9ACVLeD026808; Wed, 10 Oct 2012 12:31:21 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACVLhA026806; Wed, 10 Oct 2012 12:31:21 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101231.q9ACVLhA026806@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 12:31:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305649 - head/dns/fpdns X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:31:21 -0000 X-List-Received-Date: Wed, 10 Oct 2012 12:31:21 -0000 Author: bdrewery Date: Wed Oct 10 12:31:20 2012 New Revision: 305649 URL: http://svn.freebsd.org/changeset/ports/305649 Log: - Take maintainership - Trim header - Use USE_GITHUB for fetching Modified: head/dns/fpdns/Makefile Modified: head/dns/fpdns/Makefile ============================================================================== --- head/dns/fpdns/Makefile Wed Oct 10 12:28:22 2012 (r305648) +++ head/dns/fpdns/Makefile Wed Oct 10 12:31:20 2012 (r305649) @@ -1,21 +1,20 @@ # Created by: Edwin Groothuis -# # $FreeBSD$ PORTNAME= fpdns PORTVERSION= 0.9.3.20120719 CATEGORIES= dns net perl5 -MASTER_SITES= https://github.com/kirei/fpdns/tarball/${GITVERSION}/ -DISTNAME= kirei-fpdns-${GITVERSION} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bdrewery@FreeBSD.org COMMENT= FPDNS - Fingerprinting DNS servers -FETCH_ARGS= -Fpr -GITVERSION= 9eb38df - RUN_DEPENDS= p5-Net-DNS>0:${PORTSDIR}/dns/p5-Net-DNS +USE_GITHUB= yes +GH_ACCOUNT= kirei +GH_COMMIT= 9eb38df + PERL_CONFIGURE= yes MAN1= fpdns.1 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 12:33:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 992FC9D; Wed, 10 Oct 2012 12:33:36 +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 7E5B68FC0C; Wed, 10 Oct 2012 12:33:36 +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 q9ACXaEQ027317; Wed, 10 Oct 2012 12:33:36 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ACXatN027309; Wed, 10 Oct 2012 12:33:36 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101233.q9ACXatN027309@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 12:33:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305650 - in head: chinese/bug5 converters/bsdconv converters/gbsdconv converters/p5-bsdconv converters/php5-bsdconv converters/py-bsdconv converters/ruby-bsdconv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 12:33:36 -0000 X-List-Received-Date: Wed, 10 Oct 2012 12:33:36 -0000 Author: bdrewery Date: Wed Oct 10 12:33:35 2012 New Revision: 305650 URL: http://svn.freebsd.org/changeset/ports/305650 Log: - Use GH_ACCOUNT in DISTNAME Suggested by: sunpoet Approved by: Kuan-Chung Chiu (maintainer) Modified: head/chinese/bug5/Makefile head/converters/bsdconv/Makefile head/converters/gbsdconv/Makefile head/converters/p5-bsdconv/Makefile head/converters/php5-bsdconv/Makefile head/converters/py-bsdconv/Makefile head/converters/ruby-bsdconv/Makefile Modified: head/chinese/bug5/Makefile ============================================================================== --- head/chinese/bug5/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/chinese/bug5/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -4,7 +4,7 @@ PORTNAME= bug5 PORTVERSION= 1.13 CATEGORIES= chinese converters -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= A Big5/GBK <-> UTF-8 translating layer in terminal Modified: head/converters/bsdconv/Makefile ============================================================================== --- head/converters/bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -4,7 +4,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= BSD licensed charset/encoding converter library Modified: head/converters/gbsdconv/Makefile ============================================================================== --- head/converters/gbsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/gbsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -4,7 +4,7 @@ PORTNAME= gbsdconv PORTVERSION= 1.0 CATEGORIES= converters python -DISTNAME= buganini-${PORTNAME}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= GUI for bsdconv Modified: head/converters/p5-bsdconv/Makefile ============================================================================== --- head/converters/p5-bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/p5-bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -5,7 +5,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters perl5 PKGNAMEPREFIX= p5- -DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Perl wrapper for bsdconv Modified: head/converters/php5-bsdconv/Makefile ============================================================================== --- head/converters/php5-bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/php5-bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -5,7 +5,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters PKGNAMEPREFIX= php5- -DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= PHP wrapper for bsdconv Modified: head/converters/py-bsdconv/Makefile ============================================================================== --- head/converters/py-bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/py-bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -5,7 +5,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Python wrapper for bsdconv Modified: head/converters/ruby-bsdconv/Makefile ============================================================================== --- head/converters/ruby-bsdconv/Makefile Wed Oct 10 12:31:20 2012 (r305649) +++ head/converters/ruby-bsdconv/Makefile Wed Oct 10 12:33:35 2012 (r305650) @@ -5,7 +5,7 @@ PORTNAME= bsdconv PORTVERSION= 9.0 CATEGORIES= converters ruby PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= buganini-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= buganini@gmail.com COMMENT= Ruby wrapper for bsdconv From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:01:17 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A76F744; Wed, 10 Oct 2012 13:01:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 07DA08FC08; Wed, 10 Oct 2012 13:01:17 +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 q9AD1Gax031294; Wed, 10 Oct 2012 13:01:16 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD1GHO031291; Wed, 10 Oct 2012 13:01:16 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101301.q9AD1GHO031291@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:01:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305651 - head/textproc/hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:01:17 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:01:17 -0000 Author: sunpoet Date: Wed Oct 10 13:01:16 2012 New Revision: 305651 URL: http://svn.freebsd.org/changeset/ports/305651 Log: - Set DIST_SUBDIR: move dist files to DISTDIR/hunspell - Remove unnecessary pre-build: - Cleanup Makefile header Modified: head/textproc/hunspell/Makefile (contents, props changed) head/textproc/hunspell/distinfo (contents, props changed) Modified: head/textproc/hunspell/Makefile ============================================================================== --- head/textproc/hunspell/Makefile Wed Oct 10 12:33:35 2012 (r305650) +++ head/textproc/hunspell/Makefile Wed Oct 10 13:01:16 2012 (r305651) @@ -1,15 +1,12 @@ -# New ports collection makefile for: hunspell -# Date created: 24.07.2004 -# Whom: janos.mohacsi@bsd.hu -# +# Created by: janos.mohacsi@bsd.hu # $FreeBSD$ -# PORTNAME= hunspell PORTVERSION= 1.3.2 PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/Hunspell/${PORTVERSION} +DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Improved spell-checker for Hungarian and other languages @@ -17,14 +14,13 @@ COMMENT= Improved spell-checker for Hung LICENSE= GPLv2 LGPL21 MPL LICENSE_COMB= dual -CONFIGURE_ARGS= --disable-nls --with-readline --with-ui \ - --with-libiconv-prefix=${LOCALBASE} +CONFIGURE_ARGS= --disable-nls --with-libiconv-prefix=${LOCALBASE} --with-readline --with-ui GNU_CONFIGURE= yes MAKE_JOBS_SAFE= yes USE_GNOME= gnomehack +USE_ICONV= yes USE_LDCONFIG= yes USE_NCURSES= yes -USE_ICONV= yes MANLANG= "" hu MAN1_EN= hunspell.1 hunzip.1 hzip.1 @@ -36,8 +32,4 @@ MAN4_HU= hunspell.4 post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/src/tools/hunspell.cxx -pre-build: - @${TOUCH} ${WRKSRC}/aclocal.m4 ${WRKSRC}/Makefile.in \ - ${WRKSRC}/configure ${WRKSRC}/config.h.in - .include Modified: head/textproc/hunspell/distinfo ============================================================================== --- head/textproc/hunspell/distinfo Wed Oct 10 12:33:35 2012 (r305650) +++ head/textproc/hunspell/distinfo Wed Oct 10 13:01:16 2012 (r305651) @@ -1,2 +1,2 @@ -SHA256 (hunspell-1.3.2.tar.gz) = b4edd4a4ee944cb9f485b35473e46b729ed768e9d24da8e78e4c4c6ca56addbd -SIZE (hunspell-1.3.2.tar.gz) = 975917 +SHA256 (hunspell/hunspell-1.3.2.tar.gz) = b4edd4a4ee944cb9f485b35473e46b729ed768e9d24da8e78e4c4c6ca56addbd +SIZE (hunspell/hunspell-1.3.2.tar.gz) = 975917 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:02:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30C318E5; Wed, 10 Oct 2012 13:02:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F26F78FC14; Wed, 10 Oct 2012 13:02:03 +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 q9AD23ZN031491; Wed, 10 Oct 2012 13:02:03 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD23xN031487; Wed, 10 Oct 2012 13:02:03 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101302.q9AD23xN031487@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:02:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305652 - head/graphics/p5-GraphViz2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:02:04 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:02:04 -0000 Author: sunpoet Date: Wed Oct 10 13:02:03 2012 New Revision: 305652 URL: http://svn.freebsd.org/changeset/ports/305652 Log: - Update to 2.05 - Convert to new options framework Changes: http://search.cpan.org/dist/GraphViz2/CHANGES Modified: head/graphics/p5-GraphViz2/Makefile head/graphics/p5-GraphViz2/distinfo head/graphics/p5-GraphViz2/pkg-plist Modified: head/graphics/p5-GraphViz2/Makefile ============================================================================== --- head/graphics/p5-GraphViz2/Makefile Wed Oct 10 13:01:16 2012 (r305651) +++ head/graphics/p5-GraphViz2/Makefile Wed Oct 10 13:02:03 2012 (r305652) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= GraphViz2 -PORTVERSION= 2.04 +PORTVERSION= 2.05 CATEGORIES= graphics perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RSAVAGE @@ -37,6 +37,8 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/dot:${PO RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.44:${PORTSDIR}/devel/p5-Test-Pod +OPTIONS_DEFINE= EXAMPLES + PERL_CONFIGURE= 5.14.2+ MAN3= GraphViz2.3 \ @@ -75,7 +77,7 @@ RUN_DEPENDS+= p5-HTTP-Tiny>=0.012:${PORT .endif post-install: -.if !defined(NOPORTEXAMPLES) +.if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/scripts/* ${EXAMPLESDIR}/ .endif Modified: head/graphics/p5-GraphViz2/distinfo ============================================================================== --- head/graphics/p5-GraphViz2/distinfo Wed Oct 10 13:01:16 2012 (r305651) +++ head/graphics/p5-GraphViz2/distinfo Wed Oct 10 13:02:03 2012 (r305652) @@ -1,2 +1,2 @@ -SHA256 (GraphViz2-2.04.tgz) = 8583a0258799f0914f5bcdf5a61f6656f85a9cf40278e217472848f08bc8271e -SIZE (GraphViz2-2.04.tgz) = 198337 +SHA256 (GraphViz2-2.05.tgz) = 4ac49dc103699168539a656c6ee8ba1f33ef1ddf0b757217d1624a0b8085ebac +SIZE (GraphViz2-2.05.tgz) = 201011 Modified: head/graphics/p5-GraphViz2/pkg-plist ============================================================================== --- head/graphics/p5-GraphViz2/pkg-plist Wed Oct 10 13:01:16 2012 (r305651) +++ head/graphics/p5-GraphViz2/pkg-plist Wed Oct 10 13:02:03 2012 (r305652) @@ -46,6 +46,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rank.sub.graph.2.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rank.sub.graph.3.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rank.sub.graph.4.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report.nodes.and.edges.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/report.valid.attributes.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sub.graph.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sub.sub.graph.pl From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:03:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6C470A0D; Wed, 10 Oct 2012 13:03:05 +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 53AE58FC12; Wed, 10 Oct 2012 13:03:05 +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 q9AD35w9031716; Wed, 10 Oct 2012 13:03:05 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD355A031712; Wed, 10 Oct 2012 13:03:05 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101303.q9AD355A031712@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 13:03:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305653 - head/ports-mgmt/portmaster X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:03:05 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:03:05 -0000 Author: bdrewery Date: Wed Oct 10 13:03:04 2012 New Revision: 305653 URL: http://svn.freebsd.org/changeset/ports/305653 Log: - Move to new home, http://github.com/portmaster - Take maintainership - Convert to new options framework - Use USE_GITHUB for fetching - Add DISTNAME to avoid conflict with existing distfile as the checksum of the distfile has changed now that it is no longer modified for release. - Remove use of bsd.port.pre.mk Modified: head/ports-mgmt/portmaster/Makefile head/ports-mgmt/portmaster/distinfo head/ports-mgmt/portmaster/pkg-descr Modified: head/ports-mgmt/portmaster/Makefile ============================================================================== --- head/ports-mgmt/portmaster/Makefile Wed Oct 10 13:02:03 2012 (r305652) +++ head/ports-mgmt/portmaster/Makefile Wed Oct 10 13:03:04 2012 (r305653) @@ -3,55 +3,60 @@ PORTNAME= portmaster PORTVERSION= 3.14 CATEGORIES= ports-mgmt -MASTER_SITES= http://www.c-s.li/ports/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.asc -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-${GH_COMMIT} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bdrewery@FreeBSD.org COMMENT= Manage your ports without external databases or languages -OPTIONS= BASH "Install programmable completions for Bash" off \ - ZSH "Install programmable completions for zsh" off +LICENSE= BSD + +USE_GITHUB= yes +GH_ACCOUNT= portmaster +GH_COMMIT= 31009f6 +GH_TAGNAME= ${GH_COMMIT} + +OPTIONS_DEFINE= BASH ZSH +BASH_DESC= Install programmable completions for Bash +ZSH_DESC= Install programmable completions for zsh PLIST_FILES= sbin/portmaster etc/portmaster.rc.sample MAN8= portmaster.8 -.include +.include -.if defined(WITH_BASH) +.if ${PORT_OPTIONS:MBASH} PLIST_FILES+= etc/bash_completion.d/portmaster.sh PLIST_DIRSTRY+= etc/bash_completion.d .endif -.if defined(WITH_ZSH) +.if ${PORT_OPTIONS:MZSH} PLIST_FILES+= share/zsh/site-functions/_portmaster PLIST_DIRSTRY+= share/zsh/site-functions share/zsh .endif verify: checksum - gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc do-build: -.for file in portmaster.sh portmaster.rc.sample - ${SED} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/${file}.in \ - > ${WRKDIR}/${file} +.for file in portmaster files/portmaster.rc.sample + ${SED} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/${file} \ + > ${WRKDIR}/${file:T} .endfor do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/portmaster.sh ${PREFIX}/sbin/portmaster + ${INSTALL_SCRIPT} ${WRKDIR}/portmaster ${PREFIX}/sbin/portmaster ${INSTALL_DATA} ${WRKDIR}/portmaster.rc.sample ${PREFIX}/etc - ${INSTALL_MAN} ${WRKSRC}/portmaster.8 ${MAN8PREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/files/portmaster.8 ${MAN8PREFIX}/man/man8 post-install: -.if defined(WITH_BASH) +.if ${PORT_OPTIONS:MBASH} ${MKDIR} ${PREFIX}/etc/bash_completion.d - ${INSTALL_DATA} ${WRKSRC}/bash-completions \ + ${INSTALL_DATA} ${WRKSRC}/files/bash-completions \ ${PREFIX}/etc/bash_completion.d/portmaster.sh .endif -.if defined(WITH_ZSH) +.if ${PORT_OPTIONS:MZSH} ${MKDIR} ${PREFIX}/share/zsh/site-functions - ${INSTALL_DATA} ${WRKSRC}/zsh-completions \ + ${INSTALL_DATA} ${WRKSRC}/files/zsh-completions \ ${PREFIX}/share/zsh/site-functions/_portmaster .endif -.include +.include Modified: head/ports-mgmt/portmaster/distinfo ============================================================================== --- head/ports-mgmt/portmaster/distinfo Wed Oct 10 13:02:03 2012 (r305652) +++ head/ports-mgmt/portmaster/distinfo Wed Oct 10 13:03:04 2012 (r305653) @@ -1,4 +1,2 @@ -SHA256 (portmaster-3.14.tar.gz) = 676314bee13a02cc8b6a82df5c5062f80ba96083dfbe3bb90be7e96f05af5d31 -SIZE (portmaster-3.14.tar.gz) = 42062 -SHA256 (portmaster-3.14.tar.gz.asc) = b04e8ff40dac2778403546443fb319a4e2b573714d8ec18e5f8dc085c77e4f5e -SIZE (portmaster-3.14.tar.gz.asc) = 488 +SHA256 (portmaster-portmaster-3.14-31009f6.tar.gz) = 9029531c486d937c09974baa0174f5a59b5e54c2400ab60caabb09af3add9605 +SIZE (portmaster-portmaster-3.14-31009f6.tar.gz) = 42265 Modified: head/ports-mgmt/portmaster/pkg-descr ============================================================================== --- head/ports-mgmt/portmaster/pkg-descr Wed Oct 10 13:02:03 2012 (r305652) +++ head/ports-mgmt/portmaster/pkg-descr Wed Oct 10 13:03:04 2012 (r305653) @@ -18,3 +18,5 @@ Portmaster has the following features: * Options to list installed ports by category, and those with new versions * Packages can be used for installation either exclusively, if available, or only for build dependencies + +WWW: http://www.github.com/portmaster/portmaster From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:03:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 599A7A10; Wed, 10 Oct 2012 13:03:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 27E428FC16; Wed, 10 Oct 2012 13:03:08 +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 q9AD38Vj031797; Wed, 10 Oct 2012 13:03:08 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD37uX031793; Wed, 10 Oct 2012 13:03:07 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101303.q9AD37uX031793@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305654 - head/www/p5-PocketIO X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:03:08 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:03:08 -0000 Author: sunpoet Date: Wed Oct 10 13:03:07 2012 New Revision: 305654 URL: http://svn.freebsd.org/changeset/ports/305654 Log: - Update to 0.14 - Cleanup Makefile header Changes: http://search.cpan.org/dist/PocketIO/Changes Modified: head/www/p5-PocketIO/Makefile (contents, props changed) head/www/p5-PocketIO/distinfo (contents, props changed) head/www/p5-PocketIO/pkg-plist (contents, props changed) Modified: head/www/p5-PocketIO/Makefile ============================================================================== --- head/www/p5-PocketIO/Makefile Wed Oct 10 13:03:04 2012 (r305653) +++ head/www/p5-PocketIO/Makefile Wed Oct 10 13:03:07 2012 (r305654) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-PocketIO -# Date created: 2011-10-01 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= PocketIO -PORTVERSION= 0.13000 +PORTVERSION= 0.14000 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:VTI @@ -23,7 +19,6 @@ BUILD_DEPENDS= p5-AnyEvent>=0:${PORTSDIR p5-Protocol-SocketIO>=0.04:${PORTSDIR}/www/p5-Protocol-SocketIO \ p5-Protocol-WebSocket>=0.00906:${PORTSDIR}/www/p5-Protocol-WebSocket RUN_DEPENDS:= ${BUILD_DEPENDS} - TEST_DEPENDS= p5-Plack>=0:${PORTSDIR}/www/p5-Plack \ p5-Test-TCP>=0:${PORTSDIR}/devel/p5-Test-TCP \ p5-Twiggy>=0:${PORTSDIR}/www/p5-Twiggy Modified: head/www/p5-PocketIO/distinfo ============================================================================== --- head/www/p5-PocketIO/distinfo Wed Oct 10 13:03:04 2012 (r305653) +++ head/www/p5-PocketIO/distinfo Wed Oct 10 13:03:07 2012 (r305654) @@ -1,2 +1,2 @@ -SHA256 (PocketIO-0.13.tar.gz) = b274cf2ef698e3b1ca2ccf046dc27a745ed4cf2bacfbbbe10990a9ddca231fd6 -SIZE (PocketIO-0.13.tar.gz) = 403143 +SHA256 (PocketIO-0.14.tar.gz) = 260ec8ba0ded77901a509c8dc5d0d973f61afc80bdfe2088d923a90555e7301c +SIZE (PocketIO-0.14.tar.gz) = 405111 Modified: head/www/p5-PocketIO/pkg-plist ============================================================================== --- head/www/p5-PocketIO/pkg-plist Wed Oct 10 13:03:04 2012 (r305653) +++ head/www/p5-PocketIO/pkg-plist Wed Oct 10 13:03:07 2012 (r305654) @@ -7,6 +7,7 @@ %%SITE_PERL%%/PocketIO/Pool.pm %%SITE_PERL%%/PocketIO/Pool/Redis.pm %%SITE_PERL%%/PocketIO/Resource.pm +%%SITE_PERL%%/PocketIO/Room.pm %%SITE_PERL%%/PocketIO/Socket.pm %%SITE_PERL%%/PocketIO/Sockets.pm %%SITE_PERL%%/PocketIO/Test.pm From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:05:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C5F0C02; Wed, 10 Oct 2012 13:05:02 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DEB1D8FC0A; Wed, 10 Oct 2012 13:05: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 q9AD51KY032171; Wed, 10 Oct 2012 13:05:01 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD51LO032168; Wed, 10 Oct 2012 13:05:01 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101305.q9AD51LO032168@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 13:05:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305655 - head/x11-wm/e16 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:05:02 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:05:02 -0000 Author: gahr Date: Wed Oct 10 13:05:01 2012 New Revision: 305655 URL: http://svn.freebsd.org/changeset/ports/305655 Log: - Update to 1.0.11 - Add OptionsNG to select ESD sound server - Convert NLS and PORTDOCS checks to OptionsNG Modified: head/x11-wm/e16/Makefile head/x11-wm/e16/distinfo (contents, props changed) Modified: head/x11-wm/e16/Makefile ============================================================================== --- head/x11-wm/e16/Makefile Wed Oct 10 13:03:07 2012 (r305654) +++ head/x11-wm/e16/Makefile Wed Oct 10 13:05:01 2012 (r305655) @@ -1,19 +1,16 @@ -# New ports collection makefile for: enlightenment -# Date created: 10 June 1997 -# Whom: Yukihiro Nakai -# +# Created by: Yukihiro Nakai # $FreeBSD$ -# PORTNAME= e16 -PORTVERSION= 1.0.10.002 +PORTVERSION= 1.0.11 CATEGORIES= x11-wm enlightenment -MASTER_SITES= SF/enlightenment/${PORTNAME}/Snapshots/ +MASTER_SITES= SF/enlightenment/${PORTNAME}/${PORTVERSION}/ MAINTAINER= gahr@FreeBSD.org COMMENT= A very artistic X window manager -#BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash +OPTIONS_DEFINE= ESOUND +OPTIONS_DEFAULT=ESOUND USE_XORG= compositeproto damageproto xextproto x11 xbitmaps xcomposite xdamage \ xext xfixes xft xinerama xrandr xrender xxf86vm @@ -25,13 +22,15 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-esdtest --disable-dependency-tracking \ --disable-rpath --enable-mans SHELL=/bin/sh -.if !defined(WITHOUT_ESOUND) +.include + +.if ${PORT_OPTIONS:MESOUND} USE_GNOME= esound .else CONFIGURE_ARGS+=--disable-sound .endif -.if !defined(WITHOUT_NLS) +.if ${PORT_OPTIONS:MNLS} USE_GETTEXT= yes PLIST_SUB+= NLS="" .else @@ -39,7 +38,7 @@ CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} MAN1= e16.1 CONFIGURE_ARGS+=--enable-docs=yes .else Modified: head/x11-wm/e16/distinfo ============================================================================== --- head/x11-wm/e16/distinfo Wed Oct 10 13:03:07 2012 (r305654) +++ head/x11-wm/e16/distinfo Wed Oct 10 13:05:01 2012 (r305655) @@ -1,2 +1,2 @@ -SHA256 (e16-1.0.10.002.tar.gz) = 1e535d1cbcc72d799dd12f7d5f6e1e03565495bb9fd4469e25e6ff731bb4606e -SIZE (e16-1.0.10.002.tar.gz) = 2289750 +SHA256 (e16-1.0.11.tar.gz) = c7bc9fed4a83d2791df2acd6aa9e710cc162f2b54312c834f41940fb60a1f13e +SIZE (e16-1.0.11.tar.gz) = 2281672 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:05:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EA721D16 for ; Wed, 10 Oct 2012 13:05:59 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id C8AFC8FC0C for ; Wed, 10 Oct 2012 13:05:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9AD5xgY089923 for ; Wed, 10 Oct 2012 13:05:59 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9AD5xpc089920 for svn-ports-head@freebsd.org; Wed, 10 Oct 2012 13:05:59 GMT (envelope-from bdrewery) Received: (qmail 27031 invoked from network); 10 Oct 2012 08:05:58 -0500 Received: from unknown (HELO ?10.10.0.115?) (freebsd@shatow.net@10.10.0.115) by sweb.xzibition.com with ESMTPA; 10 Oct 2012 08:05:58 -0500 Message-ID: <507572AE.8040202@FreeBSD.org> Date: Wed, 10 Oct 2012 08:05:50 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r305653 - head/ports-mgmt/portmaster References: <201210101303.q9AD355A031712@svn.freebsd.org> In-Reply-To: <201210101303.q9AD355A031712@svn.freebsd.org> X-Enigmail-Version: 1.4.4 OpenPGP: id=3C9B0CF9; url=http://www.shatow.net/bryan/bryan.asc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:06:00 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:06:00 -0000 On 10/10/2012 8:03 AM, Bryan Drewery wrote: > - Move to new home, http://github.com/portmaster > - Take maintainership Being github, it will be easy to track issues, be transparent about contributions, and allow a sane team effort. Please contact me if you are interested. -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:08:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A19EE46; Wed, 10 Oct 2012 13:08:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D077B8FC0C; Wed, 10 Oct 2012 13:08: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 q9AD8Nke032742; Wed, 10 Oct 2012 13:08:23 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AD8N0V032737; Wed, 10 Oct 2012 13:08:23 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101308.q9AD8N0V032737@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:08:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305656 - head/www/tinymce3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:08:24 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:08:24 -0000 Author: sunpoet Date: Wed Oct 10 13:08:23 2012 New Revision: 305656 URL: http://svn.freebsd.org/changeset/ports/305656 Log: - Update to 3.5.7 - Cleanup Makefile header Changes: http://www.tinymce.com/develop/changelog/index.php?type=tinymce Modified: head/www/tinymce3/Makefile (contents, props changed) head/www/tinymce3/distinfo (contents, props changed) head/www/tinymce3/pkg-plist (contents, props changed) Modified: head/www/tinymce3/Makefile ============================================================================== --- head/www/tinymce3/Makefile Wed Oct 10 13:05:01 2012 (r305655) +++ head/www/tinymce3/Makefile Wed Oct 10 13:08:23 2012 (r305656) @@ -1,12 +1,8 @@ -# New ports collection makefile for: tinymce -# Date created: 26 Mar 2007 -# Whom: Nick Hilliard -# +# Created by: Nick Hilliard # $FreeBSD$ -# PORTNAME= tinymce -PORTVERSION= 3.4.9 +PORTVERSION= 3.5.7 CATEGORIES= www MASTER_SITES= http://cloud.github.com/downloads/${PORTNAME}/${PORTNAME}/ \ LOCAL/sunpoet Modified: head/www/tinymce3/distinfo ============================================================================== --- head/www/tinymce3/distinfo Wed Oct 10 13:05:01 2012 (r305655) +++ head/www/tinymce3/distinfo Wed Oct 10 13:08:23 2012 (r305656) @@ -1,2 +1,2 @@ -SHA256 (tinymce_3.4.9.zip) = 085909fd8ff12f93de4867d85c98718c474017419f573cb89ba28e9c8ae7324c -SIZE (tinymce_3.4.9.zip) = 814430 +SHA256 (tinymce_3.5.7.zip) = c0a8a037d18aa83f6e3f50766b66602fa631be8d7237d96c39456d0c8476118a +SIZE (tinymce_3.5.7.zip) = 825411 Modified: head/www/tinymce3/pkg-plist ============================================================================== --- head/www/tinymce3/pkg-plist Wed Oct 10 13:05:01 2012 (r305655) +++ head/www/tinymce3/pkg-plist Wed Oct 10 13:08:23 2012 (r305656) @@ -166,6 +166,7 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/style/js/props.js %%WWWDIR%%/jscripts/tiny_mce/plugins/style/langs/en_dlg.js %%WWWDIR%%/jscripts/tiny_mce/plugins/style/props.htm +%%WWWDIR%%/jscripts/tiny_mce/plugins/style/readme.txt %%WWWDIR%%/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/tabfocus/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/table/cell.htm @@ -189,6 +190,9 @@ %%WWWDIR%%/jscripts/tiny_mce/plugins/template/js/template.js %%WWWDIR%%/jscripts/tiny_mce/plugins/template/langs/en_dlg.js %%WWWDIR%%/jscripts/tiny_mce/plugins/template/template.htm +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/css/visualblocks.css +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js +%%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js %%WWWDIR%%/jscripts/tiny_mce/plugins/visualchars/editor_plugin_src.js %%WWWDIR%%/jscripts/tiny_mce/plugins/wordcount/editor_plugin.js @@ -302,6 +306,8 @@ @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/xhtmlxtras @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/wordcount @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/visualchars +@dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks/css +@dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/visualblocks @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/template/langs @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/template/js @dirrm %%WWWDIR%%/jscripts/tiny_mce/plugins/template/css From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:11:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 12A9B348; Wed, 10 Oct 2012 13:11:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D4D978FC0A; Wed, 10 Oct 2012 13:11: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 q9ADBDp3033272; Wed, 10 Oct 2012 13:11:13 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADBDua033268; Wed, 10 Oct 2012 13:11:13 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101311.q9ADBDua033268@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 13:11:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305657 - in head/finance/p5-Finance-Quote: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:11:14 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:11:14 -0000 Author: sunpoet Date: Wed Oct 10 13:11:13 2012 New Revision: 305657 URL: http://svn.freebsd.org/changeset/ports/305657 Log: - Update to 1.18 Changes: https://github.com/pfenwick/finance-quote/commits/master Deleted: head/finance/p5-Finance-Quote/files/ Modified: head/finance/p5-Finance-Quote/Makefile head/finance/p5-Finance-Quote/distinfo (contents, props changed) head/finance/p5-Finance-Quote/pkg-plist (contents, props changed) Modified: head/finance/p5-Finance-Quote/Makefile ============================================================================== --- head/finance/p5-Finance-Quote/Makefile Wed Oct 10 13:08:23 2012 (r305656) +++ head/finance/p5-Finance-Quote/Makefile Wed Oct 10 13:11:13 2012 (r305657) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Finance-Quote -PORTVERSION= 1.17 -PORTREVISION= 2 +PORTVERSION= 1.18 CATEGORIES= finance perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -17,11 +16,9 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-Crypt-SSLeay>=0:${PORTSDIR}/security/p5-Crypt-SSLeay \ p5-HTML-TableExtract>=0:${PORTSDIR}/www/p5-HTML-TableExtract \ p5-HTML-Tree>=0:${PORTSDIR}/www/p5-HTML-Tree \ + p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww -RUN_DEPENDS= p5-Crypt-SSLeay>=0:${PORTSDIR}/security/p5-Crypt-SSLeay \ - p5-HTML-TableExtract>=0:${PORTSDIR}/www/p5-HTML-TableExtract \ - p5-HTML-Tree>=0:${PORTSDIR}/www/p5-HTML-Tree \ - p5-libwww>=0:${PORTSDIR}/www/p5-libwww +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes Modified: head/finance/p5-Finance-Quote/distinfo ============================================================================== --- head/finance/p5-Finance-Quote/distinfo Wed Oct 10 13:08:23 2012 (r305656) +++ head/finance/p5-Finance-Quote/distinfo Wed Oct 10 13:11:13 2012 (r305657) @@ -1,2 +1,2 @@ -SHA256 (Finance-Quote-1.17.tar.gz) = 10c3e7d98e71997f7e32bff5898ff5153c9ebf1b46063f91c184db8e6089e170 -SIZE (Finance-Quote-1.17.tar.gz) = 130686 +SHA256 (Finance-Quote-1.18.tar.gz) = 4240faabe0646defd4ec76ca9e111977b9e8060eaec41adeb284eb422a428393 +SIZE (Finance-Quote-1.18.tar.gz) = 147575 Modified: head/finance/p5-Finance-Quote/pkg-plist ============================================================================== --- head/finance/p5-Finance-Quote/pkg-plist Wed Oct 10 13:08:23 2012 (r305656) +++ head/finance/p5-Finance-Quote/pkg-plist Wed Oct 10 13:11:13 2012 (r305657) @@ -26,6 +26,8 @@ %%SITE_PERL%%/Finance/Quote/NZX.pm %%SITE_PERL%%/Finance/Quote/Platinum.pm %%SITE_PERL%%/Finance/Quote/SEB.pm +%%SITE_PERL%%/Finance/Quote/SIXfunds.pm +%%SITE_PERL%%/Finance/Quote/SIXshares.pm %%SITE_PERL%%/Finance/Quote/StockHouseCanada.pm %%SITE_PERL%%/Finance/Quote/TSP.pm %%SITE_PERL%%/Finance/Quote/TSX.pm From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:12:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28D75459; Wed, 10 Oct 2012 13:12:18 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 110858FC0C; Wed, 10 Oct 2012 13:12: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 q9ADCH3b033521; Wed, 10 Oct 2012 13:12:17 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADCHem033516; Wed, 10 Oct 2012 13:12:17 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210101312.q9ADCHem033516@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 13:12:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305658 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:12:18 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:12:18 -0000 Author: bapt Date: Wed Oct 10 13:12:17 2012 New Revision: 305658 URL: http://svn.freebsd.org/changeset/ports/305658 Log: Add a part forgotten in previous commit concerning switching to pkgng Modified: head/Mk/bsd.commands.mk head/Mk/bsd.port.mk Modified: head/Mk/bsd.commands.mk ============================================================================== --- head/Mk/bsd.commands.mk Wed Oct 10 13:11:13 2012 (r305657) +++ head/Mk/bsd.commands.mk Wed Oct 10 13:12:17 2012 (r305658) @@ -115,6 +115,8 @@ ECHO_CMD?= echo # Shell builtin # Used to print all the '===>' style prompts - override this to turn them off. ECHO_MSG?= ${ECHO_CMD} +.elif !defined(_PKGTOOLSDEFINED) +_PKGTOOLDEFINED= yes .if defined(WITH_PKGNG) PKG_BIN?= ${LOCALBASE}/sbin/pkg PKG_CMD?= ${PKG_BIN} register Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 10 13:11:13 2012 (r305657) +++ head/Mk/bsd.port.mk Wed Oct 10 13:12:17 2012 (r305658) @@ -1217,6 +1217,9 @@ WITH_PKGNG= yes .endif .endif +# Only define tools here (for transition period with between pkg tools) +.include "${PORTSDIR}/Mk/bsd.commands.mk" + MASTERDIR?= ${.CURDIR} .if ${MASTERDIR} != ${.CURDIR} From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:14:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 195AD59C; Wed, 10 Oct 2012 13:14:28 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F39AA8FC0C; Wed, 10 Oct 2012 13:14:27 +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 q9ADERws033990; Wed, 10 Oct 2012 13:14:27 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADER5S033982; Wed, 10 Oct 2012 13:14:27 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101314.q9ADER5S033982@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 13:14:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305659 - in head/x11-wm/epplets: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:14:28 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:14:28 -0000 Author: gahr Date: Wed Oct 10 13:14:27 2012 New Revision: 305659 URL: http://svn.freebsd.org/changeset/ports/305659 Log: - Update to 0.14 Modified: head/x11-wm/epplets/Makefile (contents, props changed) head/x11-wm/epplets/distinfo (contents, props changed) head/x11-wm/epplets/files/patch-epplets_E-Power.c (contents, props changed) head/x11-wm/epplets/files/patch-epplets_Makefile (contents, props changed) head/x11-wm/epplets/files/patch-epplets_net.c (contents, props changed) head/x11-wm/epplets/pkg-plist (contents, props changed) Modified: head/x11-wm/epplets/Makefile ============================================================================== --- head/x11-wm/epplets/Makefile Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/Makefile Wed Oct 10 13:14:27 2012 (r305659) @@ -1,13 +1,8 @@ -# New ports collection makefile for: epplets -# Date created: 18 October 1999 -# Whom: Yukihiro Nakai -# +# Created by: Yukihiro Nakai # $FreeBSD$ -# PORTNAME= epplets -PORTVERSION= 0.13 -PORTREVISION= 3 +PORTVERSION= 0.14 CATEGORIES= x11-wm MASTER_SITES= SF/enlightenment/${PORTNAME}/${PORTVERSION} Modified: head/x11-wm/epplets/distinfo ============================================================================== --- head/x11-wm/epplets/distinfo Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/distinfo Wed Oct 10 13:14:27 2012 (r305659) @@ -1,2 +1,2 @@ -SHA256 (epplets-0.13.tar.gz) = 605dfec7ce380eefa42dbd36bcec9b41e7754d4cc5d4f7365761743df5640021 -SIZE (epplets-0.13.tar.gz) = 953034 +SHA256 (epplets-0.14.tar.gz) = e3d1520344532f602a0a7807cda363d6435655aed302967a8580f102e3468132 +SIZE (epplets-0.14.tar.gz) = 971885 Modified: head/x11-wm/epplets/files/patch-epplets_E-Power.c ============================================================================== --- head/x11-wm/epplets/files/patch-epplets_E-Power.c Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/files/patch-epplets_E-Power.c Wed Oct 10 13:14:27 2012 (r305659) @@ -1,5 +1,5 @@ ---- epplets/E-Power.c.orig 2006-04-16 00:32:43.000000000 +0200 -+++ epplets/E-Power.c 2008-03-10 17:12:55.000000000 +0100 +--- epplets/E-Power.c.orig 2011-11-26 11:38:40.000000000 +0100 ++++ epplets/E-Power.c 2012-10-10 15:01:17.000000000 +0200 @@ -1,9 +1,22 @@ +/*- + * Copyright 2008, Pietro Cerutti (FreeBSD adaptation) @@ -23,7 +23,7 @@ /* Modified by Attila ZIMLER , 2003/11/16 Added ACPI power management support. */ -@@ -11,6 +24,19 @@ +@@ -11,6 +24,20 @@ /* Length of explain strings in /proc/acpi/battery/BAT0 data files */ #define DATA_EXPLAIN_STR_LEN 25 @@ -31,6 +31,7 @@ +#define MODE_NONE 0x0 +#define MODE_APM 0x1 +#define MODE_ACPI 0x2 ++#define MODE_SYS 0x3 +static unsigned mode = MODE_NONE; + +#ifdef __FreeBSD__ @@ -43,59 +44,68 @@ int prev_bat_val = 110; int bat_val = 0; int time_val = 0; -@@ -31,17 +57,39 @@ +@@ -33,14 +60,37 @@ static void cb_timer(void *data) { -- struct stat st; - +#ifdef linux -+ struct stat st; + struct stat st; + if ((stat("/proc/apm", &st) > -1) && S_ISREG(st.st_mode)) - cb_timer_apm(data); -+ mode = MODE_APM; - else if ((stat("/proc/acpi", &st) > -1) && S_ISDIR(st.st_mode)) -+ mode = MODE_ACPI; -+#elif defined(__FreeBSD__) ++ mode = MODE_APM; + else if ((stat("/proc/acpi/battery", &st) > -1) && S_ISDIR(st.st_mode)) +- cb_timer_acpi(data); ++ mode = MODE_ACPI; + else if ((stat("/sys/class/power_supply", &st) > -1) && S_ISDIR(st.st_mode)) +- cb_timer_sys(data); ++ mode = MODE_SYS; ++ else ++ mode = MODE_NONE; ++#elif defined (__FreeBSD__) + /* -+ * Try ACPI first, if does not work, revert to APM ++ * Try ACPI first, if it doesn't work, revert to APM + */ -+ if(acpi_fd != -1 || ((acpi_fd = open(ACPI_DEV, O_RDONLY)) != -1)) -+ mode = MODE_ACPI; -+ else if(apm_fd != -1 || ((apm_fd = open(APM_DEV, O_RDONLY)) != -1)) -+ mode = MODE_APM; ++ if (acpi_fd != 1 || ((acpi_fd = open(ACPI_DEV, O_RDONLY)) != -1)) ++ mode = MODE_ACPI; ++ else if (apm_fd != 1 || (apm_fd = open(APM_DEV, O_RDONLY)) != -1) ++ mode = MODE_APM; ++ else ++ mode = MODE_NONE; +#else + mode = MODE_NONE; +#endif + -+ -+ if(mode & MODE_APM) -+ cb_timer_apm(data); -+ else if(mode & MODE_ACPI) - cb_timer_acpi(data); ++ if (mode & MODE_APM) ++ cb_timer_apm(data); ++ else if (mode & MODE_ACPI) ++ cb_timer_acpi(data); ++ else if (mode & MODE_SYS) ++ tb_timer_sys(data); } static void - cb_timer_acpi(void *data) - { -+ char current_status[256]; -+ int bat_val = 0; -+ -+#ifdef linux - /* We don't have any data from the remaining percentage, and time directly, - * so we have to calculate and measure them. - * (Measure the time and calculate the percentage.) -@@ -57,9 +105,6 @@ +@@ -61,9 +111,8 @@ int bat_level = 0; int bat_drain = 1; - int bat_val = 0; - -- char current_status[256]; + char current_status[256]; ++ char *line = 0; size_t lsize = 0; int discharging = 0; -@@ -203,27 +248,74 @@ +@@ -77,6 +126,8 @@ + + int hours, minutes; + ++#ifdef linux ++ + /* Read some information on first run. */ + dirp = opendir("/proc/acpi/battery"); + if (dirp) +@@ -207,27 +258,74 @@ else snprintf(current_status, sizeof(current_status), "Full"); @@ -176,7 +186,7 @@ int apm_flags, ac_stat, bat_stat, bat_flags; int i, hours, minutes, up, up2; char *s_ptr; -@@ -296,14 +388,57 @@ +@@ -300,14 +398,57 @@ else s_ptr += sprintf(s_ptr, "%i:%02i", hours, minutes); } @@ -187,7 +197,7 @@ + int c; + if(ioctl(apm_fd, APMIO_GETINFO, &apm) == -1) + return; - ++ + /* + * Get percent + */ @@ -221,7 +231,7 @@ + snprintf(&s[c], sizeof(s) - c, "%d:%2d", + apm.ai_batt_time / 3600, apm.ai_batt_time / 60 % 60); +#endif -+ + + /* Display current status */ + Epplet_change_label(label, s); sprintf(s, "E-Power-Bat-%i.png", ((bat_val + 5) / 10) * 10); @@ -237,7 +247,7 @@ data = NULL; } -@@ -351,7 +486,14 @@ +@@ -530,7 +671,14 @@ static void cb_suspend(void *data) { @@ -252,7 +262,7 @@ return; data = NULL; } -@@ -359,7 +501,14 @@ +@@ -538,7 +686,14 @@ static void cb_sleep(void *data) { Modified: head/x11-wm/epplets/files/patch-epplets_Makefile ============================================================================== --- head/x11-wm/epplets/files/patch-epplets_Makefile Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/files/patch-epplets_Makefile Wed Oct 10 13:14:27 2012 (r305659) @@ -1,33 +1,27 @@ ---- epplets/Makefile.in.orig 2012-06-11 09:51:10.000000000 +0200 -+++ epplets/Makefile.in 2012-06-11 09:51:31.000000000 +0200 -@@ -554,11 +554,11 @@ - E_Biff_epplet_LDFLAGS = -rpath $(libdir) - E_MemWatch_epplet_SOURCES = E-MemWatch.c - E_MemWatch_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la --E_MemWatch_epplet_LDFLAGS = -rpath $(libdir) -+E_MemWatch_epplet_LDFLAGS = -rpath $(libdir) -lkvm - E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) - E_Disk_epplet_SOURCES = E-Disk.c - E_Disk_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la --E_Disk_epplet_LDFLAGS = -rpath $(libdir) -+E_Disk_epplet_LDFLAGS = -rpath $(libdir) -ldevstat - E_Sys_epplet_SOURCES = E-Sys.c - E_Sys_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la - E_Sys_epplet_LDFLAGS = -rpath $(libdir) ---- epplets/Makefile.am.orig 2012-06-11 09:51:16.000000000 +0200 -+++ epplets/Makefile.am 2012-06-11 09:51:44.000000000 +0200 -@@ -122,12 +122,12 @@ +--- epplets/Makefile.am.orig 2012-10-10 14:52:30.000000000 +0200 ++++ epplets/Makefile.am 2012-10-10 14:53:32.000000000 +0200 +@@ -79,9 +79,10 @@ + E_Biff_epplet_LDADD = $(LDADD) -lX11 E_MemWatch_epplet_SOURCES = E-MemWatch.c - E_MemWatch_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la --E_MemWatch_epplet_LDFLAGS = -rpath $(libdir) -+E_MemWatch_epplet_LDFLAGS = -rpath $(libdir) -lkvm - E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) +-E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) ++E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) -lkvm E_Disk_epplet_SOURCES = E-Disk.c - E_Disk_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la --E_Disk_epplet_LDFLAGS = -rpath $(libdir) -+E_Disk_epplet_LDFLAGS = -rpath $(libdir) -ldevstat ++E_Disk_epplet_LDADD = $(LDADD) -ldevstat E_Sys_epplet_SOURCES = E-Sys.c - E_Sys_epplet_DEPENDENCIES = $(top_builddir)/api/libepplet.la + E_Sys_epplet_LDADD = $(LDADD) $(GTLIBS) +--- epplets/Makefile.in.orig 2012-10-10 15:02:11.000000000 +0200 ++++ epplets/Makefile.in 2012-10-10 15:03:03.000000000 +0200 +@@ -479,8 +479,9 @@ + E_Biff_epplet_SOURCES = E-Biff.c mbox.c + E_Biff_epplet_LDADD = $(LDADD) -lX11 + E_MemWatch_epplet_SOURCES = E-MemWatch.c +-E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) ++E_MemWatch_epplet_LDADD = $(LDADD) $(GTLIBS) -lkvm + E_Disk_epplet_SOURCES = E-Disk.c ++E_Disk_epplet_LDADD = $(LDADD) -ldevstat + E_Sys_epplet_SOURCES = E-Sys.c + E_Sys_epplet_LDADD = $(LDADD) $(GTLIBS) + E_Slides_epplet_SOURCES = E-Slides.c Modified: head/x11-wm/epplets/files/patch-epplets_net.c ============================================================================== --- head/x11-wm/epplets/files/patch-epplets_net.c Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/files/patch-epplets_net.c Wed Oct 10 13:14:27 2012 (r305659) @@ -1,5 +1,5 @@ ---- epplets/net.c.orig 2006-04-16 00:32:43.000000000 +0200 -+++ epplets/net.c 2008-03-10 21:26:47.000000000 +0100 +--- epplets/net.c.orig 2012-09-30 11:38:35.000000000 +0200 ++++ epplets/net.c 2012-10-10 14:56:21.000000000 +0200 @@ -1,5 +1,6 @@ /* * Copyright (C) 1999-2000, Michael Jennings @@ -9,7 +9,7 @@ * of this software and associated documentation files (the "Software"), to @@ -38,6 +39,14 @@ #ifdef linux - # include + #include #endif +#ifdef __FreeBSD__ +# include @@ -71,7 +71,7 @@ #elif defined(__sun__) return ((char **)NULL); #else -@@ -107,8 +158,11 @@ +@@ -107,6 +158,10 @@ FILE *fp; char buff[256], *colon = NULL, dev[64], in_str[64], out_str[64]; @@ -80,11 +80,9 @@ + int mib[6], ifno_mib[5], row, nof_ifaces; + size_t len; #endif -- - if (device == NULL) - { - return (EFAULT); -@@ -173,6 +227,43 @@ + + if (!device) +@@ -173,6 +228,43 @@ } fclose(fp); return ((match) ? (0) : (ENODEV)); @@ -127,4 +125,4 @@ + #else /* Unsupported platform. */ - if (in_bytes != NULL) + if (in_bytes) Modified: head/x11-wm/epplets/pkg-plist ============================================================================== --- head/x11-wm/epplets/pkg-plist Wed Oct 10 13:12:17 2012 (r305658) +++ head/x11-wm/epplets/pkg-plist Wed Oct 10 13:14:27 2012 (r305659) @@ -204,7 +204,6 @@ share/e16/epplet_data/Emix/Emix.AUTHORS share/e16/epplet_data/Emix/Emix.COPYING share/e16/epplet_data/Emix/Emix.README share/e16/epplet_data/Emix/Emix.TODO -@dirrmtry share/e16/epplet_icons @dirrm share/e16/epplet_data/Emix/ABOUT @dirrm share/e16/epplet_data/Emix @dirrm share/e16/epplet_data/E-Wireless/ABOUT From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:15:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 025016A1; Wed, 10 Oct 2012 13:15:48 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DC6758FC16; Wed, 10 Oct 2012 13:15:47 +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 q9ADFlkT034312; Wed, 10 Oct 2012 13:15:47 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADFlOR034304; Wed, 10 Oct 2012 13:15:47 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101315.q9ADFlOR034304@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 13:15:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305660 - in head/math/vtk5: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:15:48 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:15:48 -0000 Author: gahr Date: Wed Oct 10 13:15:47 2012 New Revision: 305660 URL: http://svn.freebsd.org/changeset/ports/305660 Log: - Update to 5.10.0 Release notes: http://www.kitware.com/news/home/browse/408 - Convert to OptionsNG Added: head/math/vtk5/files/patch-Common_vtkMath.h (contents, props changed) head/math/vtk5/files/patch-Rendering_vtkTkRenderWidget.cxx (contents, props changed) head/math/vtk5/files/patch-Utilities-LSDyna_LSDynaFamily.cxx (contents, props changed) head/math/vtk5/files/patch-Wrapping_vtkParsePreprocess.c (contents, props changed) Modified: head/math/vtk5/Makefile (contents, props changed) head/math/vtk5/distinfo (contents, props changed) head/math/vtk5/pkg-plist (contents, props changed) Modified: head/math/vtk5/Makefile ============================================================================== --- head/math/vtk5/Makefile Wed Oct 10 13:14:27 2012 (r305659) +++ head/math/vtk5/Makefile Wed Oct 10 13:15:47 2012 (r305660) @@ -7,8 +7,7 @@ # PORTNAME= vtk -PORTVERSION= 5.8.0 -PORTREVISION= 3 +PORTVERSION= 5.10.0 CATEGORIES= math graphics MASTER_SITES= http://www.vtk.org/files/release/${PORTVERSION:R}/ \ http://www.neuro.mcw.edu/Ports/distfiles/VTK5/ @@ -32,16 +31,16 @@ SUB_FILES= vtk.3 USE_CMAKE= yes USE_XORG= xt USE_LDCONFIG= ${PREFIX}/lib/vtk-${PORTVERSION:R} +CXXFLAGS+= -DUSE_INTERP_ERRORLINE MAKE_JOBS_SAFE= yes -OPTIONS= SHARED "Build shared libraries" On \ - VTKMPEG2 "Install patented MPEG2 encoder module" Off \ - GL2PS "Install support conversion OpenGL to PostScript" On \ - OSMESA "Use Mesa for off-screen rendering" Off \ - QT "Enable Qt gui support" On \ - WRAP_JAVA "Enable Java wrapping" Off \ - WRAP_PYTHON "Enable Python wrapping" On \ - WRAP_TCLTK "Enable Tcl/Tk wrapping" On +OPTIONS_DEFINE= SHARED VTKMPEG2 GL2PS OSMESA QT4 JAVA PYTHON TCLTK +OPTIONS_DEFAULT=SHARED GL2PS QT4 PYTHON TCLTK + +SHARED_DESC= Build shared libraries +VTKMPEG2_DESC= Patented MPEG2 encoder module +GL2PS_DESC= OpenGL to PostScript conversion module +OSMESA_DESC= Use Mesa for off-screen rendering PLIST_SUB+= VER1="${PORTVERSION}" \ VER2="${PORTVERSION:R}" \ @@ -61,11 +60,12 @@ CMAKE_ARGS+= -DBUILD_DOCUMENTATION:BOOL= -DVTK_DATA_ROOT:PATH=${EXAMPLESDIR}/VTKData \ -DOPENGL_INCLUDE_DIR:PATH=${LOCALBASE}/include \ -DOPENGL_gl_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGL.so \ - -DOPENGL_glu_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGLU.so + -DOPENGL_glu_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGLU.so \ + -DCMAKE_BUILD_TYPE=CMAKE_CXX_FLAGS_RELWITHDEBINFO .include -.if defined(WITH_SHARED) +.if ${PORT_OPTIONS:MSHARED} CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON \ -DVTK_USE_SYSTEM_EXPAT:BOOL=ON \ -DVTK_USE_SYSTEM_JPEG:BOOL=ON \ @@ -85,7 +85,7 @@ PLIST_SUB+= SHARED="@comment " \ STATIC="" .endif -.if defined(WITH_VTKMPEG2) +.if ${PORT_OPTIONS:MVTKMPEG2} LIB_DEPENDS+= vtkMPEG2Encode:${PORTSDIR}/multimedia/vtkmpeg2encode PLIST_SUB+= MPEG="" CMAKE_ARGS+= -DVTK_USE_PATENTED:BOOL=ON \ @@ -96,7 +96,7 @@ CMAKE_ARGS+= -DVTK_USE_PATENTED:BOOL=ON PLIST_SUB+= MPEG="@comment " .endif -.if defined(WITH_GL2PS) +.if ${PORT_OPTIONS:MGL2PS} LIB_DEPENDS+= gl2ps:${PORTSDIR}/print/gl2ps CMAKE_ARGS+= -DVTK_USE_GL2PS:BOOL=ON PLIST_SUB+= GL2PS="" @@ -104,7 +104,7 @@ PLIST_SUB+= GL2PS="" PLIST_SUB+= GL2PS="@comment " .endif -.if defined(WITH_OSMESA) +.if ${PORT_OPTIONS:MOSMESA} LIB_DEPENDS+= OSMesa32:${PORTSDIR}/graphics/libosmesa CMAKE_ARGS+= -DVTK_OPENGL_HAS_OSMESA:BOOL=ON \ -DOSMESA_INCLUDE_DIR:PATH=${LOCALBASE}/include/Mesa \ @@ -119,7 +119,7 @@ CMAKE_ARGS+= -DVTK_USE_X:BOOL=ON PLIST_SUB+= X11="" .endif -.if defined(WITH_QT) +.if ${PORT_OPTIONS:MQT4} USE_QT4= corelib designer gui opengl qmake_build uic_build \ moc_build rcc_build CMAKE_ARGS+= -DVTK_USE_GUISUPPORT:BOOL=ON \ @@ -134,8 +134,8 @@ CMAKE_ARGS+= -DVTK_USE_GUISUPPORT:BOOL=O PLIST_SUB+= QT="@comment " .endif -.if defined(WITH_WRAP_PYTHON) -.if !defined(WITH_SHARED) +.if ${PORT_OPTIONS:MPYTHON} +.if ${PORT_OPTIONS:MSHARED} == "" IGNORE= python wrapping requires shared libraries.\ Run make config again and enable the SHARED option .endif @@ -150,7 +150,7 @@ CMAKE_ARGS+= -DVTK_WRAP_PYTHON:BOOL=OFF PLIST_SUB+= PYTHON="@comment " .endif -.if defined(WITH_WRAP_TCLTK) +.if ${PORT_OPTIONS:MTCLTK} CMAKE_ARGS+= -DVTK_WRAP_TCL:BOOL=ON PLIST_SUB+= TCLTK="" .else @@ -159,7 +159,7 @@ PLIST_SUB+= TCLTK="@comment " .endif # Used by both tcl/tk and python -.if defined(WITH_WRAP_TCLTK) || defined(WITH_WRAP_PYTHON) +.if ${PORT_OPTIONS:MTCLTK} || ${PORT_OPTIONS:MPYTHON} USE_TCL= 84+ USE_TK= 84+ CMAKE_ARGS+= -DVTK_USE_TK:BOOL=ON \ @@ -171,8 +171,8 @@ PLIST_SUB+= WRAP_PYTHON_OR_TCLTK="" \ PLIST_SUB+= WRAP_PYTHON_OR_TCLTK="@comment " .endif -.if defined(WITH_WRAP_JAVA) -.if !defined(WITH_SHARED) +.if ${PORT_OPTIONS:MJAVA} +.if ${PORT_OPTIONS:MSHARED} == "" IGNORE= java wrapping requires shared libraries.\ Run make config again and enable the SHARED option .endif @@ -194,7 +194,7 @@ PLIST_SUB+= JAVA="@comment " .endif # Wrapping -.if defined(WITH_WRAP_PYTHON) || defined(WITH_WRAP_TCLTK) || defined(WITH_WRAP_JAVA) +.if ${PORT_OPTIONS:MPYTHON} || ${PORT_OPTIONS:MTCLTK} || ${PORT_OPTIONS:MJAVA} PLIST_SUB+= WRAPPING="" .else PLIST_SUB+= WRAPPING="@comment " @@ -206,24 +206,24 @@ post-patch: # ${REINPLACE_CMD} -e '222s|)|) \&\& !defined(__FreeBSD__)|' \ # ${WRKSRC}/Utilities/kwsys/SharedForward.h.in ${REINPLACE_CMD} -e '25,30d' ${WRKSRC}/Wrapping/Python/setup.py.in -.if defined(WITH_SHARED) +.if ${PORT_OPTIONS:MSHARED} ${REINPLACE_CMD} -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|g' \ ${WRKSRC}/IO/vtkPNGReader.cxx .endif post-configure: -.if defined(WITH_WRAP_JAVA) +.if ${PORT_OPTIONS:MJAVA} ${REINPLACE_CMD} -e 's|-ljawt$$||' \ ${CONFIGURE_WRKSRC}/Wrapping/Java/CMakeFiles/VTKJavaExecutable.dir/link.txt .endif pre-install: -.if defined(WITH_PYTHON) +.if ${PORT_OPTIONS:MPYTHON} ${MKDIR} ${PYTHONPREFIX_SITELIBDIR} .endif ${MKDIR} ${MANPREFIX}/man/man3 ${INSTALL_MAN} ${WRKDIR}/vtk.3 ${MANPREFIX}/man/man3 -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.html ${DOCSDIR} .endif @@ -234,7 +234,7 @@ LIBDIR= ${PREFIX}/lib/vtk-${PORTVERSION post-install: # Ports system wants us to conform to lib.so.x format, but VTK5 # only installs lib.so.x.y and lib.so.x.y.z. -.if defined(WITH_SHARED) +.if ${PORT_OPTIONS:MSHARED} @for lib in ${LIBS_TOFIX}; do \ ${CP} ${LIBDIR}/lib$$lib.so ${LIBDIR}/lib$$lib.so.${PORTVERSION}; \ done @@ -244,7 +244,7 @@ post-install: ${LN} -sf $$lib.${PORTVERSION:R} $$lib.${PORTVERSION:R:R}; \ ${LN} -sf $$lib.${PORTVERSION:R:R} $$lib; \ done -.if defined(WITH_QT) +.if ${PORT_OPTIONS:MQT4} @for lib in ${LIBDIR}/libQVTK*.so; do \ ${RM} -f $$lib; \ ${LN} -sf $$lib.${PORTVERSION} $$lib; \ @@ -252,7 +252,7 @@ post-install: done .endif .endif -.if defined(WITH_VTKMPEG2) +.if ${PORT_OPTIONS:MVTKMPEG2} @${ECHO_CMD} @${ECHO_CMD} "This port uses the patented MPEG2 encoder." @${ECHO_CMD} Modified: head/math/vtk5/distinfo ============================================================================== --- head/math/vtk5/distinfo Wed Oct 10 13:14:27 2012 (r305659) +++ head/math/vtk5/distinfo Wed Oct 10 13:15:47 2012 (r305660) @@ -1,2 +1,2 @@ -SHA256 (vtk-5.8.0.tar.gz) = 83ee74b83403590342c079a52b06eef7ab862417f941d5f4558aea25c6bbc2d5 -SIZE (vtk-5.8.0.tar.gz) = 23745803 +SHA256 (vtk-5.10.0.tar.gz) = 9dd8c750f5d974ca92734d0168db6b534109b9ec30461eb7082a9f71d4716392 +SIZE (vtk-5.10.0.tar.gz) = 24803686 Added: head/math/vtk5/files/patch-Common_vtkMath.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk5/files/patch-Common_vtkMath.h Wed Oct 10 13:15:47 2012 (r305660) @@ -0,0 +1,17 @@ +--- Common/vtkMath.h.orig 2012-05-12 13:59:27.000000000 +0200 ++++ Common/vtkMath.h 2012-09-13 09:24:53.000000000 +0200 +@@ -1336,6 +1336,7 @@ + return result; + } + ++#ifndef __WRAP__ + #if defined(VTK_HAS_ISINF) + //----------------------------------------------------------------------------- + inline int vtkMath::IsInf(double x) +@@ -1351,5 +1352,6 @@ + return (isnan(x) ? 1 : 0); + } + #endif ++#endif + + #endif Added: head/math/vtk5/files/patch-Rendering_vtkTkRenderWidget.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk5/files/patch-Rendering_vtkTkRenderWidget.cxx Wed Oct 10 13:15:47 2012 (r305660) @@ -0,0 +1,38 @@ +--- Rendering/vtkTkRenderWidget.cxx.orig ++++ Rendering/vtkTkRenderWidget.cxx +@@ -941,8 +941,9 @@ static int vtkTkRenderWidget_MakeRenderWindow(struct vtkTkRenderWidget *self) + vtkTclGetObjectFromPointer(self->Interp, self->RenderWindow, + "vtkRenderWindow"); + #endif +- self->RW = ckalloc( +- static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1)); ++ // in Tcl 8.6.x, ckalloc was changed to return "void *". ++ self->RW = static_cast(ckalloc( ++ static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1))); + strcpy(self->RW, Tcl_GetStringResult(self->Interp)); + Tcl_ResetResult(self->Interp); + } +@@ -1113,8 +1114,9 @@ vtkTkRenderWidget_MakeRenderWindow(struct vtkTkRenderWidget *self) + vtkTclGetObjectFromPointer(self->Interp, self->RenderWindow, + "vtkRenderWindow"); + #endif +- self->RW = ckalloc( +- static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1)); ++ // in Tcl 8.6.x, ckalloc was changed to return "void *". ++ self->RW = static_cast(ckalloc( ++ static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1))); + strcpy(self->RW, Tcl_GetStringResult(self->Interp)); + Tcl_ResetResult(self->Interp); + } +@@ -1306,8 +1308,9 @@ vtkTkRenderWidget_MakeRenderWindow(struct vtkTkRenderWidget *self) + vtkTclGetObjectFromPointer(self->Interp, self->RenderWindow, + "vtkRenderWindow"); + #endif +- self->RW = ckalloc( +- static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1)); ++ // in Tcl 8.6.x, ckalloc was changed to return "void *". ++ self->RW = static_cast(ckalloc( ++ static_cast(strlen(Tcl_GetStringResult(self->Interp)) + 1))); + strcpy(self->RW, Tcl_GetStringResult(self->Interp)); + Tcl_ResetResult(self->Interp); + } Added: head/math/vtk5/files/patch-Utilities-LSDyna_LSDynaFamily.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk5/files/patch-Utilities-LSDyna_LSDynaFamily.cxx Wed Oct 10 13:15:47 2012 (r305660) @@ -0,0 +1,11 @@ +--- Utilities/LSDyna/LSDynaFamily.cxx.orig 2012-09-07 10:04:57.000000000 +0200 ++++ Utilities/LSDyna/LSDynaFamily.cxx 2012-09-07 10:07:21.000000000 +0200 +@@ -33,7 +33,7 @@ + namespace + { + //Documentation on why the exemption +-#define USE_STAT_64 VTK_SIZEOF_ID_TYPE==8 && !defined _DARWIN_FEATURE_64_BIT_INODE ++#define USE_STAT_64 VTK_SIZEOF_ID_TYPE==8 && !defined _DARWIN_FEATURE_64_BIT_INODE && !defined __FreeBSD__ + //OSX uses stat instead of stat64 + #if (USE_STAT_64) + //64bit Added: head/math/vtk5/files/patch-Wrapping_vtkParsePreprocess.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk5/files/patch-Wrapping_vtkParsePreprocess.c Wed Oct 10 13:15:47 2012 (r305660) @@ -0,0 +1,129 @@ +--- Wrapping/vtkParsePreprocess.c.orig 2012-09-10 16:13:54.000000000 +0200 ++++ Wrapping/vtkParsePreprocess.c 2012-09-10 16:14:03.000000000 +0200 +@@ -33,6 +33,9 @@ + + #define PREPROC_DEBUG 0 + ++/** Block size for reading files */ ++#define FILE_BUFFER_SIZE 8192 ++ + /** Preprocessor tokens. */ + enum _preproc_token_t + { +@@ -1787,10 +1790,10 @@ + PreprocessInfo *info, const char *filename, int system_first) + { + char *tbuf; +- size_t tbuflen = 8192; ++ size_t tbuflen = FILE_BUFFER_SIZE; + char *line; + size_t linelen = 80; +- size_t i, j, n; ++ size_t i, j, n, r; + int in_comment = 0; + int in_quote = 0; + int result = VTK_PARSE_OK; +@@ -1849,29 +1852,48 @@ + info->IsExternal = 1; + info->FileName = path; + +- tbuf = (char *)malloc(tbuflen); ++ tbuf = (char *)malloc(tbuflen+4); + line = (char *)malloc(linelen); + + /* the buffer must hold a whole line for it to be processed */ + j = 0; + i = 0; + n = 0; ++ r = 0; + + do + { +- if (i == n) ++ if (i >= n) + { ++ /* recycle unused lookahead chars */ ++ if (r) ++ { ++ r = n + 2 - i; ++ if (r == 2) ++ { ++ tbuf[0] = tbuf[tbuflen-2]; ++ tbuf[1] = tbuf[tbuflen-1]; ++ } ++ else if (r == 1) ++ { ++ tbuf[0] = tbuf[tbuflen-1]; ++ } ++ } ++ + /* read the next chunk of the file */ + i = 0; + if (feof(fp)) + { +- n = 0; ++ /* still have the lookahead chars left */ ++ n = r; ++ r = 0; + } + else + { ++ /* fill the remainder of the buffer */ + errno = 0; +- i = 0; +- while ((n = fread(tbuf, 1, tbuflen, fp)) == 0 && ferror(fp)) ++ tbuflen = r + FILE_BUFFER_SIZE; ++ while ((n = fread(&tbuf[r], 1, tbuflen-r, fp)) == 0 && ferror(fp)) + { + if (errno != EINTR) + { +@@ -1884,6 +1906,22 @@ + errno = 0; + clearerr(fp); + } ++ ++ if (n + r < tbuflen) ++ { ++ /* this only occurs if the final fread does not fill the buffer */ ++ n += r; ++ r = 0; ++ } ++ else ++ { ++ /* set a lookahead reserve of two chars */ ++ n -= (2 - r); ++ r = 2; ++ } ++ ++ /* guard against lookahead past last char in file */ ++ tbuf[n + r] = '\0'; + } + } + +@@ -1891,7 +1929,7 @@ + while (i < n) + { + /* expand line buffer as necessary */ +- if (j+4 > linelen) ++ while (j+4 > linelen) + { + linelen *= 2; + line = (char *)realloc(line, linelen); +@@ -1917,7 +1955,7 @@ + line[j++] = tbuf[i++]; + in_quote = 0; + } +- else if (tbuf[i] == '\\' && tbuf[i] == '\"') ++ else if (tbuf[i] == '\\' && tbuf[i+1] == '\"') + { + line[j++] = tbuf[i++]; + line[j++] = tbuf[i++]; +@@ -1927,7 +1965,7 @@ + line[j++] = tbuf[i++]; + } + } +- else if (tbuf[i] == '/' && tbuf[i] == '*') ++ else if (tbuf[i] == '/' && tbuf[i+1] == '*') + { + line[j++] = tbuf[i++]; + line[j++] = tbuf[i++]; Modified: head/math/vtk5/pkg-plist ============================================================================== --- head/math/vtk5/pkg-plist Wed Oct 10 13:14:27 2012 (r305659) +++ head/math/vtk5/pkg-plist Wed Oct 10 13:15:47 2012 (r305660) @@ -16,12 +16,18 @@ %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/geovis.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/graphics.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/graphics.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindow.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindow.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindowInteractor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindowInteractor.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindow.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindow.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindowInteractor.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindowInteractor.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/__init__.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/chemistry.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/chemistry.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/hybrid.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/hybrid.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/imaging.py @@ -419,6 +425,7 @@ %%TCLTK%%lib/vtk-%%VER2%%/tcl/README %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtk/vtk.tcl %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkbase/vtkbase.tcl +%%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkcharts/vtkcharts.tcl %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkcommon/vtkcommon.tcl %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkfiltering/vtkfiltering.tcl %%TCLTK%%lib/vtk-%%VER2%%/tcl/vtkgeovis/vtkgeovis.tcl @@ -508,7 +515,6 @@ include/vtk-%%VER2%%/alglib/reflections. include/vtk-%%VER2%%/alglib/rotations.h include/vtk-%%VER2%%/alglib/svd.h include/vtk-%%VER2%%/internal/stdio_core.h -include/vtk-%%VER2%%/metaIOConfig.h include/vtk-%%VER2%%/mrmpi/cmapreduce.h include/vtk-%%VER2%%/mrmpi/error.h include/vtk-%%VER2%%/mrmpi/hash.h @@ -642,7 +648,6 @@ include/vtk-%%VER2%%/vtkBiQuadraticTrian include/vtk-%%VER2%%/vtkBitArray.h include/vtk-%%VER2%%/vtkBitArrayIterator.h include/vtk-%%VER2%%/vtkBivariateLinearTableThreshold.h -include/vtk-%%VER2%%/vtkBivariateStatisticsAlgorithm.h include/vtk-%%VER2%%/vtkBlankStructuredGrid.h include/vtk-%%VER2%%/vtkBlankStructuredGridWithImage.h include/vtk-%%VER2%%/vtkBlockIdScalars.h @@ -1581,7 +1586,6 @@ include/vtk-%%VER2%%/vtkOpenGLGPUVolumeR include/vtk-%%VER2%%/vtkOpenGLGlyph3DMapper.h include/vtk-%%VER2%%/vtkOpenGLHAVSVolumeMapper.h include/vtk-%%VER2%%/vtkOpenGLHardwareSupport.h -include/vtk-%%VER2%%/vtkOpenGLImageActor.h include/vtk-%%VER2%%/vtkOpenGLImageMapper.h include/vtk-%%VER2%%/vtkOpenGLLight.h include/vtk-%%VER2%%/vtkOpenGLLightingPainter.h @@ -2230,7 +2234,6 @@ include/vtk-%%VER2%%/vtkUnicodeString.h include/vtk-%%VER2%%/vtkUnicodeStringArray.h include/vtk-%%VER2%%/vtkUniformGrid.h include/vtk-%%VER2%%/vtkUniformVariables.h -include/vtk-%%VER2%%/vtkUnivariateStatisticsAlgorithm.h include/vtk-%%VER2%%/vtkUnsignedCharArray.h include/vtk-%%VER2%%/vtkUnsignedIntArray.h include/vtk-%%VER2%%/vtkUnsignedLongArray.h @@ -2408,6 +2411,150 @@ include/vtk-%%VER2%%/vtkXMLWriter.h include/vtk-%%VER2%%/vtkXMLWriterC.h %%X11%%include/vtk-%%VER2%%/vtkXOpenGLRenderWindow.h %%X11%%include/vtk-%%VER2%%/vtkXRenderWindowInteractor.h +include/vtk-%%VER2%%/LSDyna/LSDynaExport.h +include/vtk-%%VER2%%/LSDyna/LSDynaFamily.h +include/vtk-%%VER2%%/LSDyna/LSDynaMetaData.h +include/vtk-%%VER2%%/vtkAbstractImageInterpolator.h +include/vtk-%%VER2%%/vtkArrayDataReader.h +include/vtk-%%VER2%%/vtkArrayDataWriter.h +include/vtk-%%VER2%%/vtkAtom.h +include/vtk-%%VER2%%/vtkAxisExtended.h +include/vtk-%%VER2%%/vtkAxisFollower.h +include/vtk-%%VER2%%/vtkBSplineTransform.h +include/vtk-%%VER2%%/vtkBond.h +include/vtk-%%VER2%%/vtkBooleanOperationPolyDataFilter.h +include/vtk-%%VER2%%/vtkBrokenLineWidget.h +include/vtk-%%VER2%%/vtkCellCentersPointPlacer.h +include/vtk-%%VER2%%/vtkCellTreeLocator.h +include/vtk-%%VER2%%/vtkCenterOfMass.h +include/vtk-%%VER2%%/vtkChartMatrix.h +include/vtk-%%VER2%%/vtkCirclePackFrontChainLayoutStrategy.h +include/vtk-%%VER2%%/vtkCirclePackLayout.h +include/vtk-%%VER2%%/vtkCirclePackLayoutStrategy.h +include/vtk-%%VER2%%/vtkCirclePackToPolyData.h +include/vtk-%%VER2%%/vtkColorMaterialHelper_vs.h +include/vtk-%%VER2%%/vtkContextKeyEvent.h +include/vtk-%%VER2%%/vtkConvexHull2D.h +include/vtk-%%VER2%%/vtkDepthPeeling_fs.h +include/vtk-%%VER2%%/vtkDistancePolyDataFilter.h +include/vtk-%%VER2%%/vtkFixedSizeHandleRepresentation3D.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_AdditiveCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_AdditiveFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_AdditiveNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeBinaryMaskFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeMaskFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_CompositeNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_FourComponentsFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_HeaderFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPBinaryMaskFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPFourDependentCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPFourDependentFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPFourDependentNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MIPNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPBinaryMaskFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPFourDependentCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPFourDependentFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPFourDependentNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_MinIPNoCroppingFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_NoShadeFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_OneComponentFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_ParallelProjectionFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_PerspectiveProjectionFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_ScaleBiasFS.h +include/vtk-%%VER2%%/vtkGPUVolumeRayCastMapper_ShadeFS.h +include/vtk-%%VER2%%/vtkGaussianBlurPassShader_fs.h +include/vtk-%%VER2%%/vtkGraphAnnotationLayersFilter.h +include/vtk-%%VER2%%/vtkGraphWeightEuclideanDistanceFilter.h +include/vtk-%%VER2%%/vtkGraphWeightFilter.h +include/vtk-%%VER2%%/vtkImageBSplineCoefficients.h +include/vtk-%%VER2%%/vtkImageBSplineInternals.h +include/vtk-%%VER2%%/vtkImageBSplineInterpolator.h +include/vtk-%%VER2%%/vtkImageCroppingRegionsWidget.h +include/vtk-%%VER2%%/vtkImageDataToPointSet.h +include/vtk-%%VER2%%/vtkImageHistogram.h +include/vtk-%%VER2%%/vtkImageHistogramStatistics.h +include/vtk-%%VER2%%/vtkImageInterpolator.h +include/vtk-%%VER2%%/vtkImageInterpolatorInternals.h +include/vtk-%%VER2%%/vtkImageMapper3D.h +include/vtk-%%VER2%%/vtkImageProperty.h +include/vtk-%%VER2%%/vtkImageResize.h +include/vtk-%%VER2%%/vtkImageResliceMapper.h +include/vtk-%%VER2%%/vtkImageResliceToColors.h +include/vtk-%%VER2%%/vtkImageSincInterpolator.h +include/vtk-%%VER2%%/vtkImageSlabReslice.h +include/vtk-%%VER2%%/vtkImageSlice.h +include/vtk-%%VER2%%/vtkImageSliceCollection.h +include/vtk-%%VER2%%/vtkImageSliceMapper.h +include/vtk-%%VER2%%/vtkImageStack.h +include/vtk-%%VER2%%/vtkImageThresholdConnectivity.h +include/vtk-%%VER2%%/vtkImageToStructuredGrid.h +include/vtk-%%VER2%%/vtkImplicitPolyDataDistance.h +include/vtk-%%VER2%%/vtkIntersectionPolyDataFilter.h +include/vtk-%%VER2%%/vtkKCoreDecomposition.h +include/vtk-%%VER2%%/vtkKCoreLayout.h +include/vtk-%%VER2%%/vtkLSDynaPart.h +include/vtk-%%VER2%%/vtkLSDynaPartCollection.h +include/vtk-%%VER2%%/vtkLSDynaSummaryParser.h +include/vtk-%%VER2%%/vtkLightingHelper_s.h +include/vtk-%%VER2%%/vtkLighting_s.h +include/vtk-%%VER2%%/vtkLineIntegralConvolution2D_fs.h +include/vtk-%%VER2%%/vtkLineIntegralConvolution2D_fs1.h +include/vtk-%%VER2%%/vtkLineIntegralConvolution2D_fs2.h +include/vtk-%%VER2%%/vtkLinearSelector.h +include/vtk-%%VER2%%/vtkMarchingCubesTriangleCases.h +include/vtk-%%VER2%%/vtkMarchingSquaresLineCases.h +include/vtk-%%VER2%%/vtkMathConfigure.h +include/vtk-%%VER2%%/vtkMathUtilities.h +include/vtk-%%VER2%%/vtkMolecule.h +include/vtk-%%VER2%%/vtkNetCDFCAMReader.h +include/vtk-%%VER2%%/vtkOpenGLImageSliceMapper.h +include/vtk-%%VER2%%/vtkOpenGLPropertyDefaultMain_fs.h +include/vtk-%%VER2%%/vtkOpenGLPropertyDefaultMain_vs.h +include/vtk-%%VER2%%/vtkOpenGLPropertyDefaultPropFunc_fs.h +include/vtk-%%VER2%%/vtkOpenGLPropertyDefaultPropFunc_vs.h +include/vtk-%%VER2%%/vtkOpenGLRenderer_PeelingFS.h +include/vtk-%%VER2%%/vtkPLSDynaReader.h +include/vtk-%%VER2%%/vtkPMaskPoints.h +include/vtk-%%VER2%%/vtkPYoungsMaterialInterface.h +include/vtk-%%VER2%%/vtkPiecewisePointHandleItem.h +include/vtk-%%VER2%%/vtkPolarAxesActor.h +include/vtk-%%VER2%%/vtkPolyPlane.h +include/vtk-%%VER2%%/vtkProjectedAAHexahedraMapper_FS.h +include/vtk-%%VER2%%/vtkProjectedAAHexahedraMapper_GS.h +include/vtk-%%VER2%%/vtkProjectedAAHexahedraMapper_VS.h +include/vtk-%%VER2%%/vtkQtDebugLeaksModel.h +include/vtk-%%VER2%%/vtkQtDebugLeaksView.h +include/vtk-%%VER2%%/vtkQuadRotationalExtrusionFilter.h +include/vtk-%%VER2%%/vtkRectilinearGridToPointSet.h +include/vtk-%%VER2%%/vtkResliceCursor.h +include/vtk-%%VER2%%/vtkResliceCursorActor.h +include/vtk-%%VER2%%/vtkResliceCursorLineRepresentation.h +include/vtk-%%VER2%%/vtkResliceCursorPicker.h +include/vtk-%%VER2%%/vtkResliceCursorPolyDataAlgorithm.h +include/vtk-%%VER2%%/vtkResliceCursorRepresentation.h +include/vtk-%%VER2%%/vtkResliceCursorThickLineRepresentation.h +include/vtk-%%VER2%%/vtkResliceCursorWidget.h +include/vtk-%%VER2%%/vtkResliceImageViewer.h +include/vtk-%%VER2%%/vtkResliceImageViewerMeasurements.h +include/vtk-%%VER2%%/vtkScatterPlotMatrix.h +include/vtk-%%VER2%%/vtkShaderDeviceAdapter2.h +include/vtk-%%VER2%%/vtkShadowMapPassShader_fs.h +include/vtk-%%VER2%%/vtkShadowMapPassShader_vs.h +include/vtk-%%VER2%%/vtkSimplePointsWriter.h +include/vtk-%%VER2%%/vtkSobelGradientMagnitudePassShader1_fs.h +include/vtk-%%VER2%%/vtkSobelGradientMagnitudePassShader2_fs.h +include/vtk-%%VER2%%/vtkStructuredGridLIC2D_fs.h +include/vtk-%%VER2%%/vtkSurfaceLICPainter_fs1.h +include/vtk-%%VER2%%/vtkSurfaceLICPainter_fs2.h +include/vtk-%%VER2%%/vtkSurfaceLICPainter_vs1.h +include/vtk-%%VER2%%/vtkTreeIterator.h +include/vtk-%%VER2%%/vtkTuple.h include/vtk-%%VER2%%/vtkXYPlotActor.h include/vtk-%%VER2%%/vtkXYPlotWidget.h include/vtk-%%VER2%%/vtkXYZMolReader.h @@ -2416,7 +2563,9 @@ include/vtk-%%VER2%%/vtkZLibDataCompress include/vtk-%%VER2%%/vtk_expat.h include/vtk-%%VER2%%/vtk_freetype.h include/vtk-%%VER2%%/vtk_gl2ps.h +include/vtk-%%VER2%%/vtk_hdf5.h include/vtk-%%VER2%%/vtk_jpeg.h +include/vtk-%%VER2%%/vtk_libproj4.h include/vtk-%%VER2%%/vtk_libxml2.h include/vtk-%%VER2%%/vtk_oggtheora.h include/vtk-%%VER2%%/vtk_png.h @@ -2432,6 +2581,7 @@ include/vtk-%%VER2%%/vtkfreetype/include include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftbbox.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftbdf.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftbitmap.h +include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftbzip2.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftcache.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftchapters.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/ftcid.h @@ -2477,7 +2627,6 @@ include/vtk-%%VER2%%/vtkfreetype/include include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/fttrace.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/ftvalid.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/internal.h -include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/pcftypes.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/psaux.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/pshints.h include/vtk-%%VER2%%/vtkfreetype/include/freetype/internal/sfnt.h @@ -2509,6 +2658,7 @@ include/vtk-%%VER2%%/vtkhdf5/H5CSprivate include/vtk-%%VER2%%/vtkhdf5/H5Cpkg.h include/vtk-%%VER2%%/vtkhdf5/H5Cprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Cpublic.h +include/vtk-%%VER2%%/vtkhdf5/H5DSpublic.h include/vtk-%%VER2%%/vtkhdf5/H5Dpkg.h include/vtk-%%VER2%%/vtkhdf5/H5Dprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Dpublic.h @@ -2553,9 +2703,12 @@ include/vtk-%%VER2%%/vtkhdf5/H5HLpkg.h include/vtk-%%VER2%%/vtkhdf5/H5HLprivate.h include/vtk-%%VER2%%/vtkhdf5/H5HLpublic.h include/vtk-%%VER2%%/vtkhdf5/H5HPprivate.h +include/vtk-%%VER2%%/vtkhdf5/H5IMpublic.h include/vtk-%%VER2%%/vtkhdf5/H5Ipkg.h include/vtk-%%VER2%%/vtkhdf5/H5Iprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Ipublic.h +include/vtk-%%VER2%%/vtkhdf5/H5LTparse.h +include/vtk-%%VER2%%/vtkhdf5/H5LTpublic.h include/vtk-%%VER2%%/vtkhdf5/H5Lpkg.h include/vtk-%%VER2%%/vtkhdf5/H5Lprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Lpublic.h @@ -2568,6 +2721,7 @@ include/vtk-%%VER2%%/vtkhdf5/H5Opkg.h include/vtk-%%VER2%%/vtkhdf5/H5Oprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Opublic.h include/vtk-%%VER2%%/vtkhdf5/H5Oshared.h +include/vtk-%%VER2%%/vtkhdf5/H5PTpublic.h include/vtk-%%VER2%%/vtkhdf5/H5Ppkg.h include/vtk-%%VER2%%/vtkhdf5/H5Pprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Ppublic.h @@ -2583,6 +2737,7 @@ include/vtk-%%VER2%%/vtkhdf5/H5STprivate include/vtk-%%VER2%%/vtkhdf5/H5Spkg.h include/vtk-%%VER2%%/vtkhdf5/H5Sprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Spublic.h +include/vtk-%%VER2%%/vtkhdf5/H5TBpublic.h include/vtk-%%VER2%%/vtkhdf5/H5TSprivate.h include/vtk-%%VER2%%/vtkhdf5/H5Tpkg.h include/vtk-%%VER2%%/vtkhdf5/H5Tprivate.h @@ -2599,6 +2754,8 @@ include/vtk-%%VER2%%/vtkhdf5/H5pubconf.h include/vtk-%%VER2%%/vtkhdf5/H5public.h include/vtk-%%VER2%%/vtkhdf5/H5version.h include/vtk-%%VER2%%/vtkhdf5/hdf5.h +include/vtk-%%VER2%%/vtkhdf5/hdf5_hl.h +include/vtk-%%VER2%%/vtkhdf5/vtk_libhdf5_hl_mangle.h include/vtk-%%VER2%%/vtkhdf5/vtk_libhdf5_mangle.h include/vtk-%%VER2%%/vtklibproj4/lib_proj.h include/vtk-%%VER2%%/vtklibproj4/proj_config.h @@ -2659,9 +2816,11 @@ include/vtk-%%VER2%%/vtkmetaio/metaConto include/vtk-%%VER2%%/vtkmetaio/metaDTITube.h include/vtk-%%VER2%%/vtkmetaio/metaEllipse.h include/vtk-%%VER2%%/vtkmetaio/metaEvent.h +include/vtk-%%VER2%%/vtkmetaio/metaFEMObject.h include/vtk-%%VER2%%/vtkmetaio/metaForm.h include/vtk-%%VER2%%/vtkmetaio/metaGaussian.h include/vtk-%%VER2%%/vtkmetaio/metaGroup.h +include/vtk-%%VER2%%/vtkmetaio/metaIOConfig.h include/vtk-%%VER2%%/vtkmetaio/metaITKUtils.h include/vtk-%%VER2%%/vtkmetaio/metaImage.h include/vtk-%%VER2%%/vtkmetaio/metaImageTypes.h @@ -2679,11 +2838,24 @@ include/vtk-%%VER2%%/vtkmetaio/metaTubeG include/vtk-%%VER2%%/vtkmetaio/metaTypes.h include/vtk-%%VER2%%/vtkmetaio/metaUtils.h include/vtk-%%VER2%%/vtkmetaio/metaVesselTube.h +include/vtk-%%VER2%%/vtknetcdf/include/fbits.h +include/vtk-%%VER2%%/vtknetcdf/include/nc.h +include/vtk-%%VER2%%/vtknetcdf/include/nc3dispatch.h +include/vtk-%%VER2%%/vtknetcdf/include/nc_logging.h +include/vtk-%%VER2%%/vtknetcdf/include/nc_tests.h +include/vtk-%%VER2%%/vtknetcdf/include/nc_url.h +include/vtk-%%VER2%%/vtknetcdf/include/ncdimscale.h +include/vtk-%%VER2%%/vtknetcdf/include/ncdispatch.h +include/vtk-%%VER2%%/vtknetcdf/include/ncio.h +include/vtk-%%VER2%%/vtknetcdf/include/nclist.h +include/vtk-%%VER2%%/vtknetcdf/include/netcdf.h +include/vtk-%%VER2%%/vtknetcdf/include/netcdf_f.h +include/vtk-%%VER2%%/vtknetcdf/include/netcdf_par.h +include/vtk-%%VER2%%/vtknetcdf/include/utf8proc.h +include/vtk-%%VER2%%/vtknetcdf/include/vtk_netcdf_mangle.h include/vtk-%%VER2%%/vtknetcdf/ncconfig.h -include/vtk-%%VER2%%/vtknetcdf/netcdf.h -include/vtk-%%VER2%%/vtknetcdf/netcdf3.h +include/vtk-%%VER2%%/vtknetcdf/ncvalues.h include/vtk-%%VER2%%/vtknetcdf/netcdfcpp.h -include/vtk-%%VER2%%/vtknetcdf/vtk_netcdf_mangle.h include/vtk-%%VER2%%/vtksqlite/vtk_sqlite3.h include/vtk-%%VER2%%/vtkstd/algorithm include/vtk-%%VER2%%/vtkstd/deque @@ -2788,19 +2960,14 @@ lib/vtk-%%VER2%%/doxygen/paper-clip.gif lib/vtk-%%VER2%%/doxygen/pic.gif lib/vtk-%%VER2%%/doxygen/vtk-logo.gif lib/vtk-%%VER2%%/hints -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER1%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER2%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER3%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so -%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.1.8.5 -%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so -%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER1%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER2%% -%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER3%% %%SHARED%%lib/vtk-%%VER2%%/libCosmo.so %%SHARED%%lib/vtk-%%VER2%%/libCosmo.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libCosmo.so.%%VER2%% %%SHARED%%lib/vtk-%%VER2%%/libCosmo.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libLSDyna.so +%%SHARED%%lib/vtk-%%VER2%%/libLSDyna.so.%%VER1%% +%%SHARED%%lib/vtk-%%VER2%%/libLSDyna.so.%%VER2%% +%%SHARED%%lib/vtk-%%VER2%%/libLSDyna.so.%%VER3%% %%SHARED%%lib/vtk-%%VER2%%/libMapReduceMPI.so %%SHARED%%lib/vtk-%%VER2%%/libMapReduceMPI.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libMapReduceMPI.so.%%VER2%% @@ -2861,6 +3028,10 @@ lib/vtk-%%VER2%%/hints %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF.so.%%VER2%% %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so +%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER1%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER2%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx.so.%%VER3%% %%SHARED%%lib/vtk-%%VER2%%/libvtkParallel.so %%SHARED%%lib/vtk-%%VER2%%/libvtkParallel.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libvtkParallel.so.%%VER2%% @@ -2897,6 +3068,15 @@ lib/vtk-%%VER2%%/hints %%SHARED%%lib/vtk-%%VER2%%/libvtkftgl.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libvtkftgl.so.%%VER2%% %%SHARED%%lib/vtk-%%VER2%%/libvtkftgl.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER1%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER2%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5.so.1.8.5 +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl.so +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl.so.%%VER2%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl.so.%%VER3%% +%%SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl.so.1.8.5 %%SHARED%%lib/vtk-%%VER2%%/libvtklibxml2.so %%SHARED%%lib/vtk-%%VER2%%/libvtklibxml2.so.%%VER1%% %%SHARED%%lib/vtk-%%VER2%%/libvtklibxml2.so.%%VER2%% @@ -2987,6 +3167,7 @@ lib/vtk-%%VER2%%/vtkWidgetsKit.cmake %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkgeovis %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkfiltering %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkcommon +%%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkcharts %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtkbase %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl/vtk %%TCLTK%%@dirrm lib/vtk-%%VER2%%/tcl @@ -3005,6 +3186,7 @@ lib/vtk-%%VER2%%/vtkWidgetsKit.cmake @dirrm include/vtk-%%VER2%%/vtksys @dirrm include/vtk-%%VER2%%/vtkstd @dirrm include/vtk-%%VER2%%/vtksqlite +@dirrm include/vtk-%%VER2%%/vtknetcdf/include @dirrm include/vtk-%%VER2%%/vtknetcdf @dirrm include/vtk-%%VER2%%/vtkmetaio @dirrm include/vtk-%%VER2%%/vtklibxml2/libxml @@ -3020,6 +3202,7 @@ lib/vtk-%%VER2%%/vtkWidgetsKit.cmake @dirrm include/vtk-%%VER2%%/internal @dirrm include/vtk-%%VER2%%/alglib @dirrm include/vtk-%%VER2%%/VPIC +@dirrm include/vtk-%%VER2%%/LSDyna @dirrm include/vtk-%%VER2%%/Cosmo %%STATIC%%@dirrm include/vtk-%%VER2%%/vtkzlib %%STATIC%%@dirrm include/vtk-%%VER2%%/vtkjpeg From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:22:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DED67E8; Wed, 10 Oct 2012 13:22:13 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 46DEB8FC14; Wed, 10 Oct 2012 13:22: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 q9ADMDND035375; Wed, 10 Oct 2012 13:22:13 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ADMDVZ035373; Wed, 10 Oct 2012 13:22:13 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210101322.q9ADMDVZ035373@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 10 Oct 2012 13:22:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305661 - head/math/vtk5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:22:13 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:22:13 -0000 Author: gahr Date: Wed Oct 10 13:22:12 2012 New Revision: 305661 URL: http://svn.freebsd.org/changeset/ports/305661 Log: - Do not build with debug symbols (used in testing) Modified: head/math/vtk5/Makefile Modified: head/math/vtk5/Makefile ============================================================================== --- head/math/vtk5/Makefile Wed Oct 10 13:15:47 2012 (r305660) +++ head/math/vtk5/Makefile Wed Oct 10 13:22:12 2012 (r305661) @@ -60,8 +60,7 @@ CMAKE_ARGS+= -DBUILD_DOCUMENTATION:BOOL= -DVTK_DATA_ROOT:PATH=${EXAMPLESDIR}/VTKData \ -DOPENGL_INCLUDE_DIR:PATH=${LOCALBASE}/include \ -DOPENGL_gl_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGL.so \ - -DOPENGL_glu_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGLU.so \ - -DCMAKE_BUILD_TYPE=CMAKE_CXX_FLAGS_RELWITHDEBINFO + -DOPENGL_glu_LIBRARY:FILEPATH=${LOCALBASE}/lib/libGLU.so .include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:27:15 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 755B6ADC; Wed, 10 Oct 2012 13:27:15 +0000 (UTC) (envelope-from ehaupt@critical.ch) Received: from mx.critical.ch (cl-8.zrh-02.ch.sixxs.net [IPv6:2001:1620:f00:7::2]) by mx1.freebsd.org (Postfix) with ESMTP id 09C2A8FC08; Wed, 10 Oct 2012 13:27:14 +0000 (UTC) Received: from wiggles.bwns.ch (snow.ethz.ch [129.132.80.16]) (authenticated bits=0) by mx.critical.ch (8.14.4/8.14.4/critical-1.0) with ESMTP id q9ADR7ef011616; Wed, 10 Oct 2012 15:27:08 +0200 (CEST) (envelope-from ehaupt@critical.ch) Date: Wed, 10 Oct 2012 15:27:07 +0200 From: Emanuel Haupt To: Bryan Drewery Subject: Re: svn commit: r305653 - head/ports-mgmt/portmaster Message-Id: <20121010152707.202753dc2ca04e0a228dad09@critical.ch> In-Reply-To: <507572AE.8040202@FreeBSD.org> References: <201210101303.q9AD355A031712@svn.freebsd.org> <507572AE.8040202@FreeBSD.org> X-Mailer: Sylpheed 3.2.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:27:15 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:27:15 -0000 Bryan Drewery wrote: > On 10/10/2012 8:03 AM, Bryan Drewery wrote: > > - Move to new home, http://github.com/portmaster > > - Take maintainership > > Being github, it will be easy to track issues, be transparent about > contributions, and allow a sane team effort. > > Please contact me if you are interested. Could you please add the pkgng patch as a non default option? Emanuel From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 13:34:40 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E0F3C51 for ; Wed, 10 Oct 2012 13:34:40 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id E7EE18FC16 for ; Wed, 10 Oct 2012 13:34:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9ADYdR2023167 for ; Wed, 10 Oct 2012 13:34:39 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9ADYdUS023161 for svn-ports-head@FreeBSD.org; Wed, 10 Oct 2012 13:34:39 GMT (envelope-from bdrewery) Received: (qmail 20788 invoked from network); 10 Oct 2012 08:34:38 -0500 Received: from unknown (HELO ?10.10.0.115?) (freebsd@shatow.net@10.10.0.115) by sweb.xzibition.com with ESMTPA; 10 Oct 2012 08:34:38 -0500 Message-ID: <50757967.7000609@FreeBSD.org> Date: Wed, 10 Oct 2012 08:34:31 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Emanuel Haupt Subject: Re: svn commit: r305653 - head/ports-mgmt/portmaster References: <201210101303.q9AD355A031712@svn.freebsd.org> <507572AE.8040202@FreeBSD.org> <20121010152707.202753dc2ca04e0a228dad09@critical.ch> In-Reply-To: <20121010152707.202753dc2ca04e0a228dad09@critical.ch> X-Enigmail-Version: 1.4.4 OpenPGP: id=3C9B0CF9; url=http://www.shatow.net/bryan/bryan.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 13:34:40 -0000 X-List-Received-Date: Wed, 10 Oct 2012 13:34:40 -0000 On 10/10/2012 8:27 AM, Emanuel Haupt wrote: > Bryan Drewery wrote: >> On 10/10/2012 8:03 AM, Bryan Drewery wrote: >>> - Move to new home, http://github.com/portmaster >>> - Take maintainership >> >> Being github, it will be easy to track issues, be transparent about >> contributions, and allow a sane team effort. >> >> Please contact me if you are interested. > > Could you please add the pkgng patch as a non default option? > > Emanuel > It is conditionalized such that if you do not have WITH_PKGNG in /etc/make.conf, it will change no functionality. We may end up setting up a -devel port for now to get broader testing and weed out issues. -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 14:28:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC25E2B0 for ; Wed, 10 Oct 2012 14:28:41 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 83E598FC24 for ; Wed, 10 Oct 2012 14:28:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9AESfp7099772 for ; Wed, 10 Oct 2012 14:28:41 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9AESfCu099766 for svn-ports-head@freebsd.org; Wed, 10 Oct 2012 14:28:41 GMT (envelope-from bdrewery) Received: (qmail 47026 invoked from network); 10 Oct 2012 09:28:39 -0500 Received: from unknown (HELO ?192.168.0.74?) (freebsd@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 10 Oct 2012 09:28:39 -0500 Message-ID: <50758617.8030109@FreeBSD.org> Date: Wed, 10 Oct 2012 09:28:39 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Pietro Cerutti Subject: Re: svn commit: r305648 - head/devel/tcllib References: <201210101228.q9ACSN9w026185@svn.freebsd.org> In-Reply-To: <201210101228.q9ACSN9w026185@svn.freebsd.org> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 14:28:41 -0000 X-List-Received-Date: Wed, 10 Oct 2012 14:28:41 -0000 On 10/10/2012 7:28 AM, Pietro Cerutti wrote: > Author: gahr > Date: Wed Oct 10 12:28:22 2012 > New Revision: 305648 > URL: http://svn.freebsd.org/changeset/ports/305648 > > Log: > - Do not install the try.n manpage when using Tcl 8.6, cause try/catch/finally > are part of Tcl 8.6 core and the relevant manpage is installed by lang/tcl86 > http://www.tcl.tk/cgi-bin/tct/tip/329.html This causes patch error on 7.4: ================================================= ===> Patching for tcllib-1.14_1 ===> Applying FreeBSD patches for tcllib-1.14_1 # # Ensure, the detailed output of vendors' self-tests is # available in addition to the pretty progress report: # /usr/bin/sed -i.bak -e 's,test run,test run -l testlog,' -e 's,$(libdir)/@PACKAGE@@VERSION@,$(libdir)/@PACKAGE@,' /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/Makefile.in /usr/bin/find /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/apps -type f ! -name "*.man" | /usr/bin/xargs /usr/bin/sed -i.bak -e 's,exec tclsh,exec /usr/local/bin/tclsh8.5,' # # patch(1) adds a newline at eof, so we need to remove it here # /usr/bin/awk 'NR > 1 { print h } { h = $0 } END { ORS = ""; print h }' /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04 > /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04.new /bin/mv /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04.new /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04 # try(n) is part of Tcl core since 8.6 MANN+= try.n MANN+=: not found *** Error code 127 Stop in /usr/ports/devel/tcllib. > > Modified: > head/devel/tcllib/Makefile > head/devel/tcllib/Makefile.man > > Modified: head/devel/tcllib/Makefile > ============================================================================== > --- head/devel/tcllib/Makefile Wed Oct 10 12:20:32 2012 (r305647) > +++ head/devel/tcllib/Makefile Wed Oct 10 12:28:22 2012 (r305648) > @@ -7,6 +7,7 @@ > > PORTNAME= tcllib > PORTVERSION= 1.14 > +PORTREVISION= 1 > CATEGORIES= devel tcl > MASTER_SITES= SF > > @@ -43,6 +44,14 @@ post-patch: > ${WRKSRC}/modules/doctools/tests/text/04 > ${WRKSRC}/modules/doctools/tests/text/04.new > ${MV} ${WRKSRC}/modules/doctools/tests/text/04.new ${WRKSRC}/modules/doctools/tests/text/04 > > + # try(n) is part of Tcl core since 8.6 > +.if ${TCL_VER:S/.//} < 86 > + MANN+= try.n > +.else > + ${MV} ${WRKSRC}/modules/try/try.man ${WRKSRC}/modules/try/try.man.noinstall > +.endif > + > + > RUNTEST= ${SETENV} LANG=C DISPLAY= ${MAKE} -C ${WRKSRC} test > MYID != ${ID} -u > .if ${MYID} == 0 > > Modified: head/devel/tcllib/Makefile.man > ============================================================================== > --- head/devel/tcllib/Makefile.man Wed Oct 10 12:20:32 2012 (r305647) > +++ head/devel/tcllib/Makefile.man Wed Oct 10 12:28:22 2012 (r305648) > @@ -303,7 +303,6 @@ MANN= S3.n \ > traverse.n \ > treeql.n \ > trim.n \ > - try.n \ > uevent.n \ > uevent_onidle.n \ > unicode.n \ > -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 14:51:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36A8195; Wed, 10 Oct 2012 14:51:35 +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 043DB8FC08; Wed, 10 Oct 2012 14:51: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 q9AEpYxO047766; Wed, 10 Oct 2012 14:51:34 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AEpYNf047762; Wed, 10 Oct 2012 14:51:34 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201210101451.q9AEpYNf047762@svn.freebsd.org> From: Max Brazhnikov Date: Wed, 10 Oct 2012 14:51:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305662 - head/editors/kile-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 14:51:35 -0000 X-List-Received-Date: Wed, 10 Oct 2012 14:51:35 -0000 Author: makc Date: Wed Oct 10 14:51:34 2012 New Revision: 305662 URL: http://svn.freebsd.org/changeset/ports/305662 Log: Update to 2.1.3 Modified: head/editors/kile-kde4/Makefile head/editors/kile-kde4/distinfo (contents, props changed) head/editors/kile-kde4/pkg-plist (contents, props changed) Modified: head/editors/kile-kde4/Makefile ============================================================================== --- head/editors/kile-kde4/Makefile Wed Oct 10 13:22:12 2012 (r305661) +++ head/editors/kile-kde4/Makefile Wed Oct 10 14:51:34 2012 (r305662) @@ -6,8 +6,7 @@ # PORTNAME= kile -PORTVERSION= 2.1.2 -PORTREVISION= 1 +PORTVERSION= 2.1.3 CATEGORIES= editors kde MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${DISTVERSION} Modified: head/editors/kile-kde4/distinfo ============================================================================== --- head/editors/kile-kde4/distinfo Wed Oct 10 13:22:12 2012 (r305661) +++ head/editors/kile-kde4/distinfo Wed Oct 10 14:51:34 2012 (r305662) @@ -1,2 +1,2 @@ -SHA256 (kile-2.1.2.tar.bz2) = 82d1e405e0b2aa8125cdc2dbf5bbfbb20488515bde763bf7b7cde69e6575a55b -SIZE (kile-2.1.2.tar.bz2) = 4858519 +SHA256 (kile-2.1.3.tar.bz2) = a063ec4fca1ba5a063ffdcdb538967af35ade01d71fa7db6ea691ba2cf88cea2 +SIZE (kile-2.1.3.tar.bz2) = 4911212 Modified: head/editors/kile-kde4/pkg-plist ============================================================================== --- head/editors/kile-kde4/pkg-plist Wed Oct 10 13:22:12 2012 (r305661) +++ head/editors/kile-kde4/pkg-plist Wed Oct 10 14:51:34 2012 (r305662) @@ -69,6 +69,7 @@ share/apps/kile/complete/tex/gauss.cwl share/apps/kile/complete/tex/glosstex.cwl share/apps/kile/complete/tex/graphicx.cwl share/apps/kile/complete/tex/hyperref.cwl +share/apps/kile/complete/tex/ifplatform.cwl share/apps/kile/complete/tex/ifthen.cwl share/apps/kile/complete/tex/import.cwl share/apps/kile/complete/tex/jurabib.cwl @@ -1579,8 +1580,10 @@ share/locale/ga/LC_MESSAGES/kile.mo share/locale/gl/LC_MESSAGES/kile.mo share/locale/hi/LC_MESSAGES/kile.mo share/locale/hne/LC_MESSAGES/kile.mo +share/locale/hu/LC_MESSAGES/kile.mo share/locale/it/LC_MESSAGES/kile.mo share/locale/ja/LC_MESSAGES/kile.mo +share/locale/kk/LC_MESSAGES/kile.mo share/locale/lt/LC_MESSAGES/kile.mo share/locale/mai/LC_MESSAGES/kile.mo share/locale/ms/LC_MESSAGES/kile.mo From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 14:56:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD631211; Wed, 10 Oct 2012 14:56:44 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A50C98FC08; Wed, 10 Oct 2012 14:56: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 q9AEui3u048475; Wed, 10 Oct 2012 14:56:44 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AEui7j048473; Wed, 10 Oct 2012 14:56:44 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201210101456.q9AEui7j048473@svn.freebsd.org> From: Greg Larkin Date: Wed, 10 Oct 2012 14:56:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305663 - head/devel/cvsbook X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 14:56:44 -0000 X-List-Received-Date: Wed, 10 Oct 2012 14:56:44 -0000 Author: glarkin Date: Wed Oct 10 14:56:43 2012 New Revision: 305663 URL: http://svn.freebsd.org/changeset/ports/305663 Log: - Converted to OptionsNG Modified: head/devel/cvsbook/Makefile Modified: head/devel/cvsbook/Makefile ============================================================================== --- head/devel/cvsbook/Makefile Wed Oct 10 14:51:34 2012 (r305662) +++ head/devel/cvsbook/Makefile Wed Oct 10 14:56:43 2012 (r305663) @@ -15,55 +15,63 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-all MAINTAINER= glarkin@FreeBSD.org COMMENT= A tutorial and reference for CVS -OPTIONS= CVSBOOK_INFO "Install the info version" on \ - CVSBOOK_SINGLE_HTML "Install the single-html version" on \ - CVSBOOK_SPLIT_HTML "Install the split-html version" off \ - CVSBOOK_POSTSCRIPT "Install the postscript version" on \ - CVSBOOK_PDF "Install the PDF version" on +OPTIONS_MULTI= CVSBOOK +OPTIONS_MULTI_CVSBOOK= INFO SINGLE_HTML SPLIT_HTML POSTSCRIPT PDF +INFO_DESC= Install the info version +SINGLE_HTML_DESC= Install the single HTML version +SPLIT_HTML_DESC= Install the split HTML version +POSTSCRIPT_DESC= Install the Postscript version +PDF_DESC= Install the PDF version +OPTIONS_DEFAULT= INFO SINGLE_HTML POSTSCRIPT PDF WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -.include +.include -.if defined(WITH_CVSBOOK_SPLIT_HTML) +.if ${PORT_OPTIONS:MSPLIT_HTML} ALL_TARGET= html-distributed .else NO_BUILD= yes .endif -.if !defined(WITHOUT_CVSBOOK_INFO) +.if ${PORT_OPTIONS:MINFO} INFO= cvsbook INFODIR= ${PREFIX}/${INFO_PATH} INSTALL_INFO?= install-info .endif -.if !defined(WITHOUT_CVSBOOK_SINGLE_HTML) + +.if ${PORT_OPTIONS:MSINGLE_HTML} PLIST_FILES+= %%DOCSDIR%%/cvsbook.html WANT_DOCSDIR= yes .endif -.if !defined(WITHOUT_CVSBOOK_POSTSCRIPT) + +.if ${PORT_OPTIONS:MPOSTSCRIPT} PLIST_FILES+= %%DOCSDIR%%/cvsbook.ps WANT_DOCSDIR= yes .endif -.if !defined(WITHOUT_CVSBOOK_PDF) + +.if ${PORT_OPTIONS:MPDF} PLIST_FILES+= %%DOCSDIR%%/cvsbook.pdf WANT_DOCSDIR= yes .endif -.if defined(WITH_CVSBOOK_SPLIT_HTML) + +.if ${PORT_OPTIONS:MSPLIT_HTML} PLIST_DIRS+= %%DOCSDIR%%/cvsbook-shtml WANT_DOCSDIR= yes .endif + .if defined(WANT_DOCSDIR) PLIST_DIRS+= %%DOCSDIR%% .endif -.if defined(WITH_CVSBOOK_SPLIT_HTML) +.if ${PORT_OPTIONS:MSPLIT_HTML} post-patch: - ${REINPLACE_CMD} -e \ + @${REINPLACE_CMD} -e \ '/Non-monolithic HTML not supported/s|@.*|makeinfo --html main.texi|' \ ${WRKSRC}/Makefile .endif -.if defined(WITH_CVSBOOK_SPLIT_HTML) +.if ${PORT_OPTIONS:MSPLIT_HTML} pre-install: PLIST_FILES+= `cd ${WRKSRC}/cvsbook && ${FIND} . -type f| ${CUT} -c2- \ | ${SED} 's|^|${DOCSDIR:S,${PREFIX}/,,}/cvsbook-shtml|' \ @@ -74,22 +82,22 @@ do-install: .if defined(WANT_DOCSDIR) @${MKDIR} ${DOCSDIR} .endif -.if defined(WITH_CVSBOOK_SPLIT_HTML) +.if ${PORT_OPTIONS:MSPLIT_HTML} @${MKDIR} ${DOCSDIR}/cvsbook-shtml @cd ${WRKSRC}/cvsbook && ${INSTALL_DATA} -- *.html ${DOCSDIR}/cvsbook-shtml .endif -.if !defined(WITHOUT_CVSBOOK_SINGLE_HTML) +.if ${PORT_OPTIONS:MSINGLE_HTML} @${INSTALL_DATA} ${WRKSRC}/cvsbook.html ${DOCSDIR} .endif -.if !defined(WITHOUT_CVSBOOK_PDF) +.if ${PORT_OPTIONS:MPDF} @${INSTALL_DATA} ${WRKSRC}/cvsbook.pdf ${DOCSDIR} .endif -.if !defined(WITHOUT_CVSBOOK_POSTSCRIPT) +.if ${PORT_OPTIONS:MPOSTSCRIPT} @${INSTALL_DATA} ${WRKSRC}/cvsbook.ps ${DOCSDIR} .endif -.if !defined(WITHOUT_CVSBOOK_INFO) +.if ${PORT_OPTIONS:MINFO} @${INSTALL_DATA} ${WRKSRC}/cvsbook.info* ${INFODIR} @${INSTALL_INFO} ${INFODIR}/cvsbook.info ${INFODIR}/dir .endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:05:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F60E48A; Wed, 10 Oct 2012 15:05:16 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 66F7E8FC0A; Wed, 10 Oct 2012 15:05:16 +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 q9AF5GNx049752; Wed, 10 Oct 2012 15:05:16 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AF5GMB049749; Wed, 10 Oct 2012 15:05:16 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201210101505.q9AF5GMB049749@svn.freebsd.org> From: Greg Larkin Date: Wed, 10 Oct 2012 15:05:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305664 - head/devel/p5-SVN-Notify-Snapshot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:05:16 -0000 X-List-Received-Date: Wed, 10 Oct 2012 15:05:16 -0000 Author: glarkin Date: Wed Oct 10 15:05:15 2012 New Revision: 305664 URL: http://svn.freebsd.org/changeset/ports/305664 Log: - Converted to OptionsNG - Added missing RUN_DEPENDS entry Modified: head/devel/p5-SVN-Notify-Snapshot/Makefile Modified: head/devel/p5-SVN-Notify-Snapshot/Makefile ============================================================================== --- head/devel/p5-SVN-Notify-Snapshot/Makefile Wed Oct 10 14:56:43 2012 (r305663) +++ head/devel/p5-SVN-Notify-Snapshot/Makefile Wed Oct 10 15:05:15 2012 (r305664) @@ -17,16 +17,18 @@ COMMENT= Take snapshots from Subversion BUILD_DEPENDS= ${LOCALBASE}/bin/svnnotify:${PORTSDIR}/devel/p5-SVN-Notify RUN_DEPENDS= ${LOCALBASE}/bin/svnnotify:${PORTSDIR}/devel/p5-SVN-Notify -OPTIONS= CONFIG "Enable YAML syntax for post-commit hook" Off +OPTIONS_DEFINE= CONFIG +CONFIG_DESC= Enable YAML syntax for post-commit hook PERL_MODBUILD= yes -.include +.include -.if defined(WITH_CONFIG) +.if ${PORT_OPTIONS:MCONFIG} BUILD_DEPENDS+= p5-SVN-Notify-Config>=0:${PORTSDIR}/devel/p5-SVN-Notify-Config +RUN_DEPENDS+= p5-SVN-Notify-Config>=0:${PORTSDIR}/devel/p5-SVN-Notify-Config .endif MAN3= SVN::Notify::Snapshot.3 SVN::Notify::Snapshot::ConfigData.3 -.include +.include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:09:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1294B672; Wed, 10 Oct 2012 15:09:26 +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 E25CD8FC12; Wed, 10 Oct 2012 15:09:25 +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 q9AF9Pxk050416; Wed, 10 Oct 2012 15:09:25 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AF9PBI050410; Wed, 10 Oct 2012 15:09:25 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101509.q9AF9PBI050410@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 15:09:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305665 - in head/chinese: . bsdconv-opencc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:09:26 -0000 X-List-Received-Date: Wed, 10 Oct 2012 15:09:26 -0000 Author: bdrewery Date: Wed Oct 10 15:09:25 2012 New Revision: 305665 URL: http://svn.freebsd.org/changeset/ports/305665 Log: Open Chinese Convert (OpenCC) is an open source Simplified-Traditional Chinese conversion project, providing high quality thesaurus and libopencc, as well as a conversion utility and a dictionary generator. bsdconv is a BSD licensed charset/encoding converter library with more function than libiconv. (Currently, only a few codecs are supported) This port is a opencc conversion module for bsdconv. WWW: https://github.com/buganini/bsdconv-opencc PR: ports/172266 Submitted by: Kuan-Chung Chiu Added: head/chinese/bsdconv-opencc/ head/chinese/bsdconv-opencc/Makefile (contents, props changed) head/chinese/bsdconv-opencc/distinfo (contents, props changed) head/chinese/bsdconv-opencc/pkg-descr (contents, props changed) head/chinese/bsdconv-opencc/pkg-plist (contents, props changed) Modified: head/chinese/Makefile Modified: head/chinese/Makefile ============================================================================== --- head/chinese/Makefile Wed Oct 10 15:05:15 2012 (r305664) +++ head/chinese/Makefile Wed Oct 10 15:09:25 2012 (r305665) @@ -19,6 +19,7 @@ SUBDIR += big5con SUBDIR += big5width SUBDIR += bitchx + SUBDIR += bsdconv-opencc SUBDIR += bug5 SUBDIR += c2t SUBDIR += calligra-l10n-zh_CN Added: head/chinese/bsdconv-opencc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/bsdconv-opencc/Makefile Wed Oct 10 15:09:25 2012 (r305665) @@ -0,0 +1,26 @@ +# Created by: buganini@gmail.com +# $FreeBSD$ + +PORTNAME= opencc +PORTVERSION= 1.0 +CATEGORIES= chinese converters +PKGNAMEPREFIX= bsdconv- +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} + +MAINTAINER= buganini@gmail.com +COMMENT= OpenCC conversion module for bsdconv + +LICENSE= BSD + +BUILD_DEPENDS= bsdconv_mktable:${PORTSDIR}/converters/bsdconv +LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv \ + opencc:${PORTSDIR}/chinese/opencc + +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_PROJECT= bsdconv-${PORTNAME} +GH_COMMIT= be3e559 + +MAKE_ARGS= PREFIX=${PREFIX} + +.include Added: head/chinese/bsdconv-opencc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/bsdconv-opencc/distinfo Wed Oct 10 15:09:25 2012 (r305665) @@ -0,0 +1,2 @@ +SHA256 (buganini-bsdconv-opencc-1.0-0-gbe3e559.tar.gz) = 4f21bcc78a5165d7919cc65bcb42c740224acb6de9d14f16915af0f56ba85a63 +SIZE (buganini-bsdconv-opencc-1.0-0-gbe3e559.tar.gz) = 2777 Added: head/chinese/bsdconv-opencc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/bsdconv-opencc/pkg-descr Wed Oct 10 15:09:25 2012 (r305665) @@ -0,0 +1,10 @@ +Open Chinese Convert (OpenCC) is an open source Simplified-Traditional +Chinese conversion project, providing high quality thesaurus and libopencc, +as well as a conversion utility and a dictionary generator. + +bsdconv is a BSD licensed charset/encoding converter library with more function +than libiconv. (Currently, only a few codecs are supported) + +This port is a opencc conversion module for bsdconv. + +WWW: https://github.com/buganini/bsdconv-opencc Added: head/chinese/bsdconv-opencc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/bsdconv-opencc/pkg-plist Wed Oct 10 15:09:25 2012 (r305665) @@ -0,0 +1,32 @@ +share/bsdconv/inter/OPENCC +share/bsdconv/inter/OPENCC.so +share/bsdconv/inter/OPENCC-MIX2ZHS +share/bsdconv/inter/OPENCC-MIX2ZHS.so +share/bsdconv/inter/OPENCC-MIX2ZHT +share/bsdconv/inter/OPENCC-MIX2ZHT.so +share/bsdconv/inter/OPENCC-ZHS2ZHT +share/bsdconv/inter/OPENCC-ZHS2ZHT.so +share/bsdconv/inter/OPENCC-ZHS2ZHTW_P +share/bsdconv/inter/OPENCC-ZHS2ZHTW_P.so +share/bsdconv/inter/OPENCC-ZHS2ZHTW_V +share/bsdconv/inter/OPENCC-ZHS2ZHTW_VP +share/bsdconv/inter/OPENCC-ZHS2ZHTW_VP.so +share/bsdconv/inter/OPENCC-ZHS2ZHTW_V.so +share/bsdconv/inter/OPENCC-ZHT2ZHS +share/bsdconv/inter/OPENCC-ZHT2ZHS.so +share/bsdconv/inter/OPENCC-ZHT2ZHTW_P +share/bsdconv/inter/OPENCC-ZHT2ZHTW_P.so +share/bsdconv/inter/OPENCC-ZHT2ZHTW_V +share/bsdconv/inter/OPENCC-ZHT2ZHTW_VP +share/bsdconv/inter/OPENCC-ZHT2ZHTW_VP.so +share/bsdconv/inter/OPENCC-ZHT2ZHTW_V.so +share/bsdconv/inter/OPENCC-ZHTW2ZHCN_S +share/bsdconv/inter/OPENCC-ZHTW2ZHCN_S.so +share/bsdconv/inter/OPENCC-ZHTW2ZHCN_T +share/bsdconv/inter/OPENCC-ZHTW2ZHCN_T.so +share/bsdconv/inter/OPENCC-ZHTW2ZHS +share/bsdconv/inter/OPENCC-ZHTW2ZHS.so +share/bsdconv/inter/OPENCC-ZHTW2ZHT +share/bsdconv/inter/OPENCC-ZHTW2ZHT.so +@dirrmtry share/bsdconv/inter +@dirrmtry share/bsdconv From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:21:56 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D2AEC2C; Wed, 10 Oct 2012 15:21:56 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3B1588FC1D; Wed, 10 Oct 2012 15:21:56 +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 q9AFLuL6052584; Wed, 10 Oct 2012 15:21:56 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFLuYw052580; Wed, 10 Oct 2012 15:21:56 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210101521.q9AFLuYw052580@svn.freebsd.org> From: "Jason E. Hale" Date: Wed, 10 Oct 2012 15:21:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305666 - head/security/libassuan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:21:56 -0000 X-List-Received-Date: Wed, 10 Oct 2012 15:21:56 -0000 Author: jhale Date: Wed Oct 10 15:21:55 2012 New Revision: 305666 URL: http://svn.freebsd.org/changeset/ports/305666 Log: - Update to 2.0.3 - Remove devel/pth dependency; libassuan-pth was dropped in 2.0.0 - Remove additional CFLAGS for amd64; builds fine on tinderbox without them Approved by: makc, avilla (mentors, implicit) Modified: head/security/libassuan/Makefile head/security/libassuan/distinfo (contents, props changed) Modified: head/security/libassuan/Makefile ============================================================================== --- head/security/libassuan/Makefile Wed Oct 10 15:09:25 2012 (r305665) +++ head/security/libassuan/Makefile Wed Oct 10 15:21:55 2012 (r305666) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libassuan -PORTVERSION= 2.0.2 +PORTVERSION= 2.0.3 CATEGORIES= security devel MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR=${PORTNAME} @@ -12,8 +12,7 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= jhale@FreeBSD.org COMMENT= IPC library used by GnuPG and gpgme -LIB_DEPENDS+= pth.20:${PORTSDIR}/devel/pth \ - gpg-error:${PORTSDIR}/security/libgpg-error +LIB_DEPENDS= gpg-error:${PORTSDIR}/security/libgpg-error USE_BZIP2= yes GNU_CONFIGURE= yes @@ -28,13 +27,7 @@ PLIST_FILES= bin/libassuan-config includ lib/libassuan.a lib/libassuan.la \ lib/libassuan.so.0 lib/libassuan.so share/aclocal/libassuan.m4 -.include - -.if ${ARCH} == "amd64" -CFLAGS+= -fPIC -.endif - verify: checksum gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.sig -.include +.include Modified: head/security/libassuan/distinfo ============================================================================== --- head/security/libassuan/distinfo Wed Oct 10 15:09:25 2012 (r305665) +++ head/security/libassuan/distinfo Wed Oct 10 15:21:55 2012 (r305666) @@ -1,4 +1,4 @@ -SHA256 (libassuan-2.0.2.tar.bz2) = 61e0cba33dcbade2dce953b95f06b843af2a73de875303f2585227ecd475b4d8 -SIZE (libassuan-2.0.2.tar.bz2) = 491172 -SHA256 (libassuan-2.0.2.tar.bz2.sig) = 13c2189acc2c3f054fba829c0f5578b357afb04ae09b8c85b268edb02ed22bae -SIZE (libassuan-2.0.2.tar.bz2.sig) = 326 +SHA256 (libassuan-2.0.3.tar.bz2) = bad5682374c76bcc0abb1a7a34c9557af6874a477500748e64a7d3def79cac1b +SIZE (libassuan-2.0.3.tar.bz2) = 529149 +SHA256 (libassuan-2.0.3.tar.bz2.sig) = dc3948dd031a453ed03a7c1ce5cc27d144df5ed030f834d613b61ffb2011d460 +SIZE (libassuan-2.0.3.tar.bz2.sig) = 287 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:34:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 094C1F8B; Wed, 10 Oct 2012 15:34:03 +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 CBF0F8FC08; Wed, 10 Oct 2012 15:34: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 q9AFY2BO054319; Wed, 10 Oct 2012 15:34:02 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFY2FQ054314; Wed, 10 Oct 2012 15:34:02 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101534.q9AFY2FQ054314@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 15:34:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305667 - in head/chinese: . chiconv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:34:03 -0000 X-List-Received-Date: Wed, 10 Oct 2012 15:34:03 -0000 Author: bdrewery Date: Wed Oct 10 15:34:02 2012 New Revision: 305667 URL: http://svn.freebsd.org/changeset/ports/305667 Log: Auto chinese encoding converter. It can detect UTF-8/Big5/GBK text and convert them to specified chinese encoding with transliteration. WWW: https://github.com/buganini/chiconv PR: ports/172267 Submitted by: Kuan-Chung Chiu Added: head/chinese/chiconv/ head/chinese/chiconv/Makefile (contents, props changed) head/chinese/chiconv/distinfo (contents, props changed) head/chinese/chiconv/pkg-descr (contents, props changed) Modified: head/chinese/Makefile Modified: head/chinese/Makefile ============================================================================== --- head/chinese/Makefile Wed Oct 10 15:21:55 2012 (r305666) +++ head/chinese/Makefile Wed Oct 10 15:34:02 2012 (r305667) @@ -27,6 +27,7 @@ SUBDIR += cce SUBDIR += cconv SUBDIR += celvis + SUBDIR += chiconv SUBDIR += cless SUBDIR += cmexfonts SUBDIR += cnprint Added: head/chinese/chiconv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/Makefile Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,24 @@ +# Created by: buganini@gmail.com +# $FreeBSD$ + +PORTNAME= chiconv +PORTVERSION= 1.0 +CATEGORIES= chinese converters +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} + +MAINTAINER= buganini@gmail.com +COMMENT= Auto chinese encoding converter + +LICENSE= BSD + +LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv + +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_COMMIT= 046010f + +MAKE_ARGS= PREFIX=${PREFIX} + +PLIST_FILES= bin/chiconv + +.include Added: head/chinese/chiconv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/distinfo Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,2 @@ +SHA256 (buganini-chiconv-1.0-0-g046010f.tar.gz) = ac8cdf73cebaf9725cdb2034d188fe1d2b988379b87fde269aa9b9b15fddf27c +SIZE (buganini-chiconv-1.0-0-g046010f.tar.gz) = 1531 Added: head/chinese/chiconv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/pkg-descr Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,4 @@ +Auto chinese encoding converter. It can detect UTF-8/Big5/GBK text and convert +them to specified chinese encoding with transliteration. + +WWW: https://github.com/buganini/chiconv From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:53:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8596BC0E; Wed, 10 Oct 2012 15:53:54 +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 6D9118FC18; Wed, 10 Oct 2012 15:53: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 q9AFrstI057457; Wed, 10 Oct 2012 15:53:54 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFrsmA057455; Wed, 10 Oct 2012 15:53:54 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210101553.q9AFrsmA057455@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 10 Oct 2012 15:53:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305668 - head/sysutils/amrstat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:53:54 -0000 X-List-Received-Date: Wed, 10 Oct 2012 15:53:54 -0000 Author: jkim Date: Wed Oct 10 15:53:53 2012 New Revision: 305668 URL: http://svn.freebsd.org/changeset/ports/305668 Log: Create a directory with default permissions to fix pkgng failure. Reported by: bapt (via pkgng exp-run) Modified: head/sysutils/amrstat/Makefile Modified: head/sysutils/amrstat/Makefile ============================================================================== --- head/sysutils/amrstat/Makefile Wed Oct 10 15:34:02 2012 (r305667) +++ head/sysutils/amrstat/Makefile Wed Oct 10 15:53:53 2012 (r305668) @@ -1,9 +1,5 @@ -# Ports collection makefile for: amrstat -# Date created: 2006-04-11 -# Whom: "Bjoern A. Zeeb" -# +# Created by: Bjoern A. Zeeb # $FreeBSD$ -# PORTNAME= amrstat PORTVERSION= 20070216 @@ -39,7 +35,8 @@ post-extract: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/amrstat ${PREFIX}/sbin - ${INSTALL_SCRIPT} -d ${PREFIX}/etc/periodic/daily - ${INSTALL_SCRIPT} ${WRKDIR}/${PERIODICSCRIPT} ${PREFIX}/etc/periodic/daily + ${MKDIR} ${PREFIX}/etc/periodic/daily + ${INSTALL_SCRIPT} ${WRKDIR}/${PERIODICSCRIPT} \ + ${PREFIX}/etc/periodic/daily .include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:55:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 442E8E3D; Wed, 10 Oct 2012 15:55:35 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2CBA08FC1C; Wed, 10 Oct 2012 15:55: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 q9AFtZ5Y057730; Wed, 10 Oct 2012 15:55:35 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFtYhR057728; Wed, 10 Oct 2012 15:55:34 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210101555.q9AFtYhR057728@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 15:55:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305669 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:55:35 -0000 X-List-Received-Date: Wed, 10 Oct 2012 15:55:35 -0000 Author: bapt Date: Wed Oct 10 15:55:34 2012 New Revision: 305669 URL: http://svn.freebsd.org/changeset/ports/305669 Log: Update the AFFECTS line to reflect the exact freebsd version concerned by the switch. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 15:53:53 2012 (r305668) +++ head/UPDATING Wed Oct 10 15:55:34 2012 (r305669) @@ -6,7 +6,7 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20121010: - AFFECTS: users of CURRENT + AFFECTS: users of CURRENT (OSVERSION >= 1000017) AUTHOR: bapt@FreeBSD.org The ports tree is now using pkgng as the default package manager From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 16:11:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9460C0; Wed, 10 Oct 2012 16:11:21 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C1F358FC18; Wed, 10 Oct 2012 16:11: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 q9AGBLtf059795; Wed, 10 Oct 2012 16:11:21 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AGBLi8059793; Wed, 10 Oct 2012 16:11:21 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210101611.q9AGBLi8059793@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 10 Oct 2012 16:11:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305670 - head/lang/tcl85 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 16:11:21 -0000 X-List-Received-Date: Wed, 10 Oct 2012 16:11:21 -0000 Author: bapt Date: Wed Oct 10 16:11:21 2012 New Revision: 305670 URL: http://svn.freebsd.org/changeset/ports/305670 Log: Do not try to delete a directory where nothing is being added by the package and not created by the package. This fix tcl86 building on pointyhat with pkgng. Approved by: c.petrik.sosa@gmail.com (maintainer) Modified: head/lang/tcl85/pkg-plist.tm Modified: head/lang/tcl85/pkg-plist.tm ============================================================================== --- head/lang/tcl85/pkg-plist.tm Wed Oct 10 15:55:34 2012 (r305669) +++ head/lang/tcl85/pkg-plist.tm Wed Oct 10 16:11:21 2012 (r305670) @@ -7,5 +7,4 @@ lib/tcl8/8.5/tcltest-2.3.4.tm @dirrmtry lib/tcl8/8.4/platform @dirrmtry lib/tcl8/8.4 @dirrmtry lib/tcl8/8.5 -@dirrmtry lib/tcl8/8.6 @dirrmtry lib/tcl8 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 16:56:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9A8B933; Wed, 10 Oct 2012 16:56:08 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8F30A8FC16; Wed, 10 Oct 2012 16:56:08 +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 q9AGu8Mq065810; Wed, 10 Oct 2012 16:56:08 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AGu8Hj065791; Wed, 10 Oct 2012 16:56:08 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201210101656.q9AGu8Hj065791@svn.freebsd.org> From: Andrej Zverev Date: Wed, 10 Oct 2012 16:56:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305672 - in head: astro/wmspaceweather databases/namazu2 devel/p5-Carp-Datum graphics/p5-Imager-AverageGray japanese/another-htmllint japanese/eijiro-fpw japanese/mypaedia-fpw japanese... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 16:56:08 -0000 X-List-Received-Date: Wed, 10 Oct 2012 16:56:08 -0000 Author: az Date: Wed Oct 10 16:56:07 2012 New Revision: 305672 URL: http://svn.freebsd.org/changeset/ports/305672 Log: - Remove SITE_PERL from *_DEPENDS (final part) Approved by: portmgr@ (bapt@) Modified: head/astro/wmspaceweather/Makefile head/databases/namazu2/Makefile head/devel/p5-Carp-Datum/Makefile head/graphics/p5-Imager-AverageGray/Makefile head/japanese/another-htmllint/Makefile head/japanese/eijiro-fpw/Makefile head/japanese/mypaedia-fpw/Makefile head/japanese/namazu2/Makefile head/japanese/otojiro-fpw/Makefile head/japanese/srd-fpw/Makefile head/japanese/waeijiro-fpw/Makefile head/mail/websieve/Makefile head/net-mgmt/p5-Net-SNMP/Makefile head/security/p5-Crypt-Primes/Makefile head/sysutils/psgconf/Makefile head/textproc/ruby-xmlparser/Makefile head/www/bins/Makefile head/www/fswiki/Makefile Modified: head/astro/wmspaceweather/Makefile ============================================================================== --- head/astro/wmspaceweather/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/astro/wmspaceweather/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -17,7 +17,7 @@ COMMENT= A DockApp that shows the weathe LICENSE= GPLv2 -RUN_DEPENDS= ${SITE_PERL}/Time/CTime.pm:${PORTSDIR}/devel/p5-Time-modules +RUN_DEPENDS= p5-Time-modules>=0:${PORTSDIR}/devel/p5-Time-modules WRKSRC= ${WRKDIR}/${DISTNAME}/wmSpaceWeather Modified: head/databases/namazu2/Makefile ============================================================================== --- head/databases/namazu2/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/databases/namazu2/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,10 +14,8 @@ PKGNAMESUFFIX= 2 MAINTAINER= ports@FreeBSD.org COMMENT= Full-text search system intended for easy use -BUILD_DEPENDS= ${PM_BASE}/File/MMagic.pm:${PORTSDIR}/devel/p5-File-MMagic -RUN_DEPENDS= ${PM_BASE}/File/MMagic.pm:${PORTSDIR}/devel/p5-File-MMagic - -PM_BASE= ${SITE_PERL} +BUILD_DEPENDS= p5-File-MMagic>=0:${PORTSDIR}/devel/p5-File-MMagic +RUN_DEPENDS= p5-File-MMagic>=0:${PORTSDIR}/devel/p5-File-MMagic USE_PERL5= yes USE_ICONV= yes Modified: head/devel/p5-Carp-Datum/Makefile ============================================================================== --- head/devel/p5-Carp-Datum/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/devel/p5-Carp-Datum/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,12 +14,11 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Debugging And Tracing Ultimate Module -BUILD_DEPENDS= ${PM_BASE}/Log/Agent.pm:${PORTSDIR}/devel/p5-Log-Agent \ - ${PM_BASE}/Getargs/Long.pm:${PORTSDIR}/devel/p5-Getargs-Long +BUILD_DEPENDS= p5-Log-Agent>=0:${PORTSDIR}/devel/p5-Log-Agent \ + p5-Getargs-Long>=0:${PORTSDIR}/devel/p5-Getargs-Long RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes -PM_BASE= ${SITE_PERL} MAN1= datum_strip.1 MAN3= Carp::Datum::Assert.3 \ Modified: head/graphics/p5-Imager-AverageGray/Makefile ============================================================================== --- head/graphics/p5-Imager-AverageGray/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/graphics/p5-Imager-AverageGray/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -15,7 +15,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= vvelox@vvelox.net COMMENT= Finds the average gray for a Imager object or image -RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Imager.pm:${PORTSDIR}/graphics/p5-Imager/ +RUN_DEPENDS= p5-Imager>=0:${PORTSDIR}/graphics/p5-Imager/ PERL_CONFIGURE= yes Modified: head/japanese/another-htmllint/Makefile ============================================================================== --- head/japanese/another-htmllint/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/another-htmllint/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,7 +14,7 @@ MAINTAINER= kuriyama@FreeBSD.org COMMENT= Another HTML-lint (all messages are written in Japanese) RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode USE_PERL5= YES USE_ZIP= YES @@ -51,6 +51,4 @@ do-install: post-install: @${CAT} ${PKGMESSAGE} -JCODE= ${SITE_PERL}/Jcode.pm - .include Modified: head/japanese/eijiro-fpw/Makefile ============================================================================== --- head/japanese/eijiro-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/eijiro-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -17,7 +17,7 @@ COMMENT= EIJIRO English - Japanese Dicti EXTRACT_DEPENDS=${LOCALBASE}/share/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing BUILD_DEPENDS= ${LOCALBASE}/libexec/freepwing/catdump:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode MANUAL_PACKAGE_BUILD=Needs data from CDROM RESTRICTED= "The original dictionary is not free" @@ -30,8 +30,6 @@ SRCFILE?= eijiro52.txt # For eijiro included in a book sold by ALC Inc. # (http://www.alc.co.jp/alcshop/eng/eijiro/) -JCODE= ${SITE_PERL}/Jcode.pm - .include DICT_ARCHIVE!= ${ECHO_CMD} ${DICT_PATH}/eijiro-original/*.exe || ${TRUE} Modified: head/japanese/mypaedia-fpw/Makefile ============================================================================== --- head/japanese/mypaedia-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/mypaedia-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= An encyclopedia "Mypaedia" (EPWING V1 format) BUILD_DEPENDS= fpwmake:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode IS_INTERACTIVE= YES RESTRICTED= "The original dictionary is not free" @@ -56,6 +56,4 @@ do-install: .endfor .endif -JCODE= ${SITE_PERL}/Jcode.pm - .include Modified: head/japanese/namazu2/Makefile ============================================================================== --- head/japanese/namazu2/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/namazu2/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -17,9 +17,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Meta-port of Namazu and Japanese support modules LIB_DEPENDS= nmz.8:${PORTSDIR}/databases/namazu2 -RUN_DEPENDS= ${PM_BASE}/${PERL_ARCH}/NKF.pm:${PORTSDIR}/japanese/p5-nkf +RUN_DEPENDS= ja-p5-nkf>=0:${PORTSDIR}/japanese/p5-nkf -PM_BASE= ${SITE_PERL} PLIST= "@comment this plist is intentionally left empty" .if defined(WITH_CHASEN) Modified: head/japanese/otojiro-fpw/Makefile ============================================================================== --- head/japanese/otojiro-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/otojiro-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -21,7 +21,7 @@ EXPIRATION_DATE= 2012-10-20 EXTRACT_DEPENDS=${LOCALBASE}/share/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing BUILD_DEPENDS= ${LOCALBASE}/libexec/freepwing/catdump:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode MANUAL_PACKAGE_BUILD=Needs data from CDROM RESTRICTED= "The original dictionary is not free" @@ -35,8 +35,6 @@ SRCFILE?= otojiro.txt # (http://www.alc.co.jp/alcshop/eng/eijiro/) .include -JCODE= ${SITE_PERL}/Jcode.pm - DICT_ARCHIVE!= ${ECHO_CMD} ${DICT_PATH}/eijiro-original/*.exe || ${TRUE} .if exists(${DICT_ARCHIVE}) EXTRACT_DEPENDS+= lha:${PORTSDIR}/archivers/lha Modified: head/japanese/srd-fpw/Makefile ============================================================================== --- head/japanese/srd-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/srd-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -16,7 +16,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A English - Japanese Dictionary "Random House" (EPWING V1 format) BUILD_DEPENDS= fpwmake:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode IS_INTERACTIVE= YES RESTRICTED= "The original dictionary is not free" @@ -60,6 +60,4 @@ do-install: .endfor .endif -JCODE= ${SITE_PERL}/Jcode.pm - .include Modified: head/japanese/waeijiro-fpw/Makefile ============================================================================== --- head/japanese/waeijiro-fpw/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/japanese/waeijiro-fpw/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -18,7 +18,7 @@ COMMENT= WAEIJIRO English - Japanese Dic EXTRACT_DEPENDS=${LOCALBASE}/share/freepwing/fpwutils.mk:${PORTSDIR}/japanese/freepwing BUILD_DEPENDS= ${LOCALBASE}/libexec/freepwing/catdump:${PORTSDIR}/japanese/freepwing \ - ${JCODE}:${PORTSDIR}/japanese/p5-Jcode + ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode MANUAL_PACKAGE_BUILD=Needs data from a CDROM RESTRICTED= "The original dictionary is not free" @@ -29,7 +29,6 @@ SRCFILE?= waeiji52.txt # For eijiro included in a book sold by ALC Inc. # (http://www.alc.co.jp/alcshop/eng/eijiro/) -JCODE= ${SITE_PERL}/Jcode.pm .include DICT_ARCHIVE!= ${ECHO_CMD} ${DICT_PATH}/eijiro-original/*.exe || ${TRUE} Modified: head/mail/websieve/Makefile ============================================================================== --- head/mail/websieve/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/mail/websieve/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -34,19 +34,17 @@ CYRUS_IMAPD_24_DESC= With Cyrus IMAPd ve .include -CYRUS_IMAP_PM= ${SITE_PERL}/${PERL_ARCH}/Cyrus/IMAP/Admin.pm - .if ${PORT_OPTIONS:MCYRUS_IMAPD_24} -RUN_DEPENDS+= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd24 +RUN_DEPENDS+= cyrus-imapd>=0:${PORTSDIR}/mail/cyrus-imapd24 FUNCLIB_PL= funclib.cyrus .elif ${PORT_OPTIONS:MCYRUS_IMAPD_23} -RUN_DEPENDS+= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd23 +RUN_DEPENDS+= cyrus-imapd>=0:${PORTSDIR}/mail/cyrus-imapd23 FUNCLIB_PL= funclib.cyrus .elif ${PORT_OPTIONS:MCYRUS_IMAPD_22} -RUN_DEPENDS+= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd22 +RUN_DEPENDS+= cyrus-imapd>=0:${PORTSDIR}/mail/cyrus-imapd22 FUNCLIB_PL= funclib.cyrus .elif ${PORT_OPTIONS:MCYRUS_IMAPD_21} -RUN_DEPENDS+= ${CYRUS_IMAP_PM}:${PORTSDIR}/mail/cyrus-imapd2 +RUN_DEPENDS+= cyrus-imapd>=0:${PORTSDIR}/mail/cyrus-imapd2 FUNCLIB_PL= funclib.cyrus .else RUN_DEPENDS+= p5-IMAP-Admin>=0:${PORTSDIR}/mail/p5-IMAP-Admin \ Modified: head/net-mgmt/p5-Net-SNMP/Makefile ============================================================================== --- head/net-mgmt/p5-Net-SNMP/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/net-mgmt/p5-Net-SNMP/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -16,13 +16,12 @@ DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= lth@FreeBSD.org COMMENT= Object oriented interface to SNMP -BUILD_DEPENDS= ${ARCH_PERL}/Crypt/DES.pm:${PORTSDIR}/security/p5-Crypt-DES \ - ${ARCH_PERL}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \ +BUILD_DEPENDS= p5-Crypt-DES>=0:${PORTSDIR}/security/p5-Crypt-DES \ + p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ p5-Digest-HMAC>=0:${PORTSDIR}/security/p5-Digest-HMAC RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes -ARCH_PERL= ${SITE_PERL}/${PERL_ARCH} CONFLICTS= p5-Net-SNMP3-[0-9]* MAN1= snmpkey.1 Modified: head/security/p5-Crypt-Primes/Makefile ============================================================================== --- head/security/p5-Crypt-Primes/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/security/p5-Crypt-Primes/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,10 +14,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Provable Prime Number Generator suitable for Cryptographic Applications -PERLBASE= ${SITE_PERL} - -BUILD_DEPENDS= ${PERLBASE}/Crypt/Random.pm:${PORTSDIR}/security/p5-Crypt-Random \ - ${PERLBASE}/${PERL_ARCH}/Math/Pari.pm:${PORTSDIR}/math/p5-Math-Pari +BUILD_DEPENDS= p5-Crypt-Random>=0:${PORTSDIR}/security/p5-Crypt-Random \ + p5-Math-Pari>=0:${PORTSDIR}/math/p5-Math-Pari PERL_CONFIGURE= yes Modified: head/sysutils/psgconf/Makefile ============================================================================== --- head/sysutils/psgconf/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/sysutils/psgconf/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -14,14 +14,14 @@ MASTER_SITES= ftp://ftp-dev.cites.uiuc.e MAINTAINER= pirzyk@FreeBSD.org COMMENT= Controls system configuration -BUILD_DEPENDS= ${SITE_PERL}/Config/Objective.pm:${PORTSDIR}/devel/p5-Config-Objective \ - ${SITE_PERL}/AppConfig.pm:${PORTSDIR}/devel/p5-AppConfig \ - p5-NetAddr-IP>0:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \ - ${SITE_PERL}/${PERL_ARCH}/Proc/ProcessTable/Process.pm:${PORTSDIR}/devel/p5-Proc-ProcessTable \ - ${SITE_PERL}/${PERL_ARCH}/Unix/Mknod.pm:${PORTSDIR}/sysutils/p5-Unix-Mknod \ - ${SITE_PERL}/${PERL_ARCH}/Unix/Syslog.pm:${PORTSDIR}/sysutils/p5-Unix-Syslog \ - ${SITE_PERL}/${PERL_ARCH}/version.pm:${PORTSDIR}/devel/p5-version \ - ${SITE_PERL}/Text/Diff.pm:${PORTSDIR}/textproc/p5-Text-Diff +BUILD_DEPENDS= p5-Config-Objective>=0:${PORTSDIR}/devel/p5-Config-Objective \ + p5-AppConfig>=0:${PORTSDIR}/devel/p5-AppConfig \ + p5-NetAddr-IP>=0:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \ + p5-Proc-ProcessTable>=0:${PORTSDIR}/devel/p5-Proc-ProcessTable \ + Unix-Mknod>=0:${PORTSDIR}/sysutils/p5-Unix-Mknod \ + p5-Unix-Syslog>=0:${PORTSDIR}/sysutils/p5-Unix-Syslog \ + p5-version>=0:${PORTSDIR}/devel/p5-version \ + p5-Text-Diff>=0:${PORTSDIR}/textproc/p5-Text-Diff RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= YES Modified: head/textproc/ruby-xmlparser/Makefile ============================================================================== --- head/textproc/ruby-xmlparser/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/textproc/ruby-xmlparser/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -15,20 +15,18 @@ DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby module to access James Clark XML Parser ToolKit ("expat") -BUILD_DEPENDS= ${PERL_ARCHLIB}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-Parser +BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/uconv.so:${PORTSDIR}/japanese/ruby-uconv \ - ${PERL_ARCHLIB}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-Parser + p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser # to utilize encoding maps included in p5-XML-Parser USE_PERL5= yes USE_RUBY= yes USE_RUBY_EXTCONF= yes -PERL_ARCHLIB= ${SITE_PERL}/${PERL_ARCH} - WRKSRC= ${WRKDIR}/${PORTNAME} -CONFIGURE_ARGS= --with-perl-enc-map=${PERL_ARCHLIB}/XML/Parser/Encodings +CONFIGURE_ARGS= --with-perl-enc-map=${SITE_PERL}/${PERL_ARCH}/XML/Parser/Encodings INSTALL_TARGET= site-install post-extract: Modified: head/www/bins/Makefile ============================================================================== --- head/www/bins/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/www/bins/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -15,28 +15,25 @@ MAINTAINER= araujo@FreeBSD.org COMMENT= Tool to generate HTML photo albums with XML support RUN_DEPENDS= \ - ${PBASE}/${PERL_ARCH}/HTML/Parser.pm:${PORTSDIR}/www/p5-HTML-Parser \ - ${PBASE}/${PERL_ARCH}/Image/Magick.pm:${PORTSDIR}/graphics/ImageMagick \ - ${PBASE}/${PERL_ARCH}/Text/Iconv.pm:${PORTSDIR}/converters/p5-Text-Iconv \ - ${PBASE}/${PERL_ARCH}/Text/Unaccent.pm:${PORTSDIR}/textproc/p5-Text-Unaccent \ - ${PBASE}/Date/Parse.pm:${PORTSDIR}/devel/p5-TimeDate \ - ${PBASE}/HTML/Clean.pm:${PORTSDIR}/www/p5-HTML-Clean \ - ${PBASE}/HTML/Template.pm:${PORTSDIR}/www/p5-HTML-Template \ - ${PBASE}/IO/String.pm:${PORTSDIR}/devel/p5-IO-String \ - ${PBASE}/Image/Info.pm:${PORTSDIR}/graphics/p5-Image-Info \ - ${PBASE}/Image/Size.pm:${PORTSDIR}/graphics/p5-Image-Size \ - ${PBASE}/URI/Escape.pm:${PORTSDIR}/net/p5-URI \ - ${PBASE}/XML/Grove.pm:${PORTSDIR}/textproc/p5-XML-Grove \ - ${PBASE}/XML/Handler/YAWriter.pm:${PORTSDIR}/textproc/p5-XML-Handler-YAWriter \ - ${PBASE}/XML/Parser/PerlSAX.pm:${PORTSDIR}/textproc/p5-libxml + p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ + convert:${PORTSDIR}/graphics/ImageMagick \ + p5-Text-Iconv>=0:${PORTSDIR}/converters/p5-Text-Iconv \ + p5-Text-Iconv>=0:${PORTSDIR}/textproc/p5-Text-Unaccent \ + p5-TimeDate>=0:${PORTSDIR}/devel/p5-TimeDate \ + p5-HTML-Clean>0:${PORTSDIR}/www/p5-HTML-Clean \ + p5-HTML-Template>=0:${PORTSDIR}/www/p5-HTML-Template \ + p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String \ + p5-Image-Info>=0:${PORTSDIR}/graphics/p5-Image-Info \ + p5-Image-Size>=0:${PORTSDIR}/graphics/p5-Image-Size \ + p5-URI>=0:${PORTSDIR}/net/p5-URI \ + p5-XML-Grove>=0:${PORTSDIR}/textproc/p5-XML-Grove \ + p5-XML-Handler-YAWriter>=0:${PORTSDIR}/textproc/p5-XML-Handler-YAWriter \ + p5-libxml>=0:${PORTSDIR}/textproc/p5-libxml USE_BZIP2= yes USE_PERL5_RUN= yes NO_BUILD= yes -# perlbase -PBASE= ${SITE_PERL} - # additional scripts BINS_SCRIPTS= tools/bins_txt2xml # doc file extension @@ -84,8 +81,7 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- # localization support .if defined(WITH_I18N) -RUN_DEPENDS+= \ - ${PBASE}/${PERL_ARCH}/Locale/gettext.pm:${PORTSDIR}/devel/p5-Locale-gettext +RUN_DEPENDS+= p5-Locale-gettext>=0:${PORTSDIR}/devel/p5-Locale-gettext .endif pre-everything:: Modified: head/www/fswiki/Makefile ============================================================================== --- head/www/fswiki/Makefile Wed Oct 10 16:14:57 2012 (r305671) +++ head/www/fswiki/Makefile Wed Oct 10 16:56:07 2012 (r305672) @@ -15,15 +15,13 @@ DISTNAME= wiki${PORTVERSION:S|.|_|g} MAINTAINER= kuriyama@FreeBSD.org COMMENT= FreeStyle Wiki (perl based wiki clone) -RUN_DEPENDS= ${JCODE}:${PORTSDIR}/japanese/p5-Jcode \ +RUN_DEPENDS= ja-p5-Jcode>=0:${PORTSDIR}/japanese/p5-Jcode \ p5-HTML-Template>=0:${PORTSDIR}/www/p5-HTML-Template USE_ZIP= yes USE_PERL5= yes NO_BUILD= yes -JCODE= ${SITE_PERL}/Jcode.pm - post-extract: ${SED} -e 's|__DATADIR__|${DATADIR}|' ${FILESDIR}/setup.sh \ >${WRKSRC}/setup.sh From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:20:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A81CB7D; Wed, 10 Oct 2012 17:20:50 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3380A8FC08; Wed, 10 Oct 2012 17:20: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 q9AHKorC069159; Wed, 10 Oct 2012 17:20:50 GMT (envelope-from tabthorpe@svn.freebsd.org) Received: (from tabthorpe@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AHKoTH069156; Wed, 10 Oct 2012 17:20:50 GMT (envelope-from tabthorpe@svn.freebsd.org) Message-Id: <201210101720.q9AHKoTH069156@svn.freebsd.org> From: Thomas Abthorpe Date: Wed, 10 Oct 2012 17:20:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305673 - head/net/pchar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:20:50 -0000 X-List-Received-Date: Wed, 10 Oct 2012 17:20:50 -0000 Author: tabthorpe Date: Wed Oct 10 17:20:49 2012 New Revision: 305673 URL: http://svn.freebsd.org/changeset/ports/305673 Log: - Reassign to the heap at maintainer's request Modified: head/net/pchar/Makefile (contents, props changed) Modified: head/net/pchar/Makefile ============================================================================== --- head/net/pchar/Makefile Wed Oct 10 16:56:07 2012 (r305672) +++ head/net/pchar/Makefile Wed Oct 10 17:20:49 2012 (r305673) @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: pchar -# Date created: Wed Nov 03, 1999 -# Whom: David O'Brien (obrien@NUXI.com) -# +# Whom: David O'Brien (obrien@NUXI.com) # $FreeBSD$ -# PORTNAME= pchar PORTVERSION= 1.5 @@ -13,7 +8,7 @@ MASTER_SITES= http://www.kitchenlab.org/ MASTER_SITES+= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= bmah -MAINTAINER= bmah@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Sandia Internet path characterization tool GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:29:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1C7EFE3; Wed, 10 Oct 2012 17:29:42 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BA7E38FC1D; Wed, 10 Oct 2012 17:29: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 q9AHTgkH070343; Wed, 10 Oct 2012 17:29:42 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AHTgoY070340; Wed, 10 Oct 2012 17:29:42 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201210101729.q9AHTgoY070340@svn.freebsd.org> From: Matthew Seaman Date: Wed, 10 Oct 2012 17:29:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305674 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:29:42 -0000 X-List-Received-Date: Wed, 10 Oct 2012 17:29:42 -0000 Author: matthew Date: Wed Oct 10 17:29:42 2012 New Revision: 305674 URL: http://svn.freebsd.org/changeset/ports/305674 Log: Tweak the layout slightly to improve readability. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 17:20:49 2012 (r305673) +++ head/UPDATING Wed Oct 10 17:29:42 2012 (r305674) @@ -23,9 +23,9 @@ you update your ports collection, before 2/ Install ports-mgmt/pkg - 3/ Remove WITHOUT_PKGNG from make.conf and run + 3/ Remove WITHOUT_PKGNG from make.conf and run: - # pkg2ng + # pkg2ng 20121009: AFFECTS: users of multimedia/vdpau-video From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:30:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63A7C2C1; Wed, 10 Oct 2012 17:30:44 +0000 (UTC) (envelope-from garga.bsd@gmail.com) Received: from mail-gg0-f182.google.com (mail-gg0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8DED08FC1A; Wed, 10 Oct 2012 17:30:43 +0000 (UTC) Received: by mail-gg0-f182.google.com with SMTP id l1so206018ggn.13 for ; Wed, 10 Oct 2012 10:30:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=Fm9ZzYPoCSEvqkW81ixbJSjemTMy9Zw9uqcCh2nAy6g=; b=XDhS9pB0st1/XXIEXwkX34iiQWfep2GHxsa2ZLIHHqqxeke9KFtkGsOBUXjt37Hvtz x7KXaks7zHqWlC5pC9TKxpw/UAtHEEN2Afh0J97EBchQ9WfDqWHjX4VfFdx330N7FLsP 8S+gZy9BsjWgzZ0ZW2t6G7khCwTjN3wQqGgaNXeEyURnWka6mDA3yNWbuq7rUQlYiRtw 7d/XGP44akw2Foen5eAbOhiDI7cWtNkCqw+uuUAT9yMQmcnJhJKZpSPVoMD3+HB6dKSu 0Myjw9dSpdOECeD7kZPXhkspgXN9xKYF75sGFnbLS+0599yPB2WlGoj/1FpZpyUabQts 3cqQ== Received: by 10.236.77.39 with SMTP id c27mr23278806yhe.99.1349890237637; Wed, 10 Oct 2012 10:30:37 -0700 (PDT) Received: from localhost (201-92-84-70.dsl.telesp.net.br. [201.92.84.70]) by mx.google.com with ESMTPS id h17sm1560104ang.21.2012.10.10.10.30.33 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 10 Oct 2012 10:30:35 -0700 (PDT) Sender: Renato Botelho Date: Wed, 10 Oct 2012 14:30:27 -0300 From: Renato Botelho To: Thomas Abthorpe Subject: Re: svn commit: r305673 - head/net/pchar Message-ID: <20121010173027.GA24323@rbcouto.ibm.com> References: <201210101720.q9AHKoTH069156@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PNTmBPCT7hxwcZjr" Content-Disposition: inline In-Reply-To: <201210101720.q9AHKoTH069156@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:30:44 -0000 X-List-Received-Date: Wed, 10 Oct 2012 17:30:44 -0000 --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 10, 2012 at 05:20:50PM +0000, Thomas Abthorpe wrote: > Author: tabthorpe > Date: Wed Oct 10 17:20:49 2012 > New Revision: 305673 > URL: http://svn.freebsd.org/changeset/ports/305673 >=20 > Log: > - Reassign to the heap at maintainer's request >=20 > Modified: > head/net/pchar/Makefile (contents, props changed) >=20 > Modified: head/net/pchar/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/net/pchar/Makefile Wed Oct 10 16:56:07 2012 (r305672) > +++ head/net/pchar/Makefile Wed Oct 10 17:20:49 2012 (r305673) > @@ -1,10 +1,5 @@ > -# ex:ts=3D8 > -# Ports collection makefile for: pchar > -# Date created: Wed Nov 03, 1999 > -# Whom: David O'Brien (obrien@NUXI.com) > -# > +# Whom: David O'Brien (obrien@NUXI.com) Hello Thomas, You need to s/Whom/Created by/ here. Regards --=20 Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc --PNTmBPCT7hxwcZjr Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iEYEARECAAYFAlB1sLMACgkQ6CRbiSJE7akkFgCeMzgYAC2k5Vm3WrnyLBI87BBl H4UAn3TsFMbq4R8x7tNGzy+zYW/5rA1m =GS76 -----END PGP SIGNATURE----- --PNTmBPCT7hxwcZjr-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:34:52 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99DC340B; Wed, 10 Oct 2012 17:34:52 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 481618FC08; Wed, 10 Oct 2012 17:34:52 +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 q9AHYqOv071094; Wed, 10 Oct 2012 17:34:52 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AHYqsf071092; Wed, 10 Oct 2012 17:34:52 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201210101734.q9AHYqsf071092@svn.freebsd.org> From: Matthew Seaman Date: Wed, 10 Oct 2012 17:34:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305675 - head/mail/sa-utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:34:52 -0000 X-List-Received-Date: Wed, 10 Oct 2012 17:34:52 -0000 Author: matthew Date: Wed Oct 10 17:34:51 2012 New Revision: 305675 URL: http://svn.freebsd.org/changeset/ports/305675 Log: - Trim Makefile headers - Remove extraneous quote marks from option DESC Submitted by: Riccardo Torrini Modified: head/mail/sa-utils/Makefile (contents, props changed) Modified: head/mail/sa-utils/Makefile ============================================================================== --- head/mail/sa-utils/Makefile Wed Oct 10 17:29:42 2012 (r305674) +++ head/mail/sa-utils/Makefile Wed Oct 10 17:34:51 2012 (r305675) @@ -1,7 +1,4 @@ -# New ports collection makefile for: sa-utils -# Date created: 3 January 2010 -# Whom: Matthew Seaman -# +# Created by: Matthew Seaman # $FreeBSD$ # # Port is self-contained in the files directory. @@ -19,7 +16,7 @@ COMMENT= SpamAssassin nightly periodic m RUN_DEPENDS= sa-update:${PORTSDIR}/mail/p5-Mail-SpamAssassin OPTIONS_DEFINE= SACOMPILE -SACOMPILE_DESC= "Enable sa-compile support" +SACOMPILE_DESC= Enable sa-compile support NO_BUILD= yes SUB_FILES= sa-utils From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:44:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 705AD9CB; Wed, 10 Oct 2012 17:44:08 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 597998FC0A; Wed, 10 Oct 2012 17:44:08 +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 q9AHi8qh072321; Wed, 10 Oct 2012 17:44:08 GMT (envelope-from tabthorpe@svn.freebsd.org) Received: (from tabthorpe@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AHi81d072319; Wed, 10 Oct 2012 17:44:08 GMT (envelope-from tabthorpe@svn.freebsd.org) Message-Id: <201210101744.q9AHi81d072319@svn.freebsd.org> From: Thomas Abthorpe Date: Wed, 10 Oct 2012 17:44:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305676 - head/net/pchar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:44:08 -0000 X-List-Received-Date: Wed, 10 Oct 2012 17:44:08 -0000 Author: tabthorpe Date: Wed Oct 10 17:44:07 2012 New Revision: 305676 URL: http://svn.freebsd.org/changeset/ports/305676 Log: - Fix Whom line - Seems I neglected to abide by the community rules Submitted by: flo@ via irc Pointyhat to: tabthorpe Modified: head/net/pchar/Makefile Modified: head/net/pchar/Makefile ============================================================================== --- head/net/pchar/Makefile Wed Oct 10 17:34:51 2012 (r305675) +++ head/net/pchar/Makefile Wed Oct 10 17:44:07 2012 (r305676) @@ -1,4 +1,4 @@ -# Whom: David O'Brien (obrien@NUXI.com) +# Created by: David O'Brien (obrien@NUXI.com) # $FreeBSD$ PORTNAME= pchar From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 17:49:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2887CD7 for ; Wed, 10 Oct 2012 17:49:39 +0000 (UTC) (envelope-from tabthorpe@goodking.ca) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 92BB98FC14 for ; Wed, 10 Oct 2012 17:49:39 +0000 (UTC) Received: by mail-qc0-f182.google.com with SMTP id l39so782401qcs.13 for ; Wed, 10 Oct 2012 10:49:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=goodking.ca; s=google; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:x-url:x-pgp-key :x-pgp-key-id:x-pgp-key-fingerprint:user-agent; bh=XaLkrTYHLhpbiu9espZBJNKjcnTTdhEZBgVfps/4TRw=; b=QeFnQbZSTnpx2w+lHrRu6AUUpP7uCzWfiY017G62YsBaVGsmS8cACwEdPjiSj4wZrW zIS8RFvvgkxkExWcWFYYjMaYyhIZTH0EtHZq7mK6pWyCbmPS+GXRd4rZpeMGCeB2b3Sa 1JDln5x1aMcvyVWDWArNKH6HvIwkW/NsDL2X8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:x-url:x-pgp-key :x-pgp-key-id:x-pgp-key-fingerprint:user-agent:x-gm-message-state; bh=XaLkrTYHLhpbiu9espZBJNKjcnTTdhEZBgVfps/4TRw=; b=Jn/MXwaDWBbQa7vOVOmcLJIW6nFfpVgK8hDZiAX7dmLgiYtYsqiaFMkNm0YqHfB8sj g2ENxHl9jWZFNeEijeLCkTfSw865CXXpz/qQoXz4OykYHSbeFFADe+Lr3U0Z+50lTfJw ZuCZti1KhmnztMN++jW4Bsc6+X/dsWQx5WRvvQ+nXq90JSXZo0eOliQy/vxELBAy4lxj gYfUNQ7YmlwqFHB2NjVs9Imf9dOm6RPeT6+ayf1N70yWj3lfXRoLTW66/Pi1aTa6IL36 48xdR/eniQaDDONjjQlquqqRd1G+Bv8sfwOXc1uEx4wfb51fg1+czsBny0mOsCXXCkIW CP5A== Received: by 10.224.60.2 with SMTP id n2mr17783661qah.4.1349891378584; Wed, 10 Oct 2012 10:49:38 -0700 (PDT) Received: from goodking.ca ([2001:470:1c:66::2]) by mx.google.com with ESMTPS id g13sm2165819qaj.19.2012.10.10.10.49.36 (version=SSLv3 cipher=OTHER); Wed, 10 Oct 2012 10:49:37 -0700 (PDT) Sender: Thomas Abthorpe Date: Wed, 10 Oct 2012 13:49:34 -0400 From: Thomas Abthorpe To: Renato Botelho Subject: Re: svn commit: r305673 - head/net/pchar Message-ID: <20121010174934.GD28599@goodking.ca> References: <201210101720.q9AHKoTH069156@svn.freebsd.org> <20121010173027.GA24323@rbcouto.ibm.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2Z2K0IlrPCVsbNpk" Content-Disposition: inline In-Reply-To: <20121010173027.GA24323@rbcouto.ibm.com> X-URL: http://www.goodking.org/ X-PGP-Key: http://people.freebsd.org/~tabthorpe/tabthorpe.asc X-PGP-Key-ID: 0xA473C990 X-PGP-Key-Fingerprint: D883 2D7C EB78 944A 69FC 36A6 D937 1097 A473 C990 User-Agent: Mutt/1.5.21 (2010-09-15) X-Gm-Message-State: ALoCoQmo2sFQrj6DtD2sBw0QZmncLRtaunmSiQYsWoRIe/moSesmv3xPvc87KpjKg9E7LAQcSCeO Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 17:49:40 -0000 X-List-Received-Date: Wed, 10 Oct 2012 17:49:40 -0000 --2Z2K0IlrPCVsbNpk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Oct 10, 2012 at 02:30:27PM -0300, Renato Botelho wrote: > On Wed, Oct 10, 2012 at 05:20:50PM +0000, Thomas Abthorpe wrote: > > Author: tabthorpe > > Date: Wed Oct 10 17:20:49 2012 > > New Revision: 305673 > > URL: http://svn.freebsd.org/changeset/ports/305673 > >=20 > > Log: > > - Reassign to the heap at maintainer's request > >=20 > > Modified: > > head/net/pchar/Makefile (contents, props changed) > >=20 > > Modified: head/net/pchar/Makefile > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/net/pchar/Makefile Wed Oct 10 16:56:07 2012 (r305672) > > +++ head/net/pchar/Makefile Wed Oct 10 17:20:49 2012 (r305673) > > @@ -1,10 +1,5 @@ > > -# ex:ts=3D8 > > -# Ports collection makefile for: pchar > > -# Date created: Wed Nov 03, 1999 > > -# Whom: David O'Brien (obrien@NUXI.com) > > -# > > +# Whom: David O'Brien (obrien@NUXI.com) >=20 > Hello Thomas, >=20 > You need to s/Whom/Created by/ here. >=20 > Regards > --=20 > Renato Botelho > > GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc Thanks, fixed it :) --=20 Thomas Abthorpe | FreeBSD Committer tabthorpe@FreeBSD.org | http://people.freebsd.org/~tabthorpe --2Z2K0IlrPCVsbNpk Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQEcBAEBAgAGBQJQdbUuAAoJENk3EJekc8mQDCUH/RrP5zPOD48z+KxOT/xxaP6r j2ihi6gFn84XKOIhrzFr9ETzOaJlY8rCYnQFhXtTCHdzmst/V5WTowcr2ZtB+z7m 5NHdAE1RrthRNz2M107Y4K/dmIkA3aGa2rfzLbX/t67FE4wTR2keqqP/mDC3dsTz z+q2jdnI5AoOAMcfpffIT62LMOaq/ehWlZyybCsX2nnt0bJvdBgMP5QIfWUz+ryz FknD+ZilDhLYpF9PpmLTNlYrgmc4PXFdheKV5XYcwFqbHHJcwjVKpGlDf3nihqmi hlsBuJegmDWIZ7SCyVtxcbsUegJlrXMt/nMOUH3BYlsWDKBnQos47MQ0Uk7bvF8= =RzcL -----END PGP SIGNATURE----- --2Z2K0IlrPCVsbNpk-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 18:20:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75AE1E3C; Wed, 10 Oct 2012 18:20:22 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5F2648FC0A; Wed, 10 Oct 2012 18:20:22 +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 q9AIKMcc077269; Wed, 10 Oct 2012 18:20:22 GMT (envelope-from beat@svn.freebsd.org) Received: (from beat@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AIKM98077265; Wed, 10 Oct 2012 18:20:22 GMT (envelope-from beat@svn.freebsd.org) Message-Id: <201210101820.q9AIKM98077265@svn.freebsd.org> From: Beat Gaetzi Date: Wed, 10 Oct 2012 18:20:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305677 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 18:20:22 -0000 X-List-Received-Date: Wed, 10 Oct 2012 18:20:22 -0000 Author: beat Date: Wed Oct 10 18:20:21 2012 New Revision: 305677 URL: http://svn.freebsd.org/changeset/ports/305677 Log: - Only add GH to MASTER_SITES if not already there [1] - Allow WRKSRC to be overridden when using USE_GITHUB [2] PR: ports/171644 [1], ports/171688 [2] Submitted by: bdrewery Reviewed by: gahr Tested by: Exp-run on pointyhat Modified: head/Mk/bsd.port.mk head/Mk/bsd.sites.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 10 17:44:07 2012 (r305676) +++ head/Mk/bsd.port.mk Wed Oct 10 18:20:21 2012 (r305677) @@ -1534,6 +1534,9 @@ check-makefile:: _POSTMKINCLUDED= yes WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work +.if !defined(IGNORE_MASTER_SITE_GITHUB) && defined(USE_GITHUB) +WRKSRC?= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} +.endif .if defined(NO_WRKSUBDIR) WRKSRC?= ${WRKDIR} .else Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Wed Oct 10 17:44:07 2012 (r305676) +++ head/Mk/bsd.sites.mk Wed Oct 10 18:20:21 2012 (r305677) @@ -546,10 +546,11 @@ MASTER_SITE_GET_E+= \ # .if defined(USE_GITHUB) MASTER_SITE_GITHUB+= https://nodeload.github.com/%SUBDIR% +.if !defined(MASTER_SITES) || !${MASTER_SITES:MGH} MASTER_SITES+= GH +.endif GH_PROJECT?= ${PORTNAME} GH_TAGNAME?= ${DISTVERSION} -WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} .endif .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 18:45:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB34D7DB; Wed, 10 Oct 2012 18:45:26 +0000 (UTC) (envelope-from glarkin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9BECF8FC12; Wed, 10 Oct 2012 18:45:26 +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 q9AIjQAU080638; Wed, 10 Oct 2012 18:45:26 GMT (envelope-from glarkin@svn.freebsd.org) Received: (from glarkin@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AIjQV2080636; Wed, 10 Oct 2012 18:45:26 GMT (envelope-from glarkin@svn.freebsd.org) Message-Id: <201210101845.q9AIjQV2080636@svn.freebsd.org> From: Greg Larkin Date: Wed, 10 Oct 2012 18:45:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305678 - head/mail/ezmlm-idx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 18:45:26 -0000 X-List-Received-Date: Wed, 10 Oct 2012 18:45:26 -0000 Author: glarkin Date: Wed Oct 10 18:45:26 2012 New Revision: 305678 URL: http://svn.freebsd.org/changeset/ports/305678 Log: - Converted to OptionsNG Modified: head/mail/ezmlm-idx/Makefile Modified: head/mail/ezmlm-idx/Makefile ============================================================================== --- head/mail/ezmlm-idx/Makefile Wed Oct 10 18:20:21 2012 (r305677) +++ head/mail/ezmlm-idx/Makefile Wed Oct 10 18:45:26 2012 (r305678) @@ -25,28 +25,35 @@ CONFLICTS= ezmlm-0.* SUB_FILES= pkg-message -OPTIONS= MYSQL "Build MySQL extensions" off \ - PGSQL "Build PostgreSQL extensions" off \ - SQLITE "Build SQLite3 extensions" off +OPTIONS_DEFINE= DB DOCS +OPTIONS_SINGLE= DB +OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE +DB_DESC= Enable database extension support +MYSQL_DESC= Build the MySQL extension +PGSQL_DESC= Build the PostgreSQL extension +SQLITE_DESC= Build the SQLite3 extension -.include +.include ALL_TARGET= it -# If WITH_MYSQL is defined, build with MySQL extensions -.if defined(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes EXTRACT_INCLUDE+= -I${LOCALBASE}/include/mysql EXTRACT_LIB+= -L${LOCALBASE}/lib/mysql -lmysqlclient -lm ALL_TARGET+= mysql PLIST_SUB+= MYSQL="" PGSQL="@comment " SQLITE="@comment " -.elif defined(WITH_PGSQL) +.endif + +.if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes EXTRACT_INCLUDE+= -I${LOCALBASE}/include EXTRACT_LIB+= -L${LOCALBASE}/lib -lpq -lcrypt ALL_TARGET+= pgsql PLIST_SUB+= MYSQL="@comment " PGSQL="" SQLITE="@comment " -.elif defined(WITH_SQLITE) +.endif + +.if ${PORT_OPTIONS:MSQLITE} USE_SQLITE= yes EXTRACT_INCLUDE+= -I${LOCALBASE}/include EXTRACT_LIB+= -L${LOCALBASE}/lib -lsqlite3 @@ -100,10 +107,10 @@ post-install: .for file in ${CONFIG} @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/etc/ezmlm/${file}.sample .endfor -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} .endif @${CAT} ${PKGMESSAGE} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 19:07:18 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1D85021F; Wed, 10 Oct 2012 19:07:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E05EA8FC08; Wed, 10 Oct 2012 19:07:17 +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 q9AJ7HEQ083607; Wed, 10 Oct 2012 19:07:17 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AJ7Hxp083603; Wed, 10 Oct 2012 19:07:17 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101907.q9AJ7Hxp083603@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 19:07:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305679 - head/portuguese/hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 19:07:18 -0000 X-List-Received-Date: Wed, 10 Oct 2012 19:07:18 -0000 Author: sunpoet Date: Wed Oct 10 19:07:17 2012 New Revision: 305679 URL: http://svn.freebsd.org/changeset/ports/305679 Log: - Update to 20121006 (pt_PT) and 2012-06-09 (pt_BR) - Cleanup Makefile header Modified: head/portuguese/hunspell/Makefile (contents, props changed) head/portuguese/hunspell/distinfo (contents, props changed) head/portuguese/hunspell/pkg-descr (contents, props changed) Modified: head/portuguese/hunspell/Makefile ============================================================================== --- head/portuguese/hunspell/Makefile Wed Oct 10 18:45:26 2012 (r305678) +++ head/portuguese/hunspell/Makefile Wed Oct 10 19:07:17 2012 (r305679) @@ -1,17 +1,13 @@ -# New ports collection makefile for: hunspell -# Date created: 2011-07-20 -# Whom: Baptiste Daroussin -# +# Created by: Baptiste Daroussin # $FreeBSD$ -# PORTNAME= hunspell -PORTVERSION= 20120711 +PORTVERSION= 20121006 CATEGORIES= portuguese textproc MASTER_SITES= http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/ \ http://www.broffice.org/files/:BR DISTFILES= hunspell-pt_PT-${PORTVERSION}.tar.gz \ - pt_BR-2011-05-27AOC.zip:BR + pt_BR-2012-06-09AOC.zip:BR DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org Modified: head/portuguese/hunspell/distinfo ============================================================================== --- head/portuguese/hunspell/distinfo Wed Oct 10 18:45:26 2012 (r305678) +++ head/portuguese/hunspell/distinfo Wed Oct 10 19:07:17 2012 (r305679) @@ -1,4 +1,4 @@ -SHA256 (hunspell/hunspell-pt_PT-20120711.tar.gz) = 25d8150234968c9bf8361816fb9ddf6e9d6fd6bad6e3e1cc93d06454dfff6b57 -SIZE (hunspell/hunspell-pt_PT-20120711.tar.gz) = 254139 -SHA256 (hunspell/pt_BR-2011-05-27AOC.zip) = 84bf782ac0d65dc6f8a3822913b96e698d3e2e9fb72ffbd48661488844363f91 -SIZE (hunspell/pt_BR-2011-05-27AOC.zip) = 1348076 +SHA256 (hunspell/hunspell-pt_PT-20121006.tar.gz) = 87c3e9557120cc32cf545d1f822b1bf6a3ea6a7e7eebc55a36f052d88196c8d6 +SIZE (hunspell/hunspell-pt_PT-20121006.tar.gz) = 254327 +SHA256 (hunspell/pt_BR-2012-06-09AOC.zip) = 883d616f2f302a34802e8a60e17c2d6d292c9d125022c0f79ab4a60870c73f4f +SIZE (hunspell/pt_BR-2012-06-09AOC.zip) = 1362087 Modified: head/portuguese/hunspell/pkg-descr ============================================================================== --- head/portuguese/hunspell/pkg-descr Wed Oct 10 18:45:26 2012 (r305678) +++ head/portuguese/hunspell/pkg-descr Wed Oct 10 19:07:17 2012 (r305679) @@ -1,4 +1,4 @@ Portuguese hunspell dictionaries -WWW: http://www.broffice.org/verortografico/baixar -WWW: http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:hunspell +WWW: http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:hunspell +WWW: http://www.broffice.org/verortografico/baixar From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 19:10:01 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB6365F4; Wed, 10 Oct 2012 19:10:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A49EC8FC08; Wed, 10 Oct 2012 19:10: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 q9AJA1LP084107; Wed, 10 Oct 2012 19:10:01 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AJA1gK084104; Wed, 10 Oct 2012 19:10:01 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210101910.q9AJA1gK084104@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 19:10:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305680 - head/textproc/es-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 19:10:01 -0000 X-List-Received-Date: Wed, 10 Oct 2012 19:10:01 -0000 Author: sunpoet Date: Wed Oct 10 19:10:01 2012 New Revision: 305680 URL: http://svn.freebsd.org/changeset/ports/305680 Log: - Update to 20121002 - Cleanup Makefile header Modified: head/textproc/es-mythes/Makefile head/textproc/es-mythes/distinfo (contents, props changed) Modified: head/textproc/es-mythes/Makefile ============================================================================== --- head/textproc/es-mythes/Makefile Wed Oct 10 19:07:17 2012 (r305679) +++ head/textproc/es-mythes/Makefile Wed Oct 10 19:10:01 2012 (r305680) @@ -1,12 +1,8 @@ -# New ports collection makefile for: es-mythes -# Date created: 2011-07-21 -# Whom: Baptiste Daroussin -# +# Created by: Baptiste Daroussin # $FreeBSD$ -# PORTNAME= mythes -PORTVERSION= 20120902 +PORTVERSION= 20121002 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= es- Modified: head/textproc/es-mythes/distinfo ============================================================================== --- head/textproc/es-mythes/distinfo Wed Oct 10 19:07:17 2012 (r305679) +++ head/textproc/es-mythes/distinfo Wed Oct 10 19:10:01 2012 (r305680) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo2-thes_es_ES-20120902.tar.bz2) = 96b1835edfcfe64207fd3e74005888ae8bcb02139f075e8f8805bcdc25854577 -SIZE (mythes/OOo2-thes_es_ES-20120902.tar.bz2) = 829753 +SHA256 (mythes/OOo2-thes_es_ES-20121002.tar.bz2) = a8e8a447e777992908ab04e80213521d4bf9ff48acc99766405b7a432e43f005 +SIZE (mythes/OOo2-thes_es_ES-20121002.tar.bz2) = 829654 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 19:55:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B58F9DCC; Wed, 10 Oct 2012 19:55:27 +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 947698FC17; Wed, 10 Oct 2012 19:55:27 +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 q9AJtRuQ090313; Wed, 10 Oct 2012 19:55:27 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AJtRdg090311; Wed, 10 Oct 2012 19:55:27 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210101955.q9AJtRdg090311@svn.freebsd.org> From: Jung-uk Kim Date: Wed, 10 Oct 2012 19:55:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305682 - head/java/openjdk6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 19:55:27 -0000 X-List-Received-Date: Wed, 10 Oct 2012 19:55:27 -0000 Author: jkim Date: Wed Oct 10 19:55:27 2012 New Revision: 305682 URL: http://svn.freebsd.org/changeset/ports/305682 Log: - Explicitly set registervm as build dependency. When BOOTSTRAPJDKDIR is manually set, this dependency may not be fulfilled. - Consistently use WRKSRC over WRKDIR where it makes sense. Although they are actually the same directory, there is no reason to confuse users. Feature safe: yes Modified: head/java/openjdk6/Makefile Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Wed Oct 10 19:42:18 2012 (r305681) +++ head/java/openjdk6/Makefile Wed Oct 10 19:55:27 2012 (r305682) @@ -32,6 +32,7 @@ LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/bin/zip:${PORTSDIR}/archivers/zip \ ${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip \ + ${LOCALBASE}/bin/registervm:${PORTSDIR}/java/javavmwrapper \ ${LOCALBASE}/include/cups/cups.h:${PORTSDIR}/print/cups-client LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ @@ -226,31 +227,31 @@ COPYFILES= \ post-extract: @for d in ${COPYDIRS}; do \ - ${MKDIR} `echo ${WRKDIR}/$$d | ${SED} 's/linux/bsd/g;'`; \ - cd ${WRKDIR}/$$d; \ + ${MKDIR} `echo ${WRKSRC}/$$d | ${SED} 's/linux/bsd/g;'`; \ + cd ${WRKSRC}/$$d; \ for f in *; do \ if [ -f $$f ]; then \ - t=`echo ${WRKDIR}/$$d/$$f | ${SED} 's/linux/bsd/g; s/Linux/Bsd/g'`; \ + t=`echo ${WRKSRC}/$$d/$$f | ${SED} 's/linux/bsd/g; s/Linux/Bsd/g'`; \ ${SED} 's/linux/bsd/g; s/Linux/Bsd/g; s/LINUX/BSD/g' < $$f > $$t; \ fi; \ done; \ done @for f in ${COPYFILES}; do \ t=`echo $$f | ${SED} 's/linux/bsd/g; s/Linux/Bsd/g'`; \ - ${SED} 's/linux/bsd/g; s/Linux/Bsd/g' < ${WRKDIR}/$$f > ${WRKDIR}/$$t; \ + ${SED} 's/linux/bsd/g; s/Linux/Bsd/g' < ${WRKSRC}/$$f > ${WRKSRC}/$$t; \ done @${SED} 's/solaris/bsd/g; s/Solaris/Bsd/g' \ - < ${WRKDIR}/jdk/src/solaris/hpi/native_threads/src/threads_solaris.c \ - > ${WRKDIR}/jdk/src/solaris/hpi/native_threads/src/threads_bsd.c + < ${WRKSRC}/jdk/src/solaris/hpi/native_threads/src/threads_solaris.c \ + > ${WRKSRC}/jdk/src/solaris/hpi/native_threads/src/threads_bsd.c @${SED} "s|/usr/local|${LOCALBASE}|" < ${FILESDIR}/fontconfig.properties \ - > ${WRKDIR}/jdk/src/solaris/classes/sun/awt/fontconfigs/bsd.fontconfig.properties + > ${WRKSRC}/jdk/src/solaris/classes/sun/awt/fontconfigs/bsd.fontconfig.properties @${SED} "s|%%LOCALBASE%%|${LOCALBASE}|" < ${FILESDIR}/Makefile.test \ - > ${WRKDIR}/jdk/test/Makefile - @${FIND} ${WRKDIR}/jdk/test -type f -name \*.sh -exec ${SED} -i "" -e s/Linux/FreeBSD/g {} \; + > ${WRKSRC}/jdk/test/Makefile + @${FIND} ${WRKSRC}/jdk/test -type f -name \*.sh -exec ${SED} -i "" -e s/Linux/FreeBSD/g {} \; post-patch: @${REINPLACE_CMD} "s|/lib:/usr/lib|/lib:/usr/lib:${LOCALBASE}/lib|" \ - ${WRKDIR}/hotspot/src/os/bsd/vm/os_bsd.cpp + ${WRKSRC}/hotspot/src/os/bsd/vm/os_bsd.cpp .if ${PORT_OPTIONS:MPOLICY} @${REINPLACE_CMD} 's|build-policy install-limited|build-policy install-unlimited|' \ ${WRKSRC}/jdk/make/javax/crypto/Makefile From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:58:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7586F3A; Tue, 9 Oct 2012 13:58:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE148FC17; Tue, 9 Oct 2012 13:58:53 +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 q99Dwr6u016443; Tue, 9 Oct 2012 13:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DwrNv016440; Tue, 9 Oct 2012 13:58:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091358.q99DwrNv016440@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:58:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305581 - head/german/mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:58:53 -0000 Author: sunpoet Date: Tue Oct 9 13:58:53 2012 New Revision: 305581 URL: http://svn.freebsd.org/changeset/ports/305581 Log: - Update to 2012.09.07 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Tue Oct 9 13:53:17 2012 (r305580) +++ head/german/mythes/Makefile Tue Oct 9 13:58:53 2012 (r305581) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Tue Oct 9 13:53:17 2012 (r305580) +++ head/german/mythes/distinfo Tue Oct 9 13:58:53 2012 (r305581) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20120930.oxt) = ea46b6f997d692c42bad38cffb4561b9fd917255bbeb7246e122f1b6075f2a4f -SIZE (mythes/Deutscher-Thesaurus-20120930.oxt) = 4110312 +SHA256 (mythes/Deutscher-Thesaurus-20120907.oxt) = d62a7b9f4257916c20bee702e016b59e565a8793fec39af48a2a01d8ffd2a2ea +SIZE (mythes/Deutscher-Thesaurus-20120907.oxt) = 3953926 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0237D79; Tue, 9 Oct 2012 13:59:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE6F98FC0C; Tue, 9 Oct 2012 13:59:03 +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 q99Dx3Qv016601; Tue, 9 Oct 2012 13:59:03 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Dx3Gq016597; Tue, 9 Oct 2012 13:59:03 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99Dx3Gq016597@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305583 - head/textproc/nl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:04 -0000 Author: sunpoet Date: Tue Oct 9 13:59:03 2012 New Revision: 305583 URL: http://svn.freebsd.org/changeset/ports/305583 Log: - Update to 2012.09.07 Modified: head/textproc/nl-mythes/Makefile head/textproc/nl-mythes/distinfo Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Tue Oct 9 13:58:58 2012 (r305582) +++ head/textproc/nl-mythes/Makefile Tue Oct 9 13:59:03 2012 (r305583) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= nl- Modified: head/textproc/nl-mythes/distinfo ============================================================================== --- head/textproc/nl-mythes/distinfo Tue Oct 9 13:58:58 2012 (r305582) +++ head/textproc/nl-mythes/distinfo Tue Oct 9 13:59:03 2012 (r305583) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_nl-20120930.oxt) = 168d05c538d4f960d875af74b2d61ec680860b4731134843a0ea99daf1340dd9 -SIZE (mythes/thes_nl-20120930.oxt) = 1956025 +SHA256 (mythes/thes_nl-20120907.oxt) = dd8b5074581afe76e1ef50fa9187ec47ba3f15d647910d58b3837e49092949ae +SIZE (mythes/thes_nl-20120907.oxt) = 1956026 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AB6514A; Tue, 9 Oct 2012 13:59:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 136BD8FC19; Tue, 9 Oct 2012 13:59:09 +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 q99Dx8Pb016676; Tue, 9 Oct 2012 13:59:08 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Dx8Ml016673; Tue, 9 Oct 2012 13:59:08 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99Dx8Ml016673@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305584 - head/textproc/sk-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:09 -0000 Author: sunpoet Date: Tue Oct 9 13:59:08 2012 New Revision: 305584 URL: http://svn.freebsd.org/changeset/ports/305584 Log: - Update to 2012.09.07 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Tue Oct 9 13:59:03 2012 (r305583) +++ head/textproc/sk-mythes/Makefile Tue Oct 9 13:59:08 2012 (r305584) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.30 +PORTVERSION= 2012.09.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Tue Oct 9 13:59:03 2012 (r305583) +++ head/textproc/sk-mythes/distinfo Tue Oct 9 13:59:08 2012 (r305584) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120930.zip) = 43cf135810074f4066f9d474370194a9026ac5e72011036e3237796b1c1209cb -SIZE (mythes/OOo-Thesaurus2-sk_SK-20120930.zip) = 331753 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = e5c5db882aa31eee0b81e36c432e089ef1529cc29707c911781a668e66a42f1d +SIZE (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = 331575 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C6F621D; Tue, 9 Oct 2012 13:59:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4457B8FC0A; Tue, 9 Oct 2012 13:59: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 q99DxEe6016754; Tue, 9 Oct 2012 13:59:14 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DxEbY016751; Tue, 9 Oct 2012 13:59:14 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99DxEbY016751@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305585 - head/textproc/sl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:14 -0000 Author: sunpoet Date: Tue Oct 9 13:59:13 2012 New Revision: 305585 URL: http://svn.freebsd.org/changeset/ports/305585 Log: - Update to 2012.10.08 Modified: head/textproc/sl-mythes/Makefile head/textproc/sl-mythes/distinfo Modified: head/textproc/sl-mythes/Makefile ============================================================================== --- head/textproc/sl-mythes/Makefile Tue Oct 9 13:59:08 2012 (r305584) +++ head/textproc/sl-mythes/Makefile Tue Oct 9 13:59:13 2012 (r305585) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.10.01 +PORTVERSION= 2012.10.08 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sl- Modified: head/textproc/sl-mythes/distinfo ============================================================================== --- head/textproc/sl-mythes/distinfo Tue Oct 9 13:59:08 2012 (r305584) +++ head/textproc/sl-mythes/distinfo Tue Oct 9 13:59:13 2012 (r305585) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_sl_SI_v2-20121001.zip) = 63b26b8e88cd876d8819539bf8eefa1ce986ce64a63410fbfa1d029388f5da5b -SIZE (mythes/thes_sl_SI_v2-20121001.zip) = 327988 +SHA256 (mythes/thes_sl_SI_v2-20121008.zip) = f8891f289ed3853d9fd33364f14f17b8e4ec41b4339913ff817aaf3cf2c877ef +SIZE (mythes/thes_sl_SI_v2-20121008.zip) = 327996 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 13:59:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 789C5406; Tue, 9 Oct 2012 13:59:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5FF738FC19; Tue, 9 Oct 2012 13:59: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 q99DxgH1016870; Tue, 9 Oct 2012 13:59:42 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99DxgcD016868; Tue, 9 Oct 2012 13:59:42 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091359.q99DxgcD016868@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 13:59:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305586 - head/databases/kyotocabinet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 X-List-Received-Date: Tue, 09 Oct 2012 13:59:42 -0000 Author: sunpoet Date: Tue Oct 9 13:59:41 2012 New Revision: 305586 URL: http://svn.freebsd.org/changeset/ports/305586 Log: - Convert to new options framework - Cleanup Makefile header Modified: head/databases/kyotocabinet/Makefile (contents, props changed) Modified: head/databases/kyotocabinet/Makefile ============================================================================== --- head/databases/kyotocabinet/Makefile Tue Oct 9 13:59:13 2012 (r305585) +++ head/databases/kyotocabinet/Makefile Tue Oct 9 13:59:41 2012 (r305586) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kyotocabinet -# Date created: 22 April 2010 -# Whom: Akinori MUSHA aka knu -# +# Created by: Akinori MUSHA aka knu # $FreeBSD$ -# PORTNAME= kyotocabinet PORTVERSION= 1.2.76 @@ -16,6 +12,8 @@ COMMENT= A straightforward implementatio LICENSE= GPLv3 +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes MAKE_ARGS= PCDIR="${PREFIX}/libdata/pkgconfig" MAKE_JOBS_SAFE= yes @@ -56,12 +54,12 @@ BROKEN= Does not link on powerpc .endif post-patch: -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${FIND} ${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; ${FIND} ${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:00:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1758E4FC; Tue, 9 Oct 2012 14:00:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F39668FC1C; Tue, 9 Oct 2012 14:00: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 q99E0YU1017071; Tue, 9 Oct 2012 14:00:34 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99E0Y2l017068; Tue, 9 Oct 2012 14:00:34 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091400.q99E0Y2l017068@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:00:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305587 - head/databases/kyototycoon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:00:35 -0000 Author: sunpoet Date: Tue Oct 9 14:00:34 2012 New Revision: 305587 URL: http://svn.freebsd.org/changeset/ports/305587 Log: - Add LICENSE - Convert to new options framework - Cleanup Makefile header Modified: head/databases/kyototycoon/Makefile (contents, props changed) Modified: head/databases/kyototycoon/Makefile ============================================================================== --- head/databases/kyototycoon/Makefile Tue Oct 9 13:59:41 2012 (r305586) +++ head/databases/kyototycoon/Makefile Tue Oct 9 14:00:34 2012 (r305587) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kyototycoon -# Date created: 2011-10-04 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= kyototycoon PORTVERSION= 0.9.56 @@ -14,8 +10,12 @@ MASTER_SITES= http://fallabs.com/${PORTN MAINTAINER= sunpoet@FreeBSD.org COMMENT= A handy cache/storage server +LICENSE= GPLv3 + LIB_DEPENDS= kyotocabinet:${PORTSDIR}/databases/kyotocabinet +OPTIONS_DEFINE= DOCS + CONFIGURE_ARGS= --enable-profile --enable-uyield GNU_CONFIGURE= yes MAKE_ARGS= PCDIR="${PREFIX}/libdata/pkgconfig" @@ -32,8 +32,10 @@ MAN1= ktremotemgr.1 \ ktutilserv.1 \ ktutiltest.1 +.include + post-patch: -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif @@ -41,7 +43,7 @@ post-configure: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' ${WRKSRC}/Makefile post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${FIND} ${DOCSDIR}/ -type d -exec ${CHMOD} 755 '{}' \; ${FIND} ${DOCSDIR}/ -type f -exec ${CHMOD} 444 '{}' \; ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:15:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48F40835; Tue, 9 Oct 2012 14:15:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 16C948FC14; Tue, 9 Oct 2012 14:15: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 q99EFIau019035; Tue, 9 Oct 2012 14:15:18 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EFIeD019032; Tue, 9 Oct 2012 14:15:18 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091415.q99EFIeD019032@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:15:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305588 - head/devel/p5-Class-Load-XS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:19 -0000 Author: sunpoet Date: Tue Oct 9 14:15:18 2012 New Revision: 305588 URL: http://svn.freebsd.org/changeset/ports/305588 Log: - Update to 0.05 - Cleanup Makefile header Changes: http://search.cpan.org/dist/Class-Load-XS/Changes Modified: head/devel/p5-Class-Load-XS/Makefile (contents, props changed) head/devel/p5-Class-Load-XS/distinfo (contents, props changed) Modified: head/devel/p5-Class-Load-XS/Makefile ============================================================================== --- head/devel/p5-Class-Load-XS/Makefile Tue Oct 9 14:00:34 2012 (r305587) +++ head/devel/p5-Class-Load-XS/Makefile Tue Oct 9 14:15:18 2012 (r305588) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Class-Load-XS -# Date created: 2011-11-16 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= Class-Load-XS -PORTVERSION= 0.04 +PORTVERSION= 0.05 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,9 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= XS implementation of parts of Class::Load -BUILD_DEPENDS= p5-Class-Load>=0.15:${PORTSDIR}/devel/p5-Class-Load -RUN_DEPENDS= p5-Class-Load>=0.15:${PORTSDIR}/devel/p5-Class-Load - +BUILD_DEPENDS= p5-Class-Load>=0.20:${PORTSDIR}/devel/p5-Class-Load +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Module-Implementation>=0.04:${PORTSDIR}/devel/p5-Module-Implementation \ p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires \ Modified: head/devel/p5-Class-Load-XS/distinfo ============================================================================== --- head/devel/p5-Class-Load-XS/distinfo Tue Oct 9 14:00:34 2012 (r305587) +++ head/devel/p5-Class-Load-XS/distinfo Tue Oct 9 14:15:18 2012 (r305588) @@ -1,2 +1,2 @@ -SHA256 (Class-Load-XS-0.04.tar.gz) = d4731aee4d5484cd1eef9b2aa46d0370be3f4c9aeb8fd14fc11bbd48201e05e3 -SIZE (Class-Load-XS-0.04.tar.gz) = 55168 +SHA256 (Class-Load-XS-0.05.tar.gz) = 91901b3dbd7feb8f7e646a68201ad41fb0c7b2e60aa114fdedbd9f64f22d157d +SIZE (Class-Load-XS-0.05.tar.gz) = 56007 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:15:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B980D90E; Tue, 9 Oct 2012 14:15:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A195D8FC0A; Tue, 9 Oct 2012 14:15:38 +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 q99EFcLI019144; Tue, 9 Oct 2012 14:15:38 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EFc2J019141; Tue, 9 Oct 2012 14:15:38 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091415.q99EFc2J019141@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:15:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305589 - head/net/rubygem-httpauth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:15:38 -0000 Author: sunpoet Date: Tue Oct 9 14:15:38 2012 New Revision: 305589 URL: http://svn.freebsd.org/changeset/ports/305589 Log: - Update to 0.2.0 - Cleanup Makefile header Changes: https://github.com/Manfred/HTTPauth/commits/master Modified: head/net/rubygem-httpauth/Makefile (contents, props changed) head/net/rubygem-httpauth/distinfo (contents, props changed) Modified: head/net/rubygem-httpauth/Makefile ============================================================================== --- head/net/rubygem-httpauth/Makefile Tue Oct 9 14:15:18 2012 (r305588) +++ head/net/rubygem-httpauth/Makefile Tue Oct 9 14:15:38 2012 (r305589) @@ -1,12 +1,8 @@ -# New ports collection makefile for: rubygem-httpauth -# Date created: 2012-04-16 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= httpauth -PORTVERSION= 0.1 +PORTVERSION= 0.2.0 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-httpauth/distinfo ============================================================================== --- head/net/rubygem-httpauth/distinfo Tue Oct 9 14:15:18 2012 (r305588) +++ head/net/rubygem-httpauth/distinfo Tue Oct 9 14:15:38 2012 (r305589) @@ -1,2 +1,2 @@ -SHA256 (rubygem/httpauth-0.1.gem) = 18d4b8b9048932303e1c22580c8391dff6a6ec24f92b7b8e6d436b621a85d9f1 -SIZE (rubygem/httpauth-0.1.gem) = 15872 +SHA256 (rubygem/httpauth-0.2.0.gem) = 61693bd3849f348c075861a014c95af777a89581e04cae231641c56fc2a9e21f +SIZE (rubygem/httpauth-0.2.0.gem) = 13824 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 14:18:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C34F5AB2; Tue, 9 Oct 2012 14:18:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AB9838FC08; Tue, 9 Oct 2012 14:18: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 q99EIOq5019652; Tue, 9 Oct 2012 14:18:24 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99EIO6f019650; Tue, 9 Oct 2012 14:18:24 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210091418.q99EIO6f019650@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 9 Oct 2012 14:18:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305590 - head/net-mgmt/ettercap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 X-List-Received-Date: Tue, 09 Oct 2012 14:18:24 -0000 Author: sunpoet Date: Tue Oct 9 14:18:24 2012 New Revision: 305590 URL: http://svn.freebsd.org/changeset/ports/305590 Log: - Convert to new options framework - Rename options: GTK -> GTK2, ICONV -> UTF8 - Pet portlint: remove ABI version number from LIB_DEPENDS - Cleanup Makefile header - Cosmetic change Modified: head/net-mgmt/ettercap/Makefile (contents, props changed) Modified: head/net-mgmt/ettercap/Makefile ============================================================================== --- head/net-mgmt/ettercap/Makefile Tue Oct 9 14:15:38 2012 (r305589) +++ head/net-mgmt/ettercap/Makefile Tue Oct 9 14:18:24 2012 (r305590) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ettercap -# Date created: 19 February 2001 -# Whom: George Reid -# +# Created by: George Reid # $FreeBSD$ -# PORTNAME= ettercap PORTVERSION= 0.7.4.1 @@ -18,11 +14,11 @@ COMMENT= A network sniffer/interceptor/i BUILD_DEPENDS= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet -OPTIONS= GTK "Build with GTK2+ GUI" on \ - ICONV "Build with support for UTF-8" on \ - PCRE "Build with PCRE regexps in filters" on \ - PLUGINS "Build with ettercap plugins" on \ - SSL "Build with support for SSH1 and SSL decryption" on +# GTK -> GTK2, ICONV -> UTF8 +OPTIONS_DEFINE= DOCS GTK2 PCRE PLUGINS SSL UTF8 +OPTIONS_DEFAULT=GTK2 PCRE PLUGINS SSL UTF8 +PCRE_DESC= Use PCRE in filters +SSL_DESC= SSH1 and SSL decryption support CFLAGS+= ${PTHREAD_CFLAGS} CONFIGURE_ENV= LIBS="${LDFLAGS}" @@ -36,49 +32,49 @@ USE_BISON= build WANT_GNOME= yes WRKSRC= ${WRKDIR}/${PORTNAME} -MAN5= etter.conf.5 -MAN8= ettercap.8 ettercap_curses.8 etterfilter.8 etterlog.8 DOCS= AUTHORS CHANGELOG README README.BINARIES README.BUGS \ README.GIT README.PLATFORMS THANKS TODO TODO.TESTING \ doc/capture doc/decoders doc/dissectors doc/threads +MAN5= etter.conf.5 +MAN8= ettercap.8 ettercap_curses.8 etterfilter.8 etterlog.8 LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config .include -.if !defined(WITHOUT_GTK) -USE_GNOME= atk glib20 gtk20 pango +.if ${PORT_OPTIONS:MGTK2} PKGNAMESUFFIX+= -gtk2 CONFIGURE_ARGS+=--enable-gtk +USE_GNOME= atk glib20 gtk20 pango .else CONFIGURE_ARGS+=--disable-gtk .endif -.if !defined(WITHOUT_ICONV) -USE_ICONV= yes +.if ${PORT_OPTIONS:MUTF8} CONFIGURE_ARGS+=--with-iconv=${LOCALBASE} +USE_ICONV= yes .endif -.if !defined(WITHOUT_PCRE) -LIB_DEPENDS+= pcre.1:${PORTSDIR}/devel/pcre +.if ${PORT_OPTIONS:MPCRE} +LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre CONFIGURE_ARGS+=--with-libpcre=${LOCALBASE} .else CONFIGURE_ARGS+=--without-libpcre .endif -.if !defined(WITHOUT_PLUGINS) -MAN8+= ettercap_plugins.8 -DOCS+= doc/plugins +.if ${PORT_OPTIONS:MPLUGINS} CONFIGURE_ARGS+=--enable-plugins +DOCS+= doc/plugins +MAN8+= ettercap_plugins.8 PLIST_SUB+= PLUGINS="" .else CONFIGURE_ARGS+=--disable-plugins PLIST_SUB+= PLUGINS="@comment " .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes +.if ${PORT_OPTIONS:MSSL} CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} +USE_OPENSSL= yes .else CONFIGURE_ARGS+=--without-openssl .endif @@ -109,7 +105,7 @@ post-install: .if !exists(${PREFIX}/etc/etter.conf) ${INSTALL_DATA} ${WRKSRC}/share/etter.conf ${PREFIX}/etc/etter.conf .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/ .endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:04:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8F7FB8B for ; Tue, 9 Oct 2012 15:04:28 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id 8AC948FC17 for ; Tue, 9 Oct 2012 15:04:28 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so5815812pad.13 for ; Tue, 09 Oct 2012 08:04:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=mdW1Jd/EW2Qrr1h9szs2i0TforFvJvlYjmwrJZ2lbbo=; b=NkHaCM1LZJ4ImMvxLiWezbC0bqgjFRAPcSTufreoPL7hJFoUKI1io4iLI0YbPJU/SK wcvjlK6dw90jriv04ovyvqU/09IKd/NB8WOEP3sWatpPcPShdef5E3TjROcaBwX2Im1s eoaP4Z+guqtEZG8blDfLDt+5fJ9Z2JTy2J42I= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=mdW1Jd/EW2Qrr1h9szs2i0TforFvJvlYjmwrJZ2lbbo=; b=GwN/nEocCvYCqB1zHHC2DX/T8Q9xLO0h8ubVnH2Nlh9o23rCSDiWEOAWmdpJOIBdMz a+zpZ0G5D2UQulQLEVzvHFRv5Zl10VucffVAeCdLDPzmLbbD8wvHBdkTWTHpJCSEOk2A ESz+wPL1W4y1W/jzSB89+TvpP0VJODzEOI9yWvRJMKZqgXRkD3EbFi3CYDpwYVCoJpSB 5pZEKD5jGPLAext33OyLEVnGVHuKdMAI5CydWP8qw0Qq1Eo6FuRIJMxf3hHZLTHsCtvG AoMglVqwuUhRZoTrutP62IjhA+iXLXHTBeZKu8jwoG/DIOda/B0RxInIiLmrmzKbCXZp VZ6A== Received: by 10.66.75.168 with SMTP id d8mr53474380paw.63.1349795067746; Tue, 09 Oct 2012 08:04:27 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.66.161.163 with HTTP; Tue, 9 Oct 2012 08:03:57 -0700 (PDT) In-Reply-To: <201210082045.q98KjqgO068427@svn.freebsd.org> References: <201210082045.q98KjqgO068427@svn.freebsd.org> From: Eitan Adler Date: Tue, 9 Oct 2012 11:03:57 -0400 X-Google-Sender-Auth: UsBG3OrRCvAJFydOXARKtBYmxOc Message-ID: Subject: Re: svn commit: r305556 - head/security/vuxml To: Rene Ladan Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQlUsbjKwL4jLuV/TQOo1Clu6I5+du3TpD8aOySL9PIAHZGlRuz+WjrXQmUmHTQblhJKVjK1 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:04:28 -0000 On 8 October 2012 16:45, Rene Ladan wrote: > Author: rene > Date: Mon Oct 8 20:45:52 2012 > New Revision: 305556 > URL: http://svn.freebsd.org/changeset/ports/305556 > > Log: > Document new vulnerabilities in www/chromium < 22.0.1229.92 You do a really good job at documenting the chrome vulns. Thanks! -- Eitan Adler Source & Ports committer X11, Bugbusting teams From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:26:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E223C1AB; Tue, 9 Oct 2012 15:26:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B15F38FC1B; Tue, 9 Oct 2012 15:26: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 q99FQwEY028850; Tue, 9 Oct 2012 15:26:58 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99FQwks028847; Tue, 9 Oct 2012 15:26:58 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201210091526.q99FQwks028847@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 9 Oct 2012 15:26:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305591 - head/astro/josm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:26:59 -0000 Author: amdmi3 Date: Tue Oct 9 15:26:58 2012 New Revision: 305591 URL: http://svn.freebsd.org/changeset/ports/305591 Log: - Update to 5531 Modified: head/astro/josm/Makefile head/astro/josm/distinfo Modified: head/astro/josm/Makefile ============================================================================== --- head/astro/josm/Makefile Tue Oct 9 14:18:24 2012 (r305590) +++ head/astro/josm/Makefile Tue Oct 9 15:26:58 2012 (r305591) @@ -6,7 +6,7 @@ # PORTNAME= josm -PORTVERSION= 5485 +PORTVERSION= 5531 CATEGORIES= astro java MASTER_SITES= http://josm.openstreetmap.de/download/:josm \ http://mirror.amdmi3.ru/distfiles/:josm \ @@ -25,6 +25,8 @@ JAVA_VERSION= 1.5+ JOSM_MEMORY_LIMIT?=1024 +NO_BUILD= yes + SUB_FILES= josm.sh SUB_LIST= JARNAME=${DISTNAME} JOSM_MEMORY_LIMIT=${JOSM_MEMORY_LIMIT} @@ -33,31 +35,10 @@ WEBKITIMG_SRC= ${WEBKITIMG}.cpp PLIST_FILES= bin/josm ${JAVAJARDIR:C,${PREFIX}/?,,}/${DISTNAME} -OPTIONS= WEBKIT_IMAGE "Build webkit-image (needed for Yahoo imagery)" off - -.include - pre-everything:: @${ECHO_CMD} "You can change limit of memory available to josm by defining" @${ECHO_CMD} "JOSM_MEMORY_LIMIT variable in /etc/make.conf. Default is 1024 (MB)." -.if defined(WITH_WEBKIT_IMAGE) -PLIST_FILES+= bin/webkit-image - -USE_QT4= corelib gui webkit moc_build - -do-build: - cd ${WRKSRC} && \ - ${MOC} ${DISTDIR}/${WEBKITIMG_SRC} > ${WEBKITIMG}.h && \ - ${CXX} ${CFLAGS} ${PTHREAD_LIBS} -I. -I${QT_INCDIR} -L${QT_LIBDIR} \ - ${DISTDIR}/${WEBKITIMG_SRC} -o ${WEBKITIMG} -lQtCore -lQtWebKit \ - -lQtGui -.else -# setting NO_BUILD here won't work -do-build: - @${DO_NADA} -.endif - do-install: ${MKDIR} ${JAVAJARDIR}/ ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${JAVAJARDIR}/ Modified: head/astro/josm/distinfo ============================================================================== --- head/astro/josm/distinfo Tue Oct 9 14:18:24 2012 (r305590) +++ head/astro/josm/distinfo Tue Oct 9 15:26:58 2012 (r305591) @@ -1,4 +1,4 @@ -SHA256 (josm-snapshot-5485.jar) = c392040d84539e68add3ecf60fb886cfb6fa5f36c125329ec5f55c92397d4bc2 -SIZE (josm-snapshot-5485.jar) = 7530751 +SHA256 (josm-snapshot-5531.jar) = 7e10272416903a0cc70249769f876e19a68bce346c69d587a9cf512c6fa67035 +SIZE (josm-snapshot-5531.jar) = 7578075 SHA256 (webkit-image.cpp) = 431f5b956c0e3d1615289dd6cb64effb988b30ace7c80f5a51f9546aa80d300d SIZE (webkit-image.cpp) = 2718 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:55:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1BEBA45; Tue, 9 Oct 2012 15:55:15 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 89EEF8FC08; Tue, 9 Oct 2012 15:55:15 +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 q99FtFHa032498; Tue, 9 Oct 2012 15:55:15 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99FtFfk032496; Tue, 9 Oct 2012 15:55:15 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210091555.q99FtFfk032496@svn.freebsd.org> From: Alex Dupre Date: Tue, 9 Oct 2012 15:55:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305592 - head/Tools/scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:55:15 -0000 Author: ale Date: Tue Oct 9 15:55:15 2012 New Revision: 305592 URL: http://svn.freebsd.org/changeset/ports/305592 Log: Clean-up command-line options. Approved by: crees Modified: head/Tools/scripts/addport Modified: head/Tools/scripts/addport ============================================================================== --- head/Tools/scripts/addport Tue Oct 9 15:26:58 2012 (r305591) +++ head/Tools/scripts/addport Tue Oct 9 15:55:15 2012 (r305592) @@ -58,7 +58,7 @@ sub lastcomment(); my %opts; -getopts('ac:d:fh:il:L:M:mns:tu:y', \%opts); +getopts('ac:d:fh:il:L:mns:tu:y', \%opts); my $autofill_l = $opts{'l'}; my $autofill_L = $opts{'L'}; @@ -71,7 +71,6 @@ $h = $opts{'h'} if ($opts{'h'} ne ""); my $u = $ENV{USER}; $u = $opts{'u'} if ($opts{'u'} ne ""); my $more_testing = $opts{'t'}; -my $moduleshost = $opts{'M'}; my $interactive = $opts{'i'}; my $nomkdir = $opts{'m'}; my $addlchk = $opts{'a'}; @@ -111,9 +110,6 @@ my $tmp2; my $offset; my $commitfile = " my $moved = ""; $tmp = $tmp2 = $offset = 0; -chomp(my $myhost = lc(hostname())); -$moduleshost = $myhost if ($moduleshost eq ""); - # Check the editor. my $edit = "/usr/bin/vi"; $edit = $ENV{EDITOR} if ($ENV{EDITOR} ne ""); @@ -504,8 +500,8 @@ print <, SYNOPSIS - $0 [-c commitfile] [-h host] [-l PR number] [-s distdir] [-u user] - [-abfimnt] -d directory + $0 [-c commitfile] [-h host] [-l PR number | -L PR number] + [-s distdir] [-u user] [-afimnty] -d directory Where "directory" contains the comma-delimited list of root directories of new ports that you wish to From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 15:59:46 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 5D4D1CCF; Tue, 9 Oct 2012 15:59:46 +0000 (UTC) Date: Tue, 9 Oct 2012 15:59:46 +0000 From: Alexey Dokuchaev To: Baptiste Daroussin Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121009155946.GA70759@FreeBSD.org> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20121008061249.GA47691@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, Doug Barton , ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 X-List-Received-Date: Tue, 09 Oct 2012 15:59:46 -0000 On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > > That's because OptionsNG poorly implement mutually exclusive options. I > > hope that eventually dialog's --radiolist would be utilized for proper > > handling, and sane knobs names would be restored. > > > > Sounds like a nice port junior hacker project. > > Not hat junior dialog(1) can't mix radiolist and classic checklist that is > why it doesn't use it, using libdialog(3), it would be easiy to implement, > but that won't be usable for a while (until all supported version of > freebsd has it. Ah, OK, that explains it (lack of radiobuttons now). Is it known what's preventing all supported versions to have working libdialog(3), if we have working dialog(1) already? ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:07:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D173D27B; Tue, 9 Oct 2012 16:07:33 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9F6028FC0A; Tue, 9 Oct 2012 16:07:33 +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 q99G7XmR034163; Tue, 9 Oct 2012 16:07:33 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99G7XWU034160; Tue, 9 Oct 2012 16:07:33 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210091607.q99G7XWU034160@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 9 Oct 2012 16:07:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305593 - head/ports-mgmt/poudriere-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:07:33 -0000 Author: bapt Date: Tue Oct 9 16:07:33 2012 New Revision: 305593 URL: http://svn.freebsd.org/changeset/ports/305593 Log: - update to checkin 06e052c2c9 - changes: * Add explicit check-config phase to detect invalid OPTIONS * Fix finding run-depends packages as leftovers * Search for eligible ports trees on all ZFS pools * Fix '[: die: bad number' error in testport * bulk: If given -C, clean any previous packages only for the ports provided * Switch back to github for ports git as it is the preferred source * Call leftovers phase 'leftovers' instead of 'fscheck' Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Tue Oct 9 15:55:15 2012 (r305592) +++ head/ports-mgmt/poudriere-devel/Makefile Tue Oct 9 16:07:33 2012 (r305593) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 2.1.99.20121004 +PORTVERSION= 2.1.99.20121009 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ PKGNAMESUFFIX= -devel @@ -13,7 +13,7 @@ COMMENT= Port build and test system LICENSE= BSD -FSL_CHKIN= 86c7d4bd7c +FSL_CHKIN= 06e052c2c9 NO_BUILD= yes MANCOMPRESSED= yes Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Tue Oct 9 15:55:15 2012 (r305592) +++ head/ports-mgmt/poudriere-devel/distinfo Tue Oct 9 16:07:33 2012 (r305593) @@ -1,2 +1,2 @@ -SHA256 (poudriere-2.1.99.20121004.tar.gz?uuid=86c7d4bd7c) = bcf732ce9326c8f4787ac11ddcfda3e793a653b8e9eedc99f020d9ee6eae5c7c -SIZE (poudriere-2.1.99.20121004.tar.gz?uuid=86c7d4bd7c) = 33866 +SHA256 (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 2cdec948f233bfc9e2ba142f24127b9cde85827a6d160f63e6c5f1400d3d57ac +SIZE (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 34110 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:10:12 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B744573; Tue, 9 Oct 2012 16:10:12 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 1F7D78FC0A; Tue, 9 Oct 2012 16:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99GACZ8031999; Tue, 9 Oct 2012 16:10:12 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99GABV7031998; Tue, 9 Oct 2012 16:10:11 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Tue, 9 Oct 2012 18:10:09 +0200 From: Baptiste Daroussin To: Alexey Dokuchaev Subject: Re: svn commit: r305288 - head/Mk Message-ID: <20121009161009.GF8713@ithaqua.etoilebsd.net> References: <201210042257.q94MvjeY039394@svn.freebsd.org> <20121005202842.GA64496@FreeBSD.org> <20121006080539.GB30675@ithaqua.etoilebsd.net> <5070A018.9010302@FreeBSD.org> <20121008035621.GA91369@FreeBSD.org> <20121008061249.GA47691@ithaqua.etoilebsd.net> <20121009155946.GA70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WlEyl6ow+jlIgNUh" Content-Disposition: inline In-Reply-To: <20121009155946.GA70759@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:10:12 -0000 --WlEyl6ow+jlIgNUh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 09, 2012 at 03:59:46PM +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 08:12:50AM +0200, Baptiste Daroussin wrote: > > On Mon, Oct 08, 2012 at 03:56:21AM +0000, Alexey Dokuchaev wrote: > > > That's because OptionsNG poorly implement mutually exclusive options.= I > > > hope that eventually dialog's --radiolist would be utilized for proper > > > handling, and sane knobs names would be restored. > > >=20 > > > Sounds like a nice port junior hacker project. > >=20 > > Not hat junior dialog(1) can't mix radiolist and classic checklist that= is > > why it doesn't use it, using libdialog(3), it would be easiy to impleme= nt, > > but that won't be usable for a while (until all supported version of > > freebsd has it. >=20 > Ah, OK, that explains it (lack of radiobuttons now). Is it known what's > preventing all supported versions to have working libdialog(3), if we have > working dialog(1) already? >=20 > ./danfe new dialog is only on 9.x and 10.x, if will require to code some special dialog(1) dedicated for ports, MFCing libdialog to 8 and 7 is complicated because the API isn't compatible. regards, Bapt --WlEyl6ow+jlIgNUh Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB0TGEACgkQ8kTtMUmk6EyvpwCfbQQST7/3AMVG0+NDF155nqY6 eY8An1L/rj15/L6nAyPYSKuaYscQiEUk =aa9D -----END PGP SIGNATURE----- --WlEyl6ow+jlIgNUh-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 16:12:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EA296F9; Tue, 9 Oct 2012 16:12:19 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7B07C8FC1A; Tue, 9 Oct 2012 16:12: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 q99GCJQh034851; Tue, 9 Oct 2012 16:12:19 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99GCJlf034848; Tue, 9 Oct 2012 16:12:19 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210091612.q99GCJlf034848@svn.freebsd.org> From: Alex Kozlov Date: Tue, 9 Oct 2012 16:12:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305594 - head/games/xgalaga++ X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 X-List-Received-Date: Tue, 09 Oct 2012 16:12:19 -0000 Author: ak Date: Tue Oct 9 16:12:18 2012 New Revision: 305594 URL: http://svn.freebsd.org/changeset/ports/305594 Log: - Remove indefinite article from COMMENT - Convert Makefile headers to new style - Add DESKTOP_ENTRIES - Fix manpage name - Remove redundant comments Submitted by: nemysis (maintainer) Modified: head/games/xgalaga++/Makefile head/games/xgalaga++/distinfo Modified: head/games/xgalaga++/Makefile ============================================================================== --- head/games/xgalaga++/Makefile Tue Oct 9 16:07:33 2012 (r305593) +++ head/games/xgalaga++/Makefile Tue Oct 9 16:12:18 2012 (r305594) @@ -1,18 +1,17 @@ -# New Ports collection makefile for: xgalaga++ -# Date created: 2012-04-20 -# Whom: nemysis@gmx.ch -# # $FreeBSD$ -# PORTNAME= xgalaga++ PORTVERSION= 0.8.3 CATEGORIES= games -MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ -DISTNAME= ${PORTNAME}_${PORTVERSION} +MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ \ + http://packages.nimblex.net/slacky/games/xgalaga++/0.8.2/src/:icons +DISTFILES= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX} \ + ${PORTNAME}.png:icons +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= ${PORTNAME}_${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= nemysis@gmx.ch -COMMENT= A classic single screen vertical shoot em up +COMMENT= Classic single screen vertical shoot em up LICENSE= GPLv2 @@ -21,14 +20,18 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USE_GMAKE= yes ALL_TARGET= ${PORTNAME} USE_XORG= x11 xpm -MAN6= xgalaga++.6x +MAN6= xgalaga++.6 SUB_FILES= pkg-install -PLIST_FILES= bin/xgalaga++ +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.png PORTDOCS= README +DESKTOP_ENTRIES="XGalaga++" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" ${FALSE} + .include post-patch: @@ -37,14 +40,14 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MAN6PREFIX}/man/man6 - ${CHOWN} :games ${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${WRKSRC}/${MAN6}x ${MAN6PREFIX}/man/man6/${MAN6} + ${CHGRP} games ${PREFIX}/bin/${PORTNAME} ${CHMOD} g+s ${PREFIX}/bin/${PORTNAME} + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps -# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL Modified: head/games/xgalaga++/distinfo ============================================================================== --- head/games/xgalaga++/distinfo Tue Oct 9 16:07:33 2012 (r305593) +++ head/games/xgalaga++/distinfo Tue Oct 9 16:12:18 2012 (r305594) @@ -1,2 +1,4 @@ -SHA256 (xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2 -SIZE (xgalaga++_0.8.3.tar.gz) = 32466 +SHA256 (xgalaga++/xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2 +SIZE (xgalaga++/xgalaga++_0.8.3.tar.gz) = 32466 +SHA256 (xgalaga++/xgalaga++.png) = cc14035e06fafc78057db52376fe2f809fd8da3f946f7bdccfe4fd5b431c6287 +SIZE (xgalaga++/xgalaga++.png) = 3232 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:18:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3B9DB12; Tue, 9 Oct 2012 17:18:43 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2EB28FC16; Tue, 9 Oct 2012 17:18: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 q99HIhPh043036; Tue, 9 Oct 2012 17:18:43 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99HIhjC043033; Tue, 9 Oct 2012 17:18:43 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210091718.q99HIhjC043033@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 9 Oct 2012 17:18:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305595 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:18:44 -0000 Author: bapt Date: Tue Oct 9 17:18:43 2012 New Revision: 305595 URL: http://svn.freebsd.org/changeset/ports/305595 Log: - add STAT to bsd.commands.mk - use ${STAT} -f \"%z\" in make makesum to calculate size - speed up USE_PKGCONFIG by using a more efficient syntax [1] and test in the order it is most expected to appear: "yes/build" first, "both" second, "run being the last one. Reported by: dougb [1] Exp-Run by: beat Modified: head/Mk/bsd.commands.mk head/Mk/bsd.port.mk Modified: head/Mk/bsd.commands.mk ============================================================================== --- head/Mk/bsd.commands.mk Tue Oct 9 16:12:18 2012 (r305594) +++ head/Mk/bsd.commands.mk Tue Oct 9 17:18:43 2012 (r305595) @@ -79,6 +79,7 @@ SETENV?= /usr/bin/env SH?= /bin/sh SORT?= /usr/bin/sort STRIP_CMD?= /usr/bin/strip +STAT?= /usr/bin/stat # Command to run commands as privileged user # Example: "/usr/local/bin/sudo -E sh -c" to use "sudo" instead of "su" SU_CMD?= /usr/bin/su root -c Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Tue Oct 9 16:12:18 2012 (r305594) +++ head/Mk/bsd.port.mk Tue Oct 9 17:18:43 2012 (r305595) @@ -1657,20 +1657,15 @@ BUILD_DEPENDS+= gmake:${PORTSDIR}/devel CONFIGURE_ENV+= MAKE=${GMAKE} .endif .if defined(USE_PKGCONFIG) -.if ${USE_PKGCONFIG:L} == yes -USE_PKGCONFIG= build -.endif -.if ${USE_PKGCONFIG:L} == run -RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf -.endif -.if ${USE_PKGCONFIG:L} == build +.if ${USE_PKGCONFIG:L} == yes || ${USE_PKGCONFIG:L} == build BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf CONFIGURE_ENV+= PKG_CONFIG=pkgconf -.endif -.if ${USE_PKGCONFIG:L} == both +.elif ${USE_PKGCONFIG:L} == both RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf BUILD_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf CONFIGURE_ENV+= PKG_CONFIG=pkgconf +.elif ${USE_PKGCONFIG:L} == run +RUN_DEPENDS+= pkgconf:${PORTSDIR}/devel/pkgconf .endif .endif @@ -4814,7 +4809,7 @@ makesum: check-checksum-algorithms $$alg_executable $$file >> ${DISTINFO_FILE}; \ fi; \ done; \ - ${ECHO_CMD} "SIZE ($$file) = "`${LS} -ALln $$file | ${AWK} '{print $$5}'` >> ${DISTINFO_FILE}; \ + ${ECHO_CMD} "SIZE ($$file) = `${STAT} -f \"%z\" $$file`" >> ${DISTINFO_FILE}; \ done \ ) @for file in ${_IGNOREFILES}; do \ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:47:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 380532C6; Tue, 9 Oct 2012 17:47:07 +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 1F4808FC08; Tue, 9 Oct 2012 17:47: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 q99Hl6OX046664; Tue, 9 Oct 2012 17:47:06 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Hl6uj046660; Tue, 9 Oct 2012 17:47:06 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210091747.q99Hl6uj046660@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 17:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305596 - in head/java: . openjdk6 openjdk6-jre X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:07 -0000 Author: jkim Date: Tue Oct 9 17:47:06 2012 New Revision: 305596 URL: http://svn.freebsd.org/changeset/ports/305596 Log: - Sanitize user, group and permission. Inspired by openjdk7. - Add a slave port to create JRE-only package. Added: head/java/openjdk6-jre/ head/java/openjdk6-jre/Makefile (contents, props changed) Modified: head/java/Makefile head/java/openjdk6/Makefile Modified: head/java/Makefile ============================================================================== --- head/java/Makefile Tue Oct 9 17:18:43 2012 (r305595) +++ head/java/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -137,6 +137,7 @@ SUBDIR += netrexx SUBDIR += netty SUBDIR += openjdk6 + SUBDIR += openjdk6-jre SUBDIR += openjdk7 SUBDIR += phpeclipse SUBDIR += poseidon Added: head/java/openjdk6-jre/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/openjdk6-jre/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -0,0 +1,13 @@ +# $FreeBSD$ + +PORTREVISION= 0 +CATEGORIES= java devel +PKGNAMESUFFIX= -jre + +COMMENT= Oracle's Java 6 Runtime Environment under the GPL v2 + +BUILD_JRE= yes +MASTERDIR= ${.CURDIR}/../openjdk6 +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} + +.include "${MASTERDIR}/Makefile" Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Tue Oct 9 17:18:43 2012 (r305595) +++ head/java/openjdk6/Makefile Tue Oct 9 17:47:06 2012 (r305596) @@ -3,7 +3,7 @@ PORTNAME= openjdk6 PORTVERSION= b25 -PORTREVISION= 3 +PORTREVISION?= 4 CATEGORIES= java devel MASTER_SITES= http://download.java.net/openjdk/jdk6/promoted/${PORTVERSION}/ \ http://download.java.net/jaxp/openjdk/jdk6/:jaxp \ @@ -26,7 +26,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} ${ANTFILE} MAINTAINER= java@FreeBSD.org -COMMENT= Oracle's Java 6 virtual machine release under the GPL v2 +COMMENT?= Oracle's Java 6 virtual machine release under the GPL v2 LICENSE= GPLv2 @@ -39,18 +39,22 @@ RUN_DEPENDS= javavm:${PORTSDIR}/java/jav OPENJDK_BUILDDATE= 01_may_2012 -.include - -OPTIONS_DEFINE= DEBUG FASTDEBUG ICEDTEA IPV6 POLICY SOUND TEST TZUPDATE +OPTIONS_DEFINE= ICEDTEA IPV6 POLICY SOUND TZUPDATE OPTIONS_DEFAULT=ICEDTEA TZUPDATE -DEBUG_DESC= Enable legacy debugging support -FASTDEBUG_DESC= Include fastdebug build ICEDTEA_DESC= Apply additional patches from IcedTea POLICY_DESC= Install the Unlimited Strength Policy Files SOUND_DESC= Enable sound support -TEST_DESC= Add support for running regression test TZUPDATE_DESC= Update the time zone data +.if !defined(BUILD_JRE) +OPTIONS_DEFINE+=DEBUG FASTDEBUG TEST +DEBUG_DESC= Enable legacy debugging support +FASTDEBUG_DESC= Include fastdebug build +TEST_DESC= Add support for running regression test +.endif + +.include + # java extracts directly to the cwd WRKSRC= ${WRKDIR} @@ -255,10 +259,16 @@ post-patch: post-build: .if ${PORT_OPTIONS:MTZUPDATE} @# Update time zones +.if defined(BUILD_JRE) + @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image/lib/zi + @${LN} -s -f ${LOCALBASE}/share/java/zi \ + ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image/lib +.else @${RM} -rf ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib/zi @${LN} -s -f ${LOCALBASE}/share/java/zi \ ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/jre/lib .endif +.endif .if ${PORT_OPTIONS:MTEST} @${ECHO_MSG} "" @${ECHO_MSG} "Run \"make test\" to execute regression test (it could take a few hours to complete)." @@ -282,12 +292,46 @@ test: build-depends build .endif do-install: +.if defined(BUILD_JRE) + @${MKDIR} ${PREFIX}/openjdk6-jre/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2re-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6-jre + @${CHOWN} ${BINOWN}:${BINGRP} ${PREFIX}/openjdk6-jre/bin/* \ + ${PREFIX}/openjdk6-jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} ${PREFIX}/openjdk6-jre/bin/* \ + ${PREFIX}/openjdk6-jre/lib/${ARCH}/jexec + @${ECHO_MSG} "@unexec ${LOCALBASE}/bin/unregistervm ${PREFIX}/openjdk6-jre/bin/java" >> ${TMPPLIST} + @${FIND} -s ${PREFIX}/openjdk6-jre -not -type d | \ + ${SED} -e 's#^${PREFIX}/##' >> ${TMPPLIST} + @${ECHO} "@exec mkdir ${PREFIX}/openjdk6-jre/lib/applet" >> ${TMPPLIST} + @${FIND} ${PREFIX}/openjdk6-jre -type d | ${SORT} -r | \ + ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + @${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm '${PREFIX}/openjdk6-jre/bin/java # OpenJDK6 JRE'" >> ${TMPPLIST} +.else @${MKDIR} ${PREFIX}/openjdk6/ - @${CP} -Rp ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image/ ${PREFIX}/openjdk6/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6 @${INSTALL_DATA} ${WRKSRC}/build/${OPENJDK_OSARCH}/btjars/compilefontconfig.jar ${WRKSRC}/build/${OPENJDK_OSARCH}/btjars/javazic.jar ${PREFIX}/openjdk6/jre/lib/ + @for dir in `${FIND} ${PREFIX}/openjdk6 -name bin -type d`; do \ + ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ + ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ + done + @${CHOWN} ${BINOWN}:${BINGRP} \ + ${PREFIX}/openjdk6/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} \ + ${PREFIX}/openjdk6/jre/lib/${ARCH}/jexec .if ${PORT_OPTIONS:MFASTDEBUG} @${MKDIR} ${PREFIX}/openjdk6-fastdebug/ - @${CP} -Rp ${WRKSRC}/build/${OPENJDK_OSARCH}-fastdebug/j2sdk-image/ ${PREFIX}/openjdk6-fastdebug/ + @cd ${WRKSRC}/build/${OPENJDK_OSARCH}/j2sdk-image && \ + ${COPYTREE_SHARE} . ${PREFIX}/openjdk6-fastdebug + @for dir in `${FIND} ${PREFIX}/openjdk6-fastdebug -name bin -type d`; do \ + ${CHOWN} -h -R ${BINOWN}:${BINGRP} $$dir; \ + ${FIND} $$dir -type f -exec ${CHMOD} ${BINMODE} "{}" \; ; \ + done + @${CHOWN} ${BINOWN}:${BINGRP} \ + ${PREFIX}/openjdk6-fastdebug/jre/lib/${ARCH}/jexec + @${CHMOD} ${BINMODE} \ + ${PREFIX}/openjdk6-fastdebug/jre/lib/${ARCH}/jexec .endif @${ECHO_MSG} "@unexec ${LOCALBASE}/bin/unregistervm ${PREFIX}/openjdk6/bin/java" >> ${TMPPLIST} @${FIND} -s ${PREFIX}/openjdk6 -not -type d | \ @@ -305,10 +349,15 @@ do-install: ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} @${ECHO_MSG} "@exec ${LOCALBASE}/bin/registervm '${PREFIX}/openjdk6-fastdebug/bin/java # OpenJDK6'" >> ${TMPPLIST} .endif +.endif post-install: @# Register the VM +.if defined(BUILD_JRE) + @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6-jre/bin/java # OpenJDK6 JRE" +.else @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6/bin/java # OpenJDK6" +.endif .if ${PORT_OPTIONS:MFASTDEBUG} @"${LOCALBASE}/bin/registervm" "${PREFIX}/openjdk6-fastdebug/bin/java # OpenJDK6" .endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:47:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D41A93AE; Tue, 9 Oct 2012 17:47:53 +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 BD5FC8FC0C; Tue, 9 Oct 2012 17:47:53 +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 q99HlrdN046806; Tue, 9 Oct 2012 17:47:53 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q99Hlrlp046804; Tue, 9 Oct 2012 17:47:53 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210091747.q99Hlrlp046804@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 9 Oct 2012 17:47:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305597 - head/java/linux-sun-jre16 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:47:53 -0000 Author: jkim Date: Tue Oct 9 17:47:53 2012 New Revision: 305597 URL: http://svn.freebsd.org/changeset/ports/305597 Log: Recommend newly added openjdk6-jre. Modified: head/java/linux-sun-jre16/pkg-message Modified: head/java/linux-sun-jre16/pkg-message ============================================================================== --- head/java/linux-sun-jre16/pkg-message Tue Oct 9 17:47:06 2012 (r305596) +++ head/java/linux-sun-jre16/pkg-message Tue Oct 9 17:47:53 2012 (r305597) @@ -1,6 +1,6 @@ ====================================================================== Warning: This JRE may be unstable. You are advised to use the native -FreeBSD 1.6 JDK, in ports/java/openjdk6. +FreeBSD 1.6 JDK, in ports/java/openjdk6-jre. This Java VM will attempt to obtain some system information by accessing files in linux's procfs. You must install the Linux From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 17:51:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id AD21D7E7; Tue, 9 Oct 2012 17:51:14 +0000 (UTC) Date: Tue, 9 Oct 2012 17:51:14 +0000 From: Alexey Dokuchaev To: Bryan Drewery Subject: Re: svn commit: r305357 - head/net/ssvnc Message-ID: <20121009175114.GB70759@FreeBSD.org> References: <201210061123.q96BNHVx053948@svn.freebsd.org> <20121008040154.GB91369@FreeBSD.org> <20121008045905.GD91369@FreeBSD.org> <20121008071642.GA91360@ithaqua.etoilebsd.net> <507307F7.3030406@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <507307F7.3030406@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Chris Rees , svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 X-List-Received-Date: Tue, 09 Oct 2012 17:51:14 -0000 On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: > Can you add: > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > I swear there is a case where !${} results in an Error. I am not even sure if !${...} works or not, as it looks very ugly. I was always separating it with space. ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Oct 9 18:04:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7E916FD8; Tue, 9 Oct 2012 18:04:47 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id EE1878FC14; Tue, 9 Oct 2012 18:04:46 +0000 (UTC) Received: from mercury.ph.man.ac.uk [130.88.75.175:4284] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id q99I4tVi022869 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Tue, 9 Oct 2012 22:04:55 +0400 (MSK) From: Max Brazhnikov To: Alexey Dokuchaev Subject: Re: svn commit: r305357 - head/net/ssvnc Date: Tue, 9 Oct 2012 18:05:04 +0000 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.9.1; amd64; ; ) References: <201210061123.q96BNHVx053948@svn.freebsd.org> <507307F7.3030406@FreeBSD.org> <20121009175114.GB70759@FreeBSD.org> In-Reply-To: <20121009175114.GB70759@FreeBSD.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201210091805.05226.makc@freebsd.org> Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org, Chris Rees , Bryan Drewery X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 X-List-Received-Date: Tue, 09 Oct 2012 18:04:47 -0000 On Tue, 9 Oct 2012 17:51:14 +0000, Alexey Dokuchaev wrote: > On Mon, Oct 08, 2012 at 12:05:59PM -0500, Bryan Drewery wrote: > > Can you add: > > > > !${PORT_OPTIONS:MFOO} && !${PORT_OPTIONS:MBAR} > > > > I swear there is a case where !${} results in an Error. > > I am not even sure if !${...} works or not, as it looks very ugly. I was > always separating it with space. It looks perfect for me, why don't you like it? :) Max From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:02:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8FEED8BC; Wed, 10 Oct 2012 21:02:05 +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 7A3268FC14; Wed, 10 Oct 2012 21:02:05 +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 q9AL25wX099272; Wed, 10 Oct 2012 21:02:05 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AL2585099270; Wed, 10 Oct 2012 21:02:05 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210102102.q9AL2585099270@svn.freebsd.org> From: Guido Falsi Date: Wed, 10 Oct 2012 21:02:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305683 - head/lang/pure X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:02:05 -0000 Author: madpilot Date: Wed Oct 10 21:02:04 2012 New Revision: 305683 URL: http://svn.freebsd.org/changeset/ports/305683 Log: - Remove double quotes from *_DESC Requested by: Zhihao Yuan (maintainer, via email) Noticed by: Riccardo Torrini Feature safe: yes Modified: head/lang/pure/Makefile (contents, props changed) Modified: head/lang/pure/Makefile ============================================================================== --- head/lang/pure/Makefile Wed Oct 10 19:55:27 2012 (r305682) +++ head/lang/pure/Makefile Wed Oct 10 21:02:04 2012 (r305683) @@ -35,7 +35,7 @@ CONFIGURE_ARGS= --with-libgmp-prefix=${L OPTIONS_DEFINE= EMACS -EMACS_DESC= "Compile pure-mode.el with Emacs" +EMACS_DESC= Compile pure-mode.el with Emacs .include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:13:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0CD6B4A; Wed, 10 Oct 2012 21:13:07 +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 B5A1B8FC18; Wed, 10 Oct 2012 21:13: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 q9ALD7tR002663; Wed, 10 Oct 2012 21:13:07 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ALD7xC002643; Wed, 10 Oct 2012 21:13:07 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210102113.q9ALD7xC002643@svn.freebsd.org> From: Florian Smeets Date: Wed, 10 Oct 2012 21:13:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305684 - in head: . Mk mail mail/enigmail mail/enigmail-seamonkey mail/enigmail-thunderbird mail/enigmail-thunderbird-esr mail/linux-thunderbird mail/thunderbird mail/thunderbird-esr m... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:13:07 -0000 Author: flo Date: Wed Oct 10 21:13:06 2012 New Revision: 305684 URL: http://svn.freebsd.org/changeset/ports/305684 Log: - Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird to 10.0.8 - Update firefox and thunderbird to 16.0 - Update seamonkey to 2.13 - Update all -i18n ports respectively - switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better latency during pause and seeking with HTML5 video - remove fedisableexcept() hacks, obsolete since FreeBSD 4.0 - support system hunspell dictionaries [1] - unbreak -esr ports with clang3.2 [2] - unbreak nss build when CC contains full path [3] - remove GNOME option grouping [4] - integrate enigmail into thunderbird/seamonkey as an option [5] - remove mail/enigmail* [6] - enable ENIGMAIL, LIGHTNING and GIO options by default - add more reporters in about:memory: page-faults-hard, page-faults-soft, resident, vsize - use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0, only heap-allocated reporter works in about:memory (see bug 762445) - use lrintf() instead of slow C cast in bundled libopus - use libjpeg-turbo's faster color conversion if available during build - record startup time for telemetry - use -z origin instead of hardcoding path to gecko runtime - fail early if incompatible libxul version is installed (in USE_GECKO) - *miscellaneous cleanups and fixups* PR: ports/171534 [1] PR: ports/171566 [2] PR: ports/172164 [3] PR: ports/172201 [4] Discussed with: ale, beat, Jan Beich [5] Approved by: ale [6] In collaboration with: Jan Beich Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392 Feature safe: yes Approved by: portmgr (beat) Added: head/mail/thunderbird-esr/files/patch-bug788108 (contents, props changed) head/mail/thunderbird-esr/files/patch-bug789436 (contents, props changed) head/mail/thunderbird-esr/files/patch-bug789693 (contents, props changed) head/mail/thunderbird-esr/files/patch-bug791305 (contents, props changed) head/mail/thunderbird-esr/files/patch-bug791366 (contents, props changed) head/mail/thunderbird-esr/files/patch-clang32-visibility-hack (contents, props changed) head/mail/thunderbird-esr/files/patch-mozilla-extensions-spellcheck-hunspell-src-mozHunspell.cpp (contents, props changed) head/mail/thunderbird/files/patch-bug788108 (contents, props changed) head/mail/thunderbird/files/patch-bug788955 (contents, props changed) head/mail/thunderbird/files/patch-bug789436 (contents, props changed) head/mail/thunderbird/files/patch-bug789656 (contents, props changed) head/mail/thunderbird/files/patch-bug789693 (contents, props changed) head/mail/thunderbird/files/patch-bug791305 (contents, props changed) head/mail/thunderbird/files/patch-bug791366 (contents, props changed) head/mail/thunderbird/files/patch-config-baseconfig.mk (contents, props changed) head/mail/thunderbird/files/patch-mozilla-content-media-nsAudioStream.cpp (contents, props changed) head/mail/thunderbird/files/patch-mozilla-extensions-spellcheck-hunspell-src-mozHunspell.cpp (contents, props changed) head/security/nss/files/patch-..::coreconf::ruleset.mk (contents, props changed) head/www/firefox-esr/files/patch-bug696030 (contents, props changed) head/www/firefox-esr/files/patch-bug713802 (contents, props changed) head/www/firefox-esr/files/patch-bug788108 (contents, props changed) head/www/firefox-esr/files/patch-bug789436 (contents, props changed) head/www/firefox-esr/files/patch-bug789693 (contents, props changed) head/www/firefox-esr/files/patch-bug791305 (contents, props changed) head/www/firefox-esr/files/patch-bug791366 (contents, props changed) head/www/firefox-esr/files/patch-clang32-visibility-hack (contents, props changed) head/www/firefox-esr/files/patch-extensions-spellcheck-hunspell-src-mozHunspell.cpp (contents, props changed) head/www/firefox/files/patch-bug713802 (contents, props changed) head/www/firefox/files/patch-bug788108 (contents, props changed) head/www/firefox/files/patch-bug788955 (contents, props changed) head/www/firefox/files/patch-bug789436 (contents, props changed) head/www/firefox/files/patch-bug789656 (contents, props changed) head/www/firefox/files/patch-bug789693 (contents, props changed) head/www/firefox/files/patch-bug791305 (contents, props changed) head/www/firefox/files/patch-bug791366 (contents, props changed) head/www/firefox/files/patch-config-baseconfig.mk (contents, props changed) head/www/firefox/files/patch-content-media-nsAudioStream.cpp (contents, props changed) head/www/firefox/files/patch-extensions-spellcheck-hunspell-src-mozHunspell.cpp (contents, props changed) head/www/firefox/files/pkg-deinstall.in (contents, props changed) head/www/firefox/files/pkg-install.in (contents, props changed) head/www/libxul/files/patch-bug696030 (contents, props changed) head/www/libxul/files/patch-bug713802 (contents, props changed) head/www/libxul/files/patch-bug789693 (contents, props changed) head/www/libxul/files/patch-bug791305 (contents, props changed) head/www/libxul/files/patch-bug791366 (contents, props changed) head/www/libxul/files/patch-clang32-visibility-hack (contents, props changed) head/www/libxul/files/patch-extensions-spellcheck-hunspell-src-mozHunspell.cpp (contents, props changed) head/www/libxul19/files/patch-extensions-spellcheck-hunspell-src-mozHunspell.cpp (contents, props changed) head/www/seamonkey/files/patch-bug713802 (contents, props changed) head/www/seamonkey/files/patch-bug788108 (contents, props changed) head/www/seamonkey/files/patch-bug788955 (contents, props changed) head/www/seamonkey/files/patch-bug789436 (contents, props changed) head/www/seamonkey/files/patch-bug789656 (contents, props changed) head/www/seamonkey/files/patch-bug789693 (contents, props changed) head/www/seamonkey/files/patch-bug791305 (contents, props changed) head/www/seamonkey/files/patch-bug791366 (contents, props changed) head/www/seamonkey/files/patch-config-autoconf.mk.in (contents, props changed) head/www/seamonkey/files/patch-config-baseconfig.mk (contents, props changed) head/www/seamonkey/files/patch-mozilla-content-media-nsAudioStream.cpp (contents, props changed) head/www/seamonkey/files/patch-mozilla-extensions-spellcheck-hunspell-src-mozHunspell.cpp (contents, props changed) Deleted: head/mail/enigmail/ head/mail/enigmail-seamonkey/ head/mail/enigmail-thunderbird/ head/mail/enigmail-thunderbird-esr/ head/mail/thunderbird-esr/files/patch-bug351181 head/mail/thunderbird-esr/files/patch-bug781474 head/mail/thunderbird-esr/files/patch-bug785638 head/mail/thunderbird-esr/files/patch-clang32-libc++-visibility-hack head/mail/thunderbird-esr/files/patch-mozilla_toolkit_xre_glxtest.cpp head/mail/thunderbird/files/patch-bug351181 head/mail/thunderbird/files/patch-bug723860 head/mail/thunderbird/files/patch-bug759459 head/mail/thunderbird/files/patch-bug760899 head/mail/thunderbird/files/patch-bug761030 head/mail/thunderbird/files/patch-bug761419 head/mail/thunderbird/files/patch-bug781474 head/mail/thunderbird/files/patch-bug785638 head/mail/thunderbird/files/patch-mozilla-config_autoconf.mk.in head/mail/thunderbird/files/patch-mozilla_toolkit_xre_glxtest.cpp head/www/firefox-esr/files/patch-bug351181 head/www/firefox-esr/files/patch-bug781474 head/www/firefox-esr/files/patch-bug785638 head/www/firefox-esr/files/patch-clang32-libc++-visibility-hack head/www/firefox/files/patch-bug351181 head/www/firefox/files/patch-bug723860 head/www/firefox/files/patch-bug752895 head/www/firefox/files/patch-bug759459 head/www/firefox/files/patch-bug760899 head/www/firefox/files/patch-bug761030 head/www/firefox/files/patch-bug761419 head/www/firefox/files/patch-bug781474 head/www/firefox/files/patch-bug785638 head/www/firefox/files/patch-config_autoconf.mk.in head/www/libxul/files/patch-bug785638 head/www/libxul/files/patch-clang32-libc++-visibility-hack head/www/seamonkey/files/patch-bug351181 head/www/seamonkey/files/patch-bug723860 head/www/seamonkey/files/patch-bug759459 head/www/seamonkey/files/patch-bug760899 head/www/seamonkey/files/patch-bug761030 head/www/seamonkey/files/patch-bug761419 head/www/seamonkey/files/patch-bug781474 head/www/seamonkey/files/patch-bug785638 head/www/seamonkey/files/patch-config_autoconf.mk.in head/www/seamonkey/pkg-deinstall.in head/www/seamonkey/pkg-install.in Modified: head/MOVED head/Mk/bsd.gecko.mk head/UPDATING head/mail/Makefile (contents, props changed) head/mail/linux-thunderbird/Makefile head/mail/linux-thunderbird/distinfo (contents, props changed) head/mail/thunderbird-esr-i18n/Makefile head/mail/thunderbird-esr-i18n/distinfo (contents, props changed) head/mail/thunderbird-esr/Makefile head/mail/thunderbird-esr/distinfo (contents, props changed) head/mail/thunderbird-esr/files/patch-bug543241 (contents, props changed) head/mail/thunderbird-esr/files/patch-bug753046 (contents, props changed) head/mail/thunderbird-i18n/Makefile head/mail/thunderbird-i18n/distinfo head/mail/thunderbird/Makefile head/mail/thunderbird/distinfo head/mail/thunderbird/files/extra-bug780531 (contents, props changed) head/mail/thunderbird/files/patch-bug543241 (contents, props changed) head/mail/thunderbird/files/patch-bug753046 (contents, props changed) head/mail/thunderbird/files/patch-bug774671 (contents, props changed) head/mail/thunderbird/files/patch-bug778056 (contents, props changed) head/mail/thunderbird/files/patch-bug778078 (contents, props changed) head/mail/thunderbird/files/patch-bug784776 (contents, props changed) head/security/ca_root_nss/Makefile head/security/nss/Makefile head/security/nss/files/nss-config.in (contents, props changed) head/security/vuxml/vuln.xml head/www/firefox-esr-i18n/Makefile head/www/firefox-esr-i18n/distinfo (contents, props changed) head/www/firefox-esr/Makefile head/www/firefox-esr/distinfo (contents, props changed) head/www/firefox-esr/files/patch-bug543241 (contents, props changed) head/www/firefox-esr/files/patch-bug753046 (contents, props changed) head/www/firefox-esr/pkg-message (contents, props changed) head/www/firefox-i18n/Makefile head/www/firefox-i18n/distinfo (contents, props changed) head/www/firefox/Makefile head/www/firefox/Makefile.options (contents, props changed) head/www/firefox/distinfo (contents, props changed) head/www/firefox/files/extra-bug780531 (contents, props changed) head/www/firefox/files/patch-bug543241 (contents, props changed) head/www/firefox/files/patch-bug753046 (contents, props changed) head/www/firefox/files/patch-bug774671 (contents, props changed) head/www/firefox/files/patch-bug778056 (contents, props changed) head/www/firefox/files/patch-bug778078 (contents, props changed) head/www/firefox/files/patch-bug784776 (contents, props changed) head/www/firefox/pkg-message (contents, props changed) head/www/kompozer/Makefile head/www/libxul/Makefile head/www/libxul/distinfo head/www/libxul/files/patch-bug543241 (contents, props changed) head/www/libxul/files/patch-bug753046 (contents, props changed) head/www/libxul19/Makefile head/www/linux-firefox/Makefile head/www/linux-firefox/distinfo (contents, props changed) head/www/linux-seamonkey/Makefile head/www/linux-seamonkey/distinfo (contents, props changed) head/www/seamonkey-i18n/Makefile head/www/seamonkey-i18n/distinfo head/www/seamonkey/Makefile head/www/seamonkey/distinfo head/www/seamonkey/files/extra-bug780531 (contents, props changed) head/www/seamonkey/files/patch-bug543241 (contents, props changed) head/www/seamonkey/files/patch-bug753046 (contents, props changed) head/www/seamonkey/files/patch-bug774671 (contents, props changed) head/www/seamonkey/files/patch-bug778056 (contents, props changed) head/www/seamonkey/files/patch-bug778078 (contents, props changed) head/www/seamonkey/files/patch-bug784776 (contents, props changed) Modified: head/MOVED ============================================================================== --- head/MOVED Wed Oct 10 21:02:04 2012 (r305683) +++ head/MOVED Wed Oct 10 21:13:06 2012 (r305684) @@ -3717,3 +3717,7 @@ www/jakarta-jmeter|www/jmeter|2012-09-25 www/smarty|www/smarty2|2012-09-26|Renamed to prepare for addition of Smarty 3.x to the tree devel/p5-Devel-Mallinfo||2012-10-08|Has expired: Does not work on FreeBSD, mallinfo() is a GNU libc function and is not available on FreeBSD multimedia/vdpau-video|multimedia/libva-vdpau-driver|2012-10-09|Project renamed +mail/enigmail||2012-10-10|Enigmail is now an option in the thunderbird/seamonkey port +mail/enigmail-seamonkey||2012-10-10|Enigmail is now an option in the seamonkey port +mail/enigmail-thunderbird||2012-10-10|Enigmail is now an option in the thunderbird port +mail/enigmail-thunderbird-esr||2012-10-10|Enigmail is now an option in the thunderbird-esr port Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Wed Oct 10 21:02:04 2012 (r305683) +++ head/Mk/bsd.gecko.mk Wed Oct 10 21:13:06 2012 (r305684) @@ -79,8 +79,8 @@ Gecko_Pre_Include= bsd.gecko.mk _GECKO_ALL= libxul libxul19 -libxul_PLIST= ${LOCALBASE}/lib/libxul/libxul.so -libxul19_PLIST= ${LOCALBASE}/lib/libxul/libxul.so +libxul_PLIST= libxul>=10 +libxul19_PLIST= libxul<2 .for gecko in ${_GECKO_ALL} ${gecko}_PORTSDIR?= www @@ -179,7 +179,7 @@ Gecko_Pre_Include= bsd.gecko.mk # is given by the maintainer via the port or by the # user via defined variable try to find the highest # stable installed version. -# Available values: yes 10+ 15+ 10 15+ +# Available values: yes 10+ 16+ 10 16+ # NOTE: # default value 10 is used in case of USE_FIREFOX=yes # @@ -190,9 +190,9 @@ Gecko_Pre_Include= bsd.gecko.mk # version is given by the maintainer via the port # or by the user via defined variable try to find # the highest stable installed version. -# Available values: yes 12+ 12 +# Available values: yes 13+ 13 # NOTE: -# default value 12 is used in case of USE_SEAMONKEY=yes +# default value 13 is used in case of USE_SEAMONKEY=yes # # USE_SEAMONKEY_BUILD Add buildtime dependency on SeaMonkey. # Available values: see USE_SEAMONKEY @@ -201,7 +201,7 @@ Gecko_Pre_Include= bsd.gecko.mk # version is given by the maintainer via the port # or by the user via defined variable try to find # the highest stable installed version. -# Available values: yes 10+ 15+ 10 15 +# Available values: yes 10+ 16+ 10 16 # NOTE: # default value 10 is used in case of USE_THUNDERBIRD=yes # @@ -221,11 +221,11 @@ _FIREFOX_BUILD_DEPENDS= yes .endif _FIREFOX_DEFAULT_VERSION= 10 -_FIREFOX_VERSIONS= 10 15 -_FIREFOX_RANGE_VERSIONS= 10+ 15+ +_FIREFOX_VERSIONS= 10 16 +_FIREFOX_RANGE_VERSIONS= 10+ 16+ # For specifying [10, ..]+ -_FIREFOX_15P= 15 ${_FIREFOX_10P} +_FIREFOX_16P= 16 ${_FIREFOX_10P} _FIREFOX_10P= 10 # Set the default Firefox version and check if USE_FIREFOX=yes was given @@ -272,7 +272,7 @@ IGNORE= cannot install: unknown Firefo # Dependence lines for different Firefox versions 10_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr -15_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +16_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox # Add dependencies .if defined(USE_FIREFOX) @@ -294,12 +294,12 @@ USE_SEAMONKEY:= ${USE_SEAMONKEY_BUILD _SEAMONKEY_BUILD_DEPENDS= yes .endif -_SEAMONKEY_DEFAULT_VERSION= 12 -_SEAMONKEY_VERSIONS= 12 -_SEAMONKEY_RANGE_VERSIONS= 12+ +_SEAMONKEY_DEFAULT_VERSION= 13 +_SEAMONKEY_VERSIONS= 13 +_SEAMONKEY_RANGE_VERSIONS= 13+ -# For specifying [12, ..]+ -_SEAMONKEY_12P= 12 +# For specifying [13, ..]+ +_SEAMONKEY_13P= 13 # Set the default SeaMonkey version and check if USE_SEAMONKEY=yes was given .if ${USE_SEAMONKEY} == "yes" @@ -341,7 +341,7 @@ IGNORE= cannot install: unknown SeaMon .endif # Dependence lines for different SeaMonkey versions -12_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey +13_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:${PORTSDIR}/www/seamonkey # Add dependencies .if defined(USE_SEAMONKEY) @@ -364,11 +364,11 @@ _THUNDERBIRD_BUILD_DEPENDS= yes .endif _THUNDERBIRD_DEFAULT_VERSION= 10 -_THUNDERBIRD_VERSIONS= 10 15 -_THUNDERBIRD_RANGE_VERSIONS= 10+ 15+ +_THUNDERBIRD_VERSIONS= 10 16 +_THUNDERBIRD_RANGE_VERSIONS= 10+ 16+ # For specifying [10, ..]+ -_THUNDERBIRD_15P= 15 ${_THUNDERBIRD_10P} +_THUNDERBIRD_16P= 16 ${_THUNDERBIRD_10P} _THUNDERBIRD_10P= 10 # Set the default Thunderbird version and check if USE_THUNDERBIRD=yes was given @@ -414,7 +414,7 @@ IGNORE= cannot install: unknown Thunde # Dependence lines for different Thunderbird versions 10_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:${PORTSDIR}/mail/thunderbird-esr -15_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:${PORTSDIR}/mail/thunderbird +16_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:${PORTSDIR}/mail/thunderbird # Add dependencies .if defined(USE_THUNDERBIRD) @@ -519,7 +519,6 @@ FAKEDIR?= ${WRKDIR}/fake PLIST?= ${WRKDIR}/plist PLISTD?= ${WRKDIR}/plist_dirs PLISTF?= ${WRKDIR}/plist_files -MASTER_DIR?= ${.CURDIR}/../../www/seamonkey MOZ_PIS_DIR?= lib/${MOZILLA}/init.d @@ -528,9 +527,8 @@ MOZCONFIG?= ${WRKSRC}/.mozconfig MOZILLA_PLIST_DIRS?= bin lib PKGINSTALL?= ${WRKDIR}/pkg-install PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall -MASTER_MOZDIR?= ${PORTSDIR}/www/seamonkey -PKGINSTALL_INC?= ${MASTER_MOZDIR}/pkg-install.in -PKGDEINSTALL_INC?= ${MASTER_MOZDIR}/pkg-deinstall.in +PKGINSTALL_INC?= ${.CURDIR}/../../www/firefox/files/pkg-install.in +PKGDEINSTALL_INC?= ${.CURDIR}/../../www/firefox/files/pkg-deinstall.in EXTRACT_AFTER_ARGS?= | ${TAR} -xf - --exclude */CVS/* \ --exclude */macbuild/* \ @@ -547,6 +545,25 @@ MOZ_OPTIONS+= --prefix="${FAKEDIR}" CPPFLAGS+= -isystem${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +.if ${OSVERSION} > 800072 +LDFLAGS+= -Wl,-z,origin -Wl,-rpath,\\\$$\$$ORIGIN +.else +LDFLAGS+= -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH} +.endif + +.if ${MOZILLA_VER:R:R} >= 16 || exists(${.CURDIR}/files/patch-bug788955) +.if ${OSVERSION} > 1000011 +# use jemalloc 3.0.0 API in libc +MOZ_EXPORT+= MOZ_JEMALLOC=1 +.elif ${OSVERSION} > 800004 +MOZ_OPTIONS+= --enable-jemalloc +MOZ_EXPORT+= MOZ_JEMALLOC=1 +.elif ${OSVERSION} > 700101 +# has _pthread_mutex_init_calloc_cb but firefox crashes when jemalloc +# configured without --enable-debug +.endif +.endif + # Standard depends _ALL_DEPENDS= cairo dbm event ffi hunspell jpeg nspr nss png sqlite vpx zip @@ -567,6 +584,8 @@ ffi_EXTRACT_AFTER_ARGS= --exclude mozill hunspell_LIB_DEPENDS= hunspell-1.3:${PORTSDIR}/textproc/hunspell hunspell_MOZ_OPTIONS= --enable-system-hunspell +# XXX: depends on pkgng package flavor support +#jpeg_LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/libjpeg-turbo jpeg_LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg jpeg_MOZ_OPTIONS= --with-system-jpeg=${LOCALBASE} jpeg_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libjpeg @@ -578,8 +597,6 @@ nss_LIB_DEPENDS= nss3:${PORTSDIR}/securi nss_MOZ_OPTIONS= --with-system-nss nss_EXTRACT_AFTER_ARGS= --exclude mozilla*/security/coreconf \ --exclude mozilla*/security/nss -nss_CPPFLAGS+= -I${LOCALBASE}/include/nss -I${LOCALBASE}/include/nss/nss -nss_LDFLAGS+= -L${LOCALBASE}/lib/nss -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH} png_LIB_DEPENDS= png15:${PORTSDIR}/graphics/png png_MOZ_OPTIONS= --with-system-png=${LOCALBASE} @@ -590,7 +607,7 @@ sqlite_MOZ_OPTIONS= --enable-system-sqli vpx_LIB_DEPENDS= vpx:${PORTSDIR}/multimedia/libvpx vpx_MOZ_OPTIONS= --with-system-libvpx -#vpx_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libvpx +vpx_EXTRACT_AFTER_ARGS= --exclude mozilla*/media/libvpx zip_BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip zip_RUN_DEPENDS= ${zip_BUILD_DEPENDS} @@ -606,8 +623,6 @@ LIB_DEPENDS+= ${${dep}_LIB_DEPENDS} RUN_DEPENDS+= ${${dep}_RUN_DEPENDS} MOZ_OPTIONS+= ${${dep}_MOZ_OPTIONS} EXTRACT_AFTER_ARGS+= ${${dep}_EXTRACT_AFTER_ARGS} -CPPFLAGS+= ${${dep}_CPPFLAGS} -LDFLAGS+= ${${dep}_LDFLAGS} .endif .endfor @@ -617,7 +632,6 @@ MOZ_TOOLKIT?= cairo-gtk2 MOZ_OPTIONS+= --disable-tests \ --enable-chrome-format=${MOZ_CHROME} \ --enable-default-toolkit=${MOZ_TOOLKIT} \ - --with-default-mozilla-five-home=${PREFIX}/lib/${MOZILLA} \ --with-pthreads # Configure options for install .if !defined(MOZ_EXTENSIONS) @@ -690,7 +704,7 @@ MOZ_OPTIONS+= --enable-gconf MOZ_OPTIONS+= --disable-gconf .endif -.if ${PORT_OPTIONS:MGIO} +.if ${PORT_OPTIONS:MGIO} && ! ${PORT_OPTIONS:MQT4} MOZ_OPTIONS+= --enable-gio .else MOZ_OPTIONS+= --disable-gio @@ -818,6 +832,18 @@ gecko-post-patch: s|"%FULL_NSPR_LIBS%"|`nspr-config --libs`|g' \ ${MOZSRC}/build/unix/mozilla-config.in .endif +.if ${USE_MOZILLA:M-nspr} + @${ECHO_MSG} "===> Applying NSPR patches" + @for i in ${.CURDIR}/../../devel/nspr/files/patch-*; do \ + ${PATCH} ${PATCH_ARGS} -d ${MOZSRC}/nsprpub/build < $$i; \ + done +.endif +.if ${USE_MOZILLA:M-nss} + @${ECHO_MSG} "===> Applying NSS patches" + @for i in ${.CURDIR}/../../security/nss/files/patch-*; do \ + ${PATCH} ${PATCH_ARGS} -d ${MOZSRC}/security/nss < $$i; \ + done +.endif .for subdir in "" nsprpub js/src @if [ -f ${MOZSRC}/${subdir}/config/system-headers ] ; then \ for f in \ @@ -863,9 +889,19 @@ gecko-post-patch: ${MOZSRC}/build/unix/run-mozilla.sh @${REINPLACE_CMD} -e 's|/usr/local/netscape|${LOCALBASE}|g ; \ s|/usr/local/lib/netscape|${LOCALBASE}/lib|g' \ - ${MOZSRC}/xpcom/*/SpecialSystemDirectory.cpp + ${MOZSRC}/xpcom/io/SpecialSystemDirectory.cpp + @${REINPLACE_CMD} -e 's|/etc|${PREFIX}&|g' \ + ${MOZSRC}/xpcom/build/nsXPCOMPrivate.h + @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ + -e 's|mozilla/plugins|browser_plugins|g' \ + ${MOZSRC}/xpcom/io/nsAppFileLocationProvider.cpp \ + ${MOZSRC}/toolkit/xre/nsXREDirProvider.cpp @${GREP} -lr 'PR_LoadLibrary.*\.so\.[0-9]' ${WRKSRC} | ${XARGS} \ ${REINPLACE_CMD} -Ee '/PR_LoadLibrary/s/(\.so)\.[0-9]+/\1/' +.if ${MOZILLA} != "kompozer" + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + ${MOZSRC}/extensions/spellcheck/hunspell/src/mozHunspell.cpp +.endif # handles mozilla pis scripts. gecko-moz-pis-patch: Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 10 21:02:04 2012 (r305683) +++ head/UPDATING Wed Oct 10 21:13:06 2012 (r305684) @@ -6,6 +6,28 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20121010: + AFFECTS: users of mail/enigmail* + AUTHOR: gecko@FreeBSD.org + + Enigmail has been integrated into the Thunderbird / SeaMonkey build and + is available as option ENIGMAIL (enabled by default) + + Before upgrading Thunderbird or SeaMonkey delete all installed enigmail + ports by running e.g. + + # pkg_delete -f seamonkey-enigmail-1.4.3 thunderbird-esr-enigmail-1.4.3 \ + thunderbird-enigmail-1.4.3 + +20121010: + AFFECTS: users of www/firefox and www/seamonkey + AUTHOR: gecko@FreeBSD.org + + When using Firefox or SeaMonkey compiled with ALSA option ON it may + crash on assert in cubeb_refill_stream as described in ports/170473. + To fix either set media.use_cubeb -> false in about:config or rebuild + audio/alsa-plugins with ARIFF_OSS option disabled (default). + +20121010: AFFECTS: users of CURRENT (OSVERSION >= 1000017) AUTHOR: bapt@FreeBSD.org Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/Makefile Wed Oct 10 21:13:06 2012 (r305684) @@ -114,10 +114,6 @@ SUBDIR += emh SUBDIR += emh-xemacs21-mule SUBDIR += emil - SUBDIR += enigmail - SUBDIR += enigmail-seamonkey - SUBDIR += enigmail-thunderbird - SUBDIR += enigmail-thunderbird-esr SUBDIR += enma SUBDIR += eps SUBDIR += epstools Modified: head/mail/linux-thunderbird/Makefile ============================================================================== --- head/mail/linux-thunderbird/Makefile Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/linux-thunderbird/Makefile Wed Oct 10 21:13:06 2012 (r305684) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird -PORTVERSION= 10.0.7 +PORTVERSION= 10.0.8 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 Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/linux-thunderbird/distinfo Wed Oct 10 21:13:06 2012 (r305684) @@ -1,2 +1,2 @@ -SHA256 (thunderbird-10.0.7esr.tar.bz2) = 2b1fd99bcaa6b4288f86eba7bdf80fe467cde0cf2899a7ec106ba1e4fee0625c -SIZE (thunderbird-10.0.7esr.tar.bz2) = 18582085 +SHA256 (thunderbird-10.0.8esr.tar.bz2) = 7cf3daaf391864a265e8a0e17c49aee61fe63b3f92eba701f5a547216968330b +SIZE (thunderbird-10.0.8esr.tar.bz2) = 18579071 Modified: head/mail/thunderbird-esr-i18n/Makefile ============================================================================== --- head/mail/thunderbird-esr-i18n/Makefile Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/thunderbird-esr-i18n/Makefile Wed Oct 10 21:13:06 2012 (r305684) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird-i18n -PORTVERSION= 10.0.7 +PORTVERSION= 10.0.8 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 Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/thunderbird-esr-i18n/distinfo Wed Oct 10 21:13:06 2012 (r305684) @@ -1,84 +1,16 @@ -SHA256 (xpi/thunderbird-i18n-10.0.7/ar.xpi) = fe218825ba239511ebf490896fcd85416bf93867d12077afa2061087d9718e85 -SIZE (xpi/thunderbird-i18n-10.0.7/ar.xpi) = 441466 -SHA256 (xpi/thunderbird-i18n-10.0.7/br.xpi) = f560a951a8c6eb7ca89126cbb09a78f075379fc1af7ed8ff2f6bbe882030fc0d -SIZE (xpi/thunderbird-i18n-10.0.7/br.xpi) = 415527 -SHA256 (xpi/thunderbird-i18n-10.0.7/ca.xpi) = a8b00ba4f84055b54e03ae82a35836e6cd9c7d07a16b1940286b026aeb3e6be1 -SIZE (xpi/thunderbird-i18n-10.0.7/ca.xpi) = 416069 -SHA256 (xpi/thunderbird-i18n-10.0.7/cs.xpi) = 7cced93d103ae1775b064dc0c256494c3cda1971b4e4391f7f6f596c01df6171 -SIZE (xpi/thunderbird-i18n-10.0.7/cs.xpi) = 419419 -SHA256 (xpi/thunderbird-i18n-10.0.7/da.xpi) = ae3a98db9393ff020c6795b0fe3418258119299485569bd9d18210e8690b9781 -SIZE (xpi/thunderbird-i18n-10.0.7/da.xpi) = 363376 -SHA256 (xpi/thunderbird-i18n-10.0.7/de.xpi) = 8d94b8000182a52e93a3fcc04f4830f858bfbe95f1e08074f2b576b69468e61c -SIZE (xpi/thunderbird-i18n-10.0.7/de.xpi) = 418266 -SHA256 (xpi/thunderbird-i18n-10.0.7/en-GB.xpi) = 00a9e65eb3a1ca5194dbee9acf1fff84fc9ee3b1050dacbc42db04bf25532917 -SIZE (xpi/thunderbird-i18n-10.0.7/en-GB.xpi) = 391743 -SHA256 (xpi/thunderbird-i18n-10.0.7/en-US.xpi) = 410e503c93bc65fd26423f2afc440e42fbbaf2fb30d71a9ddb0bf992a464451d -SIZE (xpi/thunderbird-i18n-10.0.7/en-US.xpi) = 391242 -SHA256 (xpi/thunderbird-i18n-10.0.7/es-AR.xpi) = ca5002269cb602cac293da5e18c0c6d3273146afbd7a496deec2edccf8e87f16 -SIZE (xpi/thunderbird-i18n-10.0.7/es-AR.xpi) = 410726 -SHA256 (xpi/thunderbird-i18n-10.0.7/es-ES.xpi) = f3948a633ab98dc3ce233b5cd97eb84a2a40475336e8b4d31a9dd892832c2dda -SIZE (xpi/thunderbird-i18n-10.0.7/es-ES.xpi) = 355143 -SHA256 (xpi/thunderbird-i18n-10.0.7/et.xpi) = 6ce8c3a922a3ce944d4a125938081d032ce61776680e3d6f205a62f5f9441550 -SIZE (xpi/thunderbird-i18n-10.0.7/et.xpi) = 410724 -SHA256 (xpi/thunderbird-i18n-10.0.7/eu.xpi) = 4258ef8ceef02bcfd6e95f59198b67572e97023ac2558790d18acde5c5f7e2d1 -SIZE (xpi/thunderbird-i18n-10.0.7/eu.xpi) = 406387 -SHA256 (xpi/thunderbird-i18n-10.0.7/fi.xpi) = 2d2212368adac818ca5e2569f0d8c8a83f47ac8285584e7525de4add85fe3bd4 -SIZE (xpi/thunderbird-i18n-10.0.7/fi.xpi) = 411928 -SHA256 (xpi/thunderbird-i18n-10.0.7/fr.xpi) = 664b23ff9eeda1f9c7c073574e31bb33e8cb7ac3beeb888251f007fe87e97163 -SIZE (xpi/thunderbird-i18n-10.0.7/fr.xpi) = 414749 -SHA256 (xpi/thunderbird-i18n-10.0.7/fy-NL.xpi) = 62ae77f3a07becc2fb5444d0a39ff383c06690891b5560e24e9ba5b355bf42d6 -SIZE (xpi/thunderbird-i18n-10.0.7/fy-NL.xpi) = 413985 -SHA256 (xpi/thunderbird-i18n-10.0.7/ga-IE.xpi) = 1e1dc0f5d5603f70c08d0a42bf46f111e6881933f3622471f8311f635eac611c -SIZE (xpi/thunderbird-i18n-10.0.7/ga-IE.xpi) = 423261 -SHA256 (xpi/thunderbird-i18n-10.0.7/gd.xpi) = 85d57a2f5928b46a55b8fb94bddd0af18332a5c0c181f53f82db1bdb8fc8ca20 -SIZE (xpi/thunderbird-i18n-10.0.7/gd.xpi) = 425876 -SHA256 (xpi/thunderbird-i18n-10.0.7/gl.xpi) = 444afe24e82c6957e32d720fe786d2514a083af60401992631fb0cb5887704be -SIZE (xpi/thunderbird-i18n-10.0.7/gl.xpi) = 409229 -SHA256 (xpi/thunderbird-i18n-10.0.7/he.xpi) = 963b51119331019d01f6d3866a0919c900e6c478ba83a68d0b5c030706d38e32 -SIZE (xpi/thunderbird-i18n-10.0.7/he.xpi) = 439206 -SHA256 (xpi/thunderbird-i18n-10.0.7/hu.xpi) = 126ad900c30a335654f769bf59bcb56bfbefff21d865c0bf76bd0b3469036439 -SIZE (xpi/thunderbird-i18n-10.0.7/hu.xpi) = 426356 -SHA256 (xpi/thunderbird-i18n-10.0.7/is.xpi) = f3feeb6a0547f9ad1a9a80a155cdbcdd9c99fb7ada5f87e58e8611533058b031 -SIZE (xpi/thunderbird-i18n-10.0.7/is.xpi) = 412634 -SHA256 (xpi/thunderbird-i18n-10.0.7/it.xpi) = 7c02ef5f947e6fcaf75dd7aa08471bfc74700402d50cec5caaef51bdf72b4222 -SIZE (xpi/thunderbird-i18n-10.0.7/it.xpi) = 347634 -SHA256 (xpi/thunderbird-i18n-10.0.7/ja.xpi) = 90ca263411c5fe34a4ca09a32a26e4fcc59c697d5421f52a9bba1a491b5c72db -SIZE (xpi/thunderbird-i18n-10.0.7/ja.xpi) = 459031 -SHA256 (xpi/thunderbird-i18n-10.0.7/ko.xpi) = 4125d21e5490689a58cfa28d31bd82d3b26b08cbbcc57b70fc1944def3bc29bd -SIZE (xpi/thunderbird-i18n-10.0.7/ko.xpi) = 372016 -SHA256 (xpi/thunderbird-i18n-10.0.7/lt.xpi) = a69679f4fde548307cbc0da41cfe0d76f24d52cdc482fbb9fb35419886c2f135 -SIZE (xpi/thunderbird-i18n-10.0.7/lt.xpi) = 531022 -SHA256 (xpi/thunderbird-i18n-10.0.7/nb-NO.xpi) = d827073f2a1ef8d8789a02e99827dbfda5ed52aa8d10d1acfd3743ebc048d1a8 -SIZE (xpi/thunderbird-i18n-10.0.7/nb-NO.xpi) = 407729 -SHA256 (xpi/thunderbird-i18n-10.0.7/nl.xpi) = 063a650298c7eb33bf1e2317cd1d7cd88c5fa6070393de190eda4826108d0389 -SIZE (xpi/thunderbird-i18n-10.0.7/nl.xpi) = 407985 -SHA256 (xpi/thunderbird-i18n-10.0.7/nn-NO.xpi) = ece5f50981dd386346db2d0f2d75817d09389ae5c18ba43be1b075c823c06276 -SIZE (xpi/thunderbird-i18n-10.0.7/nn-NO.xpi) = 409459 -SHA256 (xpi/thunderbird-i18n-10.0.7/pl.xpi) = a45a9ebcea735a49960c3135a6b96a93f2e0186143c8b69df8b608cbfea52576 -SIZE (xpi/thunderbird-i18n-10.0.7/pl.xpi) = 393578 -SHA256 (xpi/thunderbird-i18n-10.0.7/pt-BR.xpi) = 8f616f2f40011ce1452282bde4527852ffc52f0a97a00e9139db2177a3e32549 -SIZE (xpi/thunderbird-i18n-10.0.7/pt-BR.xpi) = 417229 -SHA256 (xpi/thunderbird-i18n-10.0.7/pt-PT.xpi) = 6e92c09d7c4fecbcd9c5c54a44401ce571fab14216fa7f5a4c3484327cf3104e -SIZE (xpi/thunderbird-i18n-10.0.7/pt-PT.xpi) = 414266 -SHA256 (xpi/thunderbird-i18n-10.0.7/rm.xpi) = 52a6ecf1840e80b6bf4ac8bf0a7188c891f42606049f3fc1472fd107a0c1be77 -SIZE (xpi/thunderbird-i18n-10.0.7/rm.xpi) = 414709 -SHA256 (xpi/thunderbird-i18n-10.0.7/ru.xpi) = 80a78cb74462394387f85b7efbf94a5d1112419ba9ac891c3db8360624fa2f07 -SIZE (xpi/thunderbird-i18n-10.0.7/ru.xpi) = 411634 -SHA256 (xpi/thunderbird-i18n-10.0.7/si.xpi) = 97a8f425d2a37736235543e06338d8bde9b238d49b22b260fedd611fcb4a5fcc -SIZE (xpi/thunderbird-i18n-10.0.7/si.xpi) = 456607 -SHA256 (xpi/thunderbird-i18n-10.0.7/sk.xpi) = fec10c4f96780eb6c14f3d70e730cfb63f9cf285db4ec515c69160cd51e89926 -SIZE (xpi/thunderbird-i18n-10.0.7/sk.xpi) = 425029 -SHA256 (xpi/thunderbird-i18n-10.0.7/sl.xpi) = 58ef94c1badb82b5d7b236900d57290431bd72b7d8e0e63c43c46eca7a1f9e5a -SIZE (xpi/thunderbird-i18n-10.0.7/sl.xpi) = 410432 -SHA256 (xpi/thunderbird-i18n-10.0.7/sq.xpi) = 25e971347e1cc1fea876135eabb904f356396ade11f29a9a3151934d86c23ffc -SIZE (xpi/thunderbird-i18n-10.0.7/sq.xpi) = 360480 -SHA256 (xpi/thunderbird-i18n-10.0.7/sv-SE.xpi) = 66d4b30a2cafdfa9e384f301c0ba7f5999d9c4c3e8f035ed378909b23dbecf06 -SIZE (xpi/thunderbird-i18n-10.0.7/sv-SE.xpi) = 478281 -SHA256 (xpi/thunderbird-i18n-10.0.7/ta-LK.xpi) = f42cb0e4034c217dfdc7e86bd280805657374965037690f101a37bf8c0778575 -SIZE (xpi/thunderbird-i18n-10.0.7/ta-LK.xpi) = 475718 -SHA256 (xpi/thunderbird-i18n-10.0.7/tr.xpi) = 768c15d8bb6609655fecbc720ebde9834962730c82ff32f4d0dd6df1f880c046 -SIZE (xpi/thunderbird-i18n-10.0.7/tr.xpi) = 418210 -SHA256 (xpi/thunderbird-i18n-10.0.7/uk.xpi) = 00e09bd289a3a1bf569e4d13cb3f012052f8f36d4f852e1fe0b6a1d69d1ac1cf -SIZE (xpi/thunderbird-i18n-10.0.7/uk.xpi) = 463925 -SHA256 (xpi/thunderbird-i18n-10.0.7/zh-TW.xpi) = 3597c44d938c300eacab2de3a67f242a83d32b30ba9257f955740de480bad8b6 -SIZE (xpi/thunderbird-i18n-10.0.7/zh-TW.xpi) = 431827 +SHA256 (xpi/thunderbird-i18n-10.0.8/es-ES.xpi) = b2d651cf8e46979637b5e5c5a0ec95fb8d12e9f2f20c660504b0a509e42978cf +SIZE (xpi/thunderbird-i18n-10.0.8/es-ES.xpi) = 355142 +SHA256 (xpi/thunderbird-i18n-10.0.8/pt-BR.xpi) = d5604357b65b20a1e6acd4aa4eb9cb02154156b1836e90c4c18ac36fcbd3889f +SIZE (xpi/thunderbird-i18n-10.0.8/pt-BR.xpi) = 417229 +SHA256 (xpi/thunderbird-i18n-10.0.8/ru.xpi) = 675475afefed4ab8e8ac29bd74bd6b2619d403519db7a3b5159458a71e1138cc +SIZE (xpi/thunderbird-i18n-10.0.8/ru.xpi) = 411633 +SHA256 (xpi/thunderbird-i18n-10.0.8/ja.xpi) = 20c7b247db1b04b9c6299a13b348fdeaf320e683d6f36427cd468c30e4b102df +SIZE (xpi/thunderbird-i18n-10.0.8/ja.xpi) = 459030 +SHA256 (xpi/thunderbird-i18n-10.0.8/de.xpi) = 200c48b132653c1e72e580d73e471399cfd4e22ac3ef3f1df77c48840d0558f7 +SIZE (xpi/thunderbird-i18n-10.0.8/de.xpi) = 418265 +SHA256 (xpi/thunderbird-i18n-10.0.8/fr.xpi) = 4b00df0f3fa1092137b8735e86149183f7bcad9f97b3f36dd1f84aea430d1af6 +SIZE (xpi/thunderbird-i18n-10.0.8/fr.xpi) = 414748 +SHA256 (xpi/thunderbird-i18n-10.0.8/ko.xpi) = 3c60709ef8536f77be75b2659467d3e22ed327254c23e4812a5c756c59949ec0 +SIZE (xpi/thunderbird-i18n-10.0.8/ko.xpi) = 372015 +SHA256 (xpi/thunderbird-i18n-10.0.8/it.xpi) = 0bb9413db267342fbf8cea6abf180ab9aec174e98a1d59f3ed3b371f6ca54ae3 +SIZE (xpi/thunderbird-i18n-10.0.8/it.xpi) = 347632 Modified: head/mail/thunderbird-esr/Makefile ============================================================================== --- head/mail/thunderbird-esr/Makefile Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/thunderbird-esr/Makefile Wed Oct 10 21:13:06 2012 (r305684) @@ -6,21 +6,24 @@ # PORTNAME= thunderbird -DISTVERSION= 10.0.7 +DISTVERSION= 10.0.8 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${DISTVERSION}esr/source -DISTNAME= ${PORTNAME}-${DISTVERSION}esr.source +DISTFILES= ${PORTNAME}-${DISTVERSION}esr.source${EXTRACT_SUFX} +EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}esr.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above BUILD_DEPENDS= nspr>=4.8.8:${PORTSDIR}/devel/nspr \ - nss>=3.13.1:${PORTSDIR}/security/nss \ + nss>=3.13.6_1:${PORTSDIR}/security/nss \ sqlite3>=3.7.7.1:${PORTSDIR}/databases/sqlite3 \ cairo>=1.10.2_1,1:${PORTSDIR}/graphics/cairo \ unzip:${PORTSDIR}/archivers/unzip +EM_VERSION= 1.4.5 + USE_AUTOTOOLS= autoconf213:env LATEST_LINK= thunderbird-esr USE_GECKO= gecko @@ -51,7 +54,8 @@ PORTNAME_ICON_SRC= ${PREFIX}/lib/${MOZIL SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}/defaults/pref/${PORTNAME}.js MOZ_PIS_SCRIPTS=moz_pis_S50cleanhome -OPTIONS_DEFINE= LIGHTNING +OPTIONS_DEFINE= ENIGMAIL LIGHTNING +OPTIONS_DEFAULT=ENIGMAIL LIGHTNING .include "${.CURDIR}/../../www/firefox/Makefile.options" .include @@ -59,6 +63,8 @@ OPTIONS_DEFINE= LIGHTNING WRKSRC= ${WRKDIR}/comm-esr10 MOZSRC:= ${WRKSRC}/mozilla +XPI_LIBDIR= ${PREFIX}/lib/xpi + .if ${ARCH} == amd64 CONFIGURE_TARGET=x86_64-portbld-freebsd${OSREL} .elif ${ARCH} == powerpc64 @@ -78,12 +84,25 @@ BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/y CFLAGS+= -Wno-return-type-c-linkage .endif +.if ${PORT_OPTIONS:MENIGMAIL} +MASTER_SITES+= http://www.enigmail.net/download/source/:enigmail +DISTFILES+= ${EM_DISTFILE}:enigmail +RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg +EM_DISTNAME= enigmail-${EM_VERSION} +EM_DISTFILE= ${EM_DISTNAME}.tar.gz +EM_XPI_FILE= ${MOZ_OBJDIR}/mozilla/dist/bin/${EM_DISTNAME}-freebsd-${ARCH:S/amd64/x86_64/}.xpi +EM_ORIG_ID= {847b3a00-7ab1-11d4-8f02-006008948af5} +EM_ID= ${PORTNAME}@mozilla-enigmail.org +EM_ID_RFILES= ${XPI_LIBDIR}/${EM_ID}/install.rdf \ + ${XPI_LIBDIR}/${EM_ID}/components/enigmail.js \ + ${XPI_LIBDIR}/${EM_ID}/modules/enigmailCommon.jsm +.endif + .if ${PORT_OPTIONS:MLIGHTNING} MOZ_OPTIONS+= --enable-calendar MOZ_MK_OPTIONS+= MOZ_CO_PROJECT=calendar LIGHTNING_DIR= share/lightning XPI_FILE= ${MOZ_OBJDIR}/mozilla/dist/xpi-stage/lightning.xpi -XPI_LIBDIR= ${PREFIX}/lib/xpi XPI_ORIG_ID= {e2fda1a4-762b-4020-b5ad-a41df1933103} XPI_ID= lightning@thunderbird.mozilla.org .else @@ -93,16 +112,38 @@ MOZ_OPTIONS+= --disable-calendar post-extract: @${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/thunderbird.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop +.if ${PORT_OPTIONS:MENIGMAIL} + @${TAR} -xf ${_DISTDIR}/${EM_DISTFILE} \ + -C ${WRKSRC}/mailnews/extensions +.endif post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/mail/app/nsMailApp.cpp +.if ${PORT_OPTIONS:MENIGMAIL} + @${REINPLACE_CMD} -e 's,/usr/bin/perl,${PERL},' \ + ${WRKSRC}/mailnews/extensions/enigmail/makemake + @${REINPLACE_CMD} -e '/^xpi/s/$$/ all/' \ + -e '/^XPI_MODULE_VERS/s/= .*/= ${EM_VERSION}/' \ + ${WRKSRC}/mailnews/extensions/enigmail/Makefile.in + @${REINPLACE_CMD} -e '/em:version/s,>[^<]*<,>${EM_VERSION}<,' \ + -e '/em:maxVersion/s/pre//' \ + ${WRKSRC}/mailnews/extensions/enigmail/package/install.rdf +.endif pre-configure: (cd ${WRKSRC} && ${AUTOCONF}) (cd ${MOZSRC} && ${AUTOCONF}) (cd ${MOZSRC}/js/src/ && ${AUTOCONF}) +.if ${PORT_OPTIONS:MENIGMAIL} +post-build: + cd ${WRKSRC}/mailnews/extensions/enigmail && \ + ./makemake -r -o ${MOZ_OBJDIR} + ${SETENV} ${MAKE_ENV} ${GMAKE} ${_MAKE_JOBS} all xpi \ + -C ${MOZ_OBJDIR}/mailnews/extensions/enigmail +.endif + port-pre-install: ${MKDIR} ${FAKEDIR}/lib/${PORTNAME}/defaults @@ -130,7 +171,25 @@ post-install: @${ECHO_CMD} '@unexec ${RM} -f ${LOCALBASE}/lib/thunderbird/extensions/${XPI_ID}' >> ${TMPPLIST} @(cd ${XPI_LIBDIR}; ${FIND} ${XPI_ID} -type d) | ${SORT} -r | \ ${SED} -ne 's,^,@dirrm lib/xpi/,p' >> ${TMPPLIST} - @${ECHO_CMD} '@unexec rmdir %D/lib/xpi/symlinks/thunderbird 2>/dev/null || true' >> ${TMPPLIST} +.endif +.if ${PORT_OPTIONS:MENIGMAIL} + @${MKDIR} ${XPI_LIBDIR}/${EM_ID} ${XPI_LIBDIR}/symlinks/${PORTNAME} + @(cd ${XPI_LIBDIR}/${EM_ID}; ${TAR} -xf ${EM_XPI_FILE}) + @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${XPI_LIBDIR}/${EM_ID} + @${REINPLACE_CMD} -i "" "s/${EM_ORIG_ID}/${EM_ID}/" ${EM_ID_RFILES} + @${CHMOD} -R a+rX,go-w ${XPI_LIBDIR}/${EM_ID} + @${LN} -sf ${XPI_LIBDIR}/${EM_ID} ${LOCALBASE}/lib/${PORTNAME}/extensions 2>/dev/null || true + @${LN} -sf ${XPI_LIBDIR}/${EM_ID} ${XPI_LIBDIR}/symlinks/${PORTNAME} 2>/dev/null || true + @(cd ${XPI_LIBDIR}; ${FIND} ${EM_ID} -not -type d) | ${SORT} | \ + ${SED} -ne 's,^,lib/xpi/,p' >> ${TMPPLIST} + @${ECHO_CMD} 'lib/xpi/symlinks/${PORTNAME}/${EM_ID}' >> ${TMPPLIST} + @${ECHO_CMD} '@exec ${LN} -sf %D/lib/xpi/${EM_ID} ${LOCALBASE}/lib/${PORTNAME}/extensions 2>/dev/null || true' >> ${TMPPLIST} + @${ECHO_CMD} '@unexec ${RM} -f ${LOCALBASE}/lib/${PORTNAME}/extensions/${EM_ID}' >> ${TMPPLIST} + @(cd ${XPI_LIBDIR}; ${FIND} ${EM_ID} -type d) | ${SORT} -r | \ + ${SED} -ne 's,^,@dirrm lib/xpi/,p' >> ${TMPPLIST} +.endif +.if ${PORT_OPTIONS:MLIGHTNING} || ${PORT_OPTIONS:MENIGMAIL} + @${ECHO_CMD} '@unexec rmdir %D/lib/xpi/symlinks/${PORTNAME} 2>/dev/null || true' >> ${TMPPLIST} @${ECHO_CMD} '@unexec rmdir %D/lib/xpi/symlinks 2>/dev/null || true' >> ${TMPPLIST} @${ECHO_CMD} '@unexec rmdir %D/lib/xpi 2>/dev/null || true' >> ${TMPPLIST} .endif Modified: head/mail/thunderbird-esr/distinfo ============================================================================== --- head/mail/thunderbird-esr/distinfo Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/thunderbird-esr/distinfo Wed Oct 10 21:13:06 2012 (r305684) @@ -1,2 +1,4 @@ -SHA256 (thunderbird-10.0.7esr.source.tar.bz2) = 994ca16a01e4446747b54b1b5fb2bda11aec2c92359571bffa0f6c8e45f27c35 -SIZE (thunderbird-10.0.7esr.source.tar.bz2) = 97590919 +SHA256 (thunderbird-10.0.8esr.source.tar.bz2) = 9575f9f97fab48d36b3a24040db83fb9b92de913b3689e9910afaf39a486fbbd +SIZE (thunderbird-10.0.8esr.source.tar.bz2) = 97594384 +SHA256 (enigmail-1.4.5.tar.gz) = fa59491fba21de9414a003933349074a8ec1833a1d64cac9f0a9f7020ed6c020 +SIZE (enigmail-1.4.5.tar.gz) = 1269207 Modified: head/mail/thunderbird-esr/files/patch-bug543241 ============================================================================== --- head/mail/thunderbird-esr/files/patch-bug543241 Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/thunderbird-esr/files/patch-bug543241 Wed Oct 10 21:13:06 2012 (r305684) @@ -1,5 +1,16 @@ --- ./mozilla/xpcom/threads/nsThreadManager.cpp.orig 2011-08-25 02:37:45.000000000 +0200 +++ ./mozilla/xpcom/threads/nsThreadManager.cpp 2011-08-28 17:14:14.000000000 +0200 +@@ -12,6 +12,10 @@ + #include "nsAutoPtr.h" + #include "nsCycleCollectorUtils.h" + ++#if defined(__FreeBSD__) ++#include ++#endif ++ + using namespace mozilla; + + #ifdef XP_WIN @@ -89,6 +89,11 @@ nsresult nsThreadManager::Init() Modified: head/mail/thunderbird-esr/files/patch-bug753046 ============================================================================== --- head/mail/thunderbird-esr/files/patch-bug753046 Wed Oct 10 21:02:04 2012 (r305683) +++ head/mail/thunderbird-esr/files/patch-bug753046 Wed Oct 10 21:13:06 2012 (r305684) @@ -451,7 +451,7 @@ $NetBSD: patch-ipc_chromium_src_base_pla --- mozilla/ipc/chromium/src/base/platform_thread.h.orig 2011-12-20 23:28:19.000000000 +0000 +++ mozilla/ipc/chromium/src/base/platform_thread.h -@@ -22,9 +22,11 @@ typedef void* PlatformThreadHandle; // HANDLE +@@ -22,9 +22,12 @@ typedef void* PlatformThreadHandle; // HANDLE #elif defined(OS_POSIX) #include typedef pthread_t PlatformThreadHandle; @@ -460,6 +460,7 @@ $NetBSD: patch-ipc_chromium_src_base_pla #include typedef pid_t PlatformThreadId; +#elif defined(OS_BSD) ++#include +typedef lwpid_t PlatformThreadId; #elif defined(OS_MACOSX) #include Added: head/mail/thunderbird-esr/files/patch-bug788108 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird-esr/files/patch-bug788108 Wed Oct 10 21:13:06 2012 (r305684) @@ -0,0 +1,20 @@ +--- mozilla/content/base/public/nsContentUtils.h~ ++++ mozilla/content/base/public/nsContentUtils.h +@@ -18,17 +18,6 @@ + #include + #endif + +-//A trick to handle IEEE floating point exceptions on FreeBSD - E.D. +-#ifdef __FreeBSD__ +-#include +-#ifdef __alpha__ +-static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP; +-#else +-static fp_except_t allmask = FP_X_INV|FP_X_OFL|FP_X_UFL|FP_X_DZ|FP_X_IMP|FP_X_DNML; +-#endif +-static fp_except_t oldmask = fpsetmask(~allmask); +-#endif +- + #include "nsAString.h" + #include "nsIStatefulFrame.h" + #include "nsNodeInfoManager.h" Added: head/mail/thunderbird-esr/files/patch-bug789436 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird-esr/files/patch-bug789436 Wed Oct 10 21:13:06 2012 (r305684) @@ -0,0 +1,27 @@ +--- mozilla/toolkit/xre/nsAppRunner.cpp~ ++++ mozilla/toolkit/xre/nsAppRunner.cpp +@@ -1388,11 +1388,6 @@ static int MSCRTReportHook( int aReportType, char *aMessage, int *oReturnValue) + + #endif + +-#if defined(FREEBSD) +-// pick up fpsetmask prototype. +-#include +-#endif +- + static inline void + DumpVersion() + { +@@ -4136,12 +4131,5 @@ SetupErrorHandling(const char* progname) + + // Unbuffer stdout, needed for tinderbox tests. + setbuf(stdout, 0); +- +-#if defined(FREEBSD) +- // Disable all SIGFPE's on FreeBSD, as it has non-IEEE-conformant fp +- // trap behavior that trips up on floating-point tests performed by +- // the JS engine. See bugzilla bug 9967 details. +- fpsetmask(0); +-#endif + } + Added: head/mail/thunderbird-esr/files/patch-bug789693 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird-esr/files/patch-bug789693 Wed Oct 10 21:13:06 2012 (r305684) @@ -0,0 +1,108 @@ +--- mozilla/toolkit/components/startup/nsAppStartup.cpp ++++ mozilla/toolkit/components/startup/nsAppStartup.cpp +@@ -50,17 +50,40 @@ + #include + #endif + +-#ifdef XP_MACOSX ++#if defined(XP_MACOSX) || defined(__DragonFly__) || defined(__FreeBSD__) \ ++ || defined(__NetBSD__) || defined(__OpenBSD__) ++#include + #include + #endif + +-#ifdef __OpenBSD__ +-#include +-#include ++#if defined(__DragonFly__) || defined(__FreeBSD__) ++#include + #endif + + #include "mozilla/Telemetry.h" + ++#if defined(__NetBSD__) ++#undef KERN_PROC ++#define KERN_PROC KERN_PROC2 ++#define KINFO_PROC struct kinfo_proc2 ++#else ++#define KINFO_PROC struct kinfo_proc ++#endif ++ ++#if defined(XP_MACOSX) ++#define KP_START_SEC kp_proc.p_un.__p_starttime.tv_sec ++#define KP_START_USEC kp_proc.p_un.__p_starttime.tv_usec ++#elif defined(__DragonFly__) ++#define KP_START_SEC kp_start.tv_sec ++#define KP_START_USEC kp_start.tv_usec ++#elif defined(__FreeBSD__) ++#define KP_START_SEC ki_start.tv_sec ++#define KP_START_USEC ki_start.tv_usec ++#else ++#define KP_START_SEC p_ustart_sec ++#define KP_START_USEC p_ustart_usec ++#endif ++ + static NS_DEFINE_CID(kAppShellCID, NS_APPSHELL_CID); + + using namespace mozilla; +@@ -836,42 +859,30 @@ CalculateProcessCreationTimestamp() + #endif + return timestamp; + } +-#elif defined(XP_MACOSX) ++#elif defined(XP_MACOSX) || defined(__DragonFly__) || defined(__FreeBSD__) \ ++ || defined(__NetBSD__) || defined(__OpenBSD__) + static PRTime + CalculateProcessCreationTimestamp() + { +- int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, getpid() }; +- size_t buffer_size; +- if (sysctl(mib, 4, NULL, &buffer_size, NULL, 0)) +- return 0; ++ int mib[] = { ++ CTL_KERN, ++ KERN_PROC, ++ KERN_PROC_PID, ++ getpid(), ++#if defined(__NetBSD__) || defined(__OpenBSD__) ++ sizeof(KINFO_PROC), ++ 1, ++#endif ++ }; ++ u_int miblen = sizeof(mib) / sizeof(mib[0]); + +- struct kinfo_proc *proc = (kinfo_proc*) malloc(buffer_size); +- if (sysctl(mib, 4, proc, &buffer_size, NULL, 0)) { +- free(proc); +- return 0; +- } +- PRTime starttime = static_cast(proc->kp_proc.p_un.__p_starttime.tv_sec) * PR_USEC_PER_SEC; +- starttime += proc->kp_proc.p_un.__p_starttime.tv_usec; +- free(proc); +- return starttime; +-} +-#elif defined(__OpenBSD__) +-static PRTime +-CalculateProcessCreationTimestamp() +-{ +- int mib[6] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, getpid(), sizeof(struct kinfo_proc), 1 }; +- size_t buffer_size; +- if (sysctl(mib, 6, NULL, &buffer_size, NULL, 0)) ++ KINFO_PROC proc; ++ size_t buffer_size = sizeof(proc); ++ if (sysctl(mib, miblen, &proc, &buffer_size, NULL, 0)) + return 0; + +- struct kinfo_proc *proc = (struct kinfo_proc*) malloc(buffer_size); +- if (sysctl(mib, 6, proc, &buffer_size, NULL, 0)) { +- free(proc); +- return 0; +- } +- PRTime starttime = static_cast(proc->p_ustart_sec) * PR_USEC_PER_SEC; +- starttime += proc->p_ustart_usec; +- free(proc); ++ PRTime starttime = static_cast(proc.KP_START_SEC) * PR_USEC_PER_SEC; ++ starttime += proc.KP_START_USEC; + return starttime; + } + #else Added: head/mail/thunderbird-esr/files/patch-bug791305 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird-esr/files/patch-bug791305 Wed Oct 10 21:13:06 2012 (r305684) @@ -0,0 +1,107 @@ +commit c269a16 +Author: Jeff Muizelaar +Date: Fri Sep 14 15:54:55 2012 -0400 + + Bug 791305. Use libjpeg's color conversion code instead of our own. r=joe,r=khuey + + libjpeg-turbo supports converting directly to a format compatible with cairo's + FORMAT_RGB24. Use that instead of our own handcoded function. This also gives + us SSE2 and NEON version of this function. + + --HG-- + extra : rebase_source : 18f48925f023a33ec2a097d4f4e5cc2ab40be1e9 +--- + configure.in | 6 +- + image/decoders/nsJPEGDecoder.cpp | 311 ++------------------------------------- + 2 files changed, 20 insertions(+), 297 deletions(-) + +diff --git mozilla/image/decoders/nsJPEGDecoder.cpp mozilla/image/decoders/nsJPEGDecoder.cpp +index c1fb515..1d2a259 100644 +--- mozilla/image/decoders/nsJPEGDecoder.cpp ++++ mozilla/image/decoders/nsJPEGDecoder.cpp +@@ -22,6 +22,13 @@ + extern "C" { + #include "iccjpeg.h" + ++#ifdef JCS_EXTENSIONS ++#if defined(IS_BIG_ENDIAN) ++#define MOZ_JCS_EXT_NATIVE_ENDIAN_XRGB JCS_EXT_XRGB ++#else ++#define MOZ_JCS_EXT_NATIVE_ENDIAN_XRGB JCS_EXT_BGRX ++#endif ++#else + /* Colorspace conversion (copied from jpegint.h) */ + struct jpeg_color_deconverter { + JMETHOD(void, start_pass, (j_decompress_ptr cinfo)); +@@ -34,6 +41,7 @@ METHODDEF(void) + ycc_rgb_convert_argb (j_decompress_ptr cinfo, + JSAMPIMAGE input_buf, JDIMENSION input_row, + JSAMPARRAY output_buf, int num_rows); ++#endif + } + + static void cmyk_convert_rgb(JSAMPROW row, JDIMENSION width); +@@ -329,7 +340,18 @@ nsJPEGDecoder::WriteInternal(const char *aBuffer, PRUint32 aCount) + case JCS_GRAYSCALE: + case JCS_RGB: + case JCS_YCbCr: ++#ifdef JCS_EXTENSIONS ++ // if we're not color managing we can decode directly to ++ // MOZ_JCS_EXT_NATIVE_ENDIAN_XRGB ++ if (mCMSMode != eCMSMode_All) { ++ mInfo.out_color_space = MOZ_JCS_EXT_NATIVE_ENDIAN_XRGB; ++ mInfo.out_color_components = 4; ++ } else { ++ mInfo.out_color_space = JCS_RGB; ++ } ++#else + mInfo.out_color_space = JCS_RGB; ++#endif + break; + case JCS_CMYK: + case JCS_YCCK: +@@ -397,6 +419,7 @@ nsJPEGDecoder::WriteInternal(const char *aBuffer, PRUint32 aCount) + return; /* I/O suspension */ + } + ++#ifndef JCS_EXTENSIONS + /* Force to use our YCbCr to Packed RGB converter when possible */ + if (!mTransform && (mCMSMode != eCMSMode_All) && + mInfo.jpeg_color_space == JCS_YCbCr && mInfo.out_color_space == JCS_RGB) { +@@ -404,6 +427,7 @@ nsJPEGDecoder::WriteInternal(const char *aBuffer, PRUint32 aCount) + mInfo.out_color_components = 4; /* Packed ARGB pixels are always 4 bytes...*/ + mInfo.cconvert->color_convert = ycc_rgb_convert_argb; + } ++#endif + + /* If this is a progressive JPEG ... */ + mState = mInfo.buffered_image ? JPEG_DECOMPRESS_PROGRESSIVE : JPEG_DECOMPRESS_SEQUENTIAL; +@@ -542,7 +566,11 @@ nsJPEGDecoder::OutputScanlines(bool* suspend) + PRUint32 *imageRow = ((PRUint32*)mImageData) + + (mInfo.output_scanline * mInfo.output_width); + ++#ifdef JCS_EXTENSIONS ++ if (mInfo.out_color_space == MOZ_JCS_EXT_NATIVE_ENDIAN_XRGB) { ++#else + if (mInfo.cconvert->color_convert == ycc_rgb_convert_argb) { ++#endif + /* Special case: scanline will be directly converted into packed ARGB */ + if (jpeg_read_scanlines(&mInfo, (JSAMPARRAY)&imageRow, 1) != 1) { + *suspend = true; /* suspend */ +@@ -858,6 +887,7 @@ term_source (j_decompress_ptr jd) + } // namespace mozilla + + ++#ifndef JCS_EXTENSIONS + /**************** YCbCr -> Cairo's RGB24/ARGB32 conversion: most common case **************/ + + /* +@@ -1130,7 +1160,8 @@ ycc_rgb_convert_argb (j_decompress_ptr cinfo, + } + } + } ++#endif + + + /**************** Inverted CMYK -> RGB conversion **************/ + /* Added: head/mail/thunderbird-esr/files/patch-bug791366 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird-esr/files/patch-bug791366 Wed Oct 10 21:13:06 2012 (r305684) @@ -0,0 +1,124 @@ +diff --git mozilla/xpcom/base/nsMemoryReporterManager.cpp mozilla/xpcom/base/nsMemoryReporterManager.cpp +index a9aff58..674e757 100644 +--- mozilla/xpcom/base/nsMemoryReporterManager.cpp ++++ mozilla/xpcom/base/nsMemoryReporterManager.cpp +@@ -64,7 +64,7 @@ extern void jemalloc_stats(jemalloc_stat + # endif // XP_LINUX + #endif // MOZ_MEMORY + +-#if defined(XP_LINUX) || defined(XP_MACOSX) ++#ifdef XP_UNIX + + #include + #include +@@ -122,6 +122,78 @@ static PRInt64 GetResident() + return GetProcSelfStatmField(1); + } + ++#elif defined(__DragonFly__) || defined(__FreeBSD__) \ ++ || defined(__NetBSD__) || defined(__OpenBSD__) ++ ++#include ++#include ++#if defined(__DragonFly__) || defined(__FreeBSD__) ++#include ++#endif ++ ++#include ++ ++#if defined(__NetBSD__) ++#undef KERN_PROC ++#define KERN_PROC KERN_PROC2 ++#define KINFO_PROC struct kinfo_proc2 ++#else ++#define KINFO_PROC struct kinfo_proc ++#endif ++ ++#if defined(__DragonFly__) ++#define KP_SIZE(kp) (kp.kp_vm_map_size) ++#define KP_RSS(kp) (kp.kp_vm_rssize * getpagesize()) ++#elif defined(__FreeBSD__) ++#define KP_SIZE(kp) (kp.ki_size) ++#define KP_RSS(kp) (kp.ki_rssize * getpagesize()) ++#elif defined(__NetBSD__) ++#define KP_SIZE(kp) (kp.p_vm_msize * getpagesize()) ++#define KP_RSS(kp) (kp.p_vm_rssize * getpagesize()) ++#elif defined(__OpenBSD__) ++#define KP_SIZE(kp) ((kp.p_vm_dsize + kp.p_vm_ssize \ ++ + kp.p_vm_tsize) * getpagesize()) ++#define KP_RSS(kp) (kp.p_vm_rssize * getpagesize()) ++#endif ++ ++static nsresult GetKinfoProcSelf(KINFO_PROC *proc) ++{ ++ int mib[] = { ++ CTL_KERN, ++ KERN_PROC, ++ KERN_PROC_PID, ++ getpid(), ++#if defined(__NetBSD__) || defined(__OpenBSD__) ++ sizeof(KINFO_PROC), ++ 1, ++#endif ++ }; ++ u_int miblen = sizeof(mib) / sizeof(mib[0]); ++ size_t size = sizeof(KINFO_PROC); ++ if (sysctl(mib, miblen, proc, &size, NULL, 0)) ++ return NS_ERROR_FAILURE; ++ ++ return NS_OK; ++} ++ ++static PRInt64 GetVsize() ++{ ++ KINFO_PROC proc; ++ if (NS_SUCCEEDED(GetKinfoProcSelf(&proc))) ++ return KP_SIZE(proc); ++ ++ return -1; ++} ++ ++static PRInt64 GetResident() ++{ ++ KINFO_PROC proc; ++ if (NS_SUCCEEDED(GetKinfoProcSelf(&proc))) ++ return KP_RSS(proc); ++ ++ return -1; ++} ++ + #elif defined(XP_MACOSX) + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:22:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1419D758; Wed, 10 Oct 2012 21:22:48 +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 F19938FC19; Wed, 10 Oct 2012 21:22:47 +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 q9ALMl2X004305; Wed, 10 Oct 2012 21:22:47 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ALMlcj004303; Wed, 10 Oct 2012 21:22:47 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210102122.q9ALMlcj004303@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 21:22:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305685 - head/irc/sirc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:22:48 -0000 Author: bdrewery Date: Wed Oct 10 21:22:47 2012 New Revision: 305685 URL: http://svn.freebsd.org/changeset/ports/305685 Log: - Add new mirror - Convert to new options framework - Remove use of bsd.port.pre.mk Feature safe: yes Modified: head/irc/sirc/Makefile Modified: head/irc/sirc/Makefile ============================================================================== --- head/irc/sirc/Makefile Wed Oct 10 21:13:06 2012 (r305684) +++ head/irc/sirc/Makefile Wed Oct 10 21:22:47 2012 (r305685) @@ -4,8 +4,10 @@ PORTNAME= sirc PORTVERSION= 2.211 PORTREVISION= 1 CATEGORIES= irc ipv6 -#MASTER_SITES= http://www.iagora.com/~espel/sirc/ \ -# http://www.iagora.com/~espel/sirc/scripts/:s \ +MASTER_SITES= LOCAL/bdrewery/${PORTNAME} \ + LOCAL/bdrewery/${PORTNAME}/scripts:s \ + http://www.iagora.com/~espel/sirc/ \ + http://www.iagora.com/~espel/sirc/scripts/:s \ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} DIST_SUBDIR= sirc EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -15,9 +17,11 @@ COMMENT= Small (150k), fast, perl-based USE_PERL5= yes -OPTIONS= IPV6 "Support for IPv6 transport" on \ - SIRC_SCRIPTS "Additional scripts for the client" on \ - SOCKS "Support for IRC'ing through a SOCKS proxy" off +OPTIONS_DEFINE= IPV6 SIRC_SCRIPTS SOCKS +OPTIONS_DEFAULT=IPV6 SIRC_SCRIPTS +IPV6_DESC= Support for IPv6 transport +SIRC_SCRIPTS_DESC= Additional scripts for the clien +SOCKS_DESC= Support for IRCing through a SOCKS proxy SUB_FILES= sirc @@ -25,16 +29,16 @@ MAN1= ssfe.1 sirc.1 PORTDOCS= ChangeLog PROGRAMMING README -.include +.include -.if !defined(WITHOUT_IPV6) +.if ${PORT_OPTIONS:MIPV6} RUN_DEPENDS= p5-IO-Socket-INET6>0:${PORTSDIR}/net/p5-IO-Socket-INET6 EXTRA_PATCHES= ${PATCHDIR}/dsirc-ipv6 .else EXTRA_PATCHES= ${PATCHDIR}/dsirc-minimal .endif -.if !defined(WITHOUT_SIRC_SCRIPTS) +.if ${PORT_OPTIONS:MSIRC_SCRIPTS} DISTFILES+= adcc.pl:s akickban.pl:s avoice.pl:s country.pl:s finger.pl:s \ ftp.pl:s howl.pl:s lastlog.pl:s nocolor.pl:s patattack.pl:s \ prefix.pl:s quiet.pl:s quit.pl:s thx.pl:s www.pl:s yiff.pl:s @@ -43,7 +47,7 @@ PLIST_SUB+= SCRIPTS="" PLIST_SUB+= SCRIPTS="@comment " .endif -.if defined(WITH_SOCKS) +.if ${PORT_OPTIONS:MSOCKS} PKGMESSAGE= ${FILESDIR}/pkg-message-socks PLIST_SUB+= SOCKS="" .else @@ -69,29 +73,29 @@ do-install: ${INSTALL_SCRIPT} ${WRKDIR}/sirc ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/ssfe.1 ${PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/sirc.1 ${PREFIX}/man/man1 -.if !defined(WITHOUT_SIRC_SCRIPTS) +.if ${PORT_OPTIONS:MSIRC_SCRIPTS} .for file in adcc.pl akickban.pl avoice.pl country.pl finger.pl ftp.pl \ howl.pl lastlog.pl nocolor.pl patattack.pl prefix.pl quiet.pl \ quit.pl thx.pl www.pl yiff.pl ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${file} ${SIRCLIBDIR} .endfor .endif -.if defined(WITH_SOCKS) +.if ${PORT_OPTIONS:MSOCKS} ${INSTALL_DATA} ${WRKSRC}/socks.pl ${SIRCLIBDIR} .endif -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} .for file in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor -.if defined(WITH_SOCKS) +.if ${PORT_OPTIONS:MSOCKS} ${INSTALL_DATA} ${WRKSRC}/README.socks ${DOCSDIR} .endif .endif post-install: -.if defined(WITH_SOCKS) +.if ${PORT_OPTIONS:MSOCKS} @${CAT} ${PKGMESSAGE} .endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:22:51 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84AED761; Wed, 10 Oct 2012 21:22:51 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6EC598FC16; Wed, 10 Oct 2012 21:22: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 q9ALMpDI004378; Wed, 10 Oct 2012 21:22:51 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ALMpWV004375; Wed, 10 Oct 2012 21:22:51 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210102122.q9ALMpWV004375@svn.freebsd.org> From: TAKATSU Tomonari Date: Wed, 10 Oct 2012 21:22:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305686 - head/japanese/rubygem-jpmobile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:22:51 -0000 Author: tota Date: Wed Oct 10 21:22:50 2012 New Revision: 305686 URL: http://svn.freebsd.org/changeset/ports/305686 Log: - Update to 3.0.6 - Convert new Makefile header Feature safe: yes Modified: head/japanese/rubygem-jpmobile/Makefile head/japanese/rubygem-jpmobile/distinfo Modified: head/japanese/rubygem-jpmobile/Makefile ============================================================================== --- head/japanese/rubygem-jpmobile/Makefile Wed Oct 10 21:22:47 2012 (r305685) +++ head/japanese/rubygem-jpmobile/Makefile Wed Oct 10 21:22:50 2012 (r305686) @@ -1,12 +1,8 @@ -# New ports collection makefile for: rubygem-jpmobile -# Date created: 2008-02-06 -# Whom: TAKATSU Tomonari -# +# Created by: TAKATSU Tomonari # $FreeBSD$ -# PORTNAME= jpmobile -PORTVERSION= 3.0.5 +PORTVERSION= 3.0.6 CATEGORIES= japanese www rubygems MASTER_SITES= RG Modified: head/japanese/rubygem-jpmobile/distinfo ============================================================================== --- head/japanese/rubygem-jpmobile/distinfo Wed Oct 10 21:22:47 2012 (r305685) +++ head/japanese/rubygem-jpmobile/distinfo Wed Oct 10 21:22:50 2012 (r305686) @@ -1,2 +1,2 @@ -SHA256 (rubygem/jpmobile-3.0.5.gem) = d85b8b1445671a34d4c488f0f9f3b0c410c188c2533d31ed945d58ad8afb3988 -SIZE (rubygem/jpmobile-3.0.5.gem) = 377856 +SHA256 (rubygem/jpmobile-3.0.6.gem) = 9fe56174bb209bf26d143bb184f1a95bd8783630b4255539c246854916d5f1cf +SIZE (rubygem/jpmobile-3.0.6.gem) = 381952 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:31:37 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 203F01A2; Wed, 10 Oct 2012 21:31:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 07A748FC18; Wed, 10 Oct 2012 21:31: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 q9ALVan9005790; Wed, 10 Oct 2012 21:31:36 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ALVaxG005787; Wed, 10 Oct 2012 21:31:36 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210102131.q9ALVaxG005787@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Wed, 10 Oct 2012 21:31:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305687 - head/www/zenphoto X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:31:37 -0000 Author: sunpoet Date: Wed Oct 10 21:31:36 2012 New Revision: 305687 URL: http://svn.freebsd.org/changeset/ports/305687 Log: - Update to 1.4.3.3 - Cleanup Makefile header - Add maintainer section Changes: http://www.zenphoto.org/news/category/changelog Feature safe: yes Modified: head/www/zenphoto/Makefile (contents, props changed) head/www/zenphoto/distinfo (contents, props changed) head/www/zenphoto/pkg-plist (contents, props changed) Modified: head/www/zenphoto/Makefile ============================================================================== --- head/www/zenphoto/Makefile Wed Oct 10 21:22:50 2012 (r305686) +++ head/www/zenphoto/Makefile Wed Oct 10 21:31:36 2012 (r305687) @@ -1,12 +1,8 @@ -# New ports collection makefile for: zenphoto -# Date created: 27 December 2007 -# Whom: Philippe Audeoud -# +# Created by: Philippe Audeoud # $FreeBSD$ -# PORTNAME= zenphoto -PORTVERSION= 1.4.1.6 +PORTVERSION= 1.4.3.3 CATEGORIES= www MASTER_SITES= GOOGLE_CODE \ http://www.zenphoto.org/files/ @@ -26,14 +22,15 @@ PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message pkg-deinstall SUB_LIST= PORTNAME=${PORTNAME} +EMPTYDIRS= albums cache cache_html/rss plugins/flag_thumbnail plugins/flvplayer plugins/gd_fonts plugins/imagick_fonts plugins/watermarks uploaded + post-extract: @${RM} ${WRKSRC}/doc_files/License.txt ${WRKSRC}/doc_files/README.html ${WRKSRC}/zp-core/Zenphoto.package -.for i in albums cache cache_html/rss plugins/flag_thumbnail plugins/flvplayer \ - plugins/gd_fonts plugins/imagick_fonts plugins/watermarks uploaded zp-data - @${TOUCH} ${WRKSRC}/${i}/.keepme -.endfor do-install: +.for dir in ${EMPTYDIRS} + ${TOUCH} ${WRKSRC}/${dir}/.keepme +.endfor ${MKDIR} ${WWWDIR}/ cd ${WRKSRC}/ && ${COPYTREE_SHARE} \* ${WWWDIR}/ ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/ @@ -41,4 +38,23 @@ do-install: post-install: @${CAT} ${PKGMESSAGE} +# maintainer section: + +MS_DIRRMTRY= albums cache themes zp-core +MS_EMPTYDIRS= ${WRKDIR}/.ms-empty-directories +MS_PLIST= ${WRKDIR}/.ms-pkg-plist + +genplist: do-clean extract + cd ${WRKSRC}/ && \ + ${FIND} -s * -type d -empty | ${XARGS} > ${MS_EMPTYDIRS} && \ + ${SED} 's|[^ ]*|&/.keepme|g' ${MS_EMPTYDIRS} | ${XARGS} -J % ${TOUCH} % && \ + ${FIND} -s * -type f | ${SED} 's|^|%%WWWDIR%%/|' > ${MS_PLIST} && \ + ${FIND} -s * -type d | ${TAIL} -r | ${SED} 's|^|@dirrm %%WWWDIR%%/|' >> ${MS_PLIST} && \ + ${ECHO} '@dirrmtry %%WWWDIR%%' >> ${MS_PLIST} +.for dir in ${MS_DIRRMTRY} + ${REINPLACE_CMD} '/^@dirrm %%WWWDIR%%\/${dir:C/\//\\\//g}$$/ s|@dirrm|&try|' ${MS_PLIST} +.endfor + ${INSTALL} -m 600 ${MS_PLIST} ${PLIST} + ${REINPLACE_CMD} -e "/^EMPTYDIRS=/ s| .*$$| `${CAT} ${MS_EMPTYDIRS}`|" ${.CURDIR}/Makefile + .include Modified: head/www/zenphoto/distinfo ============================================================================== --- head/www/zenphoto/distinfo Wed Oct 10 21:22:50 2012 (r305686) +++ head/www/zenphoto/distinfo Wed Oct 10 21:31:36 2012 (r305687) @@ -1,2 +1,2 @@ -SHA256 (zenphoto-1.4.1.6.tar.gz) = 3ebc3dfe691373b7f41186c8c854913c02112418bda04ea1ddf5d95c45ea61a6 -SIZE (zenphoto-1.4.1.6.tar.gz) = 7340803 +SHA256 (zenphoto-1.4.3.3.tar.gz) = 39472752ed48b68499203ab2fab2b6e18e4fa65ae9356c0dbeafa3c43222be97 +SIZE (zenphoto-1.4.3.3.tar.gz) = 8563744 Modified: head/www/zenphoto/pkg-plist ============================================================================== --- head/www/zenphoto/pkg-plist Wed Oct 10 21:22:50 2012 (r305686) +++ head/www/zenphoto/pkg-plist Wed Oct 10 21:31:36 2012 (r305687) @@ -1,10 +1,7 @@ %%WWWDIR%%/albums/.keepme %%WWWDIR%%/cache/.keepme %%WWWDIR%%/cache_html/rss/.keepme -%%WWWDIR%%/doc_files/zenpage_quick_reference.pdf %%WWWDIR%%/doc_files/zenphoto_database_quick_reference.pdf -%%WWWDIR%%/doc_files/zenphoto_developer_quick_reference.pdf -%%WWWDIR%%/doc_files/zenphoto_quick_reference.pdf %%WWWDIR%%/index.php %%WWWDIR%%/plugins/flag_thumbnail/.keepme %%WWWDIR%%/plugins/flvplayer/.keepme @@ -14,9 +11,11 @@ %%WWWDIR%%/themes/default/404.php %%WWWDIR%%/themes/default/album.php %%WWWDIR%%/themes/default/archive.php +%%WWWDIR%%/themes/default/common.css %%WWWDIR%%/themes/default/contact.php %%WWWDIR%%/themes/default/image.php %%WWWDIR%%/themes/default/images/50percent.png +%%WWWDIR%%/themes/default/images/admin-buttonback.jpg %%WWWDIR%%/themes/default/images/img-bg.gif %%WWWDIR%%/themes/default/images/tag.png %%WWWDIR%%/themes/default/index.php @@ -36,14 +35,27 @@ %%WWWDIR%%/themes/effervescence_plus/404.php %%WWWDIR%%/themes/effervescence_plus/album.php %%WWWDIR%%/themes/effervescence_plus/archive.php +%%WWWDIR%%/themes/effervescence_plus/colorbox/functions.php %%WWWDIR%%/themes/effervescence_plus/common.css %%WWWDIR%%/themes/effervescence_plus/contact.php %%WWWDIR%%/themes/effervescence_plus/functions.php %%WWWDIR%%/themes/effervescence_plus/gallery.php %%WWWDIR%%/themes/effervescence_plus/image.php +%%WWWDIR%%/themes/effervescence_plus/image_gallery/ad_next.png +%%WWWDIR%%/themes/effervescence_plus/image_gallery/ad_prev.png +%%WWWDIR%%/themes/effervescence_plus/image_gallery/ad_scroll_back.png +%%WWWDIR%%/themes/effervescence_plus/image_gallery/ad_scroll_forward.png +%%WWWDIR%%/themes/effervescence_plus/image_gallery/functions.php +%%WWWDIR%%/themes/effervescence_plus/image_gallery/jquery.ad-gallery.css +%%WWWDIR%%/themes/effervescence_plus/image_gallery/jquery.ad-gallery.js +%%WWWDIR%%/themes/effervescence_plus/image_gallery/jquery.ad-gallery.pack.js +%%WWWDIR%%/themes/effervescence_plus/image_gallery/loader.gif +%%WWWDIR%%/themes/effervescence_plus/image_gallery/opa75.png +%%WWWDIR%%/themes/effervescence_plus/image_page/functions.php %%WWWDIR%%/themes/effervescence_plus/images/25percent.png %%WWWDIR%%/themes/effervescence_plus/images/50percent.png %%WWWDIR%%/themes/effervescence_plus/images/50percentwhite.png +%%WWWDIR%%/themes/effervescence_plus/images/admin-buttonback.jpg %%WWWDIR%%/themes/effervescence_plus/images/arrow_right.png %%WWWDIR%%/themes/effervescence_plus/images/dark-bullet.png %%WWWDIR%%/themes/effervescence_plus/images/dark_arrow_right.png @@ -51,41 +63,21 @@ %%WWWDIR%%/themes/effervescence_plus/images/err-passwordprotected.png %%WWWDIR%%/themes/effervescence_plus/images/imageDefault.png %%WWWDIR%%/themes/effervescence_plus/images/search.png -%%WWWDIR%%/themes/effervescence_plus/images/slimbox/closelabel.gif -%%WWWDIR%%/themes/effervescence_plus/images/slimbox/loading.gif -%%WWWDIR%%/themes/effervescence_plus/images/slimbox/nextlabel.gif -%%WWWDIR%%/themes/effervescence_plus/images/slimbox/prevlabel.gif -%%WWWDIR%%/themes/effervescence_plus/images/smooth/carrow1.gif -%%WWWDIR%%/themes/effervescence_plus/images/smooth/carrow2.gif -%%WWWDIR%%/themes/effervescence_plus/images/smooth/fleche1.gif -%%WWWDIR%%/themes/effervescence_plus/images/smooth/fleche1.png -%%WWWDIR%%/themes/effervescence_plus/images/smooth/fleche2.gif -%%WWWDIR%%/themes/effervescence_plus/images/smooth/fleche2.png -%%WWWDIR%%/themes/effervescence_plus/images/smooth/loading-bar-black.gif -%%WWWDIR%%/themes/effervescence_plus/images/smooth/open.gif -%%WWWDIR%%/themes/effervescence_plus/images/smooth/open.png %%WWWDIR%%/themes/effervescence_plus/images/zen-logo.jpg %%WWWDIR%%/themes/effervescence_plus/index.php %%WWWDIR%%/themes/effervescence_plus/indexpage.php -%%WWWDIR%%/themes/effervescence_plus/jd.gallery.css %%WWWDIR%%/themes/effervescence_plus/news.php %%WWWDIR%%/themes/effervescence_plus/pages.php %%WWWDIR%%/themes/effervescence_plus/password.php %%WWWDIR%%/themes/effervescence_plus/register.php -%%WWWDIR%%/themes/effervescence_plus/scripts/bluranchors.js -%%WWWDIR%%/themes/effervescence_plus/scripts/jd.gallery.js -%%WWWDIR%%/themes/effervescence_plus/scripts/jd.gallery.set.js -%%WWWDIR%%/themes/effervescence_plus/scripts/jd.gallery.transitions.js -%%WWWDIR%%/themes/effervescence_plus/scripts/mootools.v1.11.js -%%WWWDIR%%/themes/effervescence_plus/scripts/slimbox.js -%%WWWDIR%%/themes/effervescence_plus/scripts/swfobject.js %%WWWDIR%%/themes/effervescence_plus/search.php %%WWWDIR%%/themes/effervescence_plus/sidebar.php -%%WWWDIR%%/themes/effervescence_plus/simpleviewer.swf +%%WWWDIR%%/themes/effervescence_plus/simpleviewer/functions.php +%%WWWDIR%%/themes/effervescence_plus/simpleviewer/simpleviewer.swf +%%WWWDIR%%/themes/effervescence_plus/simpleviewer/swfobject.js %%WWWDIR%%/themes/effervescence_plus/slideshow-controls.png %%WWWDIR%%/themes/effervescence_plus/slideshow.css %%WWWDIR%%/themes/effervescence_plus/slideshow.php -%%WWWDIR%%/themes/effervescence_plus/slimbox.css %%WWWDIR%%/themes/effervescence_plus/styles/blue and green play.css %%WWWDIR%%/themes/effervescence_plus/styles/effervescence.css %%WWWDIR%%/themes/effervescence_plus/styles/free chocolates.css @@ -100,11 +92,24 @@ %%WWWDIR%%/themes/garland/404.php %%WWWDIR%%/themes/garland/album.php %%WWWDIR%%/themes/garland/archive.php +%%WWWDIR%%/themes/garland/colorbox/functions.php %%WWWDIR%%/themes/garland/contact.php %%WWWDIR%%/themes/garland/contact_form/form.php %%WWWDIR%%/themes/garland/functions.php %%WWWDIR%%/themes/garland/gallery.php %%WWWDIR%%/themes/garland/image.php +%%WWWDIR%%/themes/garland/image_gallery/ad_next.png +%%WWWDIR%%/themes/garland/image_gallery/ad_prev.png +%%WWWDIR%%/themes/garland/image_gallery/ad_scroll_back.png +%%WWWDIR%%/themes/garland/image_gallery/ad_scroll_forward.png +%%WWWDIR%%/themes/garland/image_gallery/functions.php +%%WWWDIR%%/themes/garland/image_gallery/jquery.ad-gallery.css +%%WWWDIR%%/themes/garland/image_gallery/jquery.ad-gallery.js +%%WWWDIR%%/themes/garland/image_gallery/jquery.ad-gallery.pack.js +%%WWWDIR%%/themes/garland/image_gallery/loader.gif +%%WWWDIR%%/themes/garland/image_gallery/opa75.png +%%WWWDIR%%/themes/garland/image_page/functions.php +%%WWWDIR%%/themes/garland/images/admin-buttonback.jpg %%WWWDIR%%/themes/garland/images/bg-content-left.png %%WWWDIR%%/themes/garland/images/bg-content-right.png %%WWWDIR%%/themes/garland/images/bg-content.png @@ -140,9 +145,11 @@ %%WWWDIR%%/themes/stopdesign/css/custom.css %%WWWDIR%%/themes/stopdesign/css/master.css %%WWWDIR%%/themes/stopdesign/css/photos.css +%%WWWDIR%%/themes/stopdesign/functions.php %%WWWDIR%%/themes/stopdesign/gallery.php %%WWWDIR%%/themes/stopdesign/image.php %%WWWDIR%%/themes/stopdesign/images/50percent.png +%%WWWDIR%%/themes/stopdesign/images/admin-buttonback.jpg %%WWWDIR%%/themes/stopdesign/images/bg_gal.gif %%WWWDIR%%/themes/stopdesign/images/bg_gal.png %%WWWDIR%%/themes/stopdesign/images/bg_page.jpg @@ -202,6 +209,7 @@ %%WWWDIR%%/themes/zenpage/gallery.php %%WWWDIR%%/themes/zenpage/image.php %%WWWDIR%%/themes/zenpage/images/50percent.png +%%WWWDIR%%/themes/zenpage/images/admin-buttonback.jpg %%WWWDIR%%/themes/zenpage/images/arrow_right.gif %%WWWDIR%%/themes/zenpage/images/body.jpg %%WWWDIR%%/themes/zenpage/images/breadcrumb-back.jpg @@ -227,14 +235,38 @@ %%WWWDIR%%/themes/zenpage/theme.png %%WWWDIR%%/themes/zenpage/theme_description.php %%WWWDIR%%/themes/zenpage/themeoptions.php +%%WWWDIR%%/themes/zpmobile/404.php +%%WWWDIR%%/themes/zpmobile/album.php +%%WWWDIR%%/themes/zpmobile/archive.php +%%WWWDIR%%/themes/zpmobile/comment_form/comment_form.php +%%WWWDIR%%/themes/zpmobile/functions.php +%%WWWDIR%%/themes/zpmobile/gallery.php +%%WWWDIR%%/themes/zpmobile/image.php +%%WWWDIR%%/themes/zpmobile/images/admin-buttonback.jpg +%%WWWDIR%%/themes/zpmobile/images/rss.png +%%WWWDIR%%/themes/zpmobile/index.php +%%WWWDIR%%/themes/zpmobile/jquerymobile/images/ajax-loader.gif +%%WWWDIR%%/themes/zpmobile/jquerymobile/images/ajax-loader.png +%%WWWDIR%%/themes/zpmobile/jquerymobile/images/icon-search-black.png +%%WWWDIR%%/themes/zpmobile/jquerymobile/images/icons-18-black.png +%%WWWDIR%%/themes/zpmobile/jquerymobile/images/icons-18-white.png +%%WWWDIR%%/themes/zpmobile/jquerymobile/images/icons-36-black.png +%%WWWDIR%%/themes/zpmobile/jquerymobile/images/icons-36-white.png +%%WWWDIR%%/themes/zpmobile/jquerymobile/jquery.mobile-1.1.0.min.css +%%WWWDIR%%/themes/zpmobile/jquerymobile/jquery.mobile-1.1.0.min.js +%%WWWDIR%%/themes/zpmobile/jquerymobile/jquery.mobile.structure-1.1.0.min.css +%%WWWDIR%%/themes/zpmobile/jquerymobile/jquery.mobile.theme-1.1.0.min.css +%%WWWDIR%%/themes/zpmobile/news.php +%%WWWDIR%%/themes/zpmobile/pages.php +%%WWWDIR%%/themes/zpmobile/password.php +%%WWWDIR%%/themes/zpmobile/register.php +%%WWWDIR%%/themes/zpmobile/search.php +%%WWWDIR%%/themes/zpmobile/style.css +%%WWWDIR%%/themes/zpmobile/theme.png +%%WWWDIR%%/themes/zpmobile/theme_description.php +%%WWWDIR%%/themes/zpmobile/themeoptions.php %%WWWDIR%%/uploaded/.keepme %%WWWDIR%%/zp-core/404.php -%%WWWDIR%%/zp-core/PHP4_functions/_functions-image.php -%%WWWDIR%%/zp-core/PHP4_functions/_functions.php -%%WWWDIR%%/zp-core/PHP4_functions/_functions_GD.php -%%WWWDIR%%/zp-core/PHP5_functions/_functions-image.php -%%WWWDIR%%/zp-core/PHP5_functions/_functions.php -%%WWWDIR%%/zp-core/PHP5_functions/_functions_GD.php %%WWWDIR%%/zp-core/admin-albumsort.php %%WWWDIR%%/zp-core/admin-comments.php %%WWWDIR%%/zp-core/admin-dynamic-album.php @@ -242,11 +274,6 @@ %%WWWDIR%%/zp-core/admin-filemanager.php %%WWWDIR%%/zp-core/admin-functions.php %%WWWDIR%%/zp-core/admin-globals.php -%%WWWDIR%%/zp-core/admin-httpupload/jquery.fileupload-ui.css -%%WWWDIR%%/zp-core/admin-httpupload/jquery.fileupload-ui.js -%%WWWDIR%%/zp-core/admin-httpupload/jquery.fileupload.js -%%WWWDIR%%/zp-core/admin-httpupload/upload_form.php -%%WWWDIR%%/zp-core/admin-httpupload/uploader.php %%WWWDIR%%/zp-core/admin-logs.php %%WWWDIR%%/zp-core/admin-options.php %%WWWDIR%%/zp-core/admin-plugins.php @@ -258,33 +285,24 @@ %%WWWDIR%%/zp-core/admin-themes.php %%WWWDIR%%/zp-core/admin-thumbcrop.php %%WWWDIR%%/zp-core/admin-upload.php -%%WWWDIR%%/zp-core/admin-uploadify/cancel.png -%%WWWDIR%%/zp-core/admin-uploadify/check.php -%%WWWDIR%%/zp-core/admin-uploadify/jquery.uploadify.js -%%WWWDIR%%/zp-core/admin-uploadify/swfobject.js -%%WWWDIR%%/zp-core/admin-uploadify/upload_form.php -%%WWWDIR%%/zp-core/admin-uploadify/uploader.php -%%WWWDIR%%/zp-core/admin-uploadify/uploadify.allglyphs.swf -%%WWWDIR%%/zp-core/admin-uploadify/uploadify.css -%%WWWDIR%%/zp-core/admin-uploadify/uploadify.fla -%%WWWDIR%%/zp-core/admin-uploadify/uploadify.swf %%WWWDIR%%/zp-core/admin-users.php %%WWWDIR%%/zp-core/admin.css %%WWWDIR%%/zp-core/admin.php -%%WWWDIR%%/zp-core/album-zip.php -%%WWWDIR%%/zp-core/archive.php %%WWWDIR%%/zp-core/auth_zp.php %%WWWDIR%%/zp-core/c.php +%%WWWDIR%%/zp-core/cacheprotect %%WWWDIR%%/zp-core/class-album.php %%WWWDIR%%/zp-core/class-comment.php %%WWWDIR%%/zp-core/class-gallery.php %%WWWDIR%%/zp-core/class-image.php %%WWWDIR%%/zp-core/class-load.php +%%WWWDIR%%/zp-core/class-rss.php %%WWWDIR%%/zp-core/class-search.php %%WWWDIR%%/zp-core/class-transientimage.php %%WWWDIR%%/zp-core/classes.php %%WWWDIR%%/zp-core/controller.php %%WWWDIR%%/zp-core/cron_runner.php +%%WWWDIR%%/zp-core/dataaccess %%WWWDIR%%/zp-core/example_robots.txt %%WWWDIR%%/zp-core/exif/exif.php %%WWWDIR%%/zp-core/exif/makers/canon.php @@ -300,11 +318,9 @@ %%WWWDIR%%/zp-core/functions-controller.php %%WWWDIR%%/zp-core/functions-db-MySQL.php %%WWWDIR%%/zp-core/functions-db-PDO_MySQL.php -%%WWWDIR%%/zp-core/functions-db-PDO_SQLite.php %%WWWDIR%%/zp-core/functions-filter.php %%WWWDIR%%/zp-core/functions-i18n.php %%WWWDIR%%/zp-core/functions-image.php -%%WWWDIR%%/zp-core/functions-rss.php %%WWWDIR%%/zp-core/functions.php %%WWWDIR%%/zp-core/gd_fonts/addlg10.gdf %%WWWDIR%%/zp-core/gd_fonts/anonymous.gdf @@ -313,10 +329,10 @@ %%WWWDIR%%/zp-core/gd_fonts/bubblebath.gdf %%WWWDIR%%/zp-core/gd_fonts/cry.gdf %%WWWDIR%%/zp-core/global-definitions.php +%%WWWDIR%%/zp-core/gpl-2.0-standalone.htm %%WWWDIR%%/zp-core/htaccess %%WWWDIR%%/zp-core/i.php %%WWWDIR%%/zp-core/images/Zp.png -%%WWWDIR%%/zp-core/images/accept.png %%WWWDIR%%/zp-core/images/action.png %%WWWDIR%%/zp-core/images/add.png %%WWWDIR%%/zp-core/images/admin-boxback.jpg @@ -325,27 +341,24 @@ %%WWWDIR%%/zp-core/images/admin-headlineback.jpg %%WWWDIR%%/zp-core/images/admin-navtabback.jpg %%WWWDIR%%/zp-core/images/ajax-loader.gif +%%WWWDIR%%/zp-core/images/arrow_down.png %%WWWDIR%%/zp-core/images/arrow_in.png %%WWWDIR%%/zp-core/images/arrow_left_blue_round.png %%WWWDIR%%/zp-core/images/arrow_out.png %%WWWDIR%%/zp-core/images/arrow_up.png %%WWWDIR%%/zp-core/images/bar_graph.png %%WWWDIR%%/zp-core/images/burst.png -%%WWWDIR%%/zp-core/images/burst1.png %%WWWDIR%%/zp-core/images/cache.png -%%WWWDIR%%/zp-core/images/cache1.png %%WWWDIR%%/zp-core/images/calendar.png %%WWWDIR%%/zp-core/images/captcha_background.png %%WWWDIR%%/zp-core/images/comments-off.png %%WWWDIR%%/zp-core/images/comments-on.png -%%WWWDIR%%/zp-core/images/down.png %%WWWDIR%%/zp-core/images/drag_handle.png %%WWWDIR%%/zp-core/images/drag_handle_flag.png -%%WWWDIR%%/zp-core/images/edit-album.png %%WWWDIR%%/zp-core/images/edit-delete.png -%%WWWDIR%%/zp-core/images/edit-image.png %%WWWDIR%%/zp-core/images/envelope.png %%WWWDIR%%/zp-core/images/err-cachewrite.png +%%WWWDIR%%/zp-core/images/err-failimage.png %%WWWDIR%%/zp-core/images/err-imagegeneral.png %%WWWDIR%%/zp-core/images/err-imagenotfound.png %%WWWDIR%%/zp-core/images/err-noflashplayer.png @@ -359,7 +372,6 @@ %%WWWDIR%%/zp-core/images/icon_mail.png %%WWWDIR%%/zp-core/images/imageDefault.png %%WWWDIR%%/zp-core/images/info.png -%%WWWDIR%%/zp-core/images/info_toggle.png %%WWWDIR%%/zp-core/images/lock.png %%WWWDIR%%/zp-core/images/lock_2.png %%WWWDIR%%/zp-core/images/lock_open.png @@ -367,27 +379,53 @@ %%WWWDIR%%/zp-core/images/marker.png %%WWWDIR%%/zp-core/images/mask.png %%WWWDIR%%/zp-core/images/movie.jpg -%%WWWDIR%%/zp-core/images/note_warn.png +%%WWWDIR%%/zp-core/images/options.png %%WWWDIR%%/zp-core/images/page_white_copy.png %%WWWDIR%%/zp-core/images/pass.png %%WWWDIR%%/zp-core/images/pencil.png %%WWWDIR%%/zp-core/images/pictures.png %%WWWDIR%%/zp-core/images/pictures_dn.png %%WWWDIR%%/zp-core/images/place_holder_icon.png -%%WWWDIR%%/zp-core/images/quest.png %%WWWDIR%%/zp-core/images/redo.png -%%WWWDIR%%/zp-core/images/redo1.png %%WWWDIR%%/zp-core/images/refresh.png -%%WWWDIR%%/zp-core/images/refresh1.png %%WWWDIR%%/zp-core/images/reset.png -%%WWWDIR%%/zp-core/images/reset1.png -%%WWWDIR%%/zp-core/images/reset_icon.png %%WWWDIR%%/zp-core/images/rss.png %%WWWDIR%%/zp-core/images/searchfields_icon.png %%WWWDIR%%/zp-core/images/select_files_button.png %%WWWDIR%%/zp-core/images/shape_handles.png %%WWWDIR%%/zp-core/images/sortorder.png %%WWWDIR%%/zp-core/images/stock_copy.png +%%WWWDIR%%/zp-core/images/strengths/strength0.png +%%WWWDIR%%/zp-core/images/strengths/strength1.png +%%WWWDIR%%/zp-core/images/strengths/strength10.png +%%WWWDIR%%/zp-core/images/strengths/strength11.png +%%WWWDIR%%/zp-core/images/strengths/strength12.png +%%WWWDIR%%/zp-core/images/strengths/strength13.png +%%WWWDIR%%/zp-core/images/strengths/strength14.png +%%WWWDIR%%/zp-core/images/strengths/strength15.png +%%WWWDIR%%/zp-core/images/strengths/strength16.png +%%WWWDIR%%/zp-core/images/strengths/strength17.png +%%WWWDIR%%/zp-core/images/strengths/strength18.png +%%WWWDIR%%/zp-core/images/strengths/strength19.png +%%WWWDIR%%/zp-core/images/strengths/strength2.png +%%WWWDIR%%/zp-core/images/strengths/strength20.png +%%WWWDIR%%/zp-core/images/strengths/strength21.png +%%WWWDIR%%/zp-core/images/strengths/strength22.png +%%WWWDIR%%/zp-core/images/strengths/strength23.png +%%WWWDIR%%/zp-core/images/strengths/strength24.png +%%WWWDIR%%/zp-core/images/strengths/strength25.png +%%WWWDIR%%/zp-core/images/strengths/strength26.png +%%WWWDIR%%/zp-core/images/strengths/strength27.png +%%WWWDIR%%/zp-core/images/strengths/strength28.png +%%WWWDIR%%/zp-core/images/strengths/strength29.png +%%WWWDIR%%/zp-core/images/strengths/strength3.png +%%WWWDIR%%/zp-core/images/strengths/strength30.png +%%WWWDIR%%/zp-core/images/strengths/strength4.png +%%WWWDIR%%/zp-core/images/strengths/strength5.png +%%WWWDIR%%/zp-core/images/strengths/strength6.png +%%WWWDIR%%/zp-core/images/strengths/strength7.png +%%WWWDIR%%/zp-core/images/strengths/strength8.png +%%WWWDIR%%/zp-core/images/strengths/strength9.png %%WWWDIR%%/zp-core/images/thumb_standin.png %%WWWDIR%%/zp-core/images/togglerc.png %%WWWDIR%%/zp-core/images/togglerch.png @@ -398,6 +436,7 @@ %%WWWDIR%%/zp-core/images/wheel.png %%WWWDIR%%/zp-core/images/wpmini-blue.png %%WWWDIR%%/zp-core/images/zen-logo.png +%%WWWDIR%%/zp-core/images/zp_gold.png %%WWWDIR%%/zp-core/index.php %%WWWDIR%%/zp-core/js/Jcrop.gif %%WWWDIR%%/zp-core/js/admin.js @@ -408,72 +447,30 @@ %%WWWDIR%%/zp-core/js/htmlencoder.js %%WWWDIR%%/zp-core/js/jquery.Jcrop.css %%WWWDIR%%/zp-core/js/jquery.Jcrop.js -%%WWWDIR%%/zp-core/js/jquery.editinplace.js %%WWWDIR%%/zp-core/js/jquery.flashembed.pack.js %%WWWDIR%%/zp-core/js/jquery.js +%%WWWDIR%%/zp-core/js/jquery.masonry.min.js +%%WWWDIR%%/zp-core/js/jquery.pagination.js %%WWWDIR%%/zp-core/js/jquery.scrollTo.js %%WWWDIR%%/zp-core/js/jquery.tabs.js %%WWWDIR%%/zp-core/js/jquery.toggleElements.js %%WWWDIR%%/zp-core/js/jquery.tooltip.js %%WWWDIR%%/zp-core/js/jquery.ui.nestedSortable.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery-ui-i18n.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-af.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ar-DZ.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ar.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-az.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-bg.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-bs.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ca.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-cs.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-da.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-de.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-el.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-en-AU.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-en-GB.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-en-NZ.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-eo.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-es.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-et.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-eu.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-fa.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-fi.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-fo.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-fr-CH.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-fr.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-gl.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-he.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-hr.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-hu.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-hy.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-id.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-is.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-it.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ja.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ko.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-kz.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-lt.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-lv.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ml.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ms.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-nl.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-no.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-pl.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-pt-BR.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-pt.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-rm.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ro.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ru.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-sk.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-sl.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-sq.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-sr-SR.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-sr.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-sv.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-ta.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-th.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-tr.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-uk.js -%%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-vi.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-zh-CN.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-zh-HK.js %%WWWDIR%%/zp-core/js/jqueryui/i18n/jquery.ui.datepicker-zh-TW.js @@ -500,13 +497,16 @@ %%WWWDIR%%/zp-core/js/zenphoto.js %%WWWDIR%%/zp-core/lib-GD.php %%WWWDIR%%/zp-core/lib-Imagick.php +%%WWWDIR%%/zp-core/lib-MimeTypes.php %%WWWDIR%%/zp-core/lib-auth.php %%WWWDIR%%/zp-core/lib-encryption.php %%WWWDIR%%/zp-core/lib-gettext/gettext.inc -%%WWWDIR%%/zp-core/lib-htmlawed.php %%WWWDIR%%/zp-core/lib-json.php +%%WWWDIR%%/zp-core/lib-kses.php %%WWWDIR%%/zp-core/lib-pclzip.php %%WWWDIR%%/zp-core/lib-utf8.php +%%WWWDIR%%/zp-core/lib-zipStream.php +%%WWWDIR%%/zp-core/license.php %%WWWDIR%%/zp-core/locale/auto.png %%WWWDIR%%/zp-core/locale/de_DE/LC_MESSAGES/zenphoto.mo %%WWWDIR%%/zp-core/locale/de_DE/LC_MESSAGES/zenphoto.po @@ -563,11 +563,11 @@ %%WWWDIR%%/zp-core/locale/zh_TW/LC_MESSAGES/zenphoto.po %%WWWDIR%%/zp-core/locale/zh_TW/flag.png %%WWWDIR%%/zp-core/locale/zh_TW/select_files_button.png +%%WWWDIR%%/zp-core/no_uploader.php %%WWWDIR%%/zp-core/oldhtaccess %%WWWDIR%%/zp-core/password.php -%%WWWDIR%%/zp-core/rss/rss-comments.php -%%WWWDIR%%/zp-core/rss/rss-news.php -%%WWWDIR%%/zp-core/rss/rss.php +%%WWWDIR%%/zp-core/pluginDoc.php +%%WWWDIR%%/zp-core/reconfigure.php %%WWWDIR%%/zp-core/setup/setup-functions.php %%WWWDIR%%/zp-core/setup/setup-option-defaults.php %%WWWDIR%%/zp-core/setup/setup-primitive.php @@ -579,37 +579,35 @@ %%WWWDIR%%/zp-core/setup.php %%WWWDIR%%/zp-core/template-functions.php %%WWWDIR%%/zp-core/utilities/backup_restore.php -%%WWWDIR%%/zp-core/utilities/cache_images.php -%%WWWDIR%%/zp-core/utilities/check_for_update.php %%WWWDIR%%/zp-core/utilities/database_reference.php %%WWWDIR%%/zp-core/utilities/gallery_statistics.php -%%WWWDIR%%/zp-core/utilities/purge_image_cache.php -%%WWWDIR%%/zp-core/utilities/purge_rss_cache.php +%%WWWDIR%%/zp-core/utilities/phpInfo.php %%WWWDIR%%/zp-core/utilities/refresh_database.php %%WWWDIR%%/zp-core/utilities/refresh_metadata.php %%WWWDIR%%/zp-core/utilities/reset_albumthumbs.php -%%WWWDIR%%/zp-core/utilities/reset_hitcounters.php -%%WWWDIR%%/zp-core/utilities/schedule_content.css -%%WWWDIR%%/zp-core/utilities/scheduled_content.php -%%WWWDIR%%/zp-core/utilities/seo_cleanup.php -%%WWWDIR%%/zp-core/utilities/user_mailing_list.php -%%WWWDIR%%/zp-core/utilities/wordpress_import.php %%WWWDIR%%/zp-core/version.php %%WWWDIR%%/zp-core/watermarks/copyright.png %%WWWDIR%%/zp-core/watermarks/watermark-text.png %%WWWDIR%%/zp-core/watermarks/watermark-video.png %%WWWDIR%%/zp-core/watermarks/watermark.png -%%WWWDIR%%/zp-core/zp-config.php.source +%%WWWDIR%%/zp-core/zenphoto_cfg.txt %%WWWDIR%%/zp-core/zp-extensions/GoogleMap/GoogleMap.php %%WWWDIR%%/zp-core/zp-extensions/GoogleMap/JSMin.php +%%WWWDIR%%/zp-core/zp-extensions/GoogleMap/m.php %%WWWDIR%%/zp-core/zp-extensions/GoogleMap.php %%WWWDIR%%/zp-core/zp-extensions/PHPMailer/class.phpmailer.php %%WWWDIR%%/zp-core/zp-extensions/PHPMailer/class.pop3.php %%WWWDIR%%/zp-core/zp-extensions/PHPMailer/class.smtp.php %%WWWDIR%%/zp-core/zp-extensions/PHPMailer.php %%WWWDIR%%/zp-core/zp-extensions/admin-approval.php +%%WWWDIR%%/zp-core/zp-extensions/ajaxFilemanager.php %%WWWDIR%%/zp-core/zp-extensions/auto_backup.php +%%WWWDIR%%/zp-core/zp-extensions/cacheManager/cacheImages.php +%%WWWDIR%%/zp-core/zp-extensions/cacheManager.php +%%WWWDIR%%/zp-core/zp-extensions/captcha/reCaptcha/recaptchalib.php +%%WWWDIR%%/zp-core/zp-extensions/captcha/reCaptcha.php %%WWWDIR%%/zp-core/zp-extensions/captcha/zenphoto.php +%%WWWDIR%%/zp-core/zp-extensions/check_for_update.php %%WWWDIR%%/zp-core/zp-extensions/class-AnyFile/anyFileDefault.png %%WWWDIR%%/zp-core/zp-extensions/class-AnyFile.php %%WWWDIR%%/zp-core/zp-extensions/class-WEBdocs/pdfDefault.png @@ -620,30 +618,78 @@ %%WWWDIR%%/zp-core/zp-extensions/class-textobject/textDefault.png %%WWWDIR%%/zp-core/zp-extensions/class-textobject.php %%WWWDIR%%/zp-core/zp-extensions/class-video/3gpDefault.png +%%WWWDIR%%/zp-core/zp-extensions/class-video/flaDefault.png %%WWWDIR%%/zp-core/zp-extensions/class-video/flvDefault.png +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/getid3.lib.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/getid3.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/license.commercial.txt +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/license.txt +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.audio-video.flv.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.audio-video.mpeg.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.audio-video.quicktime.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.audio-video.swf.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.audio.aac.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.audio.mp3.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.tag.id3v1.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.tag.id3v2.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/getid3/module.tag.lyrics3.php +%%WWWDIR%%/zp-core/zp-extensions/class-video/m4aDefault.png +%%WWWDIR%%/zp-core/zp-extensions/class-video/m4vDefault.png %%WWWDIR%%/zp-core/zp-extensions/class-video/movDefault.png %%WWWDIR%%/zp-core/zp-extensions/class-video/mp3Default.png %%WWWDIR%%/zp-core/zp-extensions/class-video/mp4Default.png %%WWWDIR%%/zp-core/zp-extensions/class-video/multimediaDefault.png %%WWWDIR%%/zp-core/zp-extensions/class-video.php -%%WWWDIR%%/zp-core/zp-extensions/colorbox/colorbox.css -%%WWWDIR%%/zp-core/zp-extensions/colorbox/colorbox_ie.css.php -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/border.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/controls.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/internet_explorer/borderBottomCenter.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/internet_explorer/borderBottomLeft.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/internet_explorer/borderBottomRight.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/internet_explorer/borderMiddleLeft.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/internet_explorer/borderMiddleRight.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/internet_explorer/borderTopCenter.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/internet_explorer/borderTopLeft.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/internet_explorer/borderTopRight.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/loading.gif -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/loading_background.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/images/overlay.png -%%WWWDIR%%/zp-core/zp-extensions/colorbox/jquery.colorbox-min.js -%%WWWDIR%%/zp-core/zp-extensions/colorbox.php +%%WWWDIR%%/zp-core/zp-extensions/cloneZenphoto/clone.php +%%WWWDIR%%/zp-core/zp-extensions/cloneZenphoto/cloneTab.php +%%WWWDIR%%/zp-core/zp-extensions/cloneZenphoto.php +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/colorbox_ie.css.php +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/jquery.colorbox-min.js +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/colorbox.css +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/border.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/controls.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/ie6/borderBottomCenter.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/ie6/borderBottomLeft.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/ie6/borderBottomRight.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/ie6/borderMiddleLeft.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/ie6/borderMiddleRight.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/ie6/borderTopCenter.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/ie6/borderTopLeft.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/ie6/borderTopRight.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/loading.gif +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/loading_background.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1/images/overlay.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example1.jpg +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example2/colorbox.css +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example2/images/controls.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example2/images/loading.gif +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example2.jpg +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example3/colorbox.css +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example3/images/controls.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example3/images/loading.gif +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example3.jpg +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/colorbox.css +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/border1.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/border2.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/ie6/borderBottomCenter.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/ie6/borderBottomLeft.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/ie6/borderBottomRight.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/ie6/borderMiddleLeft.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/ie6/borderMiddleRight.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/ie6/borderTopCenter.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/ie6/borderTopLeft.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/ie6/borderTopRight.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4/images/loading.gif +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example4.jpg +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example5/colorbox.css +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example5/images/border.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example5/images/controls.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example5/images/loading.gif +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example5/images/loading_background.png +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js/themes/example5.jpg +%%WWWDIR%%/zp-core/zp-extensions/colorbox_js.php %%WWWDIR%%/zp-core/zp-extensions/comment_form/comment_form.php +%%WWWDIR%%/zp-core/zp-extensions/comment_form/functions.php %%WWWDIR%%/zp-core/zp-extensions/comment_form.php %%WWWDIR%%/zp-core/zp-extensions/contact_form/form.php %%WWWDIR%%/zp-core/zp-extensions/contact_form.php @@ -653,7 +699,8 @@ %%WWWDIR%%/zp-core/zp-extensions/crop_image/swap_up.png %%WWWDIR%%/zp-core/zp-extensions/crop_image.php %%WWWDIR%%/zp-core/zp-extensions/deprecated-functions.php -%%WWWDIR%%/zp-core/zp-extensions/downloadList/downloadList-functions.php +%%WWWDIR%%/zp-core/zp-extensions/deprecated_functions/check_for_deprecated.php +%%WWWDIR%%/zp-core/zp-extensions/deprecated_functions/functions.php %%WWWDIR%%/zp-core/zp-extensions/downloadList/download_statistics.php %%WWWDIR%%/zp-core/zp-extensions/downloadList.php %%WWWDIR%%/zp-core/zp-extensions/dynamic-locale/locale.css @@ -726,27 +773,30 @@ %%WWWDIR%%/zp-core/zp-extensions/flag_thumbnail.php %%WWWDIR%%/zp-core/zp-extensions/flowplayer3/LICENSE.txt %%WWWDIR%%/zp-core/zp-extensions/flowplayer3/controls.css -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer-3.2.6.min.js -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer-3.2.7.swf -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.audio-3.2.2.swf -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.content-3.2.0.swf -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.controls-3.2.5.swf -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.embed-3.0.3.min.js -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.playlist-3.0.8.min.js +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer-3.2.10.min.js +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer-3.2.11.swf +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.audio-3.2.9.swf +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.content-3.2.8.swf +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.controls-3.2.11.swf +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.embed-3.2.9.min.js +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.ipad-3.2.9.min.js +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.playlist-3.2.9.min.js +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer.sharing-3.2.8.swf +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/flowplayer3_playlist.css +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/images/arrow_bottom_blue.png +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/images/arrow_bottom_gray.png +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/images/arrow_top_blue.png +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/images/arrow_top_gray.png +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/images/control_pause.png +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/images/control_pause_blue.png +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/images/control_play.png +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/images/control_play_blue.png +%%WWWDIR%%/zp-core/zp-extensions/flowplayer3/jquery.tools.min.js %%WWWDIR%%/zp-core/zp-extensions/flowplayer3.php -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/flowplayer3_playlist.css -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/images/arrow_bottom_blue.png -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/images/arrow_bottom_gray.png -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/images/arrow_top_blue.png -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/images/arrow_top_gray.png -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/images/control_pause.png -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/images/control_pause_blue.png -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/images/control_play.png -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/images/control_play_blue.png -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist/jquery.tools.min.js -%%WWWDIR%%/zp-core/zp-extensions/flowplayer3_playlist.php +%%WWWDIR%%/zp-core/zp-extensions/googleVerify.php %%WWWDIR%%/zp-core/zp-extensions/hitcounter.php %%WWWDIR%%/zp-core/zp-extensions/html_meta_tags.php +%%WWWDIR%%/zp-core/zp-extensions/http_auth.php %%WWWDIR%%/zp-core/zp-extensions/image_album_statistics.php %%WWWDIR%%/zp-core/zp-extensions/image_effects/bevel.txt %%WWWDIR%%/zp-core/zp-extensions/image_effects/corner.txt @@ -786,17 +836,53 @@ %%WWWDIR%%/zp-core/zp-extensions/jcarousel_thumb_nav/jquery.jcarousel.css %%WWWDIR%%/zp-core/zp-extensions/jcarousel_thumb_nav/jquery.jcarousel.pack.js %%WWWDIR%%/zp-core/zp-extensions/jcarousel_thumb_nav.php +%%WWWDIR%%/zp-core/zp-extensions/jplayer/js/Jplayer.swf +%%WWWDIR%%/zp-core/zp-extensions/jplayer/js/circle.player.js +%%WWWDIR%%/zp-core/zp-extensions/jplayer/js/jplayer.playlist.min.js +%%WWWDIR%%/zp-core/zp-extensions/jplayer/js/jquery.grab.js +%%WWWDIR%%/zp-core/zp-extensions/jplayer/js/jquery.jplayer.inspector.js +%%WWWDIR%%/zp-core/zp-extensions/jplayer/js/jquery.jplayer.min.js +%%WWWDIR%%/zp-core/zp-extensions/jplayer/js/jquery.transform.js +%%WWWDIR%%/zp-core/zp-extensions/jplayer/js/mod.csstransforms.min.js +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/blue.monday/jplayer.blue.monday.css +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/blue.monday/jplayer.blue.monday.jpg +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/blue.monday/jplayer.blue.monday.seeking.gif +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/blue.monday/jplayer.blue.monday.video.play.png +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/circle.skin/bgr.jpg +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/circle.skin/buffer.png +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/circle.skin/circle.player.css +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/circle.skin/controls.jpg +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/circle.skin/progress.png +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/circle.skin/progress_sprite.jpg +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/pink.flag/jplayer.pink.flag.css +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/pink.flag/jplayer.pink.flag.jpg +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/pink.flag/jplayer.pink.flag.seeking.gif +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/pink.flag/jplayer.pink.flag.video.play.png +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/zenphotodark/jplayer.zenphoto.css +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/zenphotodark/jplayer.zenphoto.play.png +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/zenphotodark/jplayer.zenphoto.png +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/zenphotodark/jplayer.zenphoto.seeking.gif +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/zenphotolight/jplayer.zenphoto.play.png +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/zenphotolight/jplayer.zenphoto.png +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/zenphotolight/jplayer.zenphoto.seeking.gif +%%WWWDIR%%/zp-core/zp-extensions/jplayer/skin/zenphotolight/jplayer.zenphotolight.css +%%WWWDIR%%/zp-core/zp-extensions/jplayer.php %%WWWDIR%%/zp-core/zp-extensions/menu_manager/menu_manager-admin-functions.php %%WWWDIR%%/zp-core/zp-extensions/menu_manager/menu_tab.php %%WWWDIR%%/zp-core/zp-extensions/menu_manager/menu_tab_edit.php %%WWWDIR%%/zp-core/zp-extensions/menu_manager.php +%%WWWDIR%%/zp-core/zp-extensions/mergedRSS.php +%%WWWDIR%%/zp-core/zp-extensions/mobileTheme/Mobile_Detect.php +%%WWWDIR%%/zp-core/zp-extensions/mobileTheme.php %%WWWDIR%%/zp-core/zp-extensions/multiple_layouts.php %%WWWDIR%%/zp-core/zp-extensions/paged_thumbs_nav.php %%WWWDIR%%/zp-core/zp-extensions/print_album_menu.php +%%WWWDIR%%/zp-core/zp-extensions/publishContent/publishContent.css +%%WWWDIR%%/zp-core/zp-extensions/publishContent/publishContent.php +%%WWWDIR%%/zp-core/zp-extensions/publishContent.php %%WWWDIR%%/zp-core/zp-extensions/quota_manager.php %%WWWDIR%%/zp-core/zp-extensions/rating/alt_star.png %%WWWDIR%%/zp-core/zp-extensions/rating/clear.png -%%WWWDIR%%/zp-core/zp-extensions/rating/functions-rating.php %%WWWDIR%%/zp-core/zp-extensions/rating/jquery.MetaData.js %%WWWDIR%%/zp-core/zp-extensions/rating/jquery.rating.css %%WWWDIR%%/zp-core/zp-extensions/rating/jquery.rating.js @@ -804,11 +890,18 @@ %%WWWDIR%%/zp-core/zp-extensions/rating.php %%WWWDIR%%/zp-core/zp-extensions/register_user/register_user_form.php %%WWWDIR%%/zp-core/zp-extensions/register_user.php +%%WWWDIR%%/zp-core/zp-extensions/related_items.php %%WWWDIR%%/zp-core/zp-extensions/search_statistics/search_analysis.php %%WWWDIR%%/zp-core/zp-extensions/search_statistics.php %%WWWDIR%%/zp-core/zp-extensions/security-logger.php +%%WWWDIR%%/zp-core/zp-extensions/seo_cleanup.php %%WWWDIR%%/zp-core/zp-extensions/seo_locale.php +%%WWWDIR%%/zp-core/zp-extensions/seo_null.php +%%WWWDIR%%/zp-core/zp-extensions/seo_zenphoto.php %%WWWDIR%%/zp-core/zp-extensions/show_not_logged-in.php +%%WWWDIR%%/zp-core/zp-extensions/site_upgrade/closed.html +%%WWWDIR%%/zp-core/zp-extensions/site_upgrade/closed.png +%%WWWDIR%%/zp-core/zp-extensions/site_upgrade.php %%WWWDIR%%/zp-core/zp-extensions/sitemap-extended/sitemap-extended-admin.php %%WWWDIR%%/zp-core/zp-extensions/sitemap-extended.php %%WWWDIR%%/zp-core/zp-extensions/slideshow/controls.png @@ -822,170 +915,42 @@ %%WWWDIR%%/zp-core/zp-extensions/tag_extras.php %%WWWDIR%%/zp-core/zp-extensions/tag_suggest/tag.css %%WWWDIR%%/zp-core/zp-extensions/tag_suggest.php +%%WWWDIR%%/zp-core/zp-extensions/themeSwitcher.php %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/config/content.css %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/config/zenpage-default-full.js.php %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/config/zenpage-default-light.js.php %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/config/zenphoto-default-with-customdatafield.js.php %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/config/zenphoto-default.js.php -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ar.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/az.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/be.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/bg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/bn.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/br.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/bs.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ca.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ch.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/cn.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/cs.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/cy.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/da.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/de.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/dv.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/el.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/en.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/es.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/et.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/eu.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/fa.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/fi.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/fr.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/gl.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/gu.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/he.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/hi.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/hr.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/hu.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/hy.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ia.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/id.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/is.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/it.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ja.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ka.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/kl.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/km.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ko.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/lb.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/lt.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/lv.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/mk.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ml.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/mn.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ms.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/my.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/nb.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/nl.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/nn.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/no.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/pl.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ps.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/pt.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ro.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ru.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/sc.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/se.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/si.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/sk.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/sl.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/sq.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/sr.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/sv.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ta.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/te.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/th.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/tn.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/tr.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/tt.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/tw.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/uk.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/ur.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/vi.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/zh-cn.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/zh.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/zu.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/license.txt +%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/langs/zh-tw.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/css/advhr.css %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/editor_plugin.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/editor_plugin_src.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/js/rule.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ar_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/az_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/be_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/bg_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/bn_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/br_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/bs_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ca_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ch_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/cn_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/cs_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/cy_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/da_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/de_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/dv_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/el_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/en_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/es_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/et_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/eu_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/fa_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/fi_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/fr_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/gl_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/gu_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/he_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/hi_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/hr_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/hu_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/hy_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ia_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/id_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/is_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/it_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ja_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ka_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/kl_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/km_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ko_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/lb_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/lt_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/lv_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/mk_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ml_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/mn_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ms_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/my_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/nb_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/nl_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/nn_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/no_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/pl_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ps_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/pt_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ro_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ru_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/sc_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/se_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/si_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/sk_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/sl_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/sq_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/sr_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/sv_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ta_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/te_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/th_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/tn_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/tr_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/tt_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/tw_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/uk_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/ur_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/vi_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/zh-cn_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/zh_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/zu_dlg.js +%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/langs/zh-tw_dlg.js %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advhr/rule.htm %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advimage/css/advimage.css %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advimage/editor_plugin.js @@ -993,167 +958,235 @@ %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advimage/image.htm %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advimage/img/sample.gif %%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advimage/js/image.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advimage/langs/ar_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advimage/langs/az_dlg.js -%%WWWDIR%%/zp-core/zp-extensions/tiny_mce/plugins/advimage/langs/be_dlg.js *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:35:37 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 985282C8; Wed, 10 Oct 2012 21:35:37 +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 80BF68FC16; Wed, 10 Oct 2012 21:35: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 q9ALZbfg006381; Wed, 10 Oct 2012 21:35:37 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ALZbxP006377; Wed, 10 Oct 2012 21:35:37 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210102135.q9ALZbxP006377@svn.freebsd.org> From: Guido Falsi Date: Wed, 10 Oct 2012 21:35:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305688 - head/net-mgmt/nagvis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:35:37 -0000 Author: madpilot Date: Wed Oct 10 21:35:37 2012 New Revision: 305688 URL: http://svn.freebsd.org/changeset/ports/305688 Log: - Update to 1.7.1 - Convert to new options framework - Trim Makefile headers PR: ports/172271 Submitted by: Andrew Sidorov (maintainer) Feature safe: yes Modified: head/net-mgmt/nagvis/Makefile (contents, props changed) head/net-mgmt/nagvis/distinfo (contents, props changed) head/net-mgmt/nagvis/pkg-plist (contents, props changed) Modified: head/net-mgmt/nagvis/Makefile ============================================================================== --- head/net-mgmt/nagvis/Makefile Wed Oct 10 21:31:36 2012 (r305687) +++ head/net-mgmt/nagvis/Makefile Wed Oct 10 21:35:37 2012 (r305688) @@ -1,29 +1,28 @@ -# New ports collection makefile for: nagvis -# Date created: 5 October 2010 -# Whom: Andrew 'derfi' Sidorov -# +# Created by: Andrew 'derfi' Sidorov # $FreeBSD$ -# PORTNAME= nagvis -PORTVERSION= 1.5.9 +PORTVERSION= 1.7.1 CATEGORIES= net-mgmt MASTER_SITES= SF -MASTER_SITE_SUBDIR=${PORTNAME}/NagVis%201.5 +MASTER_SITE_SUBDIR=${PORTNAME}/NagVis%201.7 MAINTAINER= derfi@vei.ru COMMENT= NagVis is a visualization addon for Nagios LICENSE= GPLv2 -OPTIONS= MKLIVESTATUS "depend on mk-livestatus broker (preferred)" on \ - NDO2DB "depend on ndo2db broker" off \ - GRAPHVIZ "graphviz is needed for automaps" off +OPTIONS_DEFINE= GRAPHVIZ +OPTIONS_SINGLE= BROKER +OPTIONS_SINGLE_BROKER= MKLIVESTATUS NDO2DB +OPTIONS_DEFAULT= MKLIVESTATUS +MKLIVESTATUS_DESC= Depend on mk-livestatus broker (preferred) +NDO2DB_DESC= Depend on ndo2db broker +GRAPHVIZ_DESC= Graphviz is needed for automaps NO_BUILD= yes USE_PHP= gd gettext mbstring session json pdo pdo_sqlite WANT_PHP_WEB= yes -DEFAULT_PHP_VER=5 .include @@ -36,24 +35,19 @@ SUB_LIST+= WWW_OWNER=${WWW_OWNER} WWW_GR DIRMODE=${DIRMODE} FILEMODE=${FILEMODE} SUB_FILES+= pkg-install pkg-deinstall -.if defined(WITH_NDO2DB) +.if ${PORT_OPTIONS:MNDO2DB} USE_PHP+= mysql RUN_DEPENDS+= ndo2db-3x:${PORTSDIR}/net-mgmt/ndoutils .endif -.if defined(WITH_MKLIVESTATUS) +.if ${PORT_OPTIONS:MMKLIVESTATUS} RUN_DEPENDS+= mk-livestatus>=0:${PORTSDIR}/net-mgmt/mk-livestatus .endif -.if defined(WITH_GRAPHVIZ) +.if ${PORT_OPTIONS:MGRAPHVIZ} RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz .endif -check-sanity: -.if !defined(WITH_NDO2DB) && !defined(WITH_MKLIVESTATUS) -IGNORE= please choose at least one nagios broker module -.endif - post-extract: @${RM} -f ${WRKSRC}/.gitignore ${WRKSRC}/install.sh ${WRKSRC}/INSTALL Modified: head/net-mgmt/nagvis/distinfo ============================================================================== --- head/net-mgmt/nagvis/distinfo Wed Oct 10 21:31:36 2012 (r305687) +++ head/net-mgmt/nagvis/distinfo Wed Oct 10 21:35:37 2012 (r305688) @@ -1,2 +1,2 @@ -SHA256 (nagvis-1.5.9.tar.gz) = c0911a474563a8bd78e2454e8cd0f5c2cd8b83891869ada31d4d7ed0abddcbaa -SIZE (nagvis-1.5.9.tar.gz) = 3298253 +SHA256 (nagvis-1.7.1.tar.gz) = 42c8a239e5f992385c678ab95f1b90e0a3304fbad033e8ca9dd1d64a16644173 +SIZE (nagvis-1.7.1.tar.gz) = 3488146 Modified: head/net-mgmt/nagvis/pkg-plist ============================================================================== --- head/net-mgmt/nagvis/pkg-plist Wed Oct 10 21:31:36 2012 (r305687) +++ head/net-mgmt/nagvis/pkg-plist Wed Oct 10 21:35:37 2012 (r305688) @@ -1,6 +1,8 @@ %%WWWDIR%%/ChangeLog %%WWWDIR%%/LICENCE %%WWWDIR%%/README +%%WWWDIR%%/TODO +%%WWWDIR%%/docs/cleanup_new_notes.sh %%WWWDIR%%/docs/de_DE/about.html %%WWWDIR%%/docs/de_DE/after_installation.html %%WWWDIR%%/docs/de_DE/auth.html @@ -8,6 +10,7 @@ %%WWWDIR%%/docs/de_DE/authorisation_roles_perms.html %%WWWDIR%%/docs/de_DE/automap.html %%WWWDIR%%/docs/de_DE/automap_config_format.html +%%WWWDIR%%/docs/de_DE/backend_nagiosbp.html %%WWWDIR%%/docs/de_DE/backends.html %%WWWDIR%%/docs/de_DE/changelog.html %%WWWDIR%%/docs/de_DE/changelog2.html @@ -40,6 +43,9 @@ %%WWWDIR%%/docs/en_US/authorisation_roles_perms.html %%WWWDIR%%/docs/en_US/automap.html %%WWWDIR%%/docs/en_US/automap_config_format.html +%%WWWDIR%%/docs/en_US/backend_mklivestatus.html +%%WWWDIR%%/docs/en_US/backend_nagiosbp.html +%%WWWDIR%%/docs/en_US/backend_ndomy.html %%WWWDIR%%/docs/en_US/backends.html %%WWWDIR%%/docs/en_US/changelog.html %%WWWDIR%%/docs/en_US/context_templates.html @@ -49,14 +55,17 @@ %%WWWDIR%%/docs/en_US/extending/shapes.html %%WWWDIR%%/docs/en_US/extending/templates.html %%WWWDIR%%/docs/en_US/gadgets.html +%%WWWDIR%%/docs/en_US/geomap.html %%WWWDIR%%/docs/en_US/header_templates.html %%WWWDIR%%/docs/en_US/hover_templates.html %%WWWDIR%%/docs/en_US/index.html +%%WWWDIR%%/docs/en_US/install_omd_site.html %%WWWDIR%%/docs/en_US/installation_instructions.html %%WWWDIR%%/docs/en_US/installer.html %%WWWDIR%%/docs/en_US/lines_weathermap_style.html %%WWWDIR%%/docs/en_US/logon_modules.html %%WWWDIR%%/docs/en_US/map_config_format_description.html +%%WWWDIR%%/docs/en_US/maps.html %%WWWDIR%%/docs/en_US/nagvis_config_format_description.html %%WWWDIR%%/docs/en_US/system_requirements.html %%WWWDIR%%/docs/en_US/toc.html @@ -79,23 +88,29 @@ %%WWWDIR%%/docs/general/img/std_speedo2.png %%WWWDIR%%/etc/.htaccess %%WWWDIR%%/etc/apache2-nagvis.conf-sample -%%WWWDIR%%/etc/automaps/__automap.cfg +%%WWWDIR%%/etc/conf.d/demo.ini.php +%%WWWDIR%%/etc/geomap/demo-locations.csv %%WWWDIR%%/etc/geomap/links.xml %%WWWDIR%%/etc/geomap/locations.xml %%WWWDIR%%/etc/geomap/settings.xml %%WWWDIR%%/etc/geomap/viewpoints.xml -%%WWWDIR%%/etc/maps/demo-map.cfg -%%WWWDIR%%/etc/maps/demo-server.cfg -%%WWWDIR%%/etc/maps/demo.cfg -%%WWWDIR%%/etc/maps/demo2.cfg +%%WWWDIR%%/etc/maps/demo-automap.cfg +%%WWWDIR%%/etc/maps/demo-automap2.cfg +%%WWWDIR%%/etc/maps/demo-geomap.cfg +%%WWWDIR%%/etc/maps/demo-germany.cfg +%%WWWDIR%%/etc/maps/demo-ham-racks.cfg +%%WWWDIR%%/etc/maps/demo-load.cfg +%%WWWDIR%%/etc/maps/demo-muc-srv1.cfg +%%WWWDIR%%/etc/maps/demo-overview.cfg %%WWWDIR%%/etc/nagvis.ini.php-sample +%%WWWDIR%%/install_lib +%%WWWDIR%%/nagvis-make-admin +%%WWWDIR%%/omd_install.sh +%%WWWDIR%%/pack %%WWWDIR%%/share/config.php %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendMessage.php -%%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendModAutoMap.php %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendModInfo.php %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendModLogonDialog.php -%%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendModLogonEnv.php -%%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendModLogonMixed.php %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendModMap.php %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendModOverview.php %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendModRotation.php @@ -105,7 +120,6 @@ %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendRequestHandler.php %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendRotation.php %%WWWDIR%%/share/frontend/nagvis-js/classes/FrontendTemplateSystem.php -%%WWWDIR%%/share/frontend/nagvis-js/classes/NagVisAutoMapView.php %%WWWDIR%%/share/frontend/nagvis-js/classes/NagVisHeaderMenu.php %%WWWDIR%%/share/frontend/nagvis-js/classes/NagVisIndexView.php %%WWWDIR%%/share/frontend/nagvis-js/classes/NagVisInfoView.php @@ -113,7 +127,6 @@ %%WWWDIR%%/share/frontend/nagvis-js/classes/NagVisMapView.php %%WWWDIR%%/share/frontend/nagvis-js/classes/NagVisOverviewView.php %%WWWDIR%%/share/frontend/nagvis-js/classes/NagVisUrlView.php -%%WWWDIR%%/share/frontend/nagvis-js/css/frontendEventlog.css %%WWWDIR%%/share/frontend/nagvis-js/defines/nagvis-js.php %%WWWDIR%%/share/frontend/nagvis-js/ext/dwoo-1.1.0/CHANGELOG %%WWWDIR%%/share/frontend/nagvis-js/ext/dwoo-1.1.0/Dwoo.compiled.php @@ -221,8 +234,10 @@ %%WWWDIR%%/share/frontend/nagvis-js/ext/dwoo-1.1.0/plugins/builtin/functions/wordwrap.php %%WWWDIR%%/share/frontend/nagvis-js/ext/dwoo-1.1.0/plugins/builtin/helper.array.php %%WWWDIR%%/share/frontend/nagvis-js/ext/dwoo-1.1.0/plugins/builtin/processors/pre.smarty_compat.php +%%WWWDIR%%/share/frontend/nagvis-js/images/help_icon.png %%WWWDIR%%/share/frontend/nagvis-js/images/internal/10x10.gif %%WWWDIR%%/share/frontend/nagvis-js/images/internal/confirm.png +%%WWWDIR%%/share/frontend/nagvis-js/images/internal/dimension.png %%WWWDIR%%/share/frontend/nagvis-js/images/internal/favicon.png %%WWWDIR%%/share/frontend/nagvis-js/images/internal/favicon_ack.png %%WWWDIR%%/share/frontend/nagvis-js/images/internal/favicon_critical.png @@ -247,10 +262,24 @@ %%WWWDIR%%/share/frontend/nagvis-js/images/internal/msg_unreachable.png %%WWWDIR%%/share/frontend/nagvis-js/images/internal/msg_up.png %%WWWDIR%%/share/frontend/nagvis-js/images/internal/msg_warning.png +%%WWWDIR%%/share/frontend/nagvis-js/images/internal/picker.png %%WWWDIR%%/share/frontend/nagvis-js/images/internal/warning.png +%%WWWDIR%%/share/frontend/nagvis-js/images/jscolor/arrow.gif +%%WWWDIR%%/share/frontend/nagvis-js/images/jscolor/cross.gif +%%WWWDIR%%/share/frontend/nagvis-js/images/jscolor/hs.png +%%WWWDIR%%/share/frontend/nagvis-js/images/jscolor/hv.png %%WWWDIR%%/share/frontend/nagvis-js/index.php %%WWWDIR%%/share/frontend/nagvis-js/js/ExtBase.js +%%WWWDIR%%/share/frontend/nagvis-js/js/ExtGenericResize.js +%%WWWDIR%%/share/frontend/nagvis-js/js/ExtJSColor.js %%WWWDIR%%/share/frontend/nagvis-js/js/ExtStacktrace.js +%%WWWDIR%%/share/frontend/nagvis-js/js/ExtWzJsGraphics.js +%%WWWDIR%%/share/frontend/nagvis-js/js/ManageBackends.js +%%WWWDIR%%/share/frontend/nagvis-js/js/ManageBackgrounds.js +%%WWWDIR%%/share/frontend/nagvis-js/js/ManageMaps.js +%%WWWDIR%%/share/frontend/nagvis-js/js/ManageShapes.js +%%WWWDIR%%/share/frontend/nagvis-js/js/MapManageTmpl.js +%%WWWDIR%%/share/frontend/nagvis-js/js/NagVisContainer.js %%WWWDIR%%/share/frontend/nagvis-js/js/NagVisHost.js %%WWWDIR%%/share/frontend/nagvis-js/js/NagVisHostgroup.js %%WWWDIR%%/share/frontend/nagvis-js/js/NagVisLine.js @@ -264,7 +293,9 @@ %%WWWDIR%%/share/frontend/nagvis-js/js/NagVisStatelessObject.js %%WWWDIR%%/share/frontend/nagvis-js/js/NagVisTextbox.js %%WWWDIR%%/share/frontend/nagvis-js/js/ajax.js +%%WWWDIR%%/share/frontend/nagvis-js/js/ajaxActions.js %%WWWDIR%%/share/frontend/nagvis-js/js/dynfavicon.js +%%WWWDIR%%/share/frontend/nagvis-js/js/edit.js %%WWWDIR%%/share/frontend/nagvis-js/js/frontend.js %%WWWDIR%%/share/frontend/nagvis-js/js/frontendContext.js %%WWWDIR%%/share/frontend/nagvis-js/js/frontendEventlog.js @@ -274,7 +305,6 @@ %%WWWDIR%%/share/frontend/nagvis-js/js/lines.js %%WWWDIR%%/share/frontend/nagvis-js/js/nagvis.js %%WWWDIR%%/share/frontend/nagvis-js/js/popupWindow.js -%%WWWDIR%%/share/frontend/nagvis-js/js/wz_jsgraphics.js %%WWWDIR%%/share/frontend/nagvis-js/locale/de_DE/LC_MESSAGES/nagvis.mo %%WWWDIR%%/share/frontend/nagvis-js/locale/de_DE/LC_MESSAGES/nagvis.po %%WWWDIR%%/share/frontend/nagvis-js/locale/en_US/LC_MESSAGES/nagvis.mo @@ -287,40 +317,6 @@ %%WWWDIR%%/share/frontend/nagvis-js/locale/pt_BR/LC_MESSAGES/nagvis.po %%WWWDIR%%/share/frontend/nagvis-js/locale/ru_RU/LC_MESSAGES/nagvis.mo %%WWWDIR%%/share/frontend/nagvis-js/locale/ru_RU/LC_MESSAGES/nagvis.po -%%WWWDIR%%/share/frontend/wui/classes/WuiCore.php -%%WWWDIR%%/share/frontend/wui/classes/WuiHeaderMenu.php -%%WWWDIR%%/share/frontend/wui/classes/WuiMainCfg.php -%%WWWDIR%%/share/frontend/wui/classes/WuiMap.php -%%WWWDIR%%/share/frontend/wui/classes/WuiModLogonDialog.php -%%WWWDIR%%/share/frontend/wui/classes/WuiModLogonEnv.php -%%WWWDIR%%/share/frontend/wui/classes/WuiModLogonMixed.php -%%WWWDIR%%/share/frontend/wui/classes/WuiModMap.php -%%WWWDIR%%/share/frontend/wui/classes/WuiModWelcome.php -%%WWWDIR%%/share/frontend/wui/classes/WuiModule.php -%%WWWDIR%%/share/frontend/wui/classes/WuiModuleHandler.php -%%WWWDIR%%/share/frontend/wui/classes/WuiPage.php -%%WWWDIR%%/share/frontend/wui/classes/WuiViewIndex.php -%%WWWDIR%%/share/frontend/wui/classes/WuiViewMap.php -%%WWWDIR%%/share/frontend/wui/classes/WuiViewWelcome.php -%%WWWDIR%%/share/frontend/wui/css/wui.css -%%WWWDIR%%/share/frontend/wui/defines/wui.php -%%WWWDIR%%/share/frontend/wui/images/clone.png -%%WWWDIR%%/share/frontend/wui/images/delete.png -%%WWWDIR%%/share/frontend/wui/images/help_icon.png -%%WWWDIR%%/share/frontend/wui/images/modify.png -%%WWWDIR%%/share/frontend/wui/images/move.png -%%WWWDIR%%/share/frontend/wui/index.php -%%WWWDIR%%/share/frontend/wui/js/EditMainCfg.js -%%WWWDIR%%/share/frontend/wui/js/ExtGenericResize.js -%%WWWDIR%%/share/frontend/wui/js/ManageBackends.js -%%WWWDIR%%/share/frontend/wui/js/ManageBackgrounds.js -%%WWWDIR%%/share/frontend/wui/js/ManageMaps.js -%%WWWDIR%%/share/frontend/wui/js/ManageShapes.js -%%WWWDIR%%/share/frontend/wui/js/MapManageTmpl.js -%%WWWDIR%%/share/frontend/wui/js/addmodify.js -%%WWWDIR%%/share/frontend/wui/js/ajax.js -%%WWWDIR%%/share/frontend/wui/js/wui.js -%%WWWDIR%%/share/frontend/wui/js/wz_jsgraphics.js %%WWWDIR%%/share/index.php %%WWWDIR%%/share/netmap/GeocodeService.php %%WWWDIR%%/share/netmap/Host.php @@ -401,21 +397,24 @@ %%WWWDIR%%/share/server/core/classes/CoreAuthHandler.php %%WWWDIR%%/share/server/core/classes/CoreAuthModMySQL.php %%WWWDIR%%/share/server/core/classes/CoreAuthModSQLite.php -%%WWWDIR%%/share/server/core/classes/CoreAuthModSession.php %%WWWDIR%%/share/server/core/classes/CoreAuthModule.php %%WWWDIR%%/share/server/core/classes/CoreAuthorisationHandler.php +%%WWWDIR%%/share/server/core/classes/CoreAuthorisationModMultisite.php %%WWWDIR%%/share/server/core/classes/CoreAuthorisationModMySQL.php %%WWWDIR%%/share/server/core/classes/CoreAuthorisationModSQLite.php %%WWWDIR%%/share/server/core/classes/CoreAuthorisationModule.php %%WWWDIR%%/share/server/core/classes/CoreBackendMgmt.php %%WWWDIR%%/share/server/core/classes/CoreExceptions.php %%WWWDIR%%/share/server/core/classes/CoreLog.php -%%WWWDIR%%/share/server/core/classes/CoreMessage.php +%%WWWDIR%%/share/server/core/classes/CoreLogonDialogHandler.php +%%WWWDIR%%/share/server/core/classes/CoreLogonEnv.php +%%WWWDIR%%/share/server/core/classes/CoreLogonMixed.php +%%WWWDIR%%/share/server/core/classes/CoreLogonModule.php +%%WWWDIR%%/share/server/core/classes/CoreLogonMultisite.php +%%WWWDIR%%/share/server/core/classes/CoreModAction.php %%WWWDIR%%/share/server/core/classes/CoreModAuth.php -%%WWWDIR%%/share/server/core/classes/CoreModAutoMap.php %%WWWDIR%%/share/server/core/classes/CoreModChangePassword.php %%WWWDIR%%/share/server/core/classes/CoreModGeneral.php -%%WWWDIR%%/share/server/core/classes/CoreModLogonEnv.php %%WWWDIR%%/share/server/core/classes/CoreModMainCfg.php %%WWWDIR%%/share/server/core/classes/CoreModManageBackgrounds.php %%WWWDIR%%/share/server/core/classes/CoreModManageShapes.php @@ -425,6 +424,7 @@ %%WWWDIR%%/share/server/core/classes/CoreModRoleMgmt.php %%WWWDIR%%/share/server/core/classes/CoreModSearch.php %%WWWDIR%%/share/server/core/classes/CoreModUrl.php +%%WWWDIR%%/share/server/core/classes/CoreModUser.php %%WWWDIR%%/share/server/core/classes/CoreModUserMgmt.php %%WWWDIR%%/share/server/core/classes/CoreModule.php %%WWWDIR%%/share/server/core/classes/CoreModuleHandler.php @@ -435,10 +435,12 @@ %%WWWDIR%%/share/server/core/classes/CoreSessionHandler.php %%WWWDIR%%/share/server/core/classes/CoreTemplateSystem.php %%WWWDIR%%/share/server/core/classes/CoreUriHandler.php +%%WWWDIR%%/share/server/core/classes/CoreUserCfg.php %%WWWDIR%%/share/server/core/classes/GlobalBackendInterface.php %%WWWDIR%%/share/server/core/classes/GlobalBackendTest.php %%WWWDIR%%/share/server/core/classes/GlobalBackendmerlinmy.php %%WWWDIR%%/share/server/core/classes/GlobalBackendmklivestatus.php +%%WWWDIR%%/share/server/core/classes/GlobalBackendnagiosbp.php %%WWWDIR%%/share/server/core/classes/GlobalBackendndomy.php %%WWWDIR%%/share/server/core/classes/GlobalBackground.php %%WWWDIR%%/share/server/core/classes/GlobalCore.php @@ -448,23 +450,18 @@ %%WWWDIR%%/share/server/core/classes/GlobalMainCfg.php %%WWWDIR%%/share/server/core/classes/GlobalMap.php %%WWWDIR%%/share/server/core/classes/GlobalMapCfg.php -%%WWWDIR%%/share/server/core/classes/GlobalMessage.php -%%WWWDIR%%/share/server/core/classes/NagVisAutoMap.php -%%WWWDIR%%/share/server/core/classes/NagVisAutomapCfg.php %%WWWDIR%%/share/server/core/classes/NagVisContextMenu.php %%WWWDIR%%/share/server/core/classes/NagVisHoverMenu.php %%WWWDIR%%/share/server/core/classes/NagVisHoverUrl.php %%WWWDIR%%/share/server/core/classes/NagVisMap.php %%WWWDIR%%/share/server/core/classes/NagVisMapCfg.php %%WWWDIR%%/share/server/core/classes/NagVisUrl.php -%%WWWDIR%%/share/server/core/classes/NagVisViewAutomapModifyParams.php -%%WWWDIR%%/share/server/core/classes/NagVisViewAutomapToMap.php +%%WWWDIR%%/share/server/core/classes/NagVisViewAck.php %%WWWDIR%%/share/server/core/classes/NagVisViewChangePassword.php %%WWWDIR%%/share/server/core/classes/NagVisViewManageRoles.php %%WWWDIR%%/share/server/core/classes/NagVisViewSearch.php +%%WWWDIR%%/share/server/core/classes/NagVisViewToStaticMap.php %%WWWDIR%%/share/server/core/classes/NagVisViewUserMgmt.php -%%WWWDIR%%/share/server/core/classes/WuiForm.php -%%WWWDIR%%/share/server/core/classes/WuiMapCfg.php %%WWWDIR%%/share/server/core/classes/WuiViewEditMainCfg.php %%WWWDIR%%/share/server/core/classes/WuiViewManageBackends.php %%WWWDIR%%/share/server/core/classes/WuiViewManageBackgrounds.php @@ -472,6 +469,7 @@ %%WWWDIR%%/share/server/core/classes/WuiViewManageShapes.php %%WWWDIR%%/share/server/core/classes/WuiViewMapAddModify.php %%WWWDIR%%/share/server/core/classes/WuiViewMapManageTmpl.php +%%WWWDIR%%/share/server/core/classes/objects/NagVisContainer.php %%WWWDIR%%/share/server/core/classes/objects/NagVisHost.php %%WWWDIR%%/share/server/core/classes/objects/NagVisHostgroup.php %%WWWDIR%%/share/server/core/classes/objects/NagVisLine.php @@ -495,97 +493,141 @@ %%WWWDIR%%/share/server/core/ext/php-gettext-1.0.9/gettext.inc %%WWWDIR%%/share/server/core/ext/php-gettext-1.0.9/gettext.php %%WWWDIR%%/share/server/core/ext/php-gettext-1.0.9/streams.php -%%WWWDIR%%/share/server/core/functions/ajaxErrorHandler.php %%WWWDIR%%/share/server/core/functions/autoload.php +%%WWWDIR%%/share/server/core/functions/core.php %%WWWDIR%%/share/server/core/functions/debug.php +%%WWWDIR%%/share/server/core/functions/index.php +%%WWWDIR%%/share/server/core/functions/nagvisErrorHandler.php %%WWWDIR%%/share/server/core/functions/oldPhpVersionFixes.php +%%WWWDIR%%/share/server/core/mapcfg/default.php +%%WWWDIR%%/share/server/core/sources/.gitignore +%%WWWDIR%%/share/server/core/sources/automap.php +%%WWWDIR%%/share/server/core/sources/automap_pos.php +%%WWWDIR%%/share/server/core/sources/filter.php +%%WWWDIR%%/share/server/core/sources/general.php +%%WWWDIR%%/share/server/core/sources/geomap.php %%WWWDIR%%/share/userfiles/gadgets/gadgets_core.php %%WWWDIR%%/share/userfiles/gadgets/std_bar.php +%%WWWDIR%%/share/userfiles/gadgets/std_html_bar.php %%WWWDIR%%/share/userfiles/gadgets/std_speedometer.php %%WWWDIR%%/share/userfiles/gadgets/std_speedometer2.php -%%WWWDIR%%/share/userfiles/images/gadgets/dummy +%%WWWDIR%%/share/userfiles/images/gadgets/.gitignore %%WWWDIR%%/share/userfiles/images/iconsets/20x20.gif -%%WWWDIR%%/share/userfiles/images/iconsets/configerror_large.png -%%WWWDIR%%/share/userfiles/images/iconsets/configerror_medium.png -%%WWWDIR%%/share/userfiles/images/iconsets/configerror_small.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_ack.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_critical.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_down.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_error.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_ok.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_sack.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_unknown.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_up.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_landscape_warning.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_ack.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_critical.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_down.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_error.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_ok.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_sack.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_unknown.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_up.png -%%WWWDIR%%/share/userfiles/images/iconsets/demo_state_warning.png -%%WWWDIR%%/share/userfiles/images/iconsets/error.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_big_ack.png %%WWWDIR%%/share/userfiles/images/iconsets/std_big_critical.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_critical_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_critical_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_big_down.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_big_downtime.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_down_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_down_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_big_error.png %%WWWDIR%%/share/userfiles/images/iconsets/std_big_ok.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_ok_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_big_pending.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_big_sack.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_big_sdowntime.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_unchecked.png %%WWWDIR%%/share/userfiles/images/iconsets/std_big_unknown.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_unknown_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_unknown_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_unreachable.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_unreachable_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_unreachable_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_big_up.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_up_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_big_warning.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_warning_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_big_warning_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_critical.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_critical_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_critical_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_down.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_down_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_down_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_error.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_ok.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_ok_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_pending.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_unchecked.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_unknown.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_unknown_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_unknown_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_unreachable.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_unreachable_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_unreachable_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_up.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_up_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_warning.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_warning_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_dot_warning_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_medium_critical.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_critical_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_critical_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_medium_down.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_downtime.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_down_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_down_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_medium_error.png %%WWWDIR%%/share/userfiles/images/iconsets/std_medium_ok.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_ok_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_medium_pending.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_sack.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_sdowntime.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_unchecked.png %%WWWDIR%%/share/userfiles/images/iconsets/std_medium_unknown.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_unknown_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_unknown_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_unreachable.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_unreachable_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_unreachable_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_medium_up.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_up_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_medium_warning.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_small_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_warning_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_medium_warning_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_small_critical.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_critical_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_critical_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_small_down.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_small_downtime.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_down_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_down_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_small_error.png %%WWWDIR%%/share/userfiles/images/iconsets/std_small_ok.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_ok_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_small_pending.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_small_sack.png -%%WWWDIR%%/share/userfiles/images/iconsets/std_small_sdowntime.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_unchecked.png %%WWWDIR%%/share/userfiles/images/iconsets/std_small_unknown.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_unknown_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_unknown_dt.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_unreachable.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_unreachable_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_unreachable_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_small_up.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_up_dt.png %%WWWDIR%%/share/userfiles/images/iconsets/std_small_warning.png -%%WWWDIR%%/share/userfiles/images/maps/demo_background.png -%%WWWDIR%%/share/userfiles/images/maps/nagvis-demo.png -%%WWWDIR%%/share/userfiles/images/shapes/demo-load.png -%%WWWDIR%%/share/userfiles/images/shapes/demo-server.png -%%WWWDIR%%/share/userfiles/images/shapes/demo-text_demo.png -%%WWWDIR%%/share/userfiles/images/shapes/demo-text_hoststate.png -%%WWWDIR%%/share/userfiles/images/shapes/demo-text_mapstate.png -%%WWWDIR%%/share/userfiles/images/shapes/demo-text_servicestate.png -%%WWWDIR%%/share/userfiles/images/shapes/demo_german_landscape.png -%%WWWDIR%%/share/userfiles/images/shapes/demo_server_bg.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_warning_ack.png +%%WWWDIR%%/share/userfiles/images/iconsets/std_small_warning_dt.png +%%WWWDIR%%/share/userfiles/images/maps/demo-germany.png +%%WWWDIR%%/share/userfiles/images/maps/demo-ham-racks.png +%%WWWDIR%%/share/userfiles/images/maps/demo-host.png +%%WWWDIR%%/share/userfiles/images/maps/demo-load.png +%%WWWDIR%%/share/userfiles/images/maps/demo-overview.png +%%WWWDIR%%/share/userfiles/images/shapes/demo-wan-cloud.png %%WWWDIR%%/share/userfiles/images/shapes/demo_traffic_load_legend.png +%%WWWDIR%%/share/userfiles/images/shapes/std_dummy.png +%%WWWDIR%%/share/userfiles/images/templates/default.control_delete.gif +%%WWWDIR%%/share/userfiles/images/templates/default.control_drag.gif +%%WWWDIR%%/share/userfiles/images/templates/default.control_modify.gif +%%WWWDIR%%/share/userfiles/images/templates/default.control_togglemid.gif +%%WWWDIR%%/share/userfiles/images/templates/default.folder_closed.gif +%%WWWDIR%%/share/userfiles/images/templates/default.folder_open.gif %%WWWDIR%%/share/userfiles/images/templates/default.header.png %%WWWDIR%%/share/userfiles/images/templates/default.header_down.png +%%WWWDIR%%/share/userfiles/images/templates/default.header_hide.png %%WWWDIR%%/share/userfiles/images/templates/default.header_over.png +%%WWWDIR%%/share/userfiles/images/templates/default.header_show.png +%%WWWDIR%%/share/userfiles/scripts/.gitignore +%%WWWDIR%%/share/userfiles/scripts/std_lq.php %%WWWDIR%%/share/userfiles/sounds/std_critical.mp3 %%WWWDIR%%/share/userfiles/sounds/std_down.mp3 %%WWWDIR%%/share/userfiles/sounds/std_error.mp3 %%WWWDIR%%/share/userfiles/sounds/std_unreachable.mp3 %%WWWDIR%%/share/userfiles/sounds/std_warning.mp3 %%WWWDIR%%/share/userfiles/styles/.gitignore -%%WWWDIR%%/share/userfiles/templates/default.automap.html -%%WWWDIR%%/share/userfiles/templates/default.automapModifyParams.html -%%WWWDIR%%/share/userfiles/templates/default.automapToMap.html %%WWWDIR%%/share/userfiles/templates/default.changePassword.html %%WWWDIR%%/share/userfiles/templates/default.context.css %%WWWDIR%%/share/userfiles/templates/default.context.html @@ -603,18 +645,16 @@ %%WWWDIR%%/share/userfiles/templates/default.multisiteMaps.html %%WWWDIR%%/share/userfiles/templates/default.overview.html %%WWWDIR%%/share/userfiles/templates/default.search.html +%%WWWDIR%%/share/userfiles/templates/default.toStaticMap.html %%WWWDIR%%/share/userfiles/templates/default.url.html %%WWWDIR%%/share/userfiles/templates/default.userMgmt.html %%WWWDIR%%/share/userfiles/templates/default.wuiEditMainCfg.html -%%WWWDIR%%/share/userfiles/templates/default.wuiIndex.html %%WWWDIR%%/share/userfiles/templates/default.wuiManageBackends.html %%WWWDIR%%/share/userfiles/templates/default.wuiManageBackgrounds.html %%WWWDIR%%/share/userfiles/templates/default.wuiManageMaps.html %%WWWDIR%%/share/userfiles/templates/default.wuiManageShapes.html -%%WWWDIR%%/share/userfiles/templates/default.wuiMap.html %%WWWDIR%%/share/userfiles/templates/default.wuiMapAddModify.html %%WWWDIR%%/share/userfiles/templates/default.wuiMapManageTmpl.html -%%WWWDIR%%/share/userfiles/templates/default.wuiWelcome.html %%WWWDIR%%/uifx/README %%WWWDIR%%/uifx/deploy.wscp %%WWWDIR%%/uifx/html-template/AC_OETags.js @@ -732,6 +772,7 @@ @dirrmtry %%WWWDIR%%/share/userfiles/templates @dirrmtry %%WWWDIR%%/share/userfiles/styles @dirrmtry %%WWWDIR%%/share/userfiles/sounds +@dirrmtry %%WWWDIR%%/share/userfiles/scripts @dirrmtry %%WWWDIR%%/share/userfiles/images/templates @dirrmtry %%WWWDIR%%/share/userfiles/images/shapes @dirrmtry %%WWWDIR%%/share/userfiles/images/maps @@ -740,6 +781,8 @@ @dirrmtry %%WWWDIR%%/share/userfiles/images @dirrmtry %%WWWDIR%%/share/userfiles/gadgets @dirrmtry %%WWWDIR%%/share/userfiles +@dirrm %%WWWDIR%%/share/server/core/sources +@dirrm %%WWWDIR%%/share/server/core/mapcfg @dirrm %%WWWDIR%%/share/server/core/functions @dirrm %%WWWDIR%%/share/server/core/ext/php-gettext-1.0.9 @dirrm %%WWWDIR%%/share/server/core/ext @@ -768,12 +811,6 @@ @dirrm %%WWWDIR%%/share/netmap/library/Zend @dirrm %%WWWDIR%%/share/netmap/library @dirrm %%WWWDIR%%/share/netmap -@dirrm %%WWWDIR%%/share/frontend/wui/js -@dirrm %%WWWDIR%%/share/frontend/wui/images -@dirrm %%WWWDIR%%/share/frontend/wui/defines -@dirrm %%WWWDIR%%/share/frontend/wui/css -@dirrm %%WWWDIR%%/share/frontend/wui/classes -@dirrm %%WWWDIR%%/share/frontend/wui @dirrm %%WWWDIR%%/share/frontend/nagvis-js/locale/ru_RU/LC_MESSAGES @dirrm %%WWWDIR%%/share/frontend/nagvis-js/locale/ru_RU @dirrm %%WWWDIR%%/share/frontend/nagvis-js/locale/pt_BR/LC_MESSAGES @@ -788,6 +825,7 @@ @dirrm %%WWWDIR%%/share/frontend/nagvis-js/locale/de_DE @dirrm %%WWWDIR%%/share/frontend/nagvis-js/locale @dirrm %%WWWDIR%%/share/frontend/nagvis-js/js +@dirrm %%WWWDIR%%/share/frontend/nagvis-js/images/jscolor @dirrm %%WWWDIR%%/share/frontend/nagvis-js/images/internal @dirrm %%WWWDIR%%/share/frontend/nagvis-js/images @dirrm %%WWWDIR%%/share/frontend/nagvis-js/ext/dwoo-1.1.0/plugins/builtin/processors @@ -816,13 +854,13 @@ @dirrm %%WWWDIR%%/share/frontend/nagvis-js/ext/dwoo-1.1.0 @dirrm %%WWWDIR%%/share/frontend/nagvis-js/ext @dirrm %%WWWDIR%%/share/frontend/nagvis-js/defines -@dirrm %%WWWDIR%%/share/frontend/nagvis-js/css @dirrm %%WWWDIR%%/share/frontend/nagvis-js/classes @dirrm %%WWWDIR%%/share/frontend/nagvis-js @dirrm %%WWWDIR%%/share/frontend @dirrmtry %%WWWDIR%%/share @dirrmtry %%WWWDIR%%/etc/maps @dirrmtry %%WWWDIR%%/etc/geomap +@dirrmtry %%WWWDIR%%/etc/conf.d @dirrmtry %%WWWDIR%%/etc/automaps @dirrmtry %%WWWDIR%%/etc @dirrm %%WWWDIR%%/docs/general/img @@ -834,6 +872,3 @@ @dirrm %%WWWDIR%%/docs/de_DE @dirrm %%WWWDIR%%/docs @dirrmtry %%WWWDIR%% -@exec mkdir -p %D/%%WWWDIR%%/var/tmpl/compile -@exec mkdir -p %D/%%WWWDIR%%/var/tmpl/cache -@exec mkdir -p %D/%%WWWDIR%%/share/var From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:49:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E83AAB1; Wed, 10 Oct 2012 21:49:03 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 487038FC0C; Wed, 10 Oct 2012 21:49:03 +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 q9ALn3rb008266; Wed, 10 Oct 2012 21:49:03 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ALn3nT008263; Wed, 10 Oct 2012 21:49:03 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210102149.q9ALn3nT008263@svn.freebsd.org> From: Raphael Kubo da Costa Date: Wed, 10 Oct 2012 21:49:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305689 - head/www/codeigniter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:49:03 -0000 Author: rakuco Date: Wed Oct 10 21:49:02 2012 New Revision: 305689 URL: http://svn.freebsd.org/changeset/ports/305689 Log: Update to 2.1.3. PR: ports/172571 Submitted by: Bo-Yi Wu (maintainer) Feature safe: yes Modified: head/www/codeigniter/Makefile head/www/codeigniter/distinfo Modified: head/www/codeigniter/Makefile ============================================================================== --- head/www/codeigniter/Makefile Wed Oct 10 21:35:37 2012 (r305688) +++ head/www/codeigniter/Makefile Wed Oct 10 21:49:02 2012 (r305689) @@ -6,7 +6,7 @@ # PORTNAME= codeigniter -PORTVERSION= 2.1.2 +PORTVERSION= 2.1.3 CATEGORIES= www MASTER_SITES= http://downloads.codeigniter.com/reactor/ \ http://www.codeigniter.org.tw/download_files/ Modified: head/www/codeigniter/distinfo ============================================================================== --- head/www/codeigniter/distinfo Wed Oct 10 21:35:37 2012 (r305688) +++ head/www/codeigniter/distinfo Wed Oct 10 21:49:02 2012 (r305689) @@ -1,2 +1,2 @@ -SHA256 (CodeIgniter_2.1.2.zip) = 775ffeb9f8faf6faa9a987d68a9432c0ff478afe85cac9a63cf0d5f51d91d657 -SIZE (CodeIgniter_2.1.2.zip) = 2319509 +SHA256 (CodeIgniter_2.1.3.zip) = fb91ab573741b8aed004fdbf6e6351db993e6a5079b95857b7d74f1e8c0edc44 +SIZE (CodeIgniter_2.1.3.zip) = 2321739 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:51:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8464BC02; Wed, 10 Oct 2012 21:51:22 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6DE768FC16; Wed, 10 Oct 2012 21:51:22 +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 q9ALpMk7008643; Wed, 10 Oct 2012 21:51:22 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ALpMOb008641; Wed, 10 Oct 2012 21:51:22 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210102151.q9ALpMOb008641@svn.freebsd.org> From: Raphael Kubo da Costa Date: Wed, 10 Oct 2012 21:51:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305690 - head/x11-wm/blackbox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:51:22 -0000 Author: rakuco Date: Wed Oct 10 21:51:21 2012 New Revision: 305690 URL: http://svn.freebsd.org/changeset/ports/305690 Log: Convert to OptionsNG. PR: ports/172561 Submitted by: Andrew J. Caines (maintainer) Feature safe: yes Modified: head/x11-wm/blackbox/Makefile Modified: head/x11-wm/blackbox/Makefile ============================================================================== --- head/x11-wm/blackbox/Makefile Wed Oct 10 21:49:02 2012 (r305689) +++ head/x11-wm/blackbox/Makefile Wed Oct 10 21:51:21 2012 (r305690) @@ -28,7 +28,7 @@ OPTIONS= TOOLS_ONLY "Do not install wind .include -.if defined(WITH_TOOLS_ONLY) +.if ${PORT_OPTIONS:MTOOLS_ONLY} PKGNAMESUFFIX= -tools COMMENT+= (tools only) MAKE_ARGS= SUBDIRS="doc lib util" bin_PROGRAMS=bsetroot @@ -43,7 +43,7 @@ post-patch: @${REINPLACE_CMD} -e 's/_XUTIL_H_/_X11&/' ${WRKSRC}/lib/Util.hh post-install: -.if defined(WITH_TOOLS_ONLY) +.if ${PORT_OPTIONS:MTOOLS_ONLY} @${REINPLACE_CMD} -E '/[^s]\/blackbox|bstyleconvert|lib|include/d' \ ${TMPPLIST} ${INSTALL_MAN} ${MAN1:S#^#${WRKSRC}/doc/#} ${MANPREFIX}/man/man1 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 21:57:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D71C6D88; Wed, 10 Oct 2012 21:57:05 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A710D8FC0C; Wed, 10 Oct 2012 21:57:05 +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 q9ALv5gD009462; Wed, 10 Oct 2012 21:57:05 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9ALv5oY009457; Wed, 10 Oct 2012 21:57:05 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210102157.q9ALv5oY009457@svn.freebsd.org> From: Raphael Kubo da Costa Date: Wed, 10 Oct 2012 21:57:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305691 - in head/ftp/bareftp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:57:05 -0000 Author: rakuco Date: Wed Oct 10 21:57:05 2012 New Revision: 305691 URL: http://svn.freebsd.org/changeset/ports/305691 Log: Update to 0.3.9. PR: ports/172538 Submitted by: Chris Petrik (maintainer) Feature safe: yes Modified: head/ftp/bareftp/Makefile head/ftp/bareftp/distinfo head/ftp/bareftp/files/patch-po-LINGUAS (contents, props changed) head/ftp/bareftp/pkg-plist Modified: head/ftp/bareftp/Makefile ============================================================================== --- head/ftp/bareftp/Makefile Wed Oct 10 21:51:21 2012 (r305690) +++ head/ftp/bareftp/Makefile Wed Oct 10 21:57:05 2012 (r305691) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= bareftp -PORTVERSION= 0.3.8 -PORTREVISION= 1 +PORTVERSION= 0.3.9 CATEGORIES= ftp MASTER_SITES= http://www.bareftp.org/release/ Modified: head/ftp/bareftp/distinfo ============================================================================== --- head/ftp/bareftp/distinfo Wed Oct 10 21:51:21 2012 (r305690) +++ head/ftp/bareftp/distinfo Wed Oct 10 21:57:05 2012 (r305691) @@ -1,2 +1,2 @@ -SHA256 (bareftp-0.3.8.tar.gz) = 6697aa93a32e7af55de25e1d46d12004ce2dacd673407b3c2129da1add0d7d46 -SIZE (bareftp-0.3.8.tar.gz) = 591198 +SHA256 (bareftp-0.3.9.tar.gz) = ac799d0b38695c8dbff85ef497746868a4b07ff2a86e61a901d8e61f125aeaef +SIZE (bareftp-0.3.9.tar.gz) = 593672 Modified: head/ftp/bareftp/files/patch-po-LINGUAS ============================================================================== --- head/ftp/bareftp/files/patch-po-LINGUAS Wed Oct 10 21:51:21 2012 (r305690) +++ head/ftp/bareftp/files/patch-po-LINGUAS Wed Oct 10 21:57:05 2012 (r305691) @@ -1,13 +1,11 @@ - -$FreeBSD$ - ---- po/LINGUAS.orig -+++ po/LINGUAS -@@ -1,12 +1,12 @@ +--- po/LINGUAS.bak 2012-10-09 15:03:53.000000000 +0000 ++++ po/LINGUAS 2012-10-09 15:05:12.000000000 +0000 +@@ -1,13 +1,13 @@ -ca -de -es -fr +-hu -it -ja -nb @@ -19,6 +17,7 @@ $FreeBSD$ +de \ +es \ +fr \ ++hu \ +it \ +ja \ +nb \ Modified: head/ftp/bareftp/pkg-plist ============================================================================== --- head/ftp/bareftp/pkg-plist Wed Oct 10 21:51:21 2012 (r305690) +++ head/ftp/bareftp/pkg-plist Wed Oct 10 21:57:05 2012 (r305691) @@ -35,4 +35,5 @@ share/locale/pt_BR/LC_MESSAGES/bareftp.m share/locale/ru/LC_MESSAGES/bareftp.mo share/locale/sk/LC_MESSAGES/bareftp.mo share/locale/sv/LC_MESSAGES/bareftp.mo +share/locale/hu/LC_MESSAGES/bareftp.mo @dirrm lib/bareftp From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 22:07:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 89C92289; Wed, 10 Oct 2012 22:07:00 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7383F8FC17; Wed, 10 Oct 2012 22:07:00 +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 q9AM707C010803; Wed, 10 Oct 2012 22:07:00 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AM70fV010800; Wed, 10 Oct 2012 22:07:00 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201210102207.q9AM70fV010800@svn.freebsd.org> From: Rene Ladan Date: Wed, 10 Oct 2012 22:07:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305692 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 22:07:00 -0000 Author: rene Date: Wed Oct 10 22:06:59 2012 New Revision: 305692 URL: http://svn.freebsd.org/changeset/ports/305692 Log: Document a new vulnerability in www/chromium < 22.0.1229.94 Obtained from: http://googlechromereleases.blogspot.nl/search/label/Stable%20updates Feature safe: yes Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Oct 10 21:57:05 2012 (r305691) +++ head/security/vuxml/vuln.xml Wed Oct 10 22:06:59 2012 (r305692) @@ -51,6 +51,33 @@ Note: Please add new entries to the beg --> + + chromium -- multiple vulnerabilities + + + chromium + 22.0.1229.94 + + + + +

Google Chrome Releases reports:

+
+

[154983][154987] Critical CVE-2012-5112: SVG use-after-free and + IPC arbitrary file write. Credit to Pinkie Pie.

+
+ +
+ + CVE-2012-5112 + http://googlechromereleases.blogspot.nl/search/label/Stable%20updates + + + 2012-10-10 + 2012-10-10 + +
+ mozilla -- multiple vulnerabilities From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 22:44:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FE20AFC; Wed, 10 Oct 2012 22:44:42 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2962D8FC08; Wed, 10 Oct 2012 22:44: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 q9AMig7F015495; Wed, 10 Oct 2012 22:44:42 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AMifO4015492; Wed, 10 Oct 2012 22:44:41 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201210102244.q9AMifO4015492@svn.freebsd.org> From: Rene Ladan Date: Wed, 10 Oct 2012 22:44:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305693 - head/www/chromium X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 22:44:42 -0000 Author: rene Date: Wed Oct 10 22:44:41 2012 New Revision: 305693 URL: http://svn.freebsd.org/changeset/ports/305693 Log: Update to 22.0.1229.94 Security: http://www.vuxml.org/freebsd/09e83f7f-1326-11e2-afe3-00262d5ed8ee.html Feature safe: yes Modified: head/www/chromium/Makefile head/www/chromium/distinfo Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Wed Oct 10 22:06:59 2012 (r305692) +++ head/www/chromium/Makefile Wed Oct 10 22:44:41 2012 (r305693) @@ -3,7 +3,7 @@ PORTNAME= chromium DISTVERSIONPREFIX= courgette-redacted- -DISTVERSION= 22.0.1229.92 +DISTVERSION= 22.0.1229.94 CATEGORIES= www MASTER_SITES= http://download.goodking.org/downloads/ \ ftp://rene-ladan.nl/pub/distfiles/ \ Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Wed Oct 10 22:06:59 2012 (r305692) +++ head/www/chromium/distinfo Wed Oct 10 22:44:41 2012 (r305693) @@ -1,2 +1,2 @@ -SHA256 (chromium-courgette-redacted-22.0.1229.92.tar.xz) = 85c7e618e7acc22f5a2c4d3993db02cac50834b0f7b12976d4e6f019cdf247b2 -SIZE (chromium-courgette-redacted-22.0.1229.92.tar.xz) = 173059616 +SHA256 (chromium-courgette-redacted-22.0.1229.94.tar.xz) = 6cd955abb85b283003919f780a744d1ac3a2d5ff972bc542dc52674c2403380a +SIZE (chromium-courgette-redacted-22.0.1229.94.tar.xz) = 173082428 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 00:06:34 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A9A1D34; Thu, 11 Oct 2012 00:06:34 +0000 (UTC) (envelope-from brucec@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6ABA48FC08; Thu, 11 Oct 2012 00:06: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 q9B06YDW025602; Thu, 11 Oct 2012 00:06:34 GMT (envelope-from brucec@svn.freebsd.org) Received: (from brucec@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B06YGN025598; Thu, 11 Oct 2012 00:06:34 GMT (envelope-from brucec@svn.freebsd.org) Message-Id: <201210110006.q9B06YGN025598@svn.freebsd.org> From: Bruce Cran Date: Thu, 11 Oct 2012 00:06:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305694 - head/sysutils/fio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 00:06:34 -0000 Author: brucec (src committer) Date: Thu Oct 11 00:06:33 2012 New Revision: 305694 URL: http://svn.freebsd.org/changeset/ports/305694 Log: Update to version 2.0.10. o XP/2003 compatibility fix o fio patch: Windows netio fixes o Windows: avoid large writes during file layout. o Windows: handle SIGBREAK. o Fix confusion between terse and json output o Fix segfault race on exit for platforms that don't have disk util support o client: support per-client job files o Add support for Fusion-io atomic write engine o ioengine: Add fallocate ioengine o parser: fix overflowing integer type options o Add pending IO to the tail of the busy list Feature safe: yes Modified: head/sysutils/fio/Makefile head/sysutils/fio/distinfo head/sysutils/fio/pkg-plist Modified: head/sysutils/fio/Makefile ============================================================================== --- head/sysutils/fio/Makefile Wed Oct 10 22:44:41 2012 (r305693) +++ head/sysutils/fio/Makefile Thu Oct 11 00:06:33 2012 (r305694) @@ -8,7 +8,7 @@ # PORTNAME= fio -PORTVERSION= 2.0.8 +PORTVERSION= 2.0.10 CATEGORIES= sysutils benchmarks MASTER_SITES= http://brick.kernel.dk/snaps/ Modified: head/sysutils/fio/distinfo ============================================================================== --- head/sysutils/fio/distinfo Wed Oct 10 22:44:41 2012 (r305693) +++ head/sysutils/fio/distinfo Thu Oct 11 00:06:33 2012 (r305694) @@ -1,2 +1,2 @@ -SHA256 (fio-2.0.8.tar.bz2) = 584724a98cbed7364a550c9106c88d1ae3833b3edffda46ed5fcbb90fffb672a -SIZE (fio-2.0.8.tar.bz2) = 216417 +SHA256 (fio-2.0.10.tar.bz2) = 2de56c8b6103858d34c1771e244907fafe59788d7114930aa9f4fefc146954f0 +SIZE (fio-2.0.10.tar.bz2) = 229363 Modified: head/sysutils/fio/pkg-plist ============================================================================== --- head/sysutils/fio/pkg-plist Wed Oct 10 22:44:41 2012 (r305693) +++ head/sysutils/fio/pkg-plist Thu Oct 11 00:06:33 2012 (r305694) @@ -3,13 +3,19 @@ bin/fio_generate_plots %%PORTEXAMPLES%%%%EXAMPLESDIR%%/1mbs_clients %%PORTEXAMPLES%%%%EXAMPLESDIR%%/aio-read %%PORTEXAMPLES%%%%EXAMPLESDIR%%/disk-zone-profile +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/e4defrag +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/e4defrag2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/enospc-pressure +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/falloc %%PORTEXAMPLES%%%%EXAMPLESDIR%%/flow %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fsx +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fusion-aw-sync.ini %%PORTEXAMPLES%%%%EXAMPLESDIR%%/iometer-file-access-server %%PORTEXAMPLES%%%%EXAMPLESDIR%%/netio %%PORTEXAMPLES%%%%EXAMPLESDIR%%/null %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rdmaio-client %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rdmaio-server +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ssd-steadystate.fio %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ssd-test %%PORTEXAMPLES%%%%EXAMPLESDIR%%/surface-scan %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tiobench-example From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 00:59:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C8B9DEA; Thu, 11 Oct 2012 00:59:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 04F9D8FC14; Thu, 11 Oct 2012 00:59:49 +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 q9B0xmAT032068; Thu, 11 Oct 2012 00:59:48 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B0xmr6032065; Thu, 11 Oct 2012 00:59:48 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210110059.q9B0xmr6032065@svn.freebsd.org> From: Steve Wills Date: Thu, 11 Oct 2012 00:59:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305695 - head/www/mod_spdy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 00:59:49 -0000 Author: swills Date: Thu Oct 11 00:59:48 2012 New Revision: 305695 URL: http://svn.freebsd.org/changeset/ports/305695 Log: - Update to 0.9.3.3 PR: ports/172564 Submitted by: Masaki TAGAWA (maintainer) Feature safe: yes Modified: head/www/mod_spdy/Makefile head/www/mod_spdy/distinfo Modified: head/www/mod_spdy/Makefile ============================================================================== --- head/www/mod_spdy/Makefile Thu Oct 11 00:06:33 2012 (r305694) +++ head/www/mod_spdy/Makefile Thu Oct 11 00:59:48 2012 (r305695) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mod_spdy -PORTVERSION= 0.9.3.2 +PORTVERSION= 0.9.3.3 CATEGORIES= www MASTER_SITES= http://www.club.kyutech.ac.jp/~masaki/ports/:mod_spdy \ ${MASTER_SITE_APACHE_HTTPD}:apache22 \ Modified: head/www/mod_spdy/distinfo ============================================================================== --- head/www/mod_spdy/distinfo Thu Oct 11 00:06:33 2012 (r305694) +++ head/www/mod_spdy/distinfo Thu Oct 11 00:59:48 2012 (r305695) @@ -1,5 +1,5 @@ -SHA256 (mod_spdy/mod_spdy_source_0.9.3.2.tar.xz) = e7e5a92ef39355c2905596d3da17816b533e44138721da5b036015bb0004cf78 -SIZE (mod_spdy/mod_spdy_source_0.9.3.2.tar.xz) = 5038360 +SHA256 (mod_spdy/mod_spdy_source_0.9.3.3.tar.xz) = 584ab9b3e91ac9d5b5f31ae5ff899eb1739c4dcf50ea572b94a7a9a7e450ccfc +SIZE (mod_spdy/mod_spdy_source_0.9.3.3.tar.xz) = 5069100 SHA256 (mod_spdy/httpd-2.2.22.tar.gz) = 74c1ffffefe1a502339b004ad6488fbd858eb425a05968cd67c05695dbc0fe7c SIZE (mod_spdy/httpd-2.2.22.tar.gz) = 7200529 SHA256 (mod_spdy/openssl-1.0.1c.tar.gz) = 2a9eb3cd4e8b114eb9179c0d3884d61658e7d8e8bf4984798a5f5bd48e325ebe From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 01:18:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6786AE2; Thu, 11 Oct 2012 01:18:21 +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 4F3A78FC0A; Thu, 11 Oct 2012 01:18: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 q9B1ILpo034420; Thu, 11 Oct 2012 01:18:21 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B1ILf1034417; Thu, 11 Oct 2012 01:18:21 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210110118.q9B1ILf1034417@svn.freebsd.org> From: Bryan Drewery Date: Thu, 11 Oct 2012 01:18:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305696 - head/ports-mgmt/poudriere-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 01:18:21 -0000 Author: bdrewery Date: Thu Oct 11 01:18:20 2012 New Revision: 305696 URL: http://svn.freebsd.org/changeset/ports/305696 Log: - Update to checkin da583db283 Changes: * bulk: Show which make.conf, PKGDIR and OPTIONS directory is being used for the build. * testport: Add -z SETNAME support * Support PTNAME-make.conf Feature safe: yes Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Thu Oct 11 00:59:48 2012 (r305695) +++ head/ports-mgmt/poudriere-devel/Makefile Thu Oct 11 01:18:20 2012 (r305696) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 2.1.99.20121009 +PORTVERSION= 2.1.99.20121010 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ PKGNAMESUFFIX= -devel @@ -13,7 +13,7 @@ COMMENT= Port build and test system LICENSE= BSD -FSL_CHKIN= 06e052c2c9 +FSL_CHKIN= da583db283 NO_BUILD= yes MANCOMPRESSED= yes Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Thu Oct 11 00:59:48 2012 (r305695) +++ head/ports-mgmt/poudriere-devel/distinfo Thu Oct 11 01:18:20 2012 (r305696) @@ -1,2 +1,2 @@ -SHA256 (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 2cdec948f233bfc9e2ba142f24127b9cde85827a6d160f63e6c5f1400d3d57ac -SIZE (poudriere-2.1.99.20121009.tar.gz?uuid=06e052c2c9) = 34110 +SHA256 (poudriere-2.1.99.20121010.tar.gz?uuid=da583db283) = 7cc5a7195f6aa31ab50425c742a842b6e8fafa33a9fc9f4e5f1c2d87422c37ca +SIZE (poudriere-2.1.99.20121010.tar.gz?uuid=da583db283) = 34260 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 01:40:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA7C55AC; Thu, 11 Oct 2012 01:40:59 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A357F8FC0C; Thu, 11 Oct 2012 01:40:59 +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 q9B1exVY037241; Thu, 11 Oct 2012 01:40:59 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B1exhZ037237; Thu, 11 Oct 2012 01:40:59 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210110140.q9B1exhZ037237@svn.freebsd.org> From: Steve Wills Date: Thu, 11 Oct 2012 01:40:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305697 - head/devel/gitolite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 01:40:59 -0000 Author: swills Date: Thu Oct 11 01:40:59 2012 New Revision: 305697 URL: http://svn.freebsd.org/changeset/ports/305697 Log: - Update devel/gitolite to 3.1 - Document security issue in devel/gitolite PR: ports/172565 Submitted by: milki (maintainer) Reviewed by: eadler Security: f94befcd-1289-11e2-a25e-525400272390 Feature safe: yes Modified: head/devel/gitolite/Makefile head/devel/gitolite/distinfo head/devel/gitolite/pkg-plist Modified: head/devel/gitolite/Makefile ============================================================================== --- head/devel/gitolite/Makefile Thu Oct 11 01:18:20 2012 (r305696) +++ head/devel/gitolite/Makefile Thu Oct 11 01:40:59 2012 (r305697) @@ -6,7 +6,8 @@ # PORTNAME= gitolite -PORTVERSION= 3.04 +PORTVERSION= 3.1 +PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://milki.github.com/${PORTNAME}/ \ LOCAL/tdb Modified: head/devel/gitolite/distinfo ============================================================================== --- head/devel/gitolite/distinfo Thu Oct 11 01:18:20 2012 (r305696) +++ head/devel/gitolite/distinfo Thu Oct 11 01:40:59 2012 (r305697) @@ -1,2 +1,2 @@ -SHA256 (gitolite-3.04.tar.gz) = 900dd144ddfa88cc21fadfef7652799ead78c1be52304506994307c448e6b618 -SIZE (gitolite-3.04.tar.gz) = 114010 +SHA256 (gitolite-3.1.tar.gz) = 36fc270c29e980f7217c203656373d1c44f73035fe18053163301cd10a4e0f04 +SIZE (gitolite-3.1.tar.gz) = 119322 Modified: head/devel/gitolite/pkg-plist ============================================================================== --- head/devel/gitolite/pkg-plist Thu Oct 11 01:18:20 2012 (r305696) +++ head/devel/gitolite/pkg-plist Thu Oct 11 01:40:59 2012 (r305697) @@ -19,6 +19,7 @@ bin/gitolite %%SITE_PERL%%/Gitolite/Triggers/RepoUmask.pm %%SITE_PERL%%/Gitolite/Triggers/Shell.pm %%SITE_PERL%%/Gitolite/Triggers/Writable.pm +%%SITE_PERL%%/Gitolite/Triggers/RefexExpr.pm libexec/gitolite/VERSION libexec/gitolite/VREF/COUNT libexec/gitolite/VREF/EMAIL-CHECK @@ -28,6 +29,8 @@ libexec/gitolite/VREF/MERGE-CHECK libexec/gitolite/VREF/VOTES libexec/gitolite/VREF/lock libexec/gitolite/VREF/partial-copy +libexec/gitolite/VREF/refex-expr +libexec/gitolite/check-g2-compat libexec/gitolite/commands/D libexec/gitolite/commands/access libexec/gitolite/commands/creator @@ -43,26 +46,28 @@ libexec/gitolite/commands/mirror libexec/gitolite/commands/perms libexec/gitolite/commands/print-default-rc libexec/gitolite/commands/push +libexec/gitolite/commands/rsync libexec/gitolite/commands/sshkeys-lint libexec/gitolite/commands/sskm libexec/gitolite/commands/sudo libexec/gitolite/commands/svnserve libexec/gitolite/commands/symbolic-ref +libexec/gitolite/commands/who-pushed libexec/gitolite/commands/writable -libexec/gitolite/check-g2-compat libexec/gitolite/convert-gitosis-conf libexec/gitolite/gitolite libexec/gitolite/gitolite-shell libexec/gitolite/syntactic-sugar/continuation-lines libexec/gitolite/syntactic-sugar/keysubdirs-as-groups libexec/gitolite/triggers/partial-copy -libexec/gitolite/triggers/upstream libexec/gitolite/triggers/post-compile/ssh-authkeys libexec/gitolite/triggers/post-compile/ssh-authkeys-shell-users +libexec/gitolite/triggers/post-compile/update-description-file libexec/gitolite/triggers/post-compile/update-git-configs libexec/gitolite/triggers/post-compile/update-git-daemon-access-list libexec/gitolite/triggers/post-compile/update-gitweb-access-list libexec/gitolite/triggers/renice +libexec/gitolite/triggers/upstream @dirrm %%SITE_PERL%%/Gitolite/Conf @dirrm %%SITE_PERL%%/Gitolite/Hooks @dirrm %%SITE_PERL%%/Gitolite/Test From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 05:33:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E314E66; Thu, 11 Oct 2012 05:33:05 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4CD358FC12; Thu, 11 Oct 2012 05:33:05 +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 q9B5X47u065483; Thu, 11 Oct 2012 05:33:04 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B5X4iW065476; Thu, 11 Oct 2012 05:33:04 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201210110533.q9B5X4iW065476@svn.freebsd.org> From: Jason Helfman Date: Thu, 11 Oct 2012 05:33:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305698 - in head/games: . smashbattle smashbattle/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 05:33:05 -0000 Author: jgh Date: Thu Oct 11 05:33:04 2012 New Revision: 305698 URL: http://svn.freebsd.org/changeset/ports/305698 Log: add new port: games/smashbattle Smash Battle is a cross platform, 8-bit style game where two, three or four player face off against each other. The game was inspired by the mario battle minigame from mario 3 when we started developing, but changed a lot over time. WWW: http://smashbattle.condor.tv/ PR: 167855 Submitted by: nemysis@gmx.ch Feature safe: yes Added: head/games/smashbattle/ head/games/smashbattle/Makefile (contents, props changed) head/games/smashbattle/distinfo (contents, props changed) head/games/smashbattle/files/ head/games/smashbattle/files/patch-Makefile (contents, props changed) head/games/smashbattle/files/smashbattle.in (contents, props changed) head/games/smashbattle/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Thu Oct 11 01:40:59 2012 (r305697) +++ head/games/Makefile Thu Oct 11 05:33:04 2012 (r305698) @@ -847,6 +847,7 @@ SUBDIR += slashem-tty SUBDIR += slump SUBDIR += slune + SUBDIR += smashbattle SUBDIR += smiley SUBDIR += sokoban SUBDIR += sol Added: head/games/smashbattle/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/smashbattle/Makefile Thu Oct 11 05:33:04 2012 (r305698) @@ -0,0 +1,54 @@ +# Created by: nemysis@gmx.ch +# +# $FreeBSD$ + +PORTNAME= smashbattle +PORTVERSION= 110224 +CATEGORIES= games +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/beta-${PORTVERSION} +DISTNAME= ${PORTNAME}-${DISTVERSION}-src + +MAINTAINER= nemysis@gmx.ch +COMMENT= 8-bit style platform battle game + +WRKSRC= ${WRKDIR}/${DISTNAME}/battle/Battle + +USE_ZIP= yes +EXTRACT_AFTER_ARGS= -d ${WRKDIR}/${DISTNAME} +USE_GMAKE= yes +USE_DOS2UNIX= *.cpp *.h *.ini Makefile +ALL_TARGET= battle +USE_SDL= sdl image mixer +MAKE_JOBS_SAFE= yes + +pre-extract: + @${MKDIR} ${WRKDIR}/${DISTNAME} + +PLIST_FILES= bin/${PORTNAME} \ + share/applications/${PORTNAME}.desktop \ + share/applications/${PORTNAME}fs.desktop \ + share/pixmaps/${PORTNAME}.png +PLIST_DIRSTRY= share/applications + +PORTDATA= * + +SUB_FILES= ${PORTNAME} + +.include + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/share/games/smashbattle/gfx/SB.png|${PORTNAME}|' \ + -e 's|/usr/local/bin/smashbattle|${PORTNAME}|' \ + ${WRKSRC}/linux/${PORTNAME}.desktop ${WRKSRC}/linux/${PORTNAME}fs.desktop + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin + ${MKDIR} ${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/battle ${DATADIR}/${PORTNAME} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "gfx music sfx stage" ${DATADIR}) + ${INSTALL_DATA} ${WRKSRC}/gfx/SB.png ${PREFIX}/share/pixmaps/${PORTNAME}.png + ${MKDIR} ${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/linux/${PORTNAME}.desktop ${PREFIX}/share/applications/ + ${INSTALL_DATA} ${WRKSRC}/linux/${PORTNAME}fs.desktop ${PREFIX}/share/applications/ + +.include Added: head/games/smashbattle/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/smashbattle/distinfo Thu Oct 11 05:33:04 2012 (r305698) @@ -0,0 +1,2 @@ +SHA256 (smashbattle-110224-src.zip) = 3856d97bf09e63b203c997190299e0aacfb9f947e9529e634046e7596e1e8ad1 +SIZE (smashbattle-110224-src.zip) = 12238568 Added: head/games/smashbattle/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/smashbattle/files/patch-Makefile Thu Oct 11 05:33:04 2012 (r305698) @@ -0,0 +1,11 @@ +--- Makefile.orig 2012-05-11 15:51:06.000000000 +0200 ++++ Makefile 2012-05-11 16:34:16.000000000 +0200 +@@ -1,6 +1,6 @@ + CC=g++ +-CFLAGS=-c -Wall +-LDFLAGS=-lSDL -lSDL_mixer -lz -lstdc++ ++CFLAGS += $(shell sdl-config --cflags) -c -Wall ++LDFLAGS += $(shell sdl-config --libs) -lSDL -lSDL_mixer -lz -lstdc++ -lm + SRCS=Airstrike.cpp\ + AirstrikePowerUp.cpp\ + AmmoPowerUp.cpp\ Added: head/games/smashbattle/files/smashbattle.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/smashbattle/files/smashbattle.in Thu Oct 11 05:33:04 2012 (r305698) @@ -0,0 +1,6 @@ +#!/bin/sh +# +# $FreeBSD$ + +cd "%%DATADIR%%" +exec ./smashbattle "${@}" Added: head/games/smashbattle/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/smashbattle/pkg-descr Thu Oct 11 05:33:04 2012 (r305698) @@ -0,0 +1,6 @@ +Smash Battle is a cross platform, 8-bit style game where two, +three or four player face off against each other. +The game was inspired by the mario battle minigame from mario 3 +when we started developing, but changed a lot over time. + +WWW: http://smashbattle.condor.tv/ From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 06:15:39 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1CD96A07; Thu, 11 Oct 2012 06:15:39 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 04EC38FC0A; Thu, 11 Oct 2012 06:15: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 q9B6FcLW070682; Thu, 11 Oct 2012 06:15:38 GMT (envelope-from ohauer@svn.freebsd.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B6FcTr070679; Thu, 11 Oct 2012 06:15:38 GMT (envelope-from ohauer@svn.freebsd.org) Message-Id: <201210110615.q9B6FcTr070679@svn.freebsd.org> From: Olli Hauer Date: Thu, 11 Oct 2012 06:15:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305699 - head/devel/cvs2svn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 06:15:39 -0000 Author: ohauer Date: Thu Oct 11 06:15:38 2012 New Revision: 305699 URL: http://svn.freebsd.org/changeset/ports/305699 Log: - add local patches (svn rev. 5401) Bugs fixed: * Handle non-ASCII, non-UTF8 filenames in .cvsignore files. Feature safe: yes Modified: head/devel/cvs2svn/Makefile head/devel/cvs2svn/distinfo Modified: head/devel/cvs2svn/Makefile ============================================================================== --- head/devel/cvs2svn/Makefile Thu Oct 11 05:33:04 2012 (r305698) +++ head/devel/cvs2svn/Makefile Thu Oct 11 06:15:38 2012 (r305699) @@ -3,10 +3,15 @@ PORTNAME= cvs2svn PORTVERSION= 2.4.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://cvs2svn.tigris.org/files/documents/1462/49237/ \ LOCAL/ohauer +PATCH_SITES= ${MASTER_SITE_LOCAL} +PATCH_SITE_SUBDIR= ohauer +PATCHFILES= ${PORTNAME}-${PORTVERSION}-r5401.diff.bz2 + MAINTAINER= ohauer@FreeBSD.org COMMENT= CVS to Subversion Repository Converter Modified: head/devel/cvs2svn/distinfo ============================================================================== --- head/devel/cvs2svn/distinfo Thu Oct 11 05:33:04 2012 (r305698) +++ head/devel/cvs2svn/distinfo Thu Oct 11 06:15:38 2012 (r305699) @@ -1,2 +1,4 @@ SHA256 (cvs2svn-2.4.0.tar.gz) = a6677fc3e7b4374020185c61c998209d691de0c1b01b53e59341057459f6f116 SIZE (cvs2svn-2.4.0.tar.gz) = 514891 +SHA256 (cvs2svn-2.4.0-r5401.diff.bz2) = 6ef7cac77fd9c53d8e7a9cce06828ebb354ec210ee225e045a085bf9363de3b3 +SIZE (cvs2svn-2.4.0-r5401.diff.bz2) = 42742 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 06:16:09 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C53CAC2; Thu, 11 Oct 2012 06:16:09 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 056228FC0A; Thu, 11 Oct 2012 06:16:09 +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 q9B6G838070809; Thu, 11 Oct 2012 06:16:08 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B6G8WC070806; Thu, 11 Oct 2012 06:16:08 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210110616.q9B6G8WC070806@svn.freebsd.org> From: Wen Heping Date: Thu, 11 Oct 2012 06:16:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305700 - head/math/R-cran-inline X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 06:16:09 -0000 Author: wen Date: Thu Oct 11 06:16:08 2012 New Revision: 305700 URL: http://svn.freebsd.org/changeset/ports/305700 Log: - Update to 0.3.10 - Trim Makefile headers Feature safe: yes Modified: head/math/R-cran-inline/Makefile head/math/R-cran-inline/distinfo Modified: head/math/R-cran-inline/Makefile ============================================================================== --- head/math/R-cran-inline/Makefile Thu Oct 11 06:15:38 2012 (r305699) +++ head/math/R-cran-inline/Makefile Thu Oct 11 06:16:08 2012 (r305700) @@ -1,13 +1,8 @@ -# New ports collection makefile for: R-cran-inline -# Date created: May 8, 2010 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= inline -PORTVERSION= 0.3.8 -PORTREVISION= 8 +PORTVERSION= 0.3.10 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/math/R-cran-inline/distinfo ============================================================================== --- head/math/R-cran-inline/distinfo Thu Oct 11 06:15:38 2012 (r305699) +++ head/math/R-cran-inline/distinfo Thu Oct 11 06:16:08 2012 (r305700) @@ -1,2 +1,2 @@ -SHA256 (inline_0.3.8.tar.gz) = 3c79f81f19f1b0c291bbd35303defc38b84c332b9eeeec4293d8705253bc29a1 -SIZE (inline_0.3.8.tar.gz) = 21244 +SHA256 (inline_0.3.10.tar.gz) = d9213921898ac85efc7d02440b403763b04811d11a2561c2e1b1e61046abbce0 +SIZE (inline_0.3.10.tar.gz) = 22283 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 06:18:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 481BFBF2; Thu, 11 Oct 2012 06:18:57 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3155B8FC0C; Thu, 11 Oct 2012 06:18:57 +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 q9B6IvSd071276; Thu, 11 Oct 2012 06:18:57 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B6Iu91071273; Thu, 11 Oct 2012 06:18:56 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210110618.q9B6Iu91071273@svn.freebsd.org> From: Wen Heping Date: Thu, 11 Oct 2012 06:18:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305701 - head/math/R-cran-sp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 06:18:57 -0000 Author: wen Date: Thu Oct 11 06:18:56 2012 New Revision: 305701 URL: http://svn.freebsd.org/changeset/ports/305701 Log: - Update to 1.0.1 - Trim Makefile headers Feature safe: yes Modified: head/math/R-cran-sp/Makefile head/math/R-cran-sp/distinfo Modified: head/math/R-cran-sp/Makefile ============================================================================== --- head/math/R-cran-sp/Makefile Thu Oct 11 06:16:08 2012 (r305700) +++ head/math/R-cran-sp/Makefile Thu Oct 11 06:18:56 2012 (r305701) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sp -DISTVERSION= 1.0-0 +DISTVERSION= 1.0-1 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/math/R-cran-sp/distinfo ============================================================================== --- head/math/R-cran-sp/distinfo Thu Oct 11 06:16:08 2012 (r305700) +++ head/math/R-cran-sp/distinfo Thu Oct 11 06:18:56 2012 (r305701) @@ -1,2 +1,2 @@ -SHA256 (sp_1.0-0.tar.gz) = 6c0ecddfb599c454cae33f5d9673a382d61565340b9b0559f1853315e5c38781 -SIZE (sp_1.0-0.tar.gz) = 792055 +SHA256 (sp_1.0-1.tar.gz) = 9604f9065d1e87ce36ae393c8ff33a3eb9ce375701b8b8aba3944e9a89214611 +SIZE (sp_1.0-1.tar.gz) = 793137 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 06:20:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D437BCD2; Thu, 11 Oct 2012 06:20:41 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BCA7E8FC0A; Thu, 11 Oct 2012 06:20:41 +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 q9B6KfuY071558; Thu, 11 Oct 2012 06:20:41 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B6Kfku071555; Thu, 11 Oct 2012 06:20:41 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210110620.q9B6Kfku071555@svn.freebsd.org> From: Wen Heping Date: Thu, 11 Oct 2012 06:20:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305702 - head/science/R-cran-epicalc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 06:20:41 -0000 Author: wen Date: Thu Oct 11 06:20:40 2012 New Revision: 305702 URL: http://svn.freebsd.org/changeset/ports/305702 Log: - Update to 2.15.1.0 - Trim Makefile headers Feature safe: yes Modified: head/science/R-cran-epicalc/Makefile head/science/R-cran-epicalc/distinfo Modified: head/science/R-cran-epicalc/Makefile ============================================================================== --- head/science/R-cran-epicalc/Makefile Thu Oct 11 06:18:56 2012 (r305701) +++ head/science/R-cran-epicalc/Makefile Thu Oct 11 06:20:40 2012 (r305702) @@ -1,13 +1,8 @@ -# New ports collection makefile for: R-cran-epicalc -# Date created: Dec 14, 2011 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= epicalc -PORTVERSION= 2.14.1.6 -PORTREVISION= 3 +PORTVERSION= 2.15.1.0 CATEGORIES= science DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/science/R-cran-epicalc/distinfo ============================================================================== --- head/science/R-cran-epicalc/distinfo Thu Oct 11 06:18:56 2012 (r305701) +++ head/science/R-cran-epicalc/distinfo Thu Oct 11 06:20:40 2012 (r305702) @@ -1,2 +1,2 @@ -SHA256 (epicalc_2.14.1.6.tar.gz) = 9194671432cd8e359955d3c5d7bd26809af8e2c7945d244387c526bcf4d06280 -SIZE (epicalc_2.14.1.6.tar.gz) = 209766 +SHA256 (epicalc_2.15.1.0.tar.gz) = 3b695de8b288813c696a7338d6cd69741fdfba3a44aded7a71f9300852c2a987 +SIZE (epicalc_2.15.1.0.tar.gz) = 211045 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 07:55:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EA731D8; Thu, 11 Oct 2012 07:55:19 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EA7DE8FC17; Thu, 11 Oct 2012 07:55: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 q9B7tIAC083711; Thu, 11 Oct 2012 07:55:18 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B7tIl6083707; Thu, 11 Oct 2012 07:55:18 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210110755.q9B7tIl6083707@svn.freebsd.org> From: Wen Heping Date: Thu, 11 Oct 2012 07:55:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305703 - head/databases/adminer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 07:55:19 -0000 Author: wen Date: Thu Oct 11 07:55:18 2012 New Revision: 305703 URL: http://svn.freebsd.org/changeset/ports/305703 Log: - Update to 3.6.1 - Trim Makefile headers Feature safe: yes Modified: head/databases/adminer/Makefile head/databases/adminer/distinfo head/databases/adminer/pkg-plist Modified: head/databases/adminer/Makefile ============================================================================== --- head/databases/adminer/Makefile Thu Oct 11 06:20:40 2012 (r305702) +++ head/databases/adminer/Makefile Thu Oct 11 07:55:18 2012 (r305703) @@ -1,12 +1,8 @@ -# New ports collection makefile for: adminer -# Date created: 11 July, 2009 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= adminer -PORTVERSION= 3.3.4 +PORTVERSION= 3.6.1 CATEGORIES= databases www MASTER_SITES= SF/${PORTNAME}/Adminer/Adminer%20${PORTVERSION} @@ -17,9 +13,7 @@ LICENSE= AL2 USE_ZIP= yes NO_BUILD= yes -USE_PHP= mssql mysql odbc pgsql session sqlite -DEFAULT_PHP_VER=53 -IGNORE_WITH_PHP=5 +USE_PHP= mssql mysql odbc pgsql session pdo_sqlite SUB_FILES= pkg-message do-install: Modified: head/databases/adminer/distinfo ============================================================================== --- head/databases/adminer/distinfo Thu Oct 11 06:20:40 2012 (r305702) +++ head/databases/adminer/distinfo Thu Oct 11 07:55:18 2012 (r305703) @@ -1,2 +1,2 @@ -SHA256 (adminer-3.3.4.zip) = f19ccf6f9b83c5e451d589c39cc554378f670b4a999aef188d4b99a918cdafdb -SIZE (adminer-3.3.4.zip) = 434317 +SHA256 (adminer-3.6.1.zip) = 8572301bcca586a432df38402461121559c24ef50968a8d423809436116be8ed +SIZE (adminer-3.6.1.zip) = 460703 Modified: head/databases/adminer/pkg-plist ============================================================================== --- head/databases/adminer/pkg-plist Thu Oct 11 06:20:40 2012 (r305702) +++ head/databases/adminer/pkg-plist Thu Oct 11 07:55:18 2012 (r305703) @@ -28,6 +28,7 @@ %%WWWDIR%%/adminer/index.php %%WWWDIR%%/adminer/indexes.inc.php %%WWWDIR%%/adminer/lang/ar.inc.php +%%WWWDIR%%/adminer/lang/bn.inc.php %%WWWDIR%%/adminer/lang/ca.inc.php %%WWWDIR%%/adminer/lang/cs.inc.php %%WWWDIR%%/adminer/lang/de.inc.php @@ -37,6 +38,7 @@ %%WWWDIR%%/adminer/lang/fa.inc.php %%WWWDIR%%/adminer/lang/fr.inc.php %%WWWDIR%%/adminer/lang/hu.inc.php +%%WWWDIR%%/adminer/lang/id.inc.php %%WWWDIR%%/adminer/lang/it.inc.php %%WWWDIR%%/adminer/lang/ja.inc.php %%WWWDIR%%/adminer/lang/lt.inc.php @@ -47,8 +49,11 @@ %%WWWDIR%%/adminer/lang/ru.inc.php %%WWWDIR%%/adminer/lang/sk.inc.php %%WWWDIR%%/adminer/lang/sl.inc.php +%%WWWDIR%%/adminer/lang/sr.inc.php %%WWWDIR%%/adminer/lang/ta.inc.php %%WWWDIR%%/adminer/lang/tr.inc.php +%%WWWDIR%%/adminer/lang/uk.inc.php +%%WWWDIR%%/adminer/lang/xx.inc.php %%WWWDIR%%/adminer/lang/zh-tw.inc.php %%WWWDIR%%/adminer/lang/zh.inc.php %%WWWDIR%%/adminer/plugin.php @@ -60,6 +65,7 @@ %%WWWDIR%%/designs/jukin/adminer.css %%WWWDIR%%/designs/kahi/adminer.css %%WWWDIR%%/designs/konya/adminer.css +%%WWWDIR%%/designs/ng9/adminer.css %%WWWDIR%%/designs/paranoiq/adminer.css %%WWWDIR%%/designs/pilot/adminer.css %%WWWDIR%%/designs/pokorny/adminer.css @@ -80,7 +86,6 @@ %%WWWDIR%%/adminer/static/editing.js %%WWWDIR%%/adminer/static/favicon.ico %%WWWDIR%%/adminer/static/functions.js -%%WWWDIR%%/adminer/static/loader.gif %%WWWDIR%%/adminer/static/plus.gif %%WWWDIR%%/adminer/static/up.gif %%WWWDIR%%/adminer/table.inc.php @@ -100,12 +105,13 @@ %%WWWDIR%%/editor/index.php %%WWWDIR%%/editor/script.inc.php %%WWWDIR%%/editor/static/editing.js -%%WWWDIR%%/externals/jsmin-php/jsmin.php +%%WWWDIR%%/externals/JsShrink/jsShrink.php %%WWWDIR%%/externals/jush/jush.css %%WWWDIR%%/externals/jush/jush.js %%WWWDIR%%/lang.php %%WWWDIR%%/readme.txt %%WWWDIR%%/plugins/database-hide.php +%%WWWDIR%%/plugins/dump-date.php %%WWWDIR%%/plugins/dump-xml.php %%WWWDIR%%/plugins/dump-zip.php %%WWWDIR%%/plugins/edit-calendar.php @@ -170,6 +176,7 @@ @dirrm %%WWWDIR%%/designs/jukin @dirrm %%WWWDIR%%/designs/kahi @dirrm %%WWWDIR%%/designs/konya +@dirrm %%WWWDIR%%/designs/ng9 @dirrm %%WWWDIR%%/designs/paranoiq @dirrm %%WWWDIR%%/designs/pilot @dirrm %%WWWDIR%%/designs/pokorny @@ -177,6 +184,7 @@ @dirrm %%WWWDIR%%/editor/include @dirrm %%WWWDIR%%/editor/static @dirrm %%WWWDIR%%/editor +@dirrm %%WWWDIR%%/externals/JsShrink @dirrm %%WWWDIR%%/externals/jsmin-php @dirrm %%WWWDIR%%/externals/jush @dirrm %%WWWDIR%%/externals From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 08:25:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 246E28A4; Thu, 11 Oct 2012 08:25:47 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0D1A58FC0C; Thu, 11 Oct 2012 08:25:47 +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 q9B8PkQe087802; Thu, 11 Oct 2012 08:25:46 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B8PkwE087799; Thu, 11 Oct 2012 08:25:46 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210110825.q9B8PkwE087799@svn.freebsd.org> From: Wen Heping Date: Thu, 11 Oct 2012 08:25:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305704 - head/textproc/p5-PDF-API3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 08:25:47 -0000 Author: wen Date: Thu Oct 11 08:25:46 2012 New Revision: 305704 URL: http://svn.freebsd.org/changeset/ports/305704 Log: - Trim Makefile headers - Reset maintainer to perl@ Feature safe: yes Modified: head/textproc/p5-PDF-API3/Makefile Modified: head/textproc/p5-PDF-API3/Makefile ============================================================================== --- head/textproc/p5-PDF-API3/Makefile Thu Oct 11 07:55:18 2012 (r305703) +++ head/textproc/p5-PDF-API3/Makefile Thu Oct 11 08:25:46 2012 (r305704) @@ -1,9 +1,5 @@ -# Ports collection makefile for: p5-PDF-API3 -# Date created: 26 April, 2009 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= PDF-API3 PORTVERSION= 3.001 @@ -11,7 +7,7 @@ CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= wenheping@gmail.com +MAINTAINER= perl@FreeBSD.org COMMENT= The Next Generation of Text::PDF::API2 PERL_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 08:34:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92E57B0A; Thu, 11 Oct 2012 08:34:10 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7B9048FC14; Thu, 11 Oct 2012 08:34: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 q9B8YAbN088960; Thu, 11 Oct 2012 08:34:10 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B8YAxG088958; Thu, 11 Oct 2012 08:34:10 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210110834.q9B8YAxG088958@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 11 Oct 2012 08:34:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305705 - head/polish/gnugadu2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 08:34:10 -0000 Author: bapt Date: Thu Oct 11 08:34:09 2012 New Revision: 305705 URL: http://svn.freebsd.org/changeset/ports/305705 Log: Fix typo during OptionsNG conversion Reported by: pointyhat-west Pointyhat to: eadler Feature safe: yes Modified: head/polish/gnugadu2/Makefile Modified: head/polish/gnugadu2/Makefile ============================================================================== --- head/polish/gnugadu2/Makefile Thu Oct 11 08:25:46 2012 (r305704) +++ head/polish/gnugadu2/Makefile Thu Oct 11 08:34:09 2012 (r305705) @@ -152,7 +152,8 @@ PLIST_SUB+= ARTS:="@comment " .if ${PORT_OPTIONS:MXOSD} LIB_DEPENDS+= xosd.4:${PORTSDIR}/misc/xosd CONFIGURE_ARGS+= --with-xosd -PLIST_SUB+= XOSD:="".else +PLIST_SUB+= XOSD:="" +.else CONFIGURE_ARGS+= --without-xosd PLIST_SUB+= XOSD:="@comment " .endif From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 08:35:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32714BEE; Thu, 11 Oct 2012 08:35:22 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 00FAE8FC14; Thu, 11 Oct 2012 08:35:22 +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 q9B8ZLel089201; Thu, 11 Oct 2012 08:35:21 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B8ZLJf089197; Thu, 11 Oct 2012 08:35:21 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210110835.q9B8ZLJf089197@svn.freebsd.org> From: Wen Heping Date: Thu, 11 Oct 2012 08:35:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305706 - head/textproc/p5-LaTeX-Encode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 08:35:22 -0000 Author: wen Date: Thu Oct 11 08:35:21 2012 New Revision: 305706 URL: http://svn.freebsd.org/changeset/ports/305706 Log: - Update to 0.08 Changes: http://cpansearch.perl.org/src/ANDREWF/LaTeX-Encode-0.08/Changes - Trim Makefile headers - Reset maintainer to perl@ Feature safe: yes Modified: head/textproc/p5-LaTeX-Encode/Makefile head/textproc/p5-LaTeX-Encode/distinfo head/textproc/p5-LaTeX-Encode/pkg-plist Modified: head/textproc/p5-LaTeX-Encode/Makefile ============================================================================== --- head/textproc/p5-LaTeX-Encode/Makefile Thu Oct 11 08:34:09 2012 (r305705) +++ head/textproc/p5-LaTeX-Encode/Makefile Thu Oct 11 08:35:21 2012 (r305706) @@ -1,21 +1,18 @@ -# New ports collection makefile for: LaTeX-Encode -# Date created: 1st June, 2009 -# Whom: Wen Heping -# +# Created by: Wen Heping # $FreeBSD$ -# PORTNAME= LaTeX-Encode -PORTVERSION= 0.03 +PORTVERSION= 0.08 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= wenheping@gmail.com +MAINTAINER= perl@FreeBSD.org COMMENT= Encode characters for LaTeX formatting PERL_CONFIGURE= yes -MAN3= LaTeX::Encode.3 +MAN1= latex-encode.1 +MAN3= LaTeX::Encode.3 LaTeX::Encode::EncodingTable.3 .include Modified: head/textproc/p5-LaTeX-Encode/distinfo ============================================================================== --- head/textproc/p5-LaTeX-Encode/distinfo Thu Oct 11 08:34:09 2012 (r305705) +++ head/textproc/p5-LaTeX-Encode/distinfo Thu Oct 11 08:35:21 2012 (r305706) @@ -1,2 +1,2 @@ -SHA256 (LaTeX-Encode-0.03.tar.gz) = 8dbbc58d1d77189037d38ba942cc699302980356e4f2a3fd901cbf120f96ecae -SIZE (LaTeX-Encode-0.03.tar.gz) = 22547 +SHA256 (LaTeX-Encode-0.08.tar.gz) = 37c70b28db1759077a1513896b35be2ab72476ab3038144da28441bb55e8c3ae +SIZE (LaTeX-Encode-0.08.tar.gz) = 46672 Modified: head/textproc/p5-LaTeX-Encode/pkg-plist ============================================================================== --- head/textproc/p5-LaTeX-Encode/pkg-plist Thu Oct 11 08:34:09 2012 (r305705) +++ head/textproc/p5-LaTeX-Encode/pkg-plist Thu Oct 11 08:35:21 2012 (r305706) @@ -1,3 +1,4 @@ +bin/latex-encode %%SITE_PERL%%/LaTeX/Encode.pm %%SITE_PERL%%/LaTeX/Encode/EncodingTable.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/LaTeX/Encode/.packlist From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 08:46:29 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE63DF49; Thu, 11 Oct 2012 08:46:29 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C56ED8FC0C; Thu, 11 Oct 2012 08:46: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 q9B8kTWi090784; Thu, 11 Oct 2012 08:46:29 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B8kTkw090782; Thu, 11 Oct 2012 08:46:29 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210110846.q9B8kTkw090782@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 11 Oct 2012 08:46:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305707 - head/textproc/libwps X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 08:46:29 -0000 Author: bapt Date: Thu Oct 11 08:46:29 2012 New Revision: 305707 URL: http://svn.freebsd.org/changeset/ports/305707 Log: Rename the DOCS option to DOXYGEN off by default as the documentation is only doxygen generated files Feature safe: yes Modified: head/textproc/libwps/Makefile Modified: head/textproc/libwps/Makefile ============================================================================== --- head/textproc/libwps/Makefile Thu Oct 11 08:35:21 2012 (r305706) +++ head/textproc/libwps/Makefile Thu Oct 11 08:46:29 2012 (r305707) @@ -1,9 +1,5 @@ -# New ports collection makefile for: libwps -# Date created: 2008-04-16 -# Whom: Michael Johnson -# +# Created by: Michael Johnson # $FreeBSD$ -# PORTNAME= libwps PORTVERSION= 0.2.7 @@ -18,7 +14,7 @@ LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= wpd-0.9:${PORTSDIR}/textproc/libwpd -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOXYGEN CONFIGURE_ARGS= --disable-werror CPPFLAGS+= -I${LOCALBASE}/include @@ -30,7 +26,7 @@ PORTDOCS= * .include -.if ${PORT_OPTIONS:MDOCS} +.if ${PORT_OPTIONS:MDOXYGEN} BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen .else CONFIGURE_ARGS+=--without-docs From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 09:45:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B9B98E1A; Thu, 11 Oct 2012 09:45:38 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A231B8FC0C; Thu, 11 Oct 2012 09:45:38 +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 q9B9jclh098483; Thu, 11 Oct 2012 09:45:38 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9B9jc7C098478; Thu, 11 Oct 2012 09:45:38 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201210110945.q9B9jc7C098478@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 11 Oct 2012 09:45:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305708 - head/x11/xterm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 09:45:38 -0000 Author: ehaupt Date: Thu Oct 11 09:45:37 2012 New Revision: 305708 URL: http://svn.freebsd.org/changeset/ports/305708 Log: Update to 283 Notified by: gahr Feature safe: yes Modified: head/x11/xterm/Makefile head/x11/xterm/distinfo head/x11/xterm/pkg-plist Modified: head/x11/xterm/Makefile ============================================================================== --- head/x11/xterm/Makefile Thu Oct 11 08:46:29 2012 (r305707) +++ head/x11/xterm/Makefile Thu Oct 11 09:45:37 2012 (r305708) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xterm -PORTVERSION= 282 +PORTVERSION= 283 CATEGORIES= x11 MASTER_SITES= ftp://invisible-island.net/xterm/ \ CRITICAL Modified: head/x11/xterm/distinfo ============================================================================== --- head/x11/xterm/distinfo Thu Oct 11 08:46:29 2012 (r305707) +++ head/x11/xterm/distinfo Thu Oct 11 09:45:37 2012 (r305708) @@ -1,2 +1,2 @@ -SHA256 (xterm-282.tgz) = 74a292469b6a7fe298f895a529d068015865c29ab3ccb7aaa1fa497ba948be43 -SIZE (xterm-282.tgz) = 1095632 +SHA256 (xterm-283.tgz) = 7a4c74fd1aa99cda52655720ca25cc31a976ca19e9bb658036dd7e14cb49a411 +SIZE (xterm-283.tgz) = 1097238 Modified: head/x11/xterm/pkg-plist ============================================================================== --- head/x11/xterm/pkg-plist Thu Oct 11 08:46:29 2012 (r305707) +++ head/x11/xterm/pkg-plist Thu Oct 11 09:45:37 2012 (r305708) @@ -9,6 +9,10 @@ lib/X11/app-defaults/UXTerm-color lib/X11/app-defaults/XTerm lib/X11/app-defaults/XTerm-color share/applications/xterm.desktop +share/pixmaps/filled-xterm_32x32.xpm +share/pixmaps/filled-xterm_48x48.xpm +share/pixmaps/mini.xterm_32x32.xpm +share/pixmaps/mini.xterm_48x48.xpm share/pixmaps/xterm-color_32x32.xpm share/pixmaps/xterm-color_48x48.xpm share/pixmaps/xterm_32x32.xpm From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 10:32:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3746EE74; Thu, 11 Oct 2012 10:32:22 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1F9728FC16; Thu, 11 Oct 2012 10:32:22 +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 q9BAWLMT008026; Thu, 11 Oct 2012 10:32:21 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BAWLfv008023; Thu, 11 Oct 2012 10:32:21 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210111032.q9BAWLfv008023@svn.freebsd.org> From: Frederic Culot Date: Thu, 11 Oct 2012 10:32:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305709 - head/databases/py-htsql-pgsql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 10:32:22 -0000 Author: culot Date: Thu Oct 11 10:32:21 2012 New Revision: 305709 URL: http://svn.freebsd.org/changeset/ports/305709 Log: - Update to 2.3.2 PR: ports/172518 Submitted by: Kubilay Kocak (maintainer) Feature safe: yes Modified: head/databases/py-htsql-pgsql/Makefile head/databases/py-htsql-pgsql/distinfo Modified: head/databases/py-htsql-pgsql/Makefile ============================================================================== --- head/databases/py-htsql-pgsql/Makefile Thu Oct 11 09:45:37 2012 (r305708) +++ head/databases/py-htsql-pgsql/Makefile Thu Oct 11 10:32:21 2012 (r305709) @@ -1,12 +1,8 @@ -# New ports collection makefile for: py-htsql-pgsql -# Date created: 2012-06-16 -# Whom: koobs -# +# Created by: Kubilay Kocak # $FreeBSD$ -# PORTNAME= htsql-pgsql -PORTVERSION= 2.3.1 +PORTVERSION= 2.3.2 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +14,7 @@ COMMENT= PostgreSQL backend for HTSQL RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}htsql>2.3:${PORTSDIR}/databases/py-htsql \ ${PYTHON_PKGNAMEPREFIX}psycopg2>0:${PORTSDIR}/databases/py-psycopg2 -USE_PYTHON= 2.6-2.7 +USE_PYTHON= 2.6-2.7 USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= ${PORTNAME:U} Modified: head/databases/py-htsql-pgsql/distinfo ============================================================================== --- head/databases/py-htsql-pgsql/distinfo Thu Oct 11 09:45:37 2012 (r305708) +++ head/databases/py-htsql-pgsql/distinfo Thu Oct 11 10:32:21 2012 (r305709) @@ -1,2 +1,2 @@ -SHA256 (HTSQL-PGSQL-2.3.1.tar.gz) = 1fda9b2c8fb09a457fcd662242ee4367eeb33aedd9445bc852c4717834084df4 -SIZE (HTSQL-PGSQL-2.3.1.tar.gz) = 19594 +SHA256 (HTSQL-PGSQL-2.3.2.tar.gz) = 72103a3d60535823cbc2a67096a79bfdcc85e8337c0a52ed2ad13edcc4899bfc +SIZE (HTSQL-PGSQL-2.3.2.tar.gz) = 19709 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 11:02:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33C444F9; Thu, 11 Oct 2012 11:02:28 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1D44E8FC16; Thu, 11 Oct 2012 11:02: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 q9BB2Rl8011542; Thu, 11 Oct 2012 11:02:27 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BB2RXL011540; Thu, 11 Oct 2012 11:02:27 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210111102.q9BB2RXL011540@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 11 Oct 2012 11:02:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305710 - head/comms/wspr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 11:02:28 -0000 Author: bapt Date: Thu Oct 11 11:02:27 2012 New Revision: 305710 URL: http://svn.freebsd.org/changeset/ports/305710 Log: Dependency line should not end with a '/' Feature safe: yes Modified: head/comms/wspr/Makefile Modified: head/comms/wspr/Makefile ============================================================================== --- head/comms/wspr/Makefile Thu Oct 11 10:32:21 2012 (r305709) +++ head/comms/wspr/Makefile Thu Oct 11 11:02:27 2012 (r305710) @@ -15,7 +15,7 @@ DISTNAME= wspr-r${SVN_REV} MAINTAINER= db@FreeBSD.org COMMENT= Weak signal for HF ham radio communication package -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter/ \ +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter \ ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging LIB_DEPENDS= hamlib:${PORTSDIR}/comms/hamlib \ fftw3f:${PORTSDIR}/math/fftw3-float \ From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 11:25:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C486A84; Thu, 11 Oct 2012 11:25:20 +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 DDD7C8FC12; Thu, 11 Oct 2012 11:25: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 q9BBPJ4u014314; Thu, 11 Oct 2012 11:25:19 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BBPJ9X014307; Thu, 11 Oct 2012 11:25:19 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201210111125.q9BBPJ9X014307@svn.freebsd.org> From: Max Brazhnikov Date: Thu, 11 Oct 2012 11:25:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305711 - in head/science/kst2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 11:25:20 -0000 Author: makc Date: Thu Oct 11 11:25:19 2012 New Revision: 305711 URL: http://svn.freebsd.org/changeset/ports/305711 Log: Update to 2.0.6 Add optional support for Matlab files via math/matio Trip Makefile header Feature safe: yes Modified: head/science/kst2/Makefile head/science/kst2/distinfo (contents, props changed) head/science/kst2/files/patch-cmake__CMakeLists.txt (contents, props changed) head/science/kst2/files/patch-cmake__src__kst__CMakeLists.txt (contents, props changed) head/science/kst2/pkg-plist (contents, props changed) Modified: head/science/kst2/Makefile ============================================================================== --- head/science/kst2/Makefile Thu Oct 11 11:02:27 2012 (r305710) +++ head/science/kst2/Makefile Thu Oct 11 11:25:19 2012 (r305711) @@ -1,12 +1,8 @@ -# New ports collection makefile for: kst -# Date created: Fri Apr 30 17:28:56 CEST 2004 -# Whom: Markus Brueffer -# +# Created by: Markus Brueffer # $FreeBSD$ PORTNAME= kst -DISTVERSION= 2.0.5 -PORTREVISION= 1 +DISTVERSION= 2.0.6 CATEGORIES= science kde MASTER_SITES= SF/${PORTNAME}/Kst%20${DISTVERSION:C/-r.*//}/ @@ -29,9 +25,10 @@ CMAKE_ARGS+= -Dkst_install_prefix=${PREF MAN1= kst2.1 PLIST_SUB= SHLIB_VER=${PORTVERSION} -OPTIONS_DEFINE= FITS NETCDF +OPTIONS_DEFINE= FITS MATLAB NETCDF FITS_DESC= Support for data in FITS format +MATLAB_DESC= Support for data in MATLAB format NETCDF_DESC= Support for data in NetCDF format .include @@ -43,6 +40,13 @@ PLIST_SUB+= FITS="" PLIST_SUB+= FITS="@comment " .endif +.if ${PORT_OPTIONS:MMATLAB} +BUILD_DEPENDS+= ${LOCALBASE}/lib/libmatio.a:${PORTSDIR}/math/matio +PLIST_SUB+= MATLAB="" +.else +PLIST_SUB+= MATLAB="@comment " +.endif + .if ${PORT_OPTIONS:MNETCDF} LIB_DEPENDS+= netcdf.4:${PORTSDIR}/science/netcdf PLIST_SUB+= NETCDF="" @@ -59,6 +63,10 @@ pre-configure: ${REINPLACE_CMD} -e '/find_package(CFITSIO)/d' \ ${CMAKE_SOURCE_PATH}/CMakeLists.txt .endif +.if !${PORT_OPTIONS:MMATLAB} + ${REINPLACE_CMD} -e '/find_package(Matio)/d' \ + ${CMAKE_SOURCE_PATH}/CMakeLists.txt +.endif .if !${PORT_OPTIONS:MNETCDF} ${REINPLACE_CMD} -e '/find_package(Netcdf)/d' \ ${CMAKE_SOURCE_PATH}/CMakeLists.txt Modified: head/science/kst2/distinfo ============================================================================== --- head/science/kst2/distinfo Thu Oct 11 11:02:27 2012 (r305710) +++ head/science/kst2/distinfo Thu Oct 11 11:25:19 2012 (r305711) @@ -1,2 +1,2 @@ -SHA256 (kst-2.0.5.tar.gz) = f64b0c44e2728afbb0a1c6fcf2fe792c9e412f1c8f15f882670463431cca353a -SIZE (kst-2.0.5.tar.gz) = 11398465 +SHA256 (kst-2.0.6.tar.gz) = 7968e604a188065d02da48a9a971fb04afab4b4b5358315b09e66f3deab1b80f +SIZE (kst-2.0.6.tar.gz) = 11388226 Modified: head/science/kst2/files/patch-cmake__CMakeLists.txt ============================================================================== --- head/science/kst2/files/patch-cmake__CMakeLists.txt Thu Oct 11 11:02:27 2012 (r305710) +++ head/science/kst2/files/patch-cmake__CMakeLists.txt Thu Oct 11 11:25:19 2012 (r305711) @@ -17,7 +17,7 @@ else() set(kst_version_minor 0) - set(kst_version_patch x) -+ set(kst_version_patch 5) ++ set(kst_version_patch 6) set(kst_version ${kst_version_major}.${kst_version_minor}.${kst_version_patch}) endif() Modified: head/science/kst2/files/patch-cmake__src__kst__CMakeLists.txt ============================================================================== --- head/science/kst2/files/patch-cmake__src__kst__CMakeLists.txt Thu Oct 11 11:02:27 2012 (r305710) +++ head/science/kst2/files/patch-cmake__src__kst__CMakeLists.txt Thu Oct 11 11:25:19 2012 (r305711) @@ -1,17 +1,17 @@ ---- ./cmake/src/kst/CMakeLists.txt.orig 2011-09-12 15:34:28.000000000 +0000 -+++ ./cmake/src/kst/CMakeLists.txt 2011-10-15 00:36:57.039906521 +0000 -@@ -37,9 +37,7 @@ +--- ./cmake/src/kst/CMakeLists.txt.orig 2012-08-05 15:16:15.233405189 +0000 ++++ ./cmake/src/kst/CMakeLists.txt 2012-08-05 15:17:39.675406925 +0000 +@@ -38,9 +38,7 @@ if(UNIX AND NOT APPLE) set(man ${CMAKE_BINARY_DIR}/${kst_binary_name}.1) configure_file(${kst_dir}/src/kst/kst.1.txt ${man}) - install(CODE "execute_process(COMMAND gzip ${man})") -- set_source_files_properties(${man}.gz PROPERTIES GENERATED TRUE) +- set_source_files_properties(${man}.gz PROPERTIES GENERATED TRUE) - install(FILES ${man}.gz DESTINATION share/man/man1) + install(FILES ${man} DESTINATION man/man1) - + set(k ${kst_dir}/src/kst) # install(FILES ${k}/kstplugin.desktop -@@ -49,8 +47,7 @@ +@@ -50,8 +48,7 @@ # ${k}/kstfilter.desktop # ${k}/kstextension.desktop # DESTINATION share/servicetypes/kst) Modified: head/science/kst2/pkg-plist ============================================================================== --- head/science/kst2/pkg-plist Thu Oct 11 11:02:27 2012 (r305710) +++ head/science/kst2/pkg-plist Thu Oct 11 11:25:19 2012 (r305711) @@ -25,6 +25,7 @@ lib/kst2/plugins/libkst2_dataobject_stat lib/kst2/plugins/libkst2_dataobject_syncbin.so lib/kst2/plugins/libkst2_datasource_ascii.so %%FITS%%lib/kst2/plugins/libkst2_datasource_fitsimage.so +%%MATLAB%%lib/kst2/plugins/libkst2_datasource_matlab.so %%NETCDF%%lib/kst2/plugins/libkst2_datasource_netcdf.so lib/kst2/plugins/libkst2_datasource_qimagesource.so lib/kst2/plugins/libkst2_datasource_sampledatasource.so From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 12:14:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13656216; Thu, 11 Oct 2012 12:14:55 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EF00C8FC14; Thu, 11 Oct 2012 12:14: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 q9BCEsgl020098; Thu, 11 Oct 2012 12:14:54 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BCEsbw020095; Thu, 11 Oct 2012 12:14:54 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210111214.q9BCEsbw020095@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 11 Oct 2012 12:14:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305712 - head/comms/wsjt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 12:14:55 -0000 Author: bapt Date: Thu Oct 11 12:14:54 2012 New Revision: 305712 URL: http://svn.freebsd.org/changeset/ports/305712 Log: Dependency line should not end with a '/' Feature safe: yes Modified: head/comms/wsjt/Makefile Modified: head/comms/wsjt/Makefile ============================================================================== --- head/comms/wsjt/Makefile Thu Oct 11 11:25:19 2012 (r305711) +++ head/comms/wsjt/Makefile Thu Oct 11 12:14:54 2012 (r305712) @@ -16,7 +16,7 @@ DISTNAME= wsjt-r${SVN_REV} MAINTAINER= db@FreeBSD.org COMMENT= Weak signal ham radio communication package -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter/ \ +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter \ ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging LIB_DEPENDS= fftw3f:${PORTSDIR}/math/fftw3-float \ samplerate:${PORTSDIR}/audio/libsamplerate From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 12:15:17 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EEF82F2; Thu, 11 Oct 2012 12:15:17 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EAE598FC12; Thu, 11 Oct 2012 12:15:16 +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 q9BCFGOo020216; Thu, 11 Oct 2012 12:15:16 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BCFG2I020212; Thu, 11 Oct 2012 12:15:16 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210111215.q9BCFG2I020212@svn.freebsd.org> From: "Jason E. Hale" Date: Thu, 11 Oct 2012 12:15:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305713 - head/deskutils/plasma-applet-cwp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 12:15:17 -0000 Author: jhale Date: Thu Oct 11 12:15:16 2012 New Revision: 305713 URL: http://svn.freebsd.org/changeset/ports/305713 Log: - Update to 1.6.5 PR: ports/172584 Submitted by: David Naylor (maintainer) Approved by: makc, avilla (mentors, implicit) Feature safe: yes Modified: head/deskutils/plasma-applet-cwp/Makefile (contents, props changed) head/deskutils/plasma-applet-cwp/distinfo (contents, props changed) Modified: head/deskutils/plasma-applet-cwp/Makefile ============================================================================== --- head/deskutils/plasma-applet-cwp/Makefile Thu Oct 11 12:14:54 2012 (r305712) +++ head/deskutils/plasma-applet-cwp/Makefile Thu Oct 11 12:15:16 2012 (r305713) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cwp -PORTVERSION= 1.6.4 +PORTVERSION= 1.6.5 CATEGORIES= deskutils kde MASTER_SITES= http://kde-look.org/CONTENT/content-files/ PKGNAMEPREFIX= plasma-applet- Modified: head/deskutils/plasma-applet-cwp/distinfo ============================================================================== --- head/deskutils/plasma-applet-cwp/distinfo Thu Oct 11 12:14:54 2012 (r305712) +++ head/deskutils/plasma-applet-cwp/distinfo Thu Oct 11 12:15:16 2012 (r305713) @@ -1,2 +1,2 @@ -SHA256 (98925-cwp-1.6.4.tar.bz2) = ed7a3cccbd566b36f5f3ca5b8578b7fe3c8c4f58a24fb23068183a2a30e19646 -SIZE (98925-cwp-1.6.4.tar.bz2) = 198870 +SHA256 (98925-cwp-1.6.5.tar.bz2) = f2a72de8a0112cb04c18b90be2b6f1e7976bcd200010bfd83db1ea2aa3f6d191 +SIZE (98925-cwp-1.6.5.tar.bz2) = 198956 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 12:52:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D253DD47; Thu, 11 Oct 2012 12:52:38 +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 B218C8FC12; Thu, 11 Oct 2012 12:52:38 +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 q9BCqcwb024730; Thu, 11 Oct 2012 12:52:38 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BCqcPW024726; Thu, 11 Oct 2012 12:52:38 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210111252.q9BCqcPW024726@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Thu, 11 Oct 2012 12:52:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305714 - head/math/py-pandas X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 12:52:39 -0000 Author: rm Date: Thu Oct 11 12:52:38 2012 New Revision: 305714 URL: http://svn.freebsd.org/changeset/ports/305714 Log: - update to 0.9.0 - trim Makefile header while here: - change DISTVERSION with PORTVERSION (I missed this when this port was added) PR: 172528 Submitted by: John W. O'Brien (maintainer) Feature safe: yes Modified: head/math/py-pandas/Makefile head/math/py-pandas/distinfo head/math/py-pandas/pkg-plist Modified: head/math/py-pandas/Makefile ============================================================================== --- head/math/py-pandas/Makefile Thu Oct 11 12:15:16 2012 (r305713) +++ head/math/py-pandas/Makefile Thu Oct 11 12:52:38 2012 (r305714) @@ -1,13 +1,7 @@ -# vim:ts=8 sw=8 noet -# Ports collection Makefile for: py-pandas -# Date created: 2012-08-16 -# Whom: John W. O'Brien -# # $FreeBSD$ -# PORTNAME= pandas -DISTVERSION= 0.8.1 +PORTVERSION= 0.9.0 CATEGORIES= math devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/math/py-pandas/distinfo ============================================================================== --- head/math/py-pandas/distinfo Thu Oct 11 12:15:16 2012 (r305713) +++ head/math/py-pandas/distinfo Thu Oct 11 12:52:38 2012 (r305714) @@ -1,2 +1,2 @@ -SHA256 (pandas-0.8.1.tar.gz) = 696698ff132f60d136f4c6f02751d3c7907bcaba6ca7f341a0efe4ac0d98d52f -SIZE (pandas-0.8.1.tar.gz) = 1727272 +SHA256 (pandas-0.9.0.tar.gz) = d5924c09d737bb91ed3dc9a120814f20c0c0ca21fc81a9e0df96c701effb87d3 +SIZE (pandas-0.9.0.tar.gz) = 2308120 Modified: head/math/py-pandas/pkg-plist ============================================================================== --- head/math/py-pandas/pkg-plist Thu Oct 11 12:15:16 2012 (r305713) +++ head/math/py-pandas/pkg-plist Thu Oct 11 12:52:38 2012 (r305714) @@ -386,6 +386,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/data/frame2.pickle %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/data/series.pickle %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/data/series_daterange0.pickle +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/test_converter.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/test_converter.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/test_converter.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/test_cursor.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/test_cursor.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/tseries/tests/test_cursor.pyo @@ -437,6 +440,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/decorators.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/decorators.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/decorators.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/testing_flymake.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/testing_flymake.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/testing_flymake.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/misc.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/misc.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/pandas/util/misc.pyo From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:03:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30F6C153; Thu, 11 Oct 2012 13:03:11 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 190258FC16; Thu, 11 Oct 2012 13:03:11 +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 q9BD3A0D026042; Thu, 11 Oct 2012 13:03:10 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BD3AXD026040; Thu, 11 Oct 2012 13:03:10 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210111303.q9BD3AXD026040@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 11 Oct 2012 13:03:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305715 - head/graphics/p5-Imager-AverageGray X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:03:11 -0000 Author: bapt Date: Thu Oct 11 13:03:10 2012 New Revision: 305715 URL: http://svn.freebsd.org/changeset/ports/305715 Log: Dependency line should not end with a '/' Feature safe: yes Modified: head/graphics/p5-Imager-AverageGray/Makefile Modified: head/graphics/p5-Imager-AverageGray/Makefile ============================================================================== --- head/graphics/p5-Imager-AverageGray/Makefile Thu Oct 11 12:52:38 2012 (r305714) +++ head/graphics/p5-Imager-AverageGray/Makefile Thu Oct 11 13:03:10 2012 (r305715) @@ -15,7 +15,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= vvelox@vvelox.net COMMENT= Finds the average gray for a Imager object or image -RUN_DEPENDS= p5-Imager>=0:${PORTSDIR}/graphics/p5-Imager/ +RUN_DEPENDS= p5-Imager>=0:${PORTSDIR}/graphics/p5-Imager PERL_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:03:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92B84210; Thu, 11 Oct 2012 13:03:19 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7B4EC8FC18; Thu, 11 Oct 2012 13:03: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 q9BD3J5K026127; Thu, 11 Oct 2012 13:03:19 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BD3JRm026124; Thu, 11 Oct 2012 13:03:19 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210111303.q9BD3JRm026124@svn.freebsd.org> From: Frederic Culot Date: Thu, 11 Oct 2012 13:03:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305716 - head/databases/py-htsql-mysql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:03:19 -0000 Author: culot Date: Thu Oct 11 13:03:18 2012 New Revision: 305716 URL: http://svn.freebsd.org/changeset/ports/305716 Log: - Update to 2.3.2 PR: ports/172543 Submitted by: Kubilay Kocak (maintainer) Feature safe: yes Modified: head/databases/py-htsql-mysql/Makefile head/databases/py-htsql-mysql/distinfo Modified: head/databases/py-htsql-mysql/Makefile ============================================================================== --- head/databases/py-htsql-mysql/Makefile Thu Oct 11 13:03:10 2012 (r305715) +++ head/databases/py-htsql-mysql/Makefile Thu Oct 11 13:03:18 2012 (r305716) @@ -1,12 +1,8 @@ -# New ports collection makefile for: py-htsql-mysql -# Date created: 2012-06-16 -# Whom: koobs -# +# Created by: Kubilay Kocak # $FreeBSD$ -# PORTNAME= htsql-mysql -PORTVERSION= 2.3.1 +PORTVERSION= 2.3.2 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +14,7 @@ COMMENT= MySQL backend for HTSQL RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}htsql>2.3:${PORTSDIR}/databases/py-htsql \ ${PYTHON_PKGNAMEPREFIX}MySQLdb>0:${PORTSDIR}/databases/py-MySQLdb -USE_PYTHON= 2.6-2.7 +USE_PYTHON= 2.6-2.7 USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= ${PORTNAME:U} Modified: head/databases/py-htsql-mysql/distinfo ============================================================================== --- head/databases/py-htsql-mysql/distinfo Thu Oct 11 13:03:10 2012 (r305715) +++ head/databases/py-htsql-mysql/distinfo Thu Oct 11 13:03:18 2012 (r305716) @@ -1,2 +1,2 @@ -SHA256 (HTSQL-MYSQL-2.3.1.tar.gz) = 9c4b4b9e97a79842ec129263d9ef524d4709c99d5a6fbc132e6a9489b0fe346b -SIZE (HTSQL-MYSQL-2.3.1.tar.gz) = 15161 +SHA256 (HTSQL-MYSQL-2.3.2.tar.gz) = 87568756841ddfedf88660084ce62184e572064b3e0f69c11a447f3c987bacd7 +SIZE (HTSQL-MYSQL-2.3.2.tar.gz) = 15266 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:16:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0D86A69; Thu, 11 Oct 2012 13:16:55 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A61A98FC0C; Thu, 11 Oct 2012 13:16: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 q9BDGtNq027997; Thu, 11 Oct 2012 13:16:55 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDGt71027987; Thu, 11 Oct 2012 13:16:55 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201210111316.q9BDGt71027987@svn.freebsd.org> From: Renato Botelho Date: Thu, 11 Oct 2012 13:16:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305717 - in head: devel/p5-Logfile-Rotate devel/p5-Taint-Runtime devel/rubygem-echoe devel/rubygem-stomp mail/wbl net-im/jabber-pyicq net/rubygem-geoip portuguese/php_doc-br X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:16:55 -0000 Author: garga Date: Thu Oct 11 13:16:54 2012 New Revision: 305717 URL: http://svn.freebsd.org/changeset/ports/305717 Log: Cleanup headers of ports created by me Feature safe: yes Modified: head/devel/p5-Logfile-Rotate/Makefile head/devel/p5-Taint-Runtime/Makefile head/devel/rubygem-echoe/Makefile head/devel/rubygem-stomp/Makefile head/mail/wbl/Makefile head/net-im/jabber-pyicq/Makefile head/net/rubygem-geoip/Makefile head/portuguese/php_doc-br/Makefile Modified: head/devel/p5-Logfile-Rotate/Makefile ============================================================================== --- head/devel/p5-Logfile-Rotate/Makefile Thu Oct 11 13:03:18 2012 (r305716) +++ head/devel/p5-Logfile-Rotate/Makefile Thu Oct 11 13:16:54 2012 (r305717) @@ -1,9 +1,4 @@ -# New ports collection makefile for: p5-Logfile-Rotate -# Date created: 2006-08-01 -# Whom: Renato Botelho -# # $FreeBSD$ -# PORTNAME= Logfile-Rotate PORTVERSION= 1.04 Modified: head/devel/p5-Taint-Runtime/Makefile ============================================================================== --- head/devel/p5-Taint-Runtime/Makefile Thu Oct 11 13:03:18 2012 (r305716) +++ head/devel/p5-Taint-Runtime/Makefile Thu Oct 11 13:16:54 2012 (r305717) @@ -1,9 +1,4 @@ -# New ports collection makefile for: p5-Taint-Runtime -# Date created: 2006-07-12 -# Whom: Renato Botelho -# # $FreeBSD$ -# PORTNAME= Taint-Runtime PORTVERSION= 0.03 Modified: head/devel/rubygem-echoe/Makefile ============================================================================== --- head/devel/rubygem-echoe/Makefile Thu Oct 11 13:03:18 2012 (r305716) +++ head/devel/rubygem-echoe/Makefile Thu Oct 11 13:16:54 2012 (r305717) @@ -1,9 +1,4 @@ -# New ports collection makefile for: rubygem-echoe -# Date created: 2009-06-15 -# Whom: Renato Botelho -# # $FreeBSD$ -# PORTNAME= echoe PORTVERSION= 4.5 Modified: head/devel/rubygem-stomp/Makefile ============================================================================== --- head/devel/rubygem-stomp/Makefile Thu Oct 11 13:03:18 2012 (r305716) +++ head/devel/rubygem-stomp/Makefile Thu Oct 11 13:16:54 2012 (r305717) @@ -1,9 +1,4 @@ -# New ports collection makefile for: rubygem-stomp -# Date created: 2009-06-17 -# Whom: Renato Botelho -# # $FreeBSD$ -# PORTNAME= stomp PORTVERSION= 1.1.10 Modified: head/mail/wbl/Makefile ============================================================================== --- head/mail/wbl/Makefile Thu Oct 11 13:03:18 2012 (r305716) +++ head/mail/wbl/Makefile Thu Oct 11 13:16:54 2012 (r305717) @@ -1,9 +1,4 @@ -# New ports collection makefile for: wbl -# Date created: 2006-07-15 -# Whom: Renato Botelho -# # $FreeBSD$ -# PORTNAME= wbl PORTVERSION= 1.1 Modified: head/net-im/jabber-pyicq/Makefile ============================================================================== --- head/net-im/jabber-pyicq/Makefile Thu Oct 11 13:03:18 2012 (r305716) +++ head/net-im/jabber-pyicq/Makefile Thu Oct 11 13:16:54 2012 (r305717) @@ -1,7 +1,3 @@ -# New ports collection makefile for: Jabber Python ICQ Transport -# Date created: 2005-06-07 -# Whom: Renato Botelho -# # $FreeBSD$ PORTNAME= pyicq Modified: head/net/rubygem-geoip/Makefile ============================================================================== --- head/net/rubygem-geoip/Makefile Thu Oct 11 13:03:18 2012 (r305716) +++ head/net/rubygem-geoip/Makefile Thu Oct 11 13:16:54 2012 (r305717) @@ -1,9 +1,4 @@ -# New ports collection makefile for: rubygem-geoip -# Date created: 2009-06-15 -# Whom: Renato Botelho -# # $FreeBSD$ -# PORTNAME= geoip PORTVERSION= 1.1.2 Modified: head/portuguese/php_doc-br/Makefile ============================================================================== --- head/portuguese/php_doc-br/Makefile Thu Oct 11 13:03:18 2012 (r305716) +++ head/portuguese/php_doc-br/Makefile Thu Oct 11 13:16:54 2012 (r305717) @@ -1,9 +1,4 @@ -# New ports collection makefile for: br-php_doc -# Date created: Sun Apr 29 15:38:47 CEST 2001 -# Whom: Renato Botelho -# # $FreeBSD$ -# CATEGORIES= portuguese lang PKGNAMEPREFIX= From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:22:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1D1F3C61; Thu, 11 Oct 2012 13:22:54 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 064698FC0C; Thu, 11 Oct 2012 13:22: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 q9BDMrKC028777; Thu, 11 Oct 2012 13:22:53 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDMrl1028774; Thu, 11 Oct 2012 13:22:53 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210111322.q9BDMrl1028774@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 11 Oct 2012 13:22:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305718 - head/x11/thingylaunch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:22:54 -0000 Author: gahr Date: Thu Oct 11 13:22:53 2012 New Revision: 305718 URL: http://svn.freebsd.org/changeset/ports/305718 Log: - Update to 1.1.4 * Handle Ctrl-w (kill word) Feature safe: yes Modified: head/x11/thingylaunch/Makefile head/x11/thingylaunch/distinfo Modified: head/x11/thingylaunch/Makefile ============================================================================== --- head/x11/thingylaunch/Makefile Thu Oct 11 13:16:54 2012 (r305717) +++ head/x11/thingylaunch/Makefile Thu Oct 11 13:22:53 2012 (r305718) @@ -1,12 +1,8 @@ -# New ports collection makefile for: thingylaunch -# Date created: 1 October 2009 -# Whom: gahr -# +# Created by: Pietro Cerutti # $FreeBSD$ -# PORTNAME= thingylaunch -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.4 CATEGORIES= x11 MASTER_SITES= http://www.gahr.ch/${PORTNAME}/ \ ${MASTER_SITE_LOCAL}/gahr/ \ Modified: head/x11/thingylaunch/distinfo ============================================================================== --- head/x11/thingylaunch/distinfo Thu Oct 11 13:16:54 2012 (r305717) +++ head/x11/thingylaunch/distinfo Thu Oct 11 13:22:53 2012 (r305718) @@ -1,2 +1,2 @@ -SHA256 (thingylaunch-1.1.3.tar.gz) = 376038494874859fd89da22fe1b5cd04a8b32914f73afa6c174a9e97bbbbd3b6 -SIZE (thingylaunch-1.1.3.tar.gz) = 7233 +SHA256 (thingylaunch-1.1.4.tar.gz) = e78c77b9761d198a435bda6b62d886dbc105541cc5bb5d67963773edc322c89e +SIZE (thingylaunch-1.1.4.tar.gz) = 7192 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:23:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74993D94; Thu, 11 Oct 2012 13:23:58 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5DA6A8FC1A; Thu, 11 Oct 2012 13:23: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 q9BDNwx8028955; Thu, 11 Oct 2012 13:23:58 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDNvDV028953; Thu, 11 Oct 2012 13:23:57 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210111323.q9BDNvDV028953@svn.freebsd.org> From: Alex Dupre Date: Thu, 11 Oct 2012 13:23:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305719 - head/irc/evangeline X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:23:58 -0000 Author: ale Date: Thu Oct 11 13:23:57 2012 New Revision: 305719 URL: http://svn.freebsd.org/changeset/ports/305719 Log: Fix typo. Feature safe: yes Modified: head/irc/evangeline/Makefile Modified: head/irc/evangeline/Makefile ============================================================================== --- head/irc/evangeline/Makefile Thu Oct 11 13:22:53 2012 (r305718) +++ head/irc/evangeline/Makefile Thu Oct 11 13:23:57 2012 (r305719) @@ -22,7 +22,7 @@ USE_GMAKE= yes GNU_CONFIGURE= yes IS_INTERACTIVE= yes -OPTIONS_DEFINe= IPV6 CRYPT +OPTIONS_DEFINE= IPV6 CRYPT OPTIONS_DEFAULT= CRYPT CRYPT_DESC= Enable Encryption From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:24:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 18D03E7A; Thu, 11 Oct 2012 13:24:42 +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 F41BB8FC14; Thu, 11 Oct 2012 13:24:41 +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 q9BDOfiH029116; Thu, 11 Oct 2012 13:24:41 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDOfdH029113; Thu, 11 Oct 2012 13:24:41 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210111324.q9BDOfdH029113@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Thu, 11 Oct 2012 13:24:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305720 - head/mail/dbmail22 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:24:42 -0000 Author: rm Date: Thu Oct 11 13:24:41 2012 New Revision: 305720 URL: http://svn.freebsd.org/changeset/ports/305720 Log: - convert to optionsng while here: - trim Makefile header - remove indefinite article - remove conflicts with port versions we don't have in the tree - fix portlint warning (shlib versions) - remove redundant MANCOMPRESSED=no - use bsd.port.options.mk instead of bsd.port.pre/post.mk - tab -> space change in pkg-descr:WWW PR: 172380 Submitted by: Alan Hicks (maintainer) Feature safe: yes Modified: head/mail/dbmail22/Makefile head/mail/dbmail22/pkg-descr Modified: head/mail/dbmail22/Makefile ============================================================================== --- head/mail/dbmail22/Makefile Thu Oct 11 13:23:57 2012 (r305719) +++ head/mail/dbmail22/Makefile Thu Oct 11 13:24:41 2012 (r305720) @@ -1,9 +1,5 @@ -# New ports collection makefile for: dbmail -# Date created: 07/26/2003 -# Whom: Clement Laforet -# +# Created by: Clement Laforet # $FreeBSD$ -# PORTNAME= dbmail PORTVERSION= 2.2.18 @@ -11,19 +7,17 @@ CATEGORIES= mail MASTER_SITES= http://www.dbmail.org/download/2.2/ MAINTAINER= ahicks@p-o.co.uk -COMMENT= An SQL database-based mail system (POP3 and IMAP) +COMMENT= SQL database-based mail system (POP3 and IMAP) LICENSE= GPLv2 -LIB_DEPENDS= gmime-2.0.4:${PORTSDIR}/mail/gmime2 +LIB_DEPENDS= gmime-2.0:${PORTSDIR}/mail/gmime2 -CONFLICTS= dbmail-*-2.0.* dbmail-2.1.* dbmail-3.* +CONFLICTS= dbmail-3.* -OPTIONS= MYSQL "Build with MySQL support" on \ - POSTGRESQL "Build with PostgreSQL support" off \ - SQLITE "Build with SQLite support" off \ - SIEVE "Build w. support for Sieve mail sorting language" off \ - LDAP "Build with support for LDAP authentication" off +OPTIONS_DEFINE= MYSQL PGSQL SQLITE SIEVE LDAP +OPTIONS_DEFAULT=MYSQL +SIEVE_DESC= Support for Sieve mail sorting language LATEST_LINK= dbmail22 USE_AUTOTOOLS= libtool @@ -49,7 +43,6 @@ MAN5= dbmail.conf.5 MAN8= dbmail-export.8 dbmail-imapd.8 dbmail-lmtpd.8 \ dbmail-pop3d.8 dbmail-sievecmd.8 dbmail-timsieved.8 \ dbmail-users.8 dbmail-util.8 -MANCOMPRESSED= no SUB_FILES= pkg-message PLIST_SUB+= PORTNAME=${PORTNAME} @@ -59,9 +52,9 @@ PLIST_SUB+= PORTDOCS="@comment " PLIST_SUB+= PORTDOCS="" .endif -.include +.include -.if !defined(WITHOUT_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} CONFIGURE_ARGS+=--with-mysql USE_MYSQL= yes DATABASE+= mysql @@ -70,7 +63,7 @@ PLIST_SUB+= MYSQL="" PLIST_SUB+= MYSQL="@comment " .endif -.if defined(WITH_POSTGRESQL) +.if ${PORT_OPTIONS:MPGSQL} CONFIGURE_ARGS+=--with-pgsql USE_PGSQL= yes DATABASE+= postgresql @@ -79,7 +72,7 @@ PLIST_SUB+= PGSQL="" PLIST_SUB+= PGSQL="@comment " .endif -.if defined(WITH_SQLITE) +.if ${PORT_OPTIONS:MSQLITE} CONFIGURE_ARGS+=--with-sqlite USE_SQLITE= yes DATABASE+= sqlite @@ -88,15 +81,15 @@ PLIST_SUB+= SQLITE="" PLIST_SUB+= SQLITE="@comment " .endif -.if defined(WITH_SIEVE) +.if ${PORT_OPTIONS:MSIEVE} CONFIGURE_ARGS+=--with-sieve=${LOCALBASE}/include -LIB_DEPENDS+= sieve.1:${PORTSDIR}/mail/libsieve +LIB_DEPENDS+= sieve:${PORTSDIR}/mail/libsieve PLIST_SUB+= SIEVE="" .else PLIST_SUB+= SIEVE="@comment " .endif -.if defined(WITH_LDAP) +.if ${PORT_OPTIONS:MLDAP} CONFIGURE_ARGS+=--with-auth-ldap=${LOCALBASE}/include USE_OPENLDAP= yes PLIST_SUB+= LDAP="" @@ -104,7 +97,7 @@ PLIST_SUB+= LDAP="" PLIST_SUB+= LDAP="@comment " .endif -.if defined(WITHOUT_MYSQL) && !defined(WITH_POSTGRESQL) && !defined(WITH_SQLITE) +.if empty(${PORT_OPTIONS:MMYSQL}) && empty(${PORT_OPTIONS:MPGSQL}) && empty(${PORT_OPTIONS:MSQLITE}) IGNORE="requires at least one database backend selected. Run 'make config'" .endif @@ -141,4 +134,4 @@ post-install: .endif @${CAT} ${PKGMESSAGE} -.include +.include Modified: head/mail/dbmail22/pkg-descr ============================================================================== --- head/mail/dbmail22/pkg-descr Thu Oct 11 13:23:57 2012 (r305719) +++ head/mail/dbmail22/pkg-descr Thu Oct 11 13:24:41 2012 (r305720) @@ -21,4 +21,4 @@ PostgreSQL or SQLite). Changes on a Dbmail system (adding of users, changing passwords etc.) are effective immediately. -WWW: http://www.dbmail.org/ +WWW: http://www.dbmail.org/ From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:31:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 443111F5; Thu, 11 Oct 2012 13:31:54 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2D12C8FC12; Thu, 11 Oct 2012 13:31: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 q9BDVs6W030099; Thu, 11 Oct 2012 13:31:54 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDVrnN030097; Thu, 11 Oct 2012 13:31:53 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210111331.q9BDVrnN030097@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 11 Oct 2012 13:31:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305721 - head/devel/tcllib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:31:54 -0000 Author: gahr Date: Thu Oct 11 13:31:53 2012 New Revision: 305721 URL: http://svn.freebsd.org/changeset/ports/305721 Log: - Remove tab at ^ before variable assignment Reported by: bdrewery Feature safe: yes Modified: head/devel/tcllib/Makefile Modified: head/devel/tcllib/Makefile ============================================================================== --- head/devel/tcllib/Makefile Thu Oct 11 13:24:41 2012 (r305720) +++ head/devel/tcllib/Makefile Thu Oct 11 13:31:53 2012 (r305721) @@ -46,7 +46,7 @@ post-patch: # try(n) is part of Tcl core since 8.6 .if ${TCL_VER:S/.//} < 86 - MANN+= try.n +MANN+= try.n .else ${MV} ${WRKSRC}/modules/try/try.man ${WRKSRC}/modules/try/try.man.noinstall .endif From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:32:36 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4C6A72DC; Thu, 11 Oct 2012 13:32:36 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from cpanel09.rubas.ch (cpanel09.rubas.ch [195.182.222.79]) by mx1.freebsd.org (Postfix) with ESMTP id EA6FC8FC08; Thu, 11 Oct 2012 13:32:34 +0000 (UTC) Received: from 175-3.192-178.cust.bluewin.ch ([178.192.3.175]:60155 helo=gahrfit.gahr.ch) by cpanel09.rubas.ch with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77) (envelope-from ) id 1TMIsE-004EHW-7g; Thu, 11 Oct 2012 15:32:27 +0200 Date: Thu, 11 Oct 2012 15:32:24 +0200 From: Pietro Cerutti To: Bryan Drewery Subject: Re: svn commit: r305648 - head/devel/tcllib Message-ID: <20121011133224.GB56059@gahrfit.gahr.ch> References: <201210101228.q9ACSN9w026185@svn.freebsd.org> <50758617.8030109@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UFHRwCdBEJvubb2X" Content-Disposition: inline In-Reply-To: <50758617.8030109@FreeBSD.org> X-PGP-Key: 0x9571F78E X-PGP-Fingerprint: 1203 92B5 3919 AF84 9B97 28D6 C0C2 6A98 9571 F78E User-Agent: Mutt/1.5.21 (2010-09-15) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel09.rubas.ch X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - FreeBSD.org Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: gahr@FreeBSD.org List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:32:36 -0000 --UFHRwCdBEJvubb2X Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Fixed, thanks. Sorry it took so long, my mailfilter didn't correctly ring bell for this mail ;) On 2012-Oct-10, 09:28, Bryan Drewery wrote: > On 10/10/2012 7:28 AM, Pietro Cerutti wrote: > > Author: gahr > > Date: Wed Oct 10 12:28:22 2012 > > New Revision: 305648 > > URL: http://svn.freebsd.org/changeset/ports/305648 > >=20 > > Log: > > - Do not install the try.n manpage when using Tcl 8.6, cause try/catc= h/finally > > are part of Tcl 8.6 core and the relevant manpage is installed by l= ang/tcl86 > > http://www.tcl.tk/cgi-bin/tct/tip/329.html >=20 > This causes patch error on 7.4: >=20 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D > =3D=3D=3D> Patching for tcllib-1.14_1 > =3D=3D=3D> Applying FreeBSD patches for tcllib-1.14_1 > # > # Ensure, the detailed output of vendors' self-tests is > # available in addition to the pretty progress report: > # > /usr/bin/sed -i.bak -e 's,test run,test run -l testlog,' -e > 's,$(libdir)/@PACKAGE@@VERSION@,$(libdir)/@PACKAGE@,' > /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/Makefile.in > /usr/bin/find /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/apps > -type f ! -name "*.man" | /usr/bin/xargs /usr/bin/sed -i.bak -e 's,exec > tclsh,exec /usr/local/bin/tclsh8.5,' > # > # patch(1) adds a newline at eof, so we need to remove it here > # > /usr/bin/awk 'NR > 1 { print h } { h =3D $0 } END { ORS =3D ""; print h }' > /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/t= ext/04 > > > /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/t= ext/04.new > /bin/mv > /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/t= ext/04.new > /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/t= ext/04 > # try(n) is part of Tcl core since 8.6 > MANN+=3D try.n > MANN+=3D: not found > *** Error code 127 >=20 > Stop in /usr/ports/devel/tcllib. >=20 >=20 >=20 > >=20 > > Modified: > > head/devel/tcllib/Makefile > > head/devel/tcllib/Makefile.man > >=20 > > Modified: head/devel/tcllib/Makefile > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/devel/tcllib/Makefile Wed Oct 10 12:20:32 2012 (r305647) > > +++ head/devel/tcllib/Makefile Wed Oct 10 12:28:22 2012 (r305648) > > @@ -7,6 +7,7 @@ > > =20 > > PORTNAME=3D tcllib > > PORTVERSION=3D 1.14 > > +PORTREVISION=3D 1 > > CATEGORIES=3D devel tcl > > MASTER_SITES=3D SF > > =20 > > @@ -43,6 +44,14 @@ post-patch: > > ${WRKSRC}/modules/doctools/tests/text/04 > ${WRKSRC}/modules/docto= ols/tests/text/04.new > > ${MV} ${WRKSRC}/modules/doctools/tests/text/04.new ${WRKSRC}/modules/= doctools/tests/text/04 > > =20 > > + # try(n) is part of Tcl core since 8.6 > > +.if ${TCL_VER:S/.//} < 86 > > + MANN+=3D try.n > > +.else > > + ${MV} ${WRKSRC}/modules/try/try.man ${WRKSRC}/modules/try/try.man.noi= nstall > > +.endif > > + > > + > > RUNTEST=3D ${SETENV} LANG=3DC DISPLAY=3D ${MAKE} -C ${WRKSRC} test > > MYID !=3D ${ID} -u > > .if ${MYID} =3D=3D 0 > >=20 > > Modified: head/devel/tcllib/Makefile.man > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/devel/tcllib/Makefile.man Wed Oct 10 12:20:32 2012 (r305647) > > +++ head/devel/tcllib/Makefile.man Wed Oct 10 12:28:22 2012 (r305648) > > @@ -303,7 +303,6 @@ MANN=3D S3.n \ > > traverse.n \ > > treeql.n \ > > trim.n \ > > - try.n \ > > uevent.n \ > > uevent_onidle.n \ > > unicode.n \ > >=20 >=20 >=20 > --=20 > Regards, > Bryan Drewery > bdrewery@freenode/EFNet --=20 Pietro Cerutti The FreeBSD Project gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp --UFHRwCdBEJvubb2X Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB2ymcACgkQwMJqmJVx945fpQCgxEtvkw47/eK38YqOVsA/i9Xe p4oAmgJu4nZHPPzp+YOcbtI2hcm2ctXL =AbFu -----END PGP SIGNATURE----- --UFHRwCdBEJvubb2X-- From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:35:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B9F3B41B; Thu, 11 Oct 2012 13:35:55 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A22CD8FC0C; Thu, 11 Oct 2012 13:35: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 q9BDZtXH030644; Thu, 11 Oct 2012 13:35:55 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDZtqV030640; Thu, 11 Oct 2012 13:35:55 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201210111335.q9BDZtqV030640@svn.freebsd.org> From: Renato Botelho Date: Thu, 11 Oct 2012 13:35:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305722 - in head/mail/qmail: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:35:55 -0000 Author: garga Date: Thu Oct 11 13:35:55 2012 New Revision: 305722 URL: http://svn.freebsd.org/changeset/ports/305722 Log: Fix MAILDIRQUOTA patch that was calculating the wrong email size. PR: ports/168870 Submitted by: Michael Gmelin Feature safe: yes Added: head/mail/qmail/files/extra-patch-maildir++ (contents, props changed) Modified: head/mail/qmail/Makefile Modified: head/mail/qmail/Makefile ============================================================================== --- head/mail/qmail/Makefile Thu Oct 11 13:31:53 2012 (r305721) +++ head/mail/qmail/Makefile Thu Oct 11 13:35:55 2012 (r305722) @@ -378,6 +378,7 @@ DISTFILES+= ${AUTH_PATCH}:smtp_auth .if defined(WITH_MAILDIRQUOTA_PATCH) && !defined(BARRIER_MAILDIRQUOTA_PATCH) PATCH_SITES+= http://www.alexdupre.com/qmail/:quota PATCHFILES+= qmail-maildir++.patch:quota +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-maildir++ .endif .if defined(WITH_BLOCKEXEC_PATCH) && !defined(BARRIER_BLOCKEXEC_PATCH) Added: head/mail/qmail/files/extra-patch-maildir++ ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/qmail/files/extra-patch-maildir++ Thu Oct 11 13:35:55 2012 (r305722) @@ -0,0 +1,11 @@ +--- qmail-local.c.orig 2012-10-11 10:22:24.000000000 -0300 ++++ qmail-local.c 2012-10-11 10:23:24.000000000 -0300 +@@ -109,7 +109,7 @@ + s += fmt_strn(s,host,sizeof(host)); + s += fmt_strn(s,",S=",sizeof(",S=")); + if (fstat(0,&st) == -1) if (errno == error_noent) break; +- s += fmt_ulong(s,st.st_size); *s++ = 0; ++ s += fmt_ulong(s,st.st_size+rpline.len+dtline.len); *s++ = 0; + if (stat(fntmptph,&st) == -1) if (errno == error_noent) break; + /* really should never get to this point */ + if (loop == 2) _exit(1); From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:36:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 00E4C501; Thu, 11 Oct 2012 13:36:47 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C45438FC17; Thu, 11 Oct 2012 13:36:47 +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 q9BDallv030813; Thu, 11 Oct 2012 13:36:47 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDalND030810; Thu, 11 Oct 2012 13:36:47 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201210111336.q9BDalND030810@svn.freebsd.org> From: Wesley Shields Date: Thu, 11 Oct 2012 13:36:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305723 - head/security/sudo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:36:48 -0000 Author: wxs Date: Thu Oct 11 13:36:47 2012 New Revision: 305723 URL: http://svn.freebsd.org/changeset/ports/305723 Log: If OPIE option is on we can not pass --with-pam in CONFIGURE_ARGS. Make it so that OPIE will pass --with-opie and if it is off we pass --with-pam. [1] No functional changes with this, just a build fix. While here use tabs where appropriate and cleanup pkg-descr. [2] Feature safe: yes Modified: head/security/sudo/Makefile head/security/sudo/pkg-descr (contents, props changed) Modified: head/security/sudo/Makefile ============================================================================== --- head/security/sudo/Makefile Thu Oct 11 13:35:55 2012 (r305722) +++ head/security/sudo/Makefile Thu Oct 11 13:36:47 2012 (r305723) @@ -29,8 +29,7 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/e --with-tty-tickets \ --with-env-editor \ --with-logincap \ - --with-long-otp-prompt \ - --with-pam + --with-long-otp-prompt OPTIONS_DEFINE= LDAP INSULTS DISABLE_ROOT_SUDO DISABLE_AUTH NOARGS_SHELL \ AUDIT OPIE NLS @@ -41,7 +40,7 @@ DISABLE_ROOT_SUDO_DESC= Do not allow roo DISABLE_AUTH_DESC= Do not require authentication by default NOARGS_SHELL_DESC= Run a shell if no arguments are given AUDIT_DESC= Enable BSM audit support -OPIE_DESC= Enable one-time passwords +OPIE_DESC= Enable one-time passwords (no PAM support) LOGFAC?= local2 CONFIGURE_ARGS+= --with-logfac=${LOGFAC} @@ -86,19 +85,21 @@ CONFIGURE_ARGS+=--disable-root-sudo .endif .if ${PORT_OPTIONS:MDISABLE_AUTH} -CONFIGURE_ARGS+=--disable-authentication +CONFIGURE_ARGS+= --disable-authentication .endif .if ${PORT_OPTIONS:MNOARGS_SHELL} -CONFIGURE_ARGS+=--enable-noargs-shell +CONFIGURE_ARGS+= --enable-noargs-shell .endif .if ${PORT_OPTIONS:MAUDIT} -CONFIGURE_ARGS+=--with-bsm-audit +CONFIGURE_ARGS+= --with-bsm-audit .endif .if ${PORT_OPTIONS:MOPIE} -CONFIGURE_ARGS+=--with-opie +CONFIGURE_ARGS+= --with-opie +.else +CONFIGURE_ARGS+= --with-pam .endif MAN5+= sudoers.5 Modified: head/security/sudo/pkg-descr ============================================================================== --- head/security/sudo/pkg-descr Thu Oct 11 13:35:55 2012 (r305722) +++ head/security/sudo/pkg-descr Thu Oct 11 13:36:47 2012 (r305723) @@ -5,13 +5,4 @@ privileges to users and log root activit give as few privileges as possible but still allow people to get their work done. -MAILING LISTS: - -Please send bugs, problems, comments, etc to sudo-bugs@courtesan.com -There is a mailing list that receives announcements whenever a new -version of sudo is released. You can subscribe to it by sending a -message to "majordomo@courtesan.com" that includes the line -"subscribe sudo-announce". There is also a list for people working -on sudo. The command to add yourself is "subscribe sudo-workers". - WWW: http://www.courtesan.com/sudo/ From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:43:45 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6A6582E; Thu, 11 Oct 2012 13:43:44 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CF7C98FC17; Thu, 11 Oct 2012 13:43: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 q9BDhi36031668; Thu, 11 Oct 2012 13:43:44 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDhiTh031665; Thu, 11 Oct 2012 13:43:44 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210111343.q9BDhiTh031665@svn.freebsd.org> From: Alex Kozlov Date: Thu, 11 Oct 2012 13:43:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305724 - head/games/sdl_jewels X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:43:45 -0000 Author: ak Date: Thu Oct 11 13:43:44 2012 New Revision: 305724 URL: http://svn.freebsd.org/changeset/ports/305724 Log: - Convert Makefile headers to new style - Convert to new options framework - Remove redundant comments - Improve COMMENT - Add DESKTOP_ENTRIES - Fix typo in sed regexp - Bump PORTREVISION Submitted by: nemysis (maintainer) Feature safe: yes Modified: head/games/sdl_jewels/Makefile (contents, props changed) head/games/sdl_jewels/distinfo (contents, props changed) Modified: head/games/sdl_jewels/Makefile ============================================================================== --- head/games/sdl_jewels/Makefile Thu Oct 11 13:36:47 2012 (r305723) +++ head/games/sdl_jewels/Makefile Thu Oct 11 13:43:44 2012 (r305724) @@ -1,56 +1,63 @@ -# New Ports collection makefile for: SDL_jewels -# Date created: 2012-04-25 -# Whom: nemysis@gmx.ch -# # $FreeBSD$ -# PORTNAME= sdl_jewels PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= http://www.linuxmotors.com/gljewel/downloads/ -DISTNAME= ${PORTNAME:S/sdl/SDL/}-${PORTVERSION} -EXTRACT_SUFX= .tgz +MASTER_SITES= http://www.linuxmotors.com/gljewel/downloads/ \ + http://www.linuxmotors.com/gljewel/:icons +DISTFILES= ${PORTNAME:S/sdl/SDL/}-${DISTVERSION}.tgz \ + gljewel.gif:icons +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= ${PORTNAME:S/sdl/SDL/}-${DISTVERSION}.tgz MAINTAINER= nemysis@gmx.ch -COMMENT= SDL Jewels is a tile-matching 8x8 puzzle game +COMMENT= Tile-matching 8x8 puzzle game LICENSE= GPLv2 +BUILD_DEPENDS= giftopnm:${PORTSDIR}/graphics/netpbm + +WRKSRC= ${WRKDIR}/${PORTNAME:S/sdl/SDL/}-${PORTVERSION} + USE_SDL= sdl image mixer USE_GMAKE= yes MAKE_JOBS_SAFE= yes +ALL_TARGET= -PLIST_FILES= bin/sdljewels +PLIST_FILES= bin/sdljewels \ + share/pixmaps/sdljewels.png PORTDATA= * PORTDOCS= ChangeLog README -ALL_TARGET= +DESKTOP_ENTRIES="SDL Jewels" "${COMMENT}" "sdljewels" \ + "sdljewels" "Game;ArcadeGame;" ${FALSE} + +.include post-patch: @${RM} -rf ${WRKSRC}/data/CVS -# Fix data location - @${REINPLACE_CMD} -e 's!data/bigfont.ppm!${DATADIR}/data/bigfont.ppm!' \ - -e 's!dirlist\[\]="data";!dirlist[]="${DATADIR}/data";'! \ - -e 's!char name[256],!char name[512],!' \ - ${WRKSRC}/gljewel.c ${WRKSRC}/sound.c -# Fix CFLAGS/LDFLAGS - @${REINPLACE_CMD} -e 's!CFLAGS = -O2 -Wall!CFLAGS+=!' \ - -e 's!LDFLAGS =!LDFLAGS+=!' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|data/bigfont.ppm|${DATADIR}/data/bigfont.ppm|' \ + -e 's|dirlist\[\]="data";|dirlist[]="${DATADIR}/data";|' \ + -e 's|char name[256],|char name[512],|' \ + ${WRKSRC}/gljewel.c ${WRKSRC}/sound.c + @${REINPLACE_CMD} -e 's|CFLAGS = -O2 -Wall|CFLAGS+=|' \ + -e 's|LDFLAGS =|LDFLAGS+=|' ${WRKSRC}/Makefile + +post-build: + @(cd ${WRKSRC} && \ + ${LOCALBASE}/bin/giftopnm ${DISTDIR}/${DIST_SUBDIR}/gljewel.gif | \ + ${LOCALBASE}/bin/pamscale .1 | ${LOCALBASE}/bin/pnmtopng > sdljewels.png) do-install: -# Executable ${INSTALL_PROGRAM} ${WRKSRC}/gljewel ${PREFIX}/bin/sdljewels -# Data - (cd ${WRKSRC} && ${COPYTREE_SHARE} data ${DATADIR}) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} data ${DATADIR}) + ${INSTALL_DATA} ${WRKSRC}/sdljewels.png ${PREFIX}/share/pixmaps -# Documentation -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} -.for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif .include Modified: head/games/sdl_jewels/distinfo ============================================================================== --- head/games/sdl_jewels/distinfo Thu Oct 11 13:36:47 2012 (r305723) +++ head/games/sdl_jewels/distinfo Thu Oct 11 13:43:44 2012 (r305724) @@ -1,2 +1,4 @@ -SHA256 (SDL_jewels-1.1.1.tgz) = c9a40b7e18fabb03e4065e656bc2c30f595103bf20dc74a10847c3f3aa138ee7 -SIZE (SDL_jewels-1.1.1.tgz) = 195366 +SHA256 (sdl_jewels/SDL_jewels-1.1.1.tgz) = c9a40b7e18fabb03e4065e656bc2c30f595103bf20dc74a10847c3f3aa138ee7 +SIZE (sdl_jewels/SDL_jewels-1.1.1.tgz) = 195366 +SHA256 (sdl_jewels/gljewel.gif) = 73e5cf488e9a7c399b30d72f9920412834386b6eb6c66fdd0e941300e220683d +SIZE (sdl_jewels/gljewel.gif) = 57312 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:46:30 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1068935; Thu, 11 Oct 2012 13:46:30 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8889C8FC08; Thu, 11 Oct 2012 13:46: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 q9BDkU40032066; Thu, 11 Oct 2012 13:46:30 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BDkU7Y032063; Thu, 11 Oct 2012 13:46:30 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210111346.q9BDkU7Y032063@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 11 Oct 2012 13:46:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305725 - in head: net/tucan www/py-formalchemy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:46:30 -0000 Author: bapt Date: Thu Oct 11 13:46:29 2012 New Revision: 305725 URL: http://svn.freebsd.org/changeset/ports/305725 Log: Dependency line should not end with a '/' Submitted by: az Feature safe: yes Modified: head/net/tucan/Makefile head/www/py-formalchemy/Makefile Modified: head/net/tucan/Makefile ============================================================================== --- head/net/tucan/Makefile Thu Oct 11 13:43:44 2012 (r305724) +++ head/net/tucan/Makefile Thu Oct 11 13:46:29 2012 (r305725) @@ -16,7 +16,7 @@ MAINTAINER= gustau.perez@gmail.com COMMENT= Tucan Manager aids file-sharing with 1-click hosters RUN_DEPENDS= ${LOCALBASE}/bin/pilconvert.py:${PORTSDIR}/graphics/py-imaging \ - ${LOCALBASE}/bin/cntraining:${PORTSDIR}/graphics/tesseract/ + ${LOCALBASE}/bin/cntraining:${PORTSDIR}/graphics/tesseract NO_BUILD= yes USE_GNOME= pygtk2 librsvg2 Modified: head/www/py-formalchemy/Makefile ============================================================================== --- head/www/py-formalchemy/Makefile Thu Oct 11 13:43:44 2012 (r305724) +++ head/www/py-formalchemy/Makefile Thu Oct 11 13:46:29 2012 (r305725) @@ -17,8 +17,8 @@ MAINTAINER= ghostonthewire@gmail.com COMMENT= Toolkit for creating HTML form elements manually or from SQLAlchemy mapped classes BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy06>=0.4.5:${PORTSDIR}/databases/py-sqlalchemy06 \ - ${PYTHON_PKGNAMEPREFIX}Tempita>=0.4:${PORTSDIR}/textproc/py-Tempita/ \ - ${PYTHON_PKGNAMEPREFIX}webhelpers>=0.6.4:${PORTSDIR}/www/py-webhelpers/ + ${PYTHON_PKGNAMEPREFIX}Tempita>=0.4:${PORTSDIR}/textproc/py-Tempita \ + ${PYTHON_PKGNAMEPREFIX}webhelpers>=0.6.4:${PORTSDIR}/www/py-webhelpers RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PYTHON= yes From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 13:52:17 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32A3FAC2; Thu, 11 Oct 2012 13:52:17 +0000 (UTC) (envelope-from bsdkaffee@gmail.com) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 54D778FC16; Thu, 11 Oct 2012 13:52:16 +0000 (UTC) Received: by mail-vc0-f182.google.com with SMTP id fw7so2797029vcb.13 for ; Thu, 11 Oct 2012 06:52:15 -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=5XRd3U1vWasSEv09ze750WDNDxGOXwyNwYKgpJVeer8=; b=H2gN6sfbJrS9oPFFy7O9GhuukD78V2ciRjT7XadZzb3yibT2rVD/pYE4EXR2aZ41Zj pB036QUtvBN9cgDHscpJIyEGlbYKARz1L7FekjEIBUXTLTMVKjEGrzNrK2jHXXqWhB85 nw2qQlhYGixzVMJa/XGkiKA1EoHqFGZP2zvcW8qPGqYb1bm8AH3ubCACAounEQTZDXNl L/KmE0XlEXC40pVfFfvGHkKd52X8mkvlLoNUOZkC+0ZAr80aR6EyEyDqZ3LQhQ+OGDoh nnbVal6EI1V1ix731AvNjfbfAjxAKOPiGXUi9R6TPf/wXJtM01bDr2hQZCO++IUFoiij kf/g== Received: by 10.58.117.103 with SMTP id kd7mr543079veb.4.1349963535669; Thu, 11 Oct 2012 06:52:15 -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 x4sm577735vdh.13.2012.10.11.06.52.14 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 11 Oct 2012 06:52:15 -0700 (PDT) Sender: "Jason E. Hale" From: "Jason E. Hale" To: Ruslan Mahmatkhanov Subject: Re: svn commit: r305720 - head/mail/dbmail22 Date: Thu, 11 Oct 2012 09:52:13 -0400 Message-ID: <2655234.MtjR6MoGGX@mocha.verizon.net> User-Agent: KMail/4.8.4 (FreeBSD/9.0-RELEASE-p3; KDE/4.8.4; i386; ; ) In-Reply-To: <201210111324.q9BDOfdH029113@svn.freebsd.org> References: <201210111324.q9BDOfdH029113@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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 13:52:17 -0000 On Thursday, October 11, 2012 13:24:41 Ruslan Mahmatkhanov wrote: > Author: rm > Date: Thu Oct 11 13:24:41 2012 > New Revision: 305720 > URL: http://svn.freebsd.org/changeset/ports/305720 > > Log: > - convert to optionsng > > PR: 172380 > Submitted by: Alan Hicks (maintainer) > Feature safe: yes > > Modified: > head/mail/dbmail22/Makefile > head/mail/dbmail22/pkg-descr > > Modified: head/mail/dbmail22/Makefile > ============================================================================ > == --- head/mail/dbmail22/Makefile Thu Oct 11 13:23:57 2012 (r305719) +++ > head/mail/dbmail22/Makefile Thu Oct 11 13:24:41 2012 (r305720) @@ -1,9 > > -OPTIONS= MYSQL "Build with MySQL support" on \ > - POSTGRESQL "Build with PostgreSQL support" off \ > - SQLITE "Build with SQLite support" off \ > - SIEVE "Build w. support for Sieve mail sorting language" off \ > - LDAP "Build with support for LDAP authentication" off > +OPTIONS_DEFINE= MYSQL PGSQL SQLITE SIEVE LDAP > +OPTIONS_DEFAULT=MYSQL > +SIEVE_DESC= Support for Sieve mail sorting language > > > -.if defined(WITHOUT_MYSQL) && !defined(WITH_POSTGRESQL) && > !defined(WITH_SQLITE) +.if empty(${PORT_OPTIONS:MMYSQL}) && > empty(${PORT_OPTIONS:MPGSQL}) && empty(${PORT_OPTIONS:MSQLITE}) > IGNORE="requires at least one database backend selected. Run 'make config'" > .endif > Wouldn't it be better to use OPTIONS_MULTI instead of the IGNORE message? OPTIONS_DEFINE= SIEVE LDAP OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE ${} shouldn't be used within emtpy() either. E.g.: .if empty(${PORT_OPTIONS:MMYSQL}) -> .if empty(PORT_OPTIONS:MMYSQL) This port also has: .if !defined(NOPORTDOCS) Might as well convert to: .if ${PORT_OPTIONS:MDOCS} - Jason From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 14:01:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A23BC89; Thu, 11 Oct 2012 14:01:26 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward5h.mail.yandex.net (forward5h.mail.yandex.net [IPv6:2a02:6b8:0:f05::5]) by mx1.freebsd.org (Postfix) with ESMTP id 3601A8FC14; Thu, 11 Oct 2012 14:01:25 +0000 (UTC) Received: from smtp1h.mail.yandex.net (smtp1h.mail.yandex.net [84.201.187.144]) by forward5h.mail.yandex.net (Yandex) with ESMTP id 72891D00B75; Thu, 11 Oct 2012 18:01:23 +0400 (MSK) Received: from smtp1h.mail.yandex.net (localhost [127.0.0.1]) by smtp1h.mail.yandex.net (Yandex) with ESMTP id 059C813402B5; Thu, 11 Oct 2012 18:01:22 +0400 (MSK) Received: from unknown (unknown [77.66.155.61]) by smtp1h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id 1LgiujRQ-1MgKbmD9; Thu, 11 Oct 2012 18:01:22 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1349964082; bh=49mJjxLQIU5BQCPMZoW5/mmtM74PGmcxKo6/apLetME=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type; b=YCuyxhFA+X/12VA5wSQc324TNzkCjV+TADNUrJ3qbqPZWehXFEFd+cID+qjPtpCmJ tj8NaBDOjBLACUUSzj6y3E89GsV7oWfGjUyFPQipubo+gc1HLwbhsXE/zVyGaqi/DS c25gKD9IU31nben4NlMYA5V3WkpBW2w9Stj0LgBI= Message-ID: <5076D11E.9050907@yandex.ru> Date: Thu, 11 Oct 2012 18:01:02 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120912 Thunderbird/15.0.1 MIME-Version: 1.0 To: "Jason E. Hale" Subject: Re: svn commit: r305720 - head/mail/dbmail22 References: <201210111324.q9BDOfdH029113@svn.freebsd.org> <2655234.MtjR6MoGGX@mocha.verizon.net> In-Reply-To: <2655234.MtjR6MoGGX@mocha.verizon.net> Content-Type: multipart/mixed; boundary="------------000104060003000809050300" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 14:01:26 -0000 This is a multi-part message in MIME format. --------------000104060003000809050300 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Jason E. Hale wrote on 11.10.2012 17:52: > On Thursday, October 11, 2012 13:24:41 Ruslan Mahmatkhanov wrote: >> Author: rm >> Date: Thu Oct 11 13:24:41 2012 >> New Revision: 305720 >> URL: http://svn.freebsd.org/changeset/ports/305720 >> >> Log: >> - convert to optionsng >> >> PR: 172380 >> Submitted by: Alan Hicks (maintainer) >> Feature safe: yes >> >> Modified: >> head/mail/dbmail22/Makefile >> head/mail/dbmail22/pkg-descr >> >> Modified: head/mail/dbmail22/Makefile >> ============================================================================ >> == --- head/mail/dbmail22/Makefile Thu Oct 11 13:23:57 2012 (r305719) +++ >> head/mail/dbmail22/Makefile Thu Oct 11 13:24:41 2012 (r305720) @@ -1,9 >> >> -OPTIONS= MYSQL "Build with MySQL support" on \ >> - POSTGRESQL "Build with PostgreSQL support" off \ >> - SQLITE "Build with SQLite support" off \ >> - SIEVE "Build w. support for Sieve mail sorting language" > off \ >> - LDAP "Build with support for LDAP authentication" off >> +OPTIONS_DEFINE= MYSQL PGSQL SQLITE SIEVE LDAP >> +OPTIONS_DEFAULT=MYSQL >> +SIEVE_DESC= Support for Sieve mail sorting language >> > >> >> -.if defined(WITHOUT_MYSQL) && !defined(WITH_POSTGRESQL) && >> !defined(WITH_SQLITE) +.if empty(${PORT_OPTIONS:MMYSQL}) && >> empty(${PORT_OPTIONS:MPGSQL}) && empty(${PORT_OPTIONS:MSQLITE}) >> IGNORE="requires at least one database backend selected. Run 'make config'" >> .endif >> > Wouldn't it be better to use OPTIONS_MULTI instead of the IGNORE message? > OPTIONS_DEFINE= SIEVE LDAP > OPTIONS_MULTI= DB > OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE > > ${} shouldn't be used within emtpy() either. E.g.: > .if empty(${PORT_OPTIONS:MMYSQL}) -> .if empty(PORT_OPTIONS:MMYSQL) > > This port also has: > .if !defined(NOPORTDOCS) > Might as well convert to: > .if ${PORT_OPTIONS:MDOCS} > > - Jason You are right, thank you. This one should work. I'll consult the maintainer and if he approves - commit. -- Regards, Ruslan Tinderboxing kills... the drives. --------------000104060003000809050300 Content-Type: text/x-patch; name="dbmail22-options.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="dbmail22-options.diff" Index: Makefile =================================================================== --- Makefile (revision 305720) +++ Makefile (working copy) @@ -15,8 +15,10 @@ CONFLICTS= dbmail-3.* -OPTIONS_DEFINE= MYSQL PGSQL SQLITE SIEVE LDAP +OPTIONS_DEFINE= SIEVE LDAP OPTIONS_DEFAULT=MYSQL +OPTIONS_MULTI= DB +OPTIONS_MULTI_DB=MYSQL PGSQL SQLITE SIEVE_DESC= Support for Sieve mail sorting language LATEST_LINK= dbmail22 @@ -46,7 +48,7 @@ SUB_FILES= pkg-message PLIST_SUB+= PORTNAME=${PORTNAME} -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) PLIST_SUB+= PORTDOCS="@comment " .else PLIST_SUB+= PORTDOCS="" @@ -97,10 +99,6 @@ PLIST_SUB+= LDAP="@comment " .endif -.if empty(${PORT_OPTIONS:MMYSQL}) && empty(${PORT_OPTIONS:MPGSQL}) && empty(${PORT_OPTIONS:MSQLITE}) -IGNORE="requires at least one database backend selected. Run 'make config'" -.endif - post-patch: @${FIND} ${WRKSRC} -name CVS -type d | ${XARGS} ${RM} -fr @${FIND} ${WRKSRC} -name *.orig -type f -delete @@ -128,7 +126,7 @@ ${MKDIR} ${DATADIR}/$$f ; \ ${INSTALL_DATA} ${WRKSRC}/sql/$$f/* ${DATADIR}/$$f; \ done -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif --------------000104060003000809050300-- From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 14:09:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9EDEFE4; Thu, 11 Oct 2012 14:09:26 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A87288FC17; Thu, 11 Oct 2012 14:09:26 +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 q9BE9QnX034773; Thu, 11 Oct 2012 14:09:26 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BE9QIv034768; Thu, 11 Oct 2012 14:09:26 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210111409.q9BE9QIv034768@svn.freebsd.org> From: Alex Dupre Date: Thu, 11 Oct 2012 14:09:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305726 - head/security/oath-toolkit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 14:09:26 -0000 Author: ale Date: Thu Oct 11 14:09:26 2012 New Revision: 305726 URL: http://svn.freebsd.org/changeset/ports/305726 Log: Update to 2.0.0 release: - add PSKC support Feature safe: yes Modified: head/security/oath-toolkit/Makefile head/security/oath-toolkit/distinfo head/security/oath-toolkit/pkg-plist Modified: head/security/oath-toolkit/Makefile ============================================================================== --- head/security/oath-toolkit/Makefile Thu Oct 11 13:46:29 2012 (r305725) +++ head/security/oath-toolkit/Makefile Thu Oct 11 14:09:26 2012 (r305726) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= oath-toolkit -PORTVERSION= 1.12.6 +PORTVERSION= 2.0.0 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -9,26 +9,97 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ale@FreeBSD.org COMMENT= Library, tools, and PAM module for OATH authentication -LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING - USE_GMAKE= yes USE_GNOME= gnomehack GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +OPTIONS_DEFINE= PSKC +OPTIONS_DEFAULT=PSKC + +PSKC_DESC= Portable Symmetric Key Container (RFC 6030) support MAN1= oathtool.1 +MAN3= oath_authenticate_usersfile.3 oath_base32_decode.3 \ + oath_base32_encode.3 oath_bin2hex.3 oath_check_version.3 \ + oath_done.3 oath_hex2bin.3 oath_hotp_generate.3 \ + oath_hotp_validate.3 oath_hotp_validate_callback.3 \ + oath_init.3 oath_strerror.3 oath_strerror_name.3 \ + oath_totp_generate.3 oath_totp_validate.3 \ + oath_totp_validate2.3 oath_totp_validate2_callback.3 \ + oath_totp_validate_callback.3 DOCS= AUTHORS ChangeLog NEWS README PORTDOCS= * +.include + +.if ${PORT_OPTIONS:MPSKC} +LIB_DEPENDS+= xml2:${PORTSDIR}/textproc/libxml2 + +CONFIGURE_ARG+=--with-xml-prefix=${LOCALBASE} + +MAN1+= pskctool.1 +MAN3+= pskc_build_xml.3 pskc_check_version.3 pskc_done.3 \ + pskc_free.3 pskc_get_cryptomodule_id.3 \ + pskc_get_device_devicebinding.3 \ + pskc_get_device_expirydate.3 pskc_get_device_issueno.3 \ + pskc_get_device_manufacturer.3 pskc_get_device_model.3 \ + pskc_get_device_serialno.3 pskc_get_device_startdate.3 \ + pskc_get_device_userid.3 pskc_get_id.3 \ + pskc_get_key_algorithm.3 \ + pskc_get_key_algparm_chall_checkdigits.3 \ + pskc_get_key_algparm_chall_encoding.3 \ + pskc_get_key_algparm_chall_max.3 \ + pskc_get_key_algparm_chall_min.3 \ + pskc_get_key_algparm_resp_checkdigits.3 \ + pskc_get_key_algparm_resp_encoding.3 \ + pskc_get_key_algparm_resp_length.3 \ + pskc_get_key_algparm_suite.3 \ + pskc_get_key_data_b64secret.3 \ + pskc_get_key_data_counter.3 \ + pskc_get_key_data_secret.3 pskc_get_key_data_time.3 \ + pskc_get_key_data_timedrift.3 \ + pskc_get_key_data_timeinterval.3 \ + pskc_get_key_friendlyname.3 pskc_get_key_id.3 \ + pskc_get_key_issuer.3 \ + pskc_get_key_policy_expirydate.3 \ + pskc_get_key_policy_keyusages.3 \ + pskc_get_key_policy_numberoftransactions.3 \ + pskc_get_key_policy_pinencoding.3 \ + pskc_get_key_policy_pinkeyid.3 \ + pskc_get_key_policy_pinmaxfailedattempts.3 \ + pskc_get_key_policy_pinmaxlength.3 \ + pskc_get_key_policy_pinminlength.3 \ + pskc_get_key_policy_pinusagemode.3 \ + pskc_get_key_policy_startdate.3 \ + pskc_get_key_profileid.3 pskc_get_key_reference.3 \ + pskc_get_key_userid.3 pskc_get_keypackage.3 \ + pskc_get_version.3 pskc_global_done.3 \ + pskc_global_init.3 pskc_global_log.3 \ + pskc_init.3 pskc_keyusage2str.3 pskc_output.3 \ + pskc_parse_from_memory.3 pskc_pinusagemode2str.3 \ + pskc_str2keyusage.3 pskc_str2pinusagemode.3 \ + pskc_str2valueformat.3 pskc_strerror.3 \ + pskc_strerror_name.3 pskc_validate.3 \ + pskc_valueformat2str.3 + +PLIST_SUB+= PSKC="" +.else +CONFIGURE_ARGS+=--disable-pskc +PLIST_SUB+= PSKC="@comment " +.endif + post-patch: .if defined(NOPORTDOCS) @${REINPLACE_CMD} 's|install-data-am: install-data-local|install-data-am:|' \ - ${WRKSRC}/liboath/gtk-doc/Makefile.in + ${WRKSRC}/liboath/gtk-doc/Makefile.in \ + ${WRKSRC}/libpskc/gtk-doc/Makefile.in .else @${REINPLACE_CMD} 's|@HTML_DIR@|${DOCSDIR}|' \ - ${WRKSRC}/liboath/gtk-doc/Makefile.in + ${WRKSRC}/liboath/gtk-doc/Makefile.in \ + ${WRKSRC}/libpskc/gtk-doc/Makefile.in .endif .if !defined(NOPORTDOCS) Modified: head/security/oath-toolkit/distinfo ============================================================================== --- head/security/oath-toolkit/distinfo Thu Oct 11 13:46:29 2012 (r305725) +++ head/security/oath-toolkit/distinfo Thu Oct 11 14:09:26 2012 (r305726) @@ -1,2 +1,2 @@ -SHA256 (oath-toolkit-1.12.6.tar.gz) = 2ea3714d9132f861115d7817e1206a6aec51708605124691027582cc91f4c216 -SIZE (oath-toolkit-1.12.6.tar.gz) = 2275393 +SHA256 (oath-toolkit-2.0.0.tar.gz) = 027a9767d9dd49b8285a5a65b637114e2fdd60feda1f622d5a73d26fc33b667f +SIZE (oath-toolkit-2.0.0.tar.gz) = 3841020 Modified: head/security/oath-toolkit/pkg-plist ============================================================================== --- head/security/oath-toolkit/pkg-plist Thu Oct 11 13:46:29 2012 (r305725) +++ head/security/oath-toolkit/pkg-plist Thu Oct 11 14:09:26 2012 (r305726) @@ -1,11 +1,26 @@ bin/oathtool +%%PSKC%%bin/pskctool include/liboath/oath.h +%%PSKC%%include/pskc/container.h +%%PSKC%%include/pskc/enums.h +%%PSKC%%include/pskc/errors.h +%%PSKC%%include/pskc/exports.h +%%PSKC%%include/pskc/global.h +%%PSKC%%include/pskc/keypackage.h +%%PSKC%%include/pskc/pskc.h +%%PSKC%%include/pskc/version.h lib/liboath.a lib/liboath.la lib/liboath.so lib/liboath.so.1 +%%PSKC%%lib/libpskc.a +%%PSKC%%lib/libpskc.la +%%PSKC%%lib/libpskc.so +%%PSKC%%lib/libpskc.so.0 lib/security/pam_oath.la lib/security/pam_oath.so libdata/pkgconfig/liboath.pc +%%PSKC%%libdata/pkgconfig/libpskc.pc @dirrm include/liboath +%%PSKC%%@dirrm include/pskc @dirrmtry lib/security From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 14:19:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FF1A3E2; Thu, 11 Oct 2012 14:19:08 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4FFBD8FC12; Thu, 11 Oct 2012 14:19:08 +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 q9BEJ8XP035935; Thu, 11 Oct 2012 14:19:08 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BEJ8eh035933; Thu, 11 Oct 2012 14:19:08 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210111419.q9BEJ8eh035933@svn.freebsd.org> From: Alex Kozlov Date: Thu, 11 Oct 2012 14:19:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305727 - head/games/sdl_scavenger X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 14:19:08 -0000 Author: ak Date: Thu Oct 11 14:19:07 2012 New Revision: 305727 URL: http://svn.freebsd.org/changeset/ports/305727 Log: - Convert Makefile headers to new style - Remove indefinite article from COMMENT - Add DESKTOP_ENTRIES - Bump PORTREVISION Submitted by: nemysis (maintainer) Feature safe: yes Modified: head/games/sdl_scavenger/Makefile Modified: head/games/sdl_scavenger/Makefile ============================================================================== --- head/games/sdl_scavenger/Makefile Thu Oct 11 14:09:26 2012 (r305726) +++ head/games/sdl_scavenger/Makefile Thu Oct 11 14:19:07 2012 (r305727) @@ -1,18 +1,14 @@ -# New Ports collection makefile for: SDLScavenger -# Date created: 2012-04-21 -# Whom: nemysis@gmx.ch -# # $FreeBSD$ -# PORTNAME= sdl_scavenger PORTVERSION= 145.1.2010.11.5 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/sdlscavenger/ DISTNAME= sdlscav-145.1_2010_11_5 MAINTAINER= nemysis@gmx.ch -COMMENT= A Lode Runner like game +COMMENT= Lode Runner like game LICENSE= GPLv2 @@ -22,14 +18,16 @@ USE_ZIP= yes USE_SDL= sdl image mixer USE_GMAKE= yes MAKE_JOBS_SAFE= yes +ALL_TARGET= PLIST_FILES= bin/sdlscavenger \ - share/pixmaps/${PORTNAME}.png + share/pixmaps/sdlscavenger.png PORTDATA= * PORTDOCS= CREDITS DOC NEW_FEATURES README STRATEGY -ALL_TARGET= +DESKTOP_ENTRIES="SDL Scavenger" "${COMMENT}" "sdlscavenger" \ + "sdlscavenger" "Game;ArcadeGame;" ${FALSE} .include @@ -38,22 +36,14 @@ post-patch: ${WRKSRC}/names.h do-install: -# Executable ${INSTALL_PROGRAM} ${WRKSRC}/sdlscav ${PREFIX}/bin/sdlscavenger - -# Data ${MKDIR} ${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} data ${DATADIR}) + ${INSTALL_DATA} ${WRKSRC}/data/scav.png ${PREFIX}/share/pixmaps/sdlscavenger.png -# Pixmaps - ${INSTALL_DATA} ${WRKSRC}/data/scav.png ${PREFIX}/share/pixmaps/${PORTNAME}.png - -# Documentation .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} -.for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif .include From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 14:23:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D899E5D2; Thu, 11 Oct 2012 14:23:33 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C00E48FC12; Thu, 11 Oct 2012 14:23:33 +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 q9BENXEC036489; Thu, 11 Oct 2012 14:23:33 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BENX60036487; Thu, 11 Oct 2012 14:23:33 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210111423.q9BENX60036487@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 11 Oct 2012 14:23:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305728 - head/multimedia/vtkmpeg2encode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 14:23:33 -0000 Author: gahr Date: Thu Oct 11 14:23:33 2012 New Revision: 305728 URL: http://svn.freebsd.org/changeset/ports/305728 Log: - Update multimedia/vtkmpeg2encode to reflect math/vtk5 PORTVERSION Feature safe: yes Modified: head/multimedia/vtkmpeg2encode/Makefile (contents, props changed) Modified: head/multimedia/vtkmpeg2encode/Makefile ============================================================================== --- head/multimedia/vtkmpeg2encode/Makefile Thu Oct 11 14:19:07 2012 (r305727) +++ head/multimedia/vtkmpeg2encode/Makefile Thu Oct 11 14:23:33 2012 (r305728) @@ -1,9 +1,5 @@ -# New ports collection makefile for: vtkmpeg2encode -# Date created: 2007-12-20 -# Whom: Jason W. Bacon -# +# Created by: Jason W. Bacon # $FreeBSD$ -# PORTNAME= vtkmpeg2encode PORTVERSION= ${VTK_VERSION} @@ -21,7 +17,7 @@ NO_PACKAGE= ${NO_CDROM} USE_CMAKE= yes USE_LDCONFIG= yes CMAKE_ARGS?= -DBUILD_SHARED_LIBS:BOOL=ON -VTK_VERSION= 5.8.0 +VTK_VERSION= 5.10.0 MAN3= vtkmpeg2encode.3 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 14:32:36 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 82E1375C for ; Thu, 11 Oct 2012 14:32:36 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id F3AC28FC08 for ; Thu, 11 Oct 2012 14:32:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9BEWZDU079467 for ; Thu, 11 Oct 2012 14:32:35 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BEWZAT079463 for svn-ports-head@FreeBSD.org; Thu, 11 Oct 2012 14:32:35 GMT (envelope-from bdrewery) Received: (qmail 46547 invoked from network); 11 Oct 2012 09:32:33 -0500 Received: from unknown (HELO ?192.168.0.74?) (freebsd@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 11 Oct 2012 09:32:33 -0500 Message-ID: <5076D882.7010309@FreeBSD.org> Date: Thu, 11 Oct 2012 09:32:34 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: gahr@FreeBSD.org Subject: Re: svn commit: r305648 - head/devel/tcllib References: <201210101228.q9ACSN9w026185@svn.freebsd.org> <50758617.8030109@FreeBSD.org> <20121011133224.GB56059@gahrfit.gahr.ch> In-Reply-To: <20121011133224.GB56059@gahrfit.gahr.ch> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 14:32:36 -0000 On 10/11/2012 8:32 AM, Pietro Cerutti wrote: > Fixed, thanks. Sorry it took so long, my mailfilter didn't correctly > ring bell for this mail ;) Thanks! > > On 2012-Oct-10, 09:28, Bryan Drewery wrote: >> On 10/10/2012 7:28 AM, Pietro Cerutti wrote: >>> Author: gahr >>> Date: Wed Oct 10 12:28:22 2012 >>> New Revision: 305648 >>> URL: http://svn.freebsd.org/changeset/ports/305648 >>> >>> Log: >>> - Do not install the try.n manpage when using Tcl 8.6, cause try/catch/finally >>> are part of Tcl 8.6 core and the relevant manpage is installed by lang/tcl86 >>> http://www.tcl.tk/cgi-bin/tct/tip/329.html >> >> This causes patch error on 7.4: >> >> ================================================= >> ===> Patching for tcllib-1.14_1 >> ===> Applying FreeBSD patches for tcllib-1.14_1 >> # >> # Ensure, the detailed output of vendors' self-tests is >> # available in addition to the pretty progress report: >> # >> /usr/bin/sed -i.bak -e 's,test run,test run -l testlog,' -e >> 's,$(libdir)/@PACKAGE@@VERSION@,$(libdir)/@PACKAGE@,' >> /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/Makefile.in >> /usr/bin/find /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/apps >> -type f ! -name "*.man" | /usr/bin/xargs /usr/bin/sed -i.bak -e 's,exec >> tclsh,exec /usr/local/bin/tclsh8.5,' >> # >> # patch(1) adds a newline at eof, so we need to remove it here >> # >> /usr/bin/awk 'NR > 1 { print h } { h = $0 } END { ORS = ""; print h }' >> /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04 >>> >> /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04.new >> /bin/mv >> /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04.new >> /wrkdirs/usr/ports/devel/tcllib/work/tcllib-1.14/modules/doctools/tests/text/04 >> # try(n) is part of Tcl core since 8.6 >> MANN+= try.n >> MANN+=: not found >> *** Error code 127 >> >> Stop in /usr/ports/devel/tcllib. >> >> >> >>> >>> Modified: >>> head/devel/tcllib/Makefile >>> head/devel/tcllib/Makefile.man >>> >>> Modified: head/devel/tcllib/Makefile >>> ============================================================================== >>> --- head/devel/tcllib/Makefile Wed Oct 10 12:20:32 2012 (r305647) >>> +++ head/devel/tcllib/Makefile Wed Oct 10 12:28:22 2012 (r305648) >>> @@ -7,6 +7,7 @@ >>> >>> PORTNAME= tcllib >>> PORTVERSION= 1.14 >>> +PORTREVISION= 1 >>> CATEGORIES= devel tcl >>> MASTER_SITES= SF >>> >>> @@ -43,6 +44,14 @@ post-patch: >>> ${WRKSRC}/modules/doctools/tests/text/04 > ${WRKSRC}/modules/doctools/tests/text/04.new >>> ${MV} ${WRKSRC}/modules/doctools/tests/text/04.new ${WRKSRC}/modules/doctools/tests/text/04 >>> >>> + # try(n) is part of Tcl core since 8.6 >>> +.if ${TCL_VER:S/.//} < 86 >>> + MANN+= try.n >>> +.else >>> + ${MV} ${WRKSRC}/modules/try/try.man ${WRKSRC}/modules/try/try.man.noinstall >>> +.endif >>> + >>> + >>> RUNTEST= ${SETENV} LANG=C DISPLAY= ${MAKE} -C ${WRKSRC} test >>> MYID != ${ID} -u >>> .if ${MYID} == 0 >>> >>> Modified: head/devel/tcllib/Makefile.man >>> ============================================================================== >>> --- head/devel/tcllib/Makefile.man Wed Oct 10 12:20:32 2012 (r305647) >>> +++ head/devel/tcllib/Makefile.man Wed Oct 10 12:28:22 2012 (r305648) >>> @@ -303,7 +303,6 @@ MANN= S3.n \ >>> traverse.n \ >>> treeql.n \ >>> trim.n \ >>> - try.n \ >>> uevent.n \ >>> uevent_onidle.n \ >>> unicode.n \ >>> >> >> >> -- >> Regards, >> Bryan Drewery >> bdrewery@freenode/EFNet > -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 14:58:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2418D91; Thu, 11 Oct 2012 14:58:20 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9A39F8FC16; Thu, 11 Oct 2012 14:58:20 +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 q9BEwKN7040651; Thu, 11 Oct 2012 14:58:20 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BEwKq3040648; Thu, 11 Oct 2012 14:58:20 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210111458.q9BEwKq3040648@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 11 Oct 2012 14:58:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305729 - head/graphics/xv-m17n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 14:58:20 -0000 Author: bapt Date: Thu Oct 11 14:58:20 2012 New Revision: 305729 URL: http://svn.freebsd.org/changeset/ports/305729 Log: Use classic run dependency line Hat: portmgr Feature safe: yes Modified: head/graphics/xv-m17n/Makefile Modified: head/graphics/xv-m17n/Makefile ============================================================================== --- head/graphics/xv-m17n/Makefile Thu Oct 11 14:23:33 2012 (r305728) +++ head/graphics/xv-m17n/Makefile Thu Oct 11 14:58:20 2012 (r305729) @@ -15,7 +15,7 @@ PKGDIR= ${.CURDIR} MAKE_ENV= LOCALE_EXTENSION=-DTV_MULTILINGUAL -RUN_DEPENDS= xv:${.CURDIR}/../xv +RUN_DEPENDS= xv:${PORTSDIR}/graphics/xv NOMAN= yes From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 15:06:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B17EC8 for ; Thu, 11 Oct 2012 15:06:15 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 67A678FC12 for ; Thu, 11 Oct 2012 15:06:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9BF6FJv080688 for ; Thu, 11 Oct 2012 15:06:15 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9BF6FHk080683 for svn-ports-head@freebsd.org; Thu, 11 Oct 2012 15:06:15 GMT (envelope-from bdrewery) Received: (qmail 46427 invoked from network); 11 Oct 2012 10:06:13 -0500 Received: from unknown (HELO ?192.168.0.74?) (freebsd@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 11 Oct 2012 10:06:13 -0500 Message-ID: <5076E066.4010005@FreeBSD.org> Date: Thu, 11 Oct 2012 10:06:14 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Baptiste Daroussin Subject: Re: svn commit: r305729 - head/graphics/xv-m17n References: <201210111458.q9BEwKq3040648@svn.freebsd.org> In-Reply-To: <201210111458.q9BEwKq3040648@svn.freebsd.org> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 15:06:15 -0000 On 10/11/2012 9:58 AM, Baptiste Daroussin wrote: > Author: bapt > Date: Thu Oct 11 14:58:20 2012 > New Revision: 305729 > URL: http://svn.freebsd.org/changeset/ports/305729 > > Log: > Use classic run dependency line > > Hat: portmgr > Feature safe: yes > > Modified: > head/graphics/xv-m17n/Makefile > > Modified: head/graphics/xv-m17n/Makefile > ============================================================================== > --- head/graphics/xv-m17n/Makefile Thu Oct 11 14:23:33 2012 (r305728) > +++ head/graphics/xv-m17n/Makefile Thu Oct 11 14:58:20 2012 (r305729) > @@ -15,7 +15,7 @@ PKGDIR= ${.CURDIR} > > MAKE_ENV= LOCALE_EXTENSION=-DTV_MULTILINGUAL > > -RUN_DEPENDS= xv:${.CURDIR}/../xv > +RUN_DEPENDS= xv:${PORTSDIR}/graphics/xv Thank you - this kind of change is great for grepping the tree for origin dependencies. > > NOMAN= yes > > -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 15:31:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 86D3285E; Thu, 11 Oct 2012 15:31:11 +0000 (UTC) (envelope-from bsam@passap.ru) Received: from forward3h.mail.yandex.net (forward3h.mail.yandex.net [IPv6:2a02:6b8:0:f05::3]) by mx1.freebsd.org (Postfix) with ESMTP id 01D748FC12; Thu, 11 Oct 2012 15:31:11 +0000 (UTC) Received: from smtp2h.mail.yandex.net (smtp2h.mail.yandex.net [84.201.187.145]) by forward3h.mail.yandex.net (Yandex) with ESMTP id C708B136172D; Thu, 11 Oct 2012 19:31:09 +0400 (MSK) Received: from smtp2h.mail.yandex.net (localhost [127.0.0.1]) by smtp2h.mail.yandex.net (Yandex) with ESMTP id 4F27717000EC; Thu, 11 Oct 2012 19:31:09 +0400 (MSK) Received: from 87.249.28.58.tel.ru (87.249.28.58.tel.ru [87.249.28.58]) by smtp2h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id V8e4wbgU-V9eqaioQ; Thu, 11 Oct 2012 19:31:09 +0400 Message-ID: <5076E63D.6070701@passap.ru> Date: Thu, 11 Oct 2012 19:31:09 +0400 From: =?UTF-8?B?0JHQvtGA0LjRgSDQodCw0LzQvtGA0L7QtNC+0LI=?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: Alex Kozlov Subject: Re: svn commit: r305727 - head/games/sdl_scavenger References: <201210111419.q9BEJ8eh035933@svn.freebsd.org> In-Reply-To: <201210111419.q9BEJ8eh035933@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 15:31:11 -0000 Hi Alex, 11.10.2012 18:19, Alex Kozlov пишет: > Log: > - Convert Makefile headers to new style > - Remove indefinite article from COMMENT > - Add DESKTOP_ENTRIES > - Bump PORTREVISION > > Submitted by: nemysis (maintainer) Is it submitted by PR, irc, e-mail, else? -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 15:49:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7932E347; Thu, 11 Oct 2012 15:49:49 +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 46DC68FC0A; Thu, 11 Oct 2012 15:49:49 +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 q9BFnnJr046826; Thu, 11 Oct 2012 15:49:49 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BFnnEH046821; Thu, 11 Oct 2012 15:49:49 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210111549.q9BFnnEH046821@svn.freebsd.org> From: Bryan Drewery Date: Thu, 11 Oct 2012 15:49:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305730 - in head/devel: . checkbashisms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 15:49:49 -0000 Author: bdrewery Date: Thu Oct 11 15:49:48 2012 New Revision: 305730 URL: http://svn.freebsd.org/changeset/ports/305730 Log: checkbashisms is a perl script that checks for commonly used bash features that are not supported by POSIX shells. WWW: http://sourceforge.net/projects/checkbaskisms Feature safe: yes Added: head/devel/checkbashisms/ head/devel/checkbashisms/Makefile (contents, props changed) head/devel/checkbashisms/distinfo (contents, props changed) head/devel/checkbashisms/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 11 14:58:20 2012 (r305729) +++ head/devel/Makefile Thu Oct 11 15:49:48 2012 (r305730) @@ -189,6 +189,7 @@ SUBDIR += cgit SUBDIR += cgprof SUBDIR += charva + SUBDIR += checkbashisms SUBDIR += checkheaders SUBDIR += chrpath SUBDIR += cil Added: head/devel/checkbashisms/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/checkbashisms/Makefile Thu Oct 11 15:49:48 2012 (r305730) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= checkbashisms +PORTVERSION= 2.0.0.2 +CATEGORIES= devel perl5 +MASTER_SITES= SF/${SF_PROJECT}/${DISTVERSION} +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= + +MAINTAINER= bdrewery@FreeBSD.org +COMMENT= Script to check for Bash features not defined by POSIX + +LICENSE= GPLv2 + +SF_PROJECT= checkbaskisms + +USE_PERL5_RUN= yes +NO_BUILD= yes +NO_WRKSUBDIR= yes + +PLIST_FILES= bin/${DISTNAME} + +do-extract: + @${MKDIR} ${WRKSRC} + @${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC} + +do-patch: + @${REINPLACE_CMD} -e "s| /usr/bin/perl|${PERL}|" \ + ${WRKSRC}/${DISTNAME} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin/${DISTNAME} + +.include Added: head/devel/checkbashisms/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/checkbashisms/distinfo Thu Oct 11 15:49:48 2012 (r305730) @@ -0,0 +1,2 @@ +SHA256 (checkbashisms) = 4da61b7f08b55609e80c648d215f0201aa9b5f1df53aab6252129537a7f7a0ee +SIZE (checkbashisms) = 21258 Added: head/devel/checkbashisms/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/checkbashisms/pkg-descr Thu Oct 11 15:49:48 2012 (r305730) @@ -0,0 +1,4 @@ +checkbashisms is a perl script that checks for commonly used +bash features that are not supported by POSIX shells. + +WWW: http://sourceforge.net/projects/checkbaskisms From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 15:50:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B50B6C3; Thu, 11 Oct 2012 15:50:44 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 03B0B8FC0A; Thu, 11 Oct 2012 15:50: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 q9BFohAC046998; Thu, 11 Oct 2012 15:50:43 GMT (envelope-from ume@svn.freebsd.org) Received: (from ume@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BFohpl046995; Thu, 11 Oct 2012 15:50:43 GMT (envelope-from ume@svn.freebsd.org) Message-Id: <201210111550.q9BFohpl046995@svn.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 11 Oct 2012 15:50:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305731 - head/textproc/ibus-el X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 15:50:44 -0000 Author: ume Date: Thu Oct 11 15:50:43 2012 New Revision: 305731 URL: http://svn.freebsd.org/changeset/ports/305731 Log: - Update to 0.3.2. - Simplify Makefile's header. Feature safe: yes Modified: head/textproc/ibus-el/Makefile head/textproc/ibus-el/distinfo Modified: head/textproc/ibus-el/Makefile ============================================================================== --- head/textproc/ibus-el/Makefile Thu Oct 11 15:49:48 2012 (r305730) +++ head/textproc/ibus-el/Makefile Thu Oct 11 15:50:43 2012 (r305731) @@ -1,13 +1,8 @@ -# New ports collection makefile for: ibus-el -# Date created: 4 July 2010 -# Whom: Hajimu UMEMOTO -# # $FreeBSD$ -# PORTNAME= ibus-el -PORTVERSION= 0.3.1 -PORTREVISION= 3 +PORTVERSION= 0.3.2 +#PORTREVISION= 0 CATEGORIES= textproc elisp MASTER_SITES= http://www11.atwiki.jp/s-irie/pub/emacs/ibus/ PKGNAMESUFFIX= -${EMACS_PORT_NAME} Modified: head/textproc/ibus-el/distinfo ============================================================================== --- head/textproc/ibus-el/distinfo Thu Oct 11 15:49:48 2012 (r305730) +++ head/textproc/ibus-el/distinfo Thu Oct 11 15:50:43 2012 (r305731) @@ -1,2 +1,2 @@ -SHA256 (ibus-el-0.3.1.tar.gz) = ac4608cc805e4e13e4f2eb21dabf6bd7090504389319f7c2455c6183e3addda3 -SIZE (ibus-el-0.3.1.tar.gz) = 52434 +SHA256 (ibus-el-0.3.2.tar.gz) = 18b93de42e2f16a992ca38c4a3fe885e50f840ba95df782911e06bc3a65862ac +SIZE (ibus-el-0.3.2.tar.gz) = 52918 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 15:54:11 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 780CA957; Thu, 11 Oct 2012 15:54:11 +0000 (UTC) (envelope-from kozlov@ravenloft.kiev.ua) Received: from ravenloft.kiev.ua (ravenloft.kiev.ua [94.244.131.95]) by mx1.freebsd.org (Postfix) with ESMTP id 2F7EF8FC1E; Thu, 11 Oct 2012 15:54:10 +0000 (UTC) Date: Thu, 11 Oct 2012 18:54:10 +0300 From: Alex Kozlov To: =?utf-8?B?0JHQvtGA0LjRgSDQodCw0LzQvtGA0L7QtNC+0LI=?= Subject: Re: svn commit: r305727 - head/games/sdl_scavenger Message-ID: <20121011155410.GA36681@ravenloft.kiev.ua> References: <201210111419.q9BEJ8eh035933@svn.freebsd.org> <5076E63D.6070701@passap.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <5076E63D.6070701@passap.ru> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 15:54:11 -0000 On Thu, Oct 11, 2012 at 07:31:09PM +0400, Ð‘Ð¾Ñ€Ð¸Ñ Ð¡Ð°Ð¼Ð¾Ñ€Ð¾Ð´Ð¾Ð² wrote: > 11.10.2012 18:19, Alex Kozlov пишет: > > Log: > > - Convert Makefile headers to new style > > - Remove indefinite article from COMMENT > > - Add DESKTOP_ENTRIES > > - Bump PORTREVISION > > > > Submitted by: nemysis (maintainer) > > Is it submitted by PR, irc, e-mail, else? There is no PR number for dfilter. This batch of updates was submitted via irc, email, via pastebin. Is exact method need to be explicitly mentioned in commit log? -- Alex From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 16:38:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27CDCE7E; Thu, 11 Oct 2012 16:38:58 +0000 (UTC) (envelope-from tj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EA6228FC0A; Thu, 11 Oct 2012 16:38:57 +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 q9BGcvax052768; Thu, 11 Oct 2012 16:38:57 GMT (envelope-from tj@svn.freebsd.org) Received: (from tj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BGcvCx052762; Thu, 11 Oct 2012 16:38:57 GMT (envelope-from tj@svn.freebsd.org) Message-Id: <201210111638.q9BGcvCx052762@svn.freebsd.org> From: Tom Judge Date: Thu, 11 Oct 2012 16:38:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305732 - in head/devel: . p5-Data-Rand X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 16:38:58 -0000 Author: tj Date: Thu Oct 11 16:38:57 2012 New Revision: 305732 URL: http://svn.freebsd.org/changeset/ports/305732 Log: A module used to generate random strings and lists. WWW: http://search.cpan.org/dist/Data-Rand/ Feature safe: yes Approved by: db (mentor) Added: head/devel/p5-Data-Rand/ head/devel/p5-Data-Rand/Makefile (contents, props changed) head/devel/p5-Data-Rand/distinfo (contents, props changed) head/devel/p5-Data-Rand/pkg-descr (contents, props changed) head/devel/p5-Data-Rand/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 11 15:50:43 2012 (r305731) +++ head/devel/Makefile Thu Oct 11 16:38:57 2012 (r305732) @@ -1629,6 +1629,7 @@ SUBDIR += p5-Data-Peek SUBDIR += p5-Data-Printer SUBDIR += p5-Data-Properties + SUBDIR += p5-Data-Rand SUBDIR += p5-Data-Random SUBDIR += p5-Data-Range-Compare SUBDIR += p5-Data-Recursive-Encode Added: head/devel/p5-Data-Rand/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Rand/Makefile Thu Oct 11 16:38:57 2012 (r305732) @@ -0,0 +1,20 @@ +# $FreeBSD$ +# + +PORTNAME= Data-Rand +PORTVERSION= 0.0.4 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= tj@FreeBSD.org +COMMENT= Perl module for generating random strings or arrays + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +PERL_MODBUILD= yes + +MAN3= Data::Rand.3 + +.include Added: head/devel/p5-Data-Rand/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Rand/distinfo Thu Oct 11 16:38:57 2012 (r305732) @@ -0,0 +1,2 @@ +SHA256 (Data-Rand-0.0.4.tar.gz) = 04c438ff03500f6324e353e736242c1b8b773021151d0c92b773b8e62b0cc9e2 +SIZE (Data-Rand-0.0.4.tar.gz) = 6830 Added: head/devel/p5-Data-Rand/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Rand/pkg-descr Thu Oct 11 16:38:57 2012 (r305732) @@ -0,0 +1,3 @@ +A module used to generate random strings and lists. + +WWW: http://search.cpan.org/dist/Data-Rand/ Added: head/devel/p5-Data-Rand/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Rand/pkg-plist Thu Oct 11 16:38:57 2012 (r305732) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Data/Rand.pm +@dirrmtry %%SITE_PERL%%/Data From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 16:42:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E088FEC; Thu, 11 Oct 2012 16:42:59 +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 368C28FC19; Thu, 11 Oct 2012 16:42:59 +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 q9BGgxhl053287; Thu, 11 Oct 2012 16:42:59 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BGgxcY053284; Thu, 11 Oct 2012 16:42:59 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210111642.q9BGgxcY053284@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Thu, 11 Oct 2012 16:42:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305733 - head/mail/dbmail22 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 16:42:59 -0000 Author: rm Date: Thu Oct 11 16:42:58 2012 New Revision: 305733 URL: http://svn.freebsd.org/changeset/ports/305733 Log: - use multiple choice feature of options framework for database backend selection (mysql is still default) - convert NOPORTDOCS case to optionsng too Suggested by: jhale Approved by: Alan Hicks (maintainer, by mail) Feature safe: yes Modified: head/mail/dbmail22/Makefile Modified: head/mail/dbmail22/Makefile ============================================================================== --- head/mail/dbmail22/Makefile Thu Oct 11 16:38:57 2012 (r305732) +++ head/mail/dbmail22/Makefile Thu Oct 11 16:42:58 2012 (r305733) @@ -15,8 +15,10 @@ LIB_DEPENDS= gmime-2.0:${PORTSDIR}/mail/ CONFLICTS= dbmail-3.* -OPTIONS_DEFINE= MYSQL PGSQL SQLITE SIEVE LDAP +OPTIONS_DEFINE= SIEVE LDAP OPTIONS_DEFAULT=MYSQL +OPTIONS_MULTI= DB +OPTIONS_MULTI_DB=MYSQL PGSQL SQLITE SIEVE_DESC= Support for Sieve mail sorting language LATEST_LINK= dbmail22 @@ -46,7 +48,7 @@ MAN8= dbmail-export.8 dbmail-imapd.8 db SUB_FILES= pkg-message PLIST_SUB+= PORTNAME=${PORTNAME} -.if defined(NOPORTDOCS) +.if empty(PORT_OPTIONS:MDOCS) PLIST_SUB+= PORTDOCS="@comment " .else PLIST_SUB+= PORTDOCS="" @@ -97,10 +99,6 @@ PLIST_SUB+= LDAP="" PLIST_SUB+= LDAP="@comment " .endif -.if empty(${PORT_OPTIONS:MMYSQL}) && empty(${PORT_OPTIONS:MPGSQL}) && empty(${PORT_OPTIONS:MSQLITE}) -IGNORE="requires at least one database backend selected. Run 'make config'" -.endif - post-patch: @${FIND} ${WRKSRC} -name CVS -type d | ${XARGS} ${RM} -fr @${FIND} ${WRKSRC} -name *.orig -type f -delete @@ -128,7 +126,7 @@ post-install: ${MKDIR} ${DATADIR}/$$f ; \ ${INSTALL_DATA} ${WRKSRC}/sql/$$f/* ${DATADIR}/$$f; \ done -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 17:36:22 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C7EFD62; Thu, 11 Oct 2012 17:36:22 +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 E8FCA8FC18; Thu, 11 Oct 2012 17:36: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 q9BHaLjK059629; Thu, 11 Oct 2012 17:36:21 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BHaLN9059623; Thu, 11 Oct 2012 17:36:21 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210111736.q9BHaLN9059623@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Thu, 11 Oct 2012 17:36:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305734 - in head/lang/basic256: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 17:36:22 -0000 Author: rm Date: Thu Oct 11 17:36:21 2012 New Revision: 305734 URL: http://svn.freebsd.org/changeset/ports/305734 Log: - update to 0.9.9.1 - add build dependencies on bison and flex while here: - trim Makefile header - remove redundant tabs in Makefile - use SF shortcut in MASTER_SITES - remove indefinite article from COMMENT - remove exclicit dependency on qmake, since it is already defined in USE_QT4 - change BUILD_DEPENDS usage to more common - remove trailing whitespace in pkg-descr PR: 172583 Submitted by: Fernando (maintainer) Feature safe: yes Added: head/lang/basic256/files/patch-Stack.cpp (contents, props changed) Modified: head/lang/basic256/Makefile head/lang/basic256/distinfo head/lang/basic256/pkg-descr head/lang/basic256/pkg-plist Modified: head/lang/basic256/Makefile ============================================================================== --- head/lang/basic256/Makefile Thu Oct 11 16:42:58 2012 (r305733) +++ head/lang/basic256/Makefile Thu Oct 11 17:36:21 2012 (r305734) @@ -1,33 +1,28 @@ -# New ports collection makefile for: BASIC256 -# Date created: Aug 17 2011 -# Whom: Fernando Apesteguia -# +# Created by: Fernando Apesteguia # $FreeBSD$ -PORTNAME= basic256 -PORTVERSION= 0.9.6.69a -CATEGORIES= lang -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= kidbasic/basic256 -DISTNAME= ${PORTNAME}_${PORTVERSION} -EXTRACT_SUFX= .tgz - -MAINTAINER= fernando.apesteguia@gmail.com -COMMENT= An easy to use BASIC language and IDE for education - -BUILD_DEPENDS= espeak:${PORTSDIR}/audio/espeak -BUILD_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 -BUILD_DEPENDS+= qmake-qt4:${PORTSDIR}/devel/qmake4 - -WRKSRC= ${WRKDIR} - -USE_SDL= sdl mixer - -USE_QT4= corelib gui network xml webkit moc_build qmake_build rcc_build uic_build - -USE_DOS2UNIX= yes - -HAS_CONFIGURE= yes +PORTNAME= basic256 +PORTVERSION= 0.9.9.1 +CATEGORIES= lang +MASTER_SITES= SF +MASTER_SITE_SUBDIR= kidbasic/${PORTNAME} +DISTNAME= ${PORTNAME}_${PORTVERSION} +EXTRACT_SUFX= .tgz + +MAINTAINER= fernando.apesteguia@gmail.com +COMMENT= Easy to use BASIC language and IDE for education + +BUILD_DEPENDS= espeak:${PORTSDIR}/audio/espeak \ + sqlite3:${PORTSDIR}/databases/sqlite3 \ + flex:${PORTSDIR}/textproc/flex + +WRKSRC= ${WRKDIR} + +USE_BISON= build +USE_SDL= sdl mixer +USE_QT4= corelib gui network xml webkit moc_build qmake_build rcc_build uic_build +USE_DOS2UNIX= yes +HAS_CONFIGURE= yes do-configure: @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ Modified: head/lang/basic256/distinfo ============================================================================== --- head/lang/basic256/distinfo Thu Oct 11 16:42:58 2012 (r305733) +++ head/lang/basic256/distinfo Thu Oct 11 17:36:21 2012 (r305734) @@ -1,2 +1,2 @@ -SHA256 (basic256_0.9.6.69a.tgz) = 38a2246081d6d5572aeffe737ac4db4575f656705ee4479d4322e8bdd45f9140 -SIZE (basic256_0.9.6.69a.tgz) = 15708072 +SHA256 (basic256_0.9.9.1.tgz) = cb959497b8576c790731eea0898855612f444f7a84bc743a9aae14680f40e372 +SIZE (basic256_0.9.9.1.tgz) = 7938684 Added: head/lang/basic256/files/patch-Stack.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/basic256/files/patch-Stack.cpp Thu Oct 11 17:36:21 2012 (r305734) @@ -0,0 +1,12 @@ +--- Stack.cpp.orig 2012-10-09 17:42:07.000000000 +0200 ++++ Stack.cpp 2012-10-09 17:42:30.000000000 +0200 +@@ -53,7 +53,8 @@ + int Stack::height() + { + // return the height of the stack in elements +- return ((unsigned int) top - (unsigned int) bottom)/sizeof(stackval); ++ // magic of pointer math returns number of elements ++ return ((int) (top - bottom)); + } + + void Modified: head/lang/basic256/pkg-descr ============================================================================== --- head/lang/basic256/pkg-descr Thu Oct 11 16:42:58 2012 (r305733) +++ head/lang/basic256/pkg-descr Thu Oct 11 17:36:21 2012 (r305734) @@ -1,11 +1,11 @@ BASIC-256 is an easy to use version of BASIC designed to teach anybody -(especially middle and high-school students) the basics of computer +(especially middle and high-school students) the basics of computer programming. It uses traditional control structures like gosub, for/next, and goto, -which helps kids easily see how program flow-control works. It has a -built-in graphics mode which lets them draw pictures on screen in -minutes, and a set of detailed, easy-to-follow tutorials that +which helps kids easily see how program flow-control works. It has a +built-in graphics mode which lets them draw pictures on screen in +minutes, and a set of detailed, easy-to-follow tutorials that introduce programming concepts through fun exercises. WWW: http://www.basic256.org Modified: head/lang/basic256/pkg-plist ============================================================================== --- head/lang/basic256/pkg-plist Thu Oct 11 16:42:58 2012 (r305733) +++ head/lang/basic256/pkg-plist Thu Oct 11 17:36:21 2012 (r305734) @@ -1,10 +1,13 @@ bin/BASIC256 share/basic256/Examples/15puzzle.kbs +share/basic256/Examples/15puzzle_new.kbs share/basic256/Examples/BASICtest1.kbs share/basic256/Examples/arrays.kbs share/basic256/Examples/ballaccel.kbs +share/basic256/Examples/ballaccel_2.kbs share/basic256/Examples/ballanim.kbs share/basic256/Examples/basic256_icon.kbs +share/basic256/Examples/basic256_icon_V1.kbs share/basic256/Examples/card_suites.kbs share/basic256/Examples/cards_deal5.kbs share/basic256/Examples/checkerboard.kbs @@ -13,8 +16,11 @@ share/basic256/Examples/collision3.kbs share/basic256/Examples/databasefoo.kbs share/basic256/Examples/db_quote.kbs share/basic256/Examples/dice/dice.kbs +share/basic256/Examples/dice/dice_2.kbs share/basic256/Examples/dice/dicewood.wav share/basic256/Examples/errortrapping.kbs +share/basic256/Examples/function_factorial.kbs +share/basic256/Examples/function_randint.kbs share/basic256/Examples/hangman.kbs share/basic256/Examples/hello.kbs share/basic256/Examples/imgload/animatedhelp.kbs @@ -60,6 +66,8 @@ share/basic256/Examples/sqrt.kbs share/basic256/Examples/stamp.kbs share/basic256/Examples/stamp_flower.kbs share/basic256/Examples/story.kbs +share/basic256/Examples/subroutine_global.kbs +share/basic256/Examples/subroutine_squares.kbs share/basic256/Examples/testing/2darraytest.kbs share/basic256/Examples/testing/2dstrarraytest.kbs share/basic256/Examples/testing/KalRGB.kbs @@ -132,12 +140,6 @@ share/basic256/help/fr/sin.jpg share/basic256/help/fr/stamp.png share/basic256/help/fr/style.css share/basic256/help/fr/tan.jpg -share/basic256/help/ru/cir.png -share/basic256/help/ru/color.png -share/basic256/help/ru/fonttext.png -share/basic256/help/ru/poly.png -share/basic256/help/ru/radians.png -share/basic256/help/ru/stamp.png share/basic256/help/ru/style.css @dirrm share/basic256/help/ru @dirrm share/basic256/help/fr From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 18:13:29 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0AA1AFBA; Thu, 11 Oct 2012 18:13:29 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E80D38FC1A; Thu, 11 Oct 2012 18:13: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 q9BIDSfb064260; Thu, 11 Oct 2012 18:13:28 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BIDSi6064258; Thu, 11 Oct 2012 18:13:28 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201210111813.q9BIDSi6064258@svn.freebsd.org> From: Andrej Zverev Date: Thu, 11 Oct 2012 18:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305735 - head/devel/p5-Class-MOP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 18:13:29 -0000 Author: az Date: Thu Oct 11 18:13:28 2012 New Revision: 305735 URL: http://svn.freebsd.org/changeset/ports/305735 Log: - Mark as DEPRECATED - Set EXPERATION_DATE Port not in use almost 16 months. Feature safe: yes Modified: head/devel/p5-Class-MOP/Makefile Modified: head/devel/p5-Class-MOP/Makefile ============================================================================== --- head/devel/p5-Class-MOP/Makefile Thu Oct 11 17:36:21 2012 (r305734) +++ head/devel/p5-Class-MOP/Makefile Thu Oct 11 18:13:28 2012 (r305735) @@ -14,7 +14,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= A Meta Object Protocol for Perl 5 -IGNORE= distribution has been merged with devel/p5-Moose +DEPRECATED= distribution has been merged with devel/p5-Moose +EXPIRATION_DATE= 2012-10-25 BUILD_DEPENDS= p5-Devel-GlobalDestruction>=0:${PORTSDIR}/devel/p5-Devel-GlobalDestruction \ p5-MRO-Compat>=0.05:${PORTSDIR}/devel/p5-MRO-Compat \ From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 18:17:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FCE3199; Thu, 11 Oct 2012 18:17:28 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (pancho.soaustin.net [76.74.250.40]) by mx1.freebsd.org (Postfix) with ESMTP id DEF1D8FC0C; Thu, 11 Oct 2012 18:17:27 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id AAFC656055; Thu, 11 Oct 2012 13:17:27 -0500 (CDT) Date: Thu, 11 Oct 2012 13:17:27 -0500 From: Mark Linimon To: Bryan Drewery Subject: Re: svn commit: r305729 - head/graphics/xv-m17n Message-ID: <20121011181727.GD19467@lonesome.com> References: <201210111458.q9BEwKq3040648@svn.freebsd.org> <5076E066.4010005@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5076E066.4010005@FreeBSD.org> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: svn-ports-head@freebsd.org, Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 18:17:28 -0000 On Thu, Oct 11, 2012 at 10:06:14AM -0500, Bryan Drewery wrote: > > -RUN_DEPENDS= xv:${.CURDIR}/../xv > > +RUN_DEPENDS= xv:${PORTSDIR}/graphics/xv > > Thank you - this kind of change is great for grepping the tree for > origin dependencies. Hmm, good point, I would have missed that :-/ mcl From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 19:10:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0ADD2E4B; Thu, 11 Oct 2012 19:10:03 +0000 (UTC) (envelope-from Cy.Schubert@komquats.com) Received: from smtp-out-04.shaw.ca (smtp-out-04.shaw.ca [64.59.134.12]) by mx1.freebsd.org (Postfix) with ESMTP id 963EA8FC12; Thu, 11 Oct 2012 19:10:02 +0000 (UTC) Received: from lb7f8hsrpno-svcs.dcs.int.inet (HELO pd6ml1no-ssvc.prod.shaw.ca) ([10.0.144.222]) by pd5mo1no-svcs.prod.shaw.ca with ESMTP; 11 Oct 2012 13:09:56 -0600 X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.1 cv=6HkG4LK5i0ZTEQwzSfMqnsQ8WbrxJ2NwB1mI+RNtyjI= c=1 sm=1 a=cI6qOsL9_54A:10 a=QrugwKR0C_UA:10 a=wAGQQ9Az6v0A:10 a=BLceEmwcHowA:10 a=ICAaq7hcmGcA:10 a=kj9zAlcOel0A:10 a=IbtKDeXwb2+SRU442/pi3A==:17 a=6I5d2MoRAAAA:8 a=Hy9CwW6LAAAA:8 a=pQs5aej7AAAA:8 a=BWvPGDcYAAAA:8 a=10ATIlA_8XBqT9of9cUA:9 a=CjuIK1q_8ugA:10 a=fsWxcQRYqyYA:10 a=V7tsTZBp22UA:10 a=SV7veod9ZcQA:10 a=HpAAvcLHHh0Zw7uRqdWCyQ==:117 Received: from unknown (HELO spqr.komquats.com) ([96.50.7.119]) by pd6ml1no-dmz.prod.shaw.ca with ESMTP; 11 Oct 2012 13:09:55 -0600 Received: from slippy.cwsent.com (slippy8 [10.2.2.6]) by spqr.komquats.com (Postfix) with ESMTP id 40D4680; Thu, 11 Oct 2012 12:09:55 -0700 (PDT) Received: from slippy (localhost [127.0.0.1]) by slippy.cwsent.com (8.14.5/8.14.5) with ESMTP id q9BIVfp4060165; Thu, 11 Oct 2012 11:31:41 -0700 (PDT) (envelope-from Cy.Schubert@komquats.com) Message-Id: <201210111831.q9BIVfp4060165@slippy.cwsent.com> X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.3 From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.komquats.com/ To: Florian Smeets Subject: Re: svn commit: r305684 - in head: . Mk mail mail/enigmail mail/enigmail-seamonkey mail/enigmail-thunderbird mail/enigmail-thunderbird-esr mail/linux-thunderbird mail/thunderbird mail/thunderbird-esr m... In-Reply-To: Message from Florian Smeets of "Wed, 10 Oct 2012 21:13:07 -0000." <201210102113.q9ALD7xC002643@svn.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 11 Oct 2012 11:31:41 -0700 Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Cy Schubert List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 19:10:03 -0000 In message <201210102113.q9ALD7xC002643@svn.freebsd.org>, Florian Smeets writes : > Author: flo > Date: Wed Oct 10 21:13:06 2012 > New Revision: 305684 > URL: http://svn.freebsd.org/changeset/ports/305684 > > Log: > - Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbird > to 10.0.8 > - Update firefox and thunderbird to 16.0 > - Update seamonkey to 2.13 > - Update all -i18n ports respectively > - switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better > latency during pause and seeking with HTML5 video > - remove fedisableexcept() hacks, obsolete since FreeBSD 4.0 > - support system hunspell dictionaries [1] > - unbreak -esr ports with clang3.2 [2] > - unbreak nss build when CC contains full path [3] > - remove GNOME option grouping [4] > - integrate enigmail into thunderbird/seamonkey as an option [5] > - remove mail/enigmail* [6] > - enable ENIGMAIL, LIGHTNING and GIO options by default > - add more reporters in about:memory: page-faults-hard, page-faults-soft, > resident, vsize > - use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0, > only heap-allocated reporter works in about:memory (see bug 762445) > - use lrintf() instead of slow C cast in bundled libopus > - use libjpeg-turbo's faster color conversion if available during build > - record startup time for telemetry > - use -z origin instead of hardcoding path to gecko runtime > - fail early if incompatible libxul version is installed (in USE_GECKO) > - *miscellaneous cleanups and fixups* > > PR: ports/171534 [1] > PR: ports/171566 [2] > PR: ports/172164 [3] > PR: ports/172201 [4] > Discussed with: ale, beat, Jan Beich [5] > Approved by: ale [6] > In collaboration with: Jan Beich > Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392 > Feature safe: yes > Approved by: portmgr (beat) This should be flagged FORBIDDEN. See https://blog.mozilla.org/security/2012 /10/10/security-vulnerability-in-firefox-16/. Malicious sites have access to Visted URLs and URL parameters. It appears that Thunderbird and Seamonkey are not affected -- Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org The need of the many outweighs the greed of the few. From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 19:15:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8EF1DFFA; Thu, 11 Oct 2012 19:15:13 +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 7460C8FC08; Thu, 11 Oct 2012 19:15: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 q9BJFDED071628; Thu, 11 Oct 2012 19:15:13 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BJFCet071618; Thu, 11 Oct 2012 19:15:12 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210111915.q9BJFCet071618@svn.freebsd.org> From: Florian Smeets Date: Thu, 11 Oct 2012 19:15:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305736 - in head: mail/thunderbird mail/thunderbird-i18n security/vuxml www/firefox www/firefox-i18n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 19:15:13 -0000 Author: flo Date: Thu Oct 11 19:15:12 2012 New Revision: 305736 URL: http://svn.freebsd.org/changeset/ports/305736 Log: - update to 16.0.1 - update vuln.xml entry Feature safe: yes Modified: head/mail/thunderbird-i18n/Makefile head/mail/thunderbird-i18n/distinfo head/mail/thunderbird/Makefile head/mail/thunderbird/distinfo head/security/vuxml/vuln.xml head/www/firefox-i18n/Makefile head/www/firefox-i18n/distinfo head/www/firefox/Makefile head/www/firefox/distinfo Modified: head/mail/thunderbird-i18n/Makefile ============================================================================== --- head/mail/thunderbird-i18n/Makefile Thu Oct 11 18:13:28 2012 (r305735) +++ head/mail/thunderbird-i18n/Makefile Thu Oct 11 19:15:12 2012 (r305736) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird-i18n -PORTVERSION= 16.0 +PORTVERSION= 16.0.1 CATEGORIES= mail MASTER_SITE_SUBDIR= thunderbird/releases/${PORTVERSION}/linux-i686/xpi PKGNAMEPREFIX= Modified: head/mail/thunderbird-i18n/distinfo ============================================================================== --- head/mail/thunderbird-i18n/distinfo Thu Oct 11 18:13:28 2012 (r305735) +++ head/mail/thunderbird-i18n/distinfo Thu Oct 11 19:15:12 2012 (r305736) @@ -1,84 +1,84 @@ -SHA256 (xpi/thunderbird-i18n-16.0/ar.xpi) = f23ae8565cfdbcb1a133efebb5090c217edc98f6aa98c9c79b92899250a81a49 -SIZE (xpi/thunderbird-i18n-16.0/ar.xpi) = 442486 -SHA256 (xpi/thunderbird-i18n-16.0/br.xpi) = c09f9122eeb63a7fd9639906a39f09f8ff94ac2bc96b7e92807a351e7032418a -SIZE (xpi/thunderbird-i18n-16.0/br.xpi) = 444719 -SHA256 (xpi/thunderbird-i18n-16.0/ca.xpi) = 3fac11c76ca48a5696b07589bf8caf083adc64474a8c041431b3b1910ca27f0a -SIZE (xpi/thunderbird-i18n-16.0/ca.xpi) = 413617 -SHA256 (xpi/thunderbird-i18n-16.0/cs.xpi) = a3f038fe3b34bf257941c9b701310d3e4a743cdca24bd5a98e44ca383a573d9c -SIZE (xpi/thunderbird-i18n-16.0/cs.xpi) = 417486 -SHA256 (xpi/thunderbird-i18n-16.0/da.xpi) = ecd1dc1cf4ecc6897cd7176cd15de843190db28920975d606367e3b56242e949 -SIZE (xpi/thunderbird-i18n-16.0/da.xpi) = 400021 -SHA256 (xpi/thunderbird-i18n-16.0/de.xpi) = 1ace053d4505b7c430b6e204dec7f62bbbd396dae476700e267d81c5492ed0c7 -SIZE (xpi/thunderbird-i18n-16.0/de.xpi) = 389181 -SHA256 (xpi/thunderbird-i18n-16.0/en-GB.xpi) = 1a5ffdf73129290873e4ab8a37ef593592c90d79e197f849e8b76da59a92299c -SIZE (xpi/thunderbird-i18n-16.0/en-GB.xpi) = 418453 -SHA256 (xpi/thunderbird-i18n-16.0/en-US.xpi) = 1023c8e56c4ce882c9db89c120be32cccec79de774c65629501b91494267b41c -SIZE (xpi/thunderbird-i18n-16.0/en-US.xpi) = 388053 -SHA256 (xpi/thunderbird-i18n-16.0/es-AR.xpi) = 315f073af2a7a93141205698abc57dbd021e16eb150439e8f879a4665baf891f -SIZE (xpi/thunderbird-i18n-16.0/es-AR.xpi) = 413819 -SHA256 (xpi/thunderbird-i18n-16.0/es-ES.xpi) = 08f24f9ef17e82fac8d431544d1cf33fe5ac7ba03ac31fe2d55986c100a787ba -SIZE (xpi/thunderbird-i18n-16.0/es-ES.xpi) = 372048 -SHA256 (xpi/thunderbird-i18n-16.0/et.xpi) = 5d2ec3e11af2e9b28405f3d5fb0cbad55f12316040a929732c17ecb9bc4f6f68 -SIZE (xpi/thunderbird-i18n-16.0/et.xpi) = 438666 -SHA256 (xpi/thunderbird-i18n-16.0/eu.xpi) = 4cce51d26602f826a643a76d497e123302c9808e7fa8c75a8f423a6149882347 -SIZE (xpi/thunderbird-i18n-16.0/eu.xpi) = 402953 -SHA256 (xpi/thunderbird-i18n-16.0/fi.xpi) = cc94f6fc5687b6445eb9936218221f6c651a8a04ce684d736837a77a15507eab -SIZE (xpi/thunderbird-i18n-16.0/fi.xpi) = 440314 -SHA256 (xpi/thunderbird-i18n-16.0/fr.xpi) = 7d1e6882e843c9fdc3d892fcbb9d7d8d3d450b94479d3a812792e20c7678d573 -SIZE (xpi/thunderbird-i18n-16.0/fr.xpi) = 439396 -SHA256 (xpi/thunderbird-i18n-16.0/fy-NL.xpi) = 0fab7274cde2a3bbf66c3b20ad34b2acc68ee8a36fb7fad1bd8b2fec7e5f60ee -SIZE (xpi/thunderbird-i18n-16.0/fy-NL.xpi) = 438193 -SHA256 (xpi/thunderbird-i18n-16.0/ga-IE.xpi) = 67cbb3cbca84197f4633ca7c458e9c259cd32c723eedffc04dea457a8f3c0d4d -SIZE (xpi/thunderbird-i18n-16.0/ga-IE.xpi) = 422254 -SHA256 (xpi/thunderbird-i18n-16.0/gd.xpi) = 14a2bc29126768d4bfb68f1cf968116ba705013253df2e615656897268fd8333 -SIZE (xpi/thunderbird-i18n-16.0/gd.xpi) = 447082 -SHA256 (xpi/thunderbird-i18n-16.0/gl.xpi) = b597b26108c034235a748585ff7834dfdcec98e707951ef26c4c97b08d59b38c -SIZE (xpi/thunderbird-i18n-16.0/gl.xpi) = 444884 -SHA256 (xpi/thunderbird-i18n-16.0/he.xpi) = 841fc237f5e374eb9628711feba6f49a6bc8e760fab7e24d8f15705bad1eca6e -SIZE (xpi/thunderbird-i18n-16.0/he.xpi) = 479155 -SHA256 (xpi/thunderbird-i18n-16.0/hu.xpi) = a0493ee57ca31d7c7054e3c240e5524c4c81cee4f71bd0579333621ef773d3f8 -SIZE (xpi/thunderbird-i18n-16.0/hu.xpi) = 429235 -SHA256 (xpi/thunderbird-i18n-16.0/is.xpi) = 1f9e113df9b086e150ba04d3b5b5d99bd3adff2fb67b132c570e87253e99db34 -SIZE (xpi/thunderbird-i18n-16.0/is.xpi) = 410929 -SHA256 (xpi/thunderbird-i18n-16.0/it.xpi) = 0d3f4af52ed22b66a97777604c2eabd6c9ae86ebc7043051cf84cbe9e82354c6 -SIZE (xpi/thunderbird-i18n-16.0/it.xpi) = 362260 -SHA256 (xpi/thunderbird-i18n-16.0/ja.xpi) = 8f3f1972cc7dcdccf7efe14a355e890d95234ec597426d532023945eb01ca2ea -SIZE (xpi/thunderbird-i18n-16.0/ja.xpi) = 460276 -SHA256 (xpi/thunderbird-i18n-16.0/ko.xpi) = bd5a6789be2969452b4f05d2f914b4c9b889dad506d1f96612423f3ef1cd14c1 -SIZE (xpi/thunderbird-i18n-16.0/ko.xpi) = 406180 -SHA256 (xpi/thunderbird-i18n-16.0/lt.xpi) = ec5544cffdd9a7557a1f5f9f638d3991900af3c6fb99d59dc6c9aecac39a5a2c -SIZE (xpi/thunderbird-i18n-16.0/lt.xpi) = 518234 -SHA256 (xpi/thunderbird-i18n-16.0/nb-NO.xpi) = eed1cbfe6aa57dbf516a1d07e618cf896e4a83e9b3c4a3cfe7f68e41760a5517 -SIZE (xpi/thunderbird-i18n-16.0/nb-NO.xpi) = 423719 -SHA256 (xpi/thunderbird-i18n-16.0/nl.xpi) = 2ea0d533613e39baed8db853445d24e30aa385e013148f99043e3a183bea38e1 -SIZE (xpi/thunderbird-i18n-16.0/nl.xpi) = 436518 -SHA256 (xpi/thunderbird-i18n-16.0/nn-NO.xpi) = 94b0f3d8730c4a09de0cc3b1ba5bbc239c5526b0a10826d67b7bc38f0acb1f8a -SIZE (xpi/thunderbird-i18n-16.0/nn-NO.xpi) = 428330 -SHA256 (xpi/thunderbird-i18n-16.0/pl.xpi) = f0e113d40ab6fcca36686efd6d564ecf2dd04616d856d2795bc86579efde8fa4 -SIZE (xpi/thunderbird-i18n-16.0/pl.xpi) = 400418 -SHA256 (xpi/thunderbird-i18n-16.0/pt-BR.xpi) = c4ab438acdf82154611c58986d0849ba25265856cc80b38bacdd185f8b8e06ef -SIZE (xpi/thunderbird-i18n-16.0/pt-BR.xpi) = 433901 -SHA256 (xpi/thunderbird-i18n-16.0/pt-PT.xpi) = c7218a6b2177396544a71371a1dacaa9f186b5bbd98753f4742fc7174b5a87d6 -SIZE (xpi/thunderbird-i18n-16.0/pt-PT.xpi) = 447507 -SHA256 (xpi/thunderbird-i18n-16.0/rm.xpi) = b77d811a832b8dce0c38e3a95017bc7a4d514006f7544cb98775fe3f2d3e76bd -SIZE (xpi/thunderbird-i18n-16.0/rm.xpi) = 450394 -SHA256 (xpi/thunderbird-i18n-16.0/ru.xpi) = cb0ff7917a63fcfabf54827f14658294c2b74859b6a7a012d60ac8add92a9754 -SIZE (xpi/thunderbird-i18n-16.0/ru.xpi) = 412751 -SHA256 (xpi/thunderbird-i18n-16.0/si.xpi) = 54b7288d80e0e760c4d80467bd958d8f0d6dbd47096c4586052ebb8915f1833f -SIZE (xpi/thunderbird-i18n-16.0/si.xpi) = 490680 -SHA256 (xpi/thunderbird-i18n-16.0/sk.xpi) = 2275b50042e20b77cae11b2e28e138dd239fc31a87564c304ad1b8401424704e -SIZE (xpi/thunderbird-i18n-16.0/sk.xpi) = 426652 -SHA256 (xpi/thunderbird-i18n-16.0/sl.xpi) = d48ae3d4127c7964da9dd5ea2e5cc2185980d155af28bd18671147cb5c17357a -SIZE (xpi/thunderbird-i18n-16.0/sl.xpi) = 439713 -SHA256 (xpi/thunderbird-i18n-16.0/sq.xpi) = 75c9df6ad4485f71546f577788ad2d2811d3493766a78f80efb3f394ac01b74c -SIZE (xpi/thunderbird-i18n-16.0/sq.xpi) = 395077 -SHA256 (xpi/thunderbird-i18n-16.0/sv-SE.xpi) = 171c348454f67a3961ccc96e4037cb8fdbaef4ebff3b4ea7665bc0721beeea28 -SIZE (xpi/thunderbird-i18n-16.0/sv-SE.xpi) = 516902 -SHA256 (xpi/thunderbird-i18n-16.0/ta-LK.xpi) = 469a5e6c4367f52f5f247ba577b70d028d36927e211edf0cb015dbc7195ce287 -SIZE (xpi/thunderbird-i18n-16.0/ta-LK.xpi) = 514905 -SHA256 (xpi/thunderbird-i18n-16.0/tr.xpi) = 684679710231f230b9ddb7d0a7eda87b25d9e0146f3671f8ef16e32ba2865711 -SIZE (xpi/thunderbird-i18n-16.0/tr.xpi) = 441867 -SHA256 (xpi/thunderbird-i18n-16.0/uk.xpi) = 3dec6654cc6a045f906a8620d8b4fd829d9a7d68cdf578c668e0d0051ef72099 -SIZE (xpi/thunderbird-i18n-16.0/uk.xpi) = 481713 -SHA256 (xpi/thunderbird-i18n-16.0/zh-TW.xpi) = 33b0f09d1126b42baf0266f3e6382c28329e76ae100920601ef435dc107fc3e0 -SIZE (xpi/thunderbird-i18n-16.0/zh-TW.xpi) = 433957 +SHA256 (xpi/thunderbird-i18n-16.0.1/ar.xpi) = d5caf0b2fdb78d0fde3ce3aef0b14b5feefa7ea56cc7fa270e1f6ed8f3be2c8f +SIZE (xpi/thunderbird-i18n-16.0.1/ar.xpi) = 442486 +SHA256 (xpi/thunderbird-i18n-16.0.1/br.xpi) = ea0711d3f0abd8497a22aa3576963a294d73e5580a8f548afac34aee4e237def +SIZE (xpi/thunderbird-i18n-16.0.1/br.xpi) = 444719 +SHA256 (xpi/thunderbird-i18n-16.0.1/ca.xpi) = 7d17bcdb0d783eff73d82b5fa121cbb5a3b9735a302e650d056dcf8ae38118a0 +SIZE (xpi/thunderbird-i18n-16.0.1/ca.xpi) = 413617 +SHA256 (xpi/thunderbird-i18n-16.0.1/cs.xpi) = 9fbdab9ab6d4c914eff9b1f371dd9d603dcbb40642b875e9e6870c3afc3ad271 +SIZE (xpi/thunderbird-i18n-16.0.1/cs.xpi) = 417487 +SHA256 (xpi/thunderbird-i18n-16.0.1/da.xpi) = c8fad27d34d4d367528899ab185b6b84c5f967b5a917c35ebe46a26704a2577c +SIZE (xpi/thunderbird-i18n-16.0.1/da.xpi) = 400022 +SHA256 (xpi/thunderbird-i18n-16.0.1/de.xpi) = 04ebd65a8b7c6c0534c4e9643016e7bd310836a75e8049d0b8e7981e6726814b +SIZE (xpi/thunderbird-i18n-16.0.1/de.xpi) = 389182 +SHA256 (xpi/thunderbird-i18n-16.0.1/en-GB.xpi) = 5f614b91e8304db70f921d949e64bf2c3219d42625d4936a63e807ab0511248e +SIZE (xpi/thunderbird-i18n-16.0.1/en-GB.xpi) = 418453 +SHA256 (xpi/thunderbird-i18n-16.0.1/en-US.xpi) = bc663abeec0d3bc3e2fac038eeb1299c77e5b31cf7b266f68429140fc7dd5c21 +SIZE (xpi/thunderbird-i18n-16.0.1/en-US.xpi) = 388054 +SHA256 (xpi/thunderbird-i18n-16.0.1/es-AR.xpi) = 8b3dedfdf23aa0d39e3a2544a8b6e4c0f135399a06a7b81640b3d96d3aa01fe2 +SIZE (xpi/thunderbird-i18n-16.0.1/es-AR.xpi) = 413820 +SHA256 (xpi/thunderbird-i18n-16.0.1/es-ES.xpi) = a42c9a2199071b3f200dafcf0c7fc03038b3a01b9e102c041018e4f0468d5c5e +SIZE (xpi/thunderbird-i18n-16.0.1/es-ES.xpi) = 372047 +SHA256 (xpi/thunderbird-i18n-16.0.1/et.xpi) = 8af071503dc1fb540db35d17cf8653b93f8ad54e119e7cf845e12657619e4dd4 +SIZE (xpi/thunderbird-i18n-16.0.1/et.xpi) = 438666 +SHA256 (xpi/thunderbird-i18n-16.0.1/eu.xpi) = 99cd07e88d39595eb2f87b7d82988ac42a2d6e4e5473a9624cc4c507f8fe8e63 +SIZE (xpi/thunderbird-i18n-16.0.1/eu.xpi) = 402953 +SHA256 (xpi/thunderbird-i18n-16.0.1/fi.xpi) = 2b2ad90d80e7ce7db6d55933dcfce1d221494f4a393542b104693665cb254805 +SIZE (xpi/thunderbird-i18n-16.0.1/fi.xpi) = 440314 +SHA256 (xpi/thunderbird-i18n-16.0.1/fr.xpi) = d472eedc7adf92e6a6d09060d05fb7e0237ec443833afadb5c3dd21c9cc65a5d +SIZE (xpi/thunderbird-i18n-16.0.1/fr.xpi) = 439397 +SHA256 (xpi/thunderbird-i18n-16.0.1/fy-NL.xpi) = 15c57011139119dfcbc57165c35fe78f68e6a2c15d70812e6674fd3511220a9a +SIZE (xpi/thunderbird-i18n-16.0.1/fy-NL.xpi) = 438193 +SHA256 (xpi/thunderbird-i18n-16.0.1/ga-IE.xpi) = a7601f6e1553f42d835317b48d0c0e7f6c8e9de32d8180815a4497687840d537 +SIZE (xpi/thunderbird-i18n-16.0.1/ga-IE.xpi) = 422254 +SHA256 (xpi/thunderbird-i18n-16.0.1/gd.xpi) = 9b407d939ecf0302f78923d42e352624c5f2ea10da69bda72a4278317d6871dc +SIZE (xpi/thunderbird-i18n-16.0.1/gd.xpi) = 447082 +SHA256 (xpi/thunderbird-i18n-16.0.1/gl.xpi) = c8732038fd62a9937e223d5e86defbf6b000b0ba47932d2b4adc1c7e78877870 +SIZE (xpi/thunderbird-i18n-16.0.1/gl.xpi) = 444885 +SHA256 (xpi/thunderbird-i18n-16.0.1/he.xpi) = deb7fe19ce21eb8b0472850c82d91591315ed2fde0bf100e5239f825eb6e45cc +SIZE (xpi/thunderbird-i18n-16.0.1/he.xpi) = 479156 +SHA256 (xpi/thunderbird-i18n-16.0.1/hu.xpi) = 5af0d731ae91ea5b3662bfb508123f6140c1a1e981573fb33b299c7c4e69b59e +SIZE (xpi/thunderbird-i18n-16.0.1/hu.xpi) = 429235 +SHA256 (xpi/thunderbird-i18n-16.0.1/is.xpi) = b4295c6b163e7a771ca989c831435ead1fe716a6c1d5a34ade35c425d58cc450 +SIZE (xpi/thunderbird-i18n-16.0.1/is.xpi) = 410930 +SHA256 (xpi/thunderbird-i18n-16.0.1/it.xpi) = 28d947bb0a344c9d5525e2fac47c43b193239c3f9dd2a63d062372be1a943101 +SIZE (xpi/thunderbird-i18n-16.0.1/it.xpi) = 362260 +SHA256 (xpi/thunderbird-i18n-16.0.1/ja.xpi) = b82234c4144cdb9c15c5ccad073c32e05ffdd4ee2ec11b64b9a6e765fde2761b +SIZE (xpi/thunderbird-i18n-16.0.1/ja.xpi) = 460277 +SHA256 (xpi/thunderbird-i18n-16.0.1/ko.xpi) = d6fa05558b3a53d6ac82d0d577add351176d72b26f8d996cf9a2ef4e63b8e664 +SIZE (xpi/thunderbird-i18n-16.0.1/ko.xpi) = 406181 +SHA256 (xpi/thunderbird-i18n-16.0.1/lt.xpi) = 153e26050ecf9948db8b8e610b28b8977fb1e46bd4fdcda02af108335c0ebd7d +SIZE (xpi/thunderbird-i18n-16.0.1/lt.xpi) = 518234 +SHA256 (xpi/thunderbird-i18n-16.0.1/nb-NO.xpi) = 28b2270c642466b5f20d271fe0a52dd76ceff07d82197b0132367511e316ed08 +SIZE (xpi/thunderbird-i18n-16.0.1/nb-NO.xpi) = 423719 +SHA256 (xpi/thunderbird-i18n-16.0.1/nl.xpi) = bb91a2c29572824a95280ccc91b99ee862dabf21f8bcee3b917b4c3fa2afeb63 +SIZE (xpi/thunderbird-i18n-16.0.1/nl.xpi) = 436519 +SHA256 (xpi/thunderbird-i18n-16.0.1/nn-NO.xpi) = 7d677d83c511514ce79e69cb293c52974786de729d9f4f9a9130029da41b2116 +SIZE (xpi/thunderbird-i18n-16.0.1/nn-NO.xpi) = 428331 +SHA256 (xpi/thunderbird-i18n-16.0.1/pl.xpi) = 847cd24345b3a93dc34382f5439ad13020e08c990225e9c33127fce7a137acb1 +SIZE (xpi/thunderbird-i18n-16.0.1/pl.xpi) = 400418 +SHA256 (xpi/thunderbird-i18n-16.0.1/pt-BR.xpi) = a09b65f657ff1610fba337e6998c095ec780dc1a9482484dd6c761d3dd328aa2 +SIZE (xpi/thunderbird-i18n-16.0.1/pt-BR.xpi) = 433902 +SHA256 (xpi/thunderbird-i18n-16.0.1/pt-PT.xpi) = 24286f7c2ac0def121e5c91c3d5c37981ddcadeba213a76812c90353230f7502 +SIZE (xpi/thunderbird-i18n-16.0.1/pt-PT.xpi) = 447507 +SHA256 (xpi/thunderbird-i18n-16.0.1/rm.xpi) = 911d47e4d36a3eddbd7eec24bfb7eaaf1a96f6c93f986bf7c5a6755af06c958f +SIZE (xpi/thunderbird-i18n-16.0.1/rm.xpi) = 450395 +SHA256 (xpi/thunderbird-i18n-16.0.1/ru.xpi) = 658547d9165f15c8941cee0b26f638a345fcae07b9cb84f808059432d60f44d2 +SIZE (xpi/thunderbird-i18n-16.0.1/ru.xpi) = 412752 +SHA256 (xpi/thunderbird-i18n-16.0.1/si.xpi) = 5cc32b3da89fb919e2300c39fcc6cc325703d12fde77e47cbb4e447c2bc5b7c6 +SIZE (xpi/thunderbird-i18n-16.0.1/si.xpi) = 490681 +SHA256 (xpi/thunderbird-i18n-16.0.1/sk.xpi) = adcfc76f7e450c34e7714936181677c3b81c5f9b45d4bc652f7cbbe96b5aec96 +SIZE (xpi/thunderbird-i18n-16.0.1/sk.xpi) = 426652 +SHA256 (xpi/thunderbird-i18n-16.0.1/sl.xpi) = d6b444c64d2e5d446db81e3c4c565821bd6cdd097c9285e570b5c50203a65589 +SIZE (xpi/thunderbird-i18n-16.0.1/sl.xpi) = 439713 +SHA256 (xpi/thunderbird-i18n-16.0.1/sq.xpi) = 9860b940fee9262e7357b8bb17addca8e0b072e14cc6c8615a301df919e1ec00 +SIZE (xpi/thunderbird-i18n-16.0.1/sq.xpi) = 395078 +SHA256 (xpi/thunderbird-i18n-16.0.1/sv-SE.xpi) = 04c3ed0c18f22e61af31b8d135e675e1f22d23fbc5bbc3d91ed0a073892ad7b4 +SIZE (xpi/thunderbird-i18n-16.0.1/sv-SE.xpi) = 516902 +SHA256 (xpi/thunderbird-i18n-16.0.1/ta-LK.xpi) = 3e15c555bda8007a19814e86392d918115842266ed5e7b9a5f59eaaf84beb97d +SIZE (xpi/thunderbird-i18n-16.0.1/ta-LK.xpi) = 514905 +SHA256 (xpi/thunderbird-i18n-16.0.1/tr.xpi) = fe7071fc36f1a0cfe5826990f2dff1843dc9f68fba5bcc78dc32be51c7a879d9 +SIZE (xpi/thunderbird-i18n-16.0.1/tr.xpi) = 441868 +SHA256 (xpi/thunderbird-i18n-16.0.1/uk.xpi) = e143b3bc6a4817391b882e5ea6e7ab5a8564ab08c3fd664cf10138bd4eaafead +SIZE (xpi/thunderbird-i18n-16.0.1/uk.xpi) = 481714 +SHA256 (xpi/thunderbird-i18n-16.0.1/zh-TW.xpi) = cbbf2318d15282772fed5f5b8ef98ccfec4269010d47e90277ba87f3787ad772 +SIZE (xpi/thunderbird-i18n-16.0.1/zh-TW.xpi) = 433957 Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Thu Oct 11 18:13:28 2012 (r305735) +++ head/mail/thunderbird/Makefile Thu Oct 11 19:15:12 2012 (r305736) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird -DISTVERSION= 16.0 +DISTVERSION= 16.0.1 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${DISTVERSION}/source Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Thu Oct 11 18:13:28 2012 (r305735) +++ head/mail/thunderbird/distinfo Thu Oct 11 19:15:12 2012 (r305736) @@ -1,4 +1,4 @@ -SHA256 (thunderbird-16.0.source.tar.bz2) = 868f8f0e333a363170f61074a92b2ee102ab8901077783a5d941424b51284d6b -SIZE (thunderbird-16.0.source.tar.bz2) = 111414218 +SHA256 (thunderbird-16.0.1.source.tar.bz2) = 2b2ca8c78a2f4e40f93d2f50d9cd7d5b0283245d97d2477510e638d2cde279cb +SIZE (thunderbird-16.0.1.source.tar.bz2) = 111401489 SHA256 (enigmail-1.4.5.tar.gz) = fa59491fba21de9414a003933349074a8ec1833a1d64cac9f0a9f7020ed6c020 SIZE (enigmail-1.4.5.tar.gz) = 1269207 Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Oct 11 18:13:28 2012 (r305735) +++ head/security/vuxml/vuln.xml Thu Oct 11 19:15:12 2012 (r305736) @@ -83,33 +83,33 @@ Note: Please add new entries to the beg firefox - 11.0,116.0,1 - 10.0.7,1 + 11.0,116.0.1,1 + 10.0.9,1 linux-firefox - 10.0.8,1 + 10.0.9,1 linux-seamonkey - 2.13 + 2.13.1 linux-thunderbird - 10.0.8 + 10.0.9 seamonkey - 2.13 + 2.13.1 thunderbird - 11.016.0 - 10.0.8 + 11.016.0.1 + 10.0.9 libxul - 1.9.2.*10.0.8 + 1.9.2.*10.0.9 @@ -137,6 +137,8 @@ Note: Please add new entries to the beg

MFSA 2012-86 Heap memory corruption issues found using Address Sanitizer

MFSA 2012-87 Use-after-free in the IME State Manager

+

MFSA 2012-88 Miscellaneous memory safety hazards (rv:16.0.1)

+

MFSA 2012-89 defaultValue security checks not applied

@@ -164,6 +166,10 @@ Note: Please add new entries to the beg CVE-2012-4186 CVE-2012-4187 CVE-2012-4188 + CVE-2012-4190 + CVE-2012-4191 + CVE-2012-4192 + CVE-2012-4193 http://www.mozilla.org/security/known-vulnerabilities/ http://www.mozilla.org/security/announce/2012/mfsa2012-74.html http://www.mozilla.org/security/announce/2012/mfsa2012-75.html @@ -179,10 +185,13 @@ Note: Please add new entries to the beg http://www.mozilla.org/security/announce/2012/mfsa2012-85.html http://www.mozilla.org/security/announce/2012/mfsa2012-86.html http://www.mozilla.org/security/announce/2012/mfsa2012-87.html + http://www.mozilla.org/security/announce/2012/mfsa2012-88.html + http://www.mozilla.org/security/announce/2012/mfsa2012-89.html 2012-10-09 2012-10-10 + 2012-10-11
Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Thu Oct 11 18:13:28 2012 (r305735) +++ head/www/firefox-i18n/Makefile Thu Oct 11 19:15:12 2012 (r305736) @@ -6,7 +6,7 @@ # PORTNAME= firefox-i18n -PORTVERSION= 16.0 +PORTVERSION= 16.0.1 CATEGORIES= www MASTER_SITE_SUBDIR= firefox/releases/${PORTVERSION}/linux-i686/xpi PKGNAMEPREFIX= Modified: head/www/firefox-i18n/distinfo ============================================================================== --- head/www/firefox-i18n/distinfo Thu Oct 11 18:13:28 2012 (r305735) +++ head/www/firefox-i18n/distinfo Thu Oct 11 19:15:12 2012 (r305736) @@ -1,164 +1,164 @@ -SHA256 (xpi/firefox-i18n-16.0/af.xpi) = 639becd9952d18d0c8177b352af3fa915558cc5f8a4af7779e2239d28a7cfd52 -SIZE (xpi/firefox-i18n-16.0/af.xpi) = 278055 -SHA256 (xpi/firefox-i18n-16.0/ak.xpi) = 5bd1b10050191248c247e48363543febe057eb6e84cffa398e9501949cf1d484 -SIZE (xpi/firefox-i18n-16.0/ak.xpi) = 280149 -SHA256 (xpi/firefox-i18n-16.0/ar.xpi) = 729bffee07d6a346366ca31c90ede529615c3f447d7a0cf9499132c558c65bbf -SIZE (xpi/firefox-i18n-16.0/ar.xpi) = 308217 -SHA256 (xpi/firefox-i18n-16.0/ast.xpi) = ba21f15f31a6de930da8ba38f99169056ece43e2066363290361e5c744c34b1f -SIZE (xpi/firefox-i18n-16.0/ast.xpi) = 256863 -SHA256 (xpi/firefox-i18n-16.0/be.xpi) = a808b42dc89452c4db6e7c27c0714a719ba79e6e792749edc7ea82ee4972513f -SIZE (xpi/firefox-i18n-16.0/be.xpi) = 280505 -SHA256 (xpi/firefox-i18n-16.0/bg.xpi) = 8a4a2d3715d19f9d6bc50eaa404d373f5581753641a7cb815e3358e4af2335d2 -SIZE (xpi/firefox-i18n-16.0/bg.xpi) = 323170 -SHA256 (xpi/firefox-i18n-16.0/bn-BD.xpi) = aa673dd60efc61e61299cf18bdc8084f98dd26b0a60e91796699fa2a552606b0 -SIZE (xpi/firefox-i18n-16.0/bn-BD.xpi) = 333014 -SHA256 (xpi/firefox-i18n-16.0/bn-IN.xpi) = dbf6fa9dc65aabca0575a5ef1aa2a5beec5e0fe31d8254302c7ea1ede88b6029 -SIZE (xpi/firefox-i18n-16.0/bn-IN.xpi) = 365381 -SHA256 (xpi/firefox-i18n-16.0/br.xpi) = 060a593798aa0f46821788801da86b3b637e4b3d431b4db2004d18af0a4f6e68 -SIZE (xpi/firefox-i18n-16.0/br.xpi) = 288764 -SHA256 (xpi/firefox-i18n-16.0/bs.xpi) = 5c1513a40bbf0637b9b0ce556e663b36c369d0a024bf9badb660ac7ba4fb1ed5 -SIZE (xpi/firefox-i18n-16.0/bs.xpi) = 286864 -SHA256 (xpi/firefox-i18n-16.0/ca.xpi) = 4c29d1d9afe7f77254d7a2cca2a2d11ee67508b26e78edf86a9a20a18ef308c2 -SIZE (xpi/firefox-i18n-16.0/ca.xpi) = 288248 -SHA256 (xpi/firefox-i18n-16.0/cs.xpi) = 08f6ae0adaa1d84fed8d0bc82a14e9d13f5fe715e793566d3c31d30ad9ea21ed -SIZE (xpi/firefox-i18n-16.0/cs.xpi) = 291456 -SHA256 (xpi/firefox-i18n-16.0/cy.xpi) = fb851e970215f5658f21096ddb850fb9df3671afcccbb0e8915a626e7a62c276 -SIZE (xpi/firefox-i18n-16.0/cy.xpi) = 281768 -SHA256 (xpi/firefox-i18n-16.0/da.xpi) = 5a03e13e17d8233011167adb4969e1f331a5ab44d33a8a2fb0c8b60762e5d492 -SIZE (xpi/firefox-i18n-16.0/da.xpi) = 280976 -SHA256 (xpi/firefox-i18n-16.0/de.xpi) = dcb2bfc93e6ac7e703e3ef06edc9931113fd036264e0c2477bf2b0083724dbd6 -SIZE (xpi/firefox-i18n-16.0/de.xpi) = 267035 -SHA256 (xpi/firefox-i18n-16.0/el.xpi) = d36d1f877d7e9799fbe8a8a9eeacc23878c585be855e6ef11e9cd1fa458b357e -SIZE (xpi/firefox-i18n-16.0/el.xpi) = 304320 -SHA256 (xpi/firefox-i18n-16.0/en-GB.xpi) = 275e89b89f6ec73228bc0250d67e6a3eae810c5e56c44802a1c17ab4438ce891 -SIZE (xpi/firefox-i18n-16.0/en-GB.xpi) = 269394 -SHA256 (xpi/firefox-i18n-16.0/en-US.xpi) = bdabcef422fc96e0fe8e78791dd53ec20c2a5261716810598892cad05209c2c6 -SIZE (xpi/firefox-i18n-16.0/en-US.xpi) = 269411 -SHA256 (xpi/firefox-i18n-16.0/en-ZA.xpi) = 0c54182d35dc57e251ffa0e45c2fcd810235c98d953715a00239d00f3d20d614 -SIZE (xpi/firefox-i18n-16.0/en-ZA.xpi) = 269268 -SHA256 (xpi/firefox-i18n-16.0/eo.xpi) = a7ee813771cb2740d571689cc911d73b628c392e03873f52f8e8631aa3cf0d7b -SIZE (xpi/firefox-i18n-16.0/eo.xpi) = 281892 -SHA256 (xpi/firefox-i18n-16.0/es-AR.xpi) = cb0295d379e44d1c16c40116b36537b86924220de6381ba4696350522949caab -SIZE (xpi/firefox-i18n-16.0/es-AR.xpi) = 287619 -SHA256 (xpi/firefox-i18n-16.0/es-CL.xpi) = ccf81d5b2b7b09c367ca371d3b7d127ff8b0da070498f1af51235044ebf9e9bd -SIZE (xpi/firefox-i18n-16.0/es-CL.xpi) = 289748 -SHA256 (xpi/firefox-i18n-16.0/es-ES.xpi) = 9da293ef8af0c4fb617071b906c7d3f63fd6b66a49946ab4ced94f9cc37ac4db -SIZE (xpi/firefox-i18n-16.0/es-ES.xpi) = 240009 -SHA256 (xpi/firefox-i18n-16.0/es-MX.xpi) = 2a2bd7e0b2f886eccdb2a6fe11bc09d1f2e47e0360bf046228b8af2ccc88abfb -SIZE (xpi/firefox-i18n-16.0/es-MX.xpi) = 241868 -SHA256 (xpi/firefox-i18n-16.0/et.xpi) = 38c7087fd13965d8cf0dfc5de2b8a29f49873745fdf5055301d7d8b6910dcac4 -SIZE (xpi/firefox-i18n-16.0/et.xpi) = 281628 -SHA256 (xpi/firefox-i18n-16.0/eu.xpi) = 401e7c28518d61aab87c8d62fdc808af1d4aa4f2ed9cef92056423d74d03962a -SIZE (xpi/firefox-i18n-16.0/eu.xpi) = 279862 -SHA256 (xpi/firefox-i18n-16.0/fa.xpi) = dd9c56b234648bb80cbe058e4a1da13745c6b02693cd786b7776272248a1dde3 -SIZE (xpi/firefox-i18n-16.0/fa.xpi) = 317208 -SHA256 (xpi/firefox-i18n-16.0/fi.xpi) = be3bbffe1995532ca26bf128cf7b33950b29e5963cd6b5ec6a7fa8408e87273f -SIZE (xpi/firefox-i18n-16.0/fi.xpi) = 284820 -SHA256 (xpi/firefox-i18n-16.0/fr.xpi) = b15a5214b5fef83e4c44e3be9f1a2cb61ca35d6b7ac4fc98f4278aea17cd432b -SIZE (xpi/firefox-i18n-16.0/fr.xpi) = 282880 -SHA256 (xpi/firefox-i18n-16.0/fy-NL.xpi) = 784ff7b6ce9a449c6559b2823e6c22484a1f87ea714d7588d564a3440d15b284 -SIZE (xpi/firefox-i18n-16.0/fy-NL.xpi) = 280260 -SHA256 (xpi/firefox-i18n-16.0/ga-IE.xpi) = c8331c7b018ef2392885640f20d975a2150ed45f36574cdcbc50d24ddf9f36fc -SIZE (xpi/firefox-i18n-16.0/ga-IE.xpi) = 293834 -SHA256 (xpi/firefox-i18n-16.0/gl.xpi) = 7f042785d5cc11579c1b2b87cf288306182c0a16b6f7a4f33ba462b3542408a1 -SIZE (xpi/firefox-i18n-16.0/gl.xpi) = 285281 -SHA256 (xpi/firefox-i18n-16.0/gu-IN.xpi) = 3825b092ef525991695d8726b54b5469180e3275cc7bed9453c6a640edbf980a -SIZE (xpi/firefox-i18n-16.0/gu-IN.xpi) = 311765 -SHA256 (xpi/firefox-i18n-16.0/he.xpi) = 8439dabff294ddc04fbfbb65dde0394badbad89a23bc43c5ecf17b23fb27e754 -SIZE (xpi/firefox-i18n-16.0/he.xpi) = 297589 -SHA256 (xpi/firefox-i18n-16.0/hi-IN.xpi) = 124f31c3e2e4024b26a9e6fed93b28e58a487e56ad4f2b2069b9461e18508243 -SIZE (xpi/firefox-i18n-16.0/hi-IN.xpi) = 327162 -SHA256 (xpi/firefox-i18n-16.0/hr.xpi) = 9fad2c38a797140f9fb97f837c80ca325cc6aec452df0d120861b48ed20551ed -SIZE (xpi/firefox-i18n-16.0/hr.xpi) = 287883 -SHA256 (xpi/firefox-i18n-16.0/hu.xpi) = 72170b9100b943e3a5125070f61ab08b97169aeb004bca82c02c2bb42365c3b6 -SIZE (xpi/firefox-i18n-16.0/hu.xpi) = 298915 -SHA256 (xpi/firefox-i18n-16.0/hy-AM.xpi) = 16b198815865b63dfa39b636ede98ecb0e4983e969ced57fab35b5ddd8f9c70d -SIZE (xpi/firefox-i18n-16.0/hy-AM.xpi) = 324512 -SHA256 (xpi/firefox-i18n-16.0/id.xpi) = 609505d86ac4d27b13305ac44d50c8f0b6c36cdf5fcade47194869c418e71554 -SIZE (xpi/firefox-i18n-16.0/id.xpi) = 277127 -SHA256 (xpi/firefox-i18n-16.0/is.xpi) = 69d1a1dc68a2fca243f22d4c261b6483eed52c8cf50ec8233a38a8b4c1617480 -SIZE (xpi/firefox-i18n-16.0/is.xpi) = 281846 -SHA256 (xpi/firefox-i18n-16.0/it.xpi) = 0bd99ea4b7156383fe01cf452fb7f734f50abbb697d1e5c8854e42d8148dcf50 -SIZE (xpi/firefox-i18n-16.0/it.xpi) = 236238 -SHA256 (xpi/firefox-i18n-16.0/ja.xpi) = 8ea0872ff90a36220ace65fed40868a99a7fe3e16d36e535d9bd9285d05d9ddf -SIZE (xpi/firefox-i18n-16.0/ja.xpi) = 319469 -SHA256 (xpi/firefox-i18n-16.0/kk.xpi) = 01c77bd32ca7d56c67849c4ca4e71f30fda980ec23a4540706dfc82dfa12789b -SIZE (xpi/firefox-i18n-16.0/kk.xpi) = 326254 -SHA256 (xpi/firefox-i18n-16.0/kn.xpi) = 6d42ca2505622f2e19b02e9e5f67c5720e3b63e01d7f9b78329873ecf6ca75fb -SIZE (xpi/firefox-i18n-16.0/kn.xpi) = 347220 -SHA256 (xpi/firefox-i18n-16.0/ko.xpi) = 5d8405fdb91fe20f154d9ddad9c783bc06541ed1a42ffadd71a256120369b5c3 -SIZE (xpi/firefox-i18n-16.0/ko.xpi) = 269732 -SHA256 (xpi/firefox-i18n-16.0/ku.xpi) = 66beb91e39da2b45e68e5baad3deb9ebc6936f3c87f7ec5f999c5de260287824 -SIZE (xpi/firefox-i18n-16.0/ku.xpi) = 297997 -SHA256 (xpi/firefox-i18n-16.0/lg.xpi) = ce2db20c51278df7c6af16c2f4f695637f0ef1752e82ea8c680db47eda969de7 -SIZE (xpi/firefox-i18n-16.0/lg.xpi) = 287622 -SHA256 (xpi/firefox-i18n-16.0/lt.xpi) = 66cd14f21cdf8ed16759183c6444b299287662c75739d560b3754dbcd6f4a89f -SIZE (xpi/firefox-i18n-16.0/lt.xpi) = 344064 -SHA256 (xpi/firefox-i18n-16.0/lv.xpi) = 7b1b75b873bf123df2f6d06da1f281c8c70c9c045427abd0404b5931d06fe956 -SIZE (xpi/firefox-i18n-16.0/lv.xpi) = 284885 -SHA256 (xpi/firefox-i18n-16.0/mai.xpi) = 607fc627e402169f6f7b4776cdab19af45edd4f3df2265ecc1553eff7f7c0ceb -SIZE (xpi/firefox-i18n-16.0/mai.xpi) = 324331 -SHA256 (xpi/firefox-i18n-16.0/mk.xpi) = fe043cb22ba4a974ca6eda8ac31f6d629446d9c24c655dbaf7dcd4ed67658363 -SIZE (xpi/firefox-i18n-16.0/mk.xpi) = 312147 -SHA256 (xpi/firefox-i18n-16.0/ml.xpi) = 0d3eb260b84f477f1bb8d998236212118b378ead555f93f9925dd1b35726ffff -SIZE (xpi/firefox-i18n-16.0/ml.xpi) = 354416 -SHA256 (xpi/firefox-i18n-16.0/mr.xpi) = 8b7aa94dddd20afc122c09278045c28ab966aeb93d2bbf9b4d9c7d946d7e53cb -SIZE (xpi/firefox-i18n-16.0/mr.xpi) = 324387 -SHA256 (xpi/firefox-i18n-16.0/nb-NO.xpi) = 558635d1d622790c5cf4af24d18ff53c156c5c59fdb900384240f0c7e9dc367b -SIZE (xpi/firefox-i18n-16.0/nb-NO.xpi) = 269088 -SHA256 (xpi/firefox-i18n-16.0/nl.xpi) = 685328faf8d3587fbc9692f0778c9892a74be00359f0fdb7828acc5a0617992f -SIZE (xpi/firefox-i18n-16.0/nl.xpi) = 284464 -SHA256 (xpi/firefox-i18n-16.0/nn-NO.xpi) = f2d1364dcf6351cd0db8a93ccb14fe2b61ba3351bba416c5f6839356573ac872 -SIZE (xpi/firefox-i18n-16.0/nn-NO.xpi) = 283252 -SHA256 (xpi/firefox-i18n-16.0/nso.xpi) = c929386d8799c0008678e97f440083302fc27448270e11fe7affa4a6bd78d7b2 -SIZE (xpi/firefox-i18n-16.0/nso.xpi) = 284405 -SHA256 (xpi/firefox-i18n-16.0/or.xpi) = 4eda1b8231854f4be4e633c48d065bed3b41fd7f6703aa9e9e7c9f9d15af90ea -SIZE (xpi/firefox-i18n-16.0/or.xpi) = 321593 -SHA256 (xpi/firefox-i18n-16.0/pa-IN.xpi) = cebbeea0942fc86f0e9e5376899d78f1dbfd5bc7415f49e7e79ee023ad12931b -SIZE (xpi/firefox-i18n-16.0/pa-IN.xpi) = 314700 -SHA256 (xpi/firefox-i18n-16.0/pl.xpi) = 45dd1dffee2f8b85c010575a668d869df6e9829aa423d558d454e2d7f78094d6 -SIZE (xpi/firefox-i18n-16.0/pl.xpi) = 295729 -SHA256 (xpi/firefox-i18n-16.0/pt-BR.xpi) = e6b46219b7383d98294a5ab49a9c4b6481ae384f19e2c0e96dc8d1f65a153a24 -SIZE (xpi/firefox-i18n-16.0/pt-BR.xpi) = 286315 -SHA256 (xpi/firefox-i18n-16.0/pt-PT.xpi) = 4ad11bb8a4899d58516c61d6819c00bd8af918bb3af6b69bdaeb849afae603b7 -SIZE (xpi/firefox-i18n-16.0/pt-PT.xpi) = 286520 -SHA256 (xpi/firefox-i18n-16.0/rm.xpi) = 3e4552ad940d539eb07c26491a76fd9f09d564bb27fe891770301b2386ee158b -SIZE (xpi/firefox-i18n-16.0/rm.xpi) = 286907 -SHA256 (xpi/firefox-i18n-16.0/ro.xpi) = 947ea38ebdc6879b7a11afb972c675c976416456ee7f56912ac40c238fbd57da -SIZE (xpi/firefox-i18n-16.0/ro.xpi) = 308189 -SHA256 (xpi/firefox-i18n-16.0/ru.xpi) = ea8710ef96d4c3d1fac2496e3a3d4c7e9befc3ed437ebe374c57355a1ac119c2 -SIZE (xpi/firefox-i18n-16.0/ru.xpi) = 282174 -SHA256 (xpi/firefox-i18n-16.0/si.xpi) = d360b907d2c1399aec475e9d93e1dc20c0f7f642b90a4a9be30b5db9b0987bb4 -SIZE (xpi/firefox-i18n-16.0/si.xpi) = 312447 -SHA256 (xpi/firefox-i18n-16.0/sk.xpi) = dc93b69aa11558bd0eb1e1cdcedcbc410f7d259fa7f28d6e8211edfc836ac97f -SIZE (xpi/firefox-i18n-16.0/sk.xpi) = 298466 -SHA256 (xpi/firefox-i18n-16.0/sl.xpi) = e3cb194843eadab85ba94036619f68e007da049703c70bf81dcbecd6b1edba1b -SIZE (xpi/firefox-i18n-16.0/sl.xpi) = 282148 -SHA256 (xpi/firefox-i18n-16.0/son.xpi) = f5b31e004b2f81cbc479f02e72565ee3763ac08d93b31bfa0a090f9879f40127 -SIZE (xpi/firefox-i18n-16.0/son.xpi) = 279777 -SHA256 (xpi/firefox-i18n-16.0/sq.xpi) = 67c21a7333ded844012b07c19489d78f9835d8e71bfbfe90318f458e1ffd7a7c -SIZE (xpi/firefox-i18n-16.0/sq.xpi) = 266111 -SHA256 (xpi/firefox-i18n-16.0/sr.xpi) = 9bb4d54bd2d95042cf623246b3b96504a4140459431767dffbaac75063a8a524 -SIZE (xpi/firefox-i18n-16.0/sr.xpi) = 326906 -SHA256 (xpi/firefox-i18n-16.0/sv-SE.xpi) = fba0161e6d1021dfe78099fa0d118d4a3f88116c92673ac05871c00e8908a0aa -SIZE (xpi/firefox-i18n-16.0/sv-SE.xpi) = 285754 -SHA256 (xpi/firefox-i18n-16.0/ta-LK.xpi) = 15ebcefb03c389860e457d0cf84d73a8949c2f8ba8010526c153909cfd5b2de0 -SIZE (xpi/firefox-i18n-16.0/ta-LK.xpi) = 335847 -SHA256 (xpi/firefox-i18n-16.0/ta.xpi) = 4e2f58ebbd93789468c638a114b44a83099f7ee1b8cd0d32014a1f3d49476999 -SIZE (xpi/firefox-i18n-16.0/ta.xpi) = 318907 -SHA256 (xpi/firefox-i18n-16.0/te.xpi) = dcaf6ebc79f1a057d4f2e8964d03f70b6b2138bc9ef6486898b0fed8ecc39c01 -SIZE (xpi/firefox-i18n-16.0/te.xpi) = 335041 -SHA256 (xpi/firefox-i18n-16.0/th.xpi) = 19d7e5a1366aa7262b05747ae7a8f3cefae63d8d1b900e7039443f8dbd30a166 -SIZE (xpi/firefox-i18n-16.0/th.xpi) = 316434 -SHA256 (xpi/firefox-i18n-16.0/tr.xpi) = 326b2f77c4f5bed310b449f0d871daee2f632045bf93161cb03d4e926026a87f -SIZE (xpi/firefox-i18n-16.0/tr.xpi) = 291805 -SHA256 (xpi/firefox-i18n-16.0/uk.xpi) = c084865e32af461d22ede44821db93143f060ae3d22d1f690fec7285ea9981fb -SIZE (xpi/firefox-i18n-16.0/uk.xpi) = 320796 -SHA256 (xpi/firefox-i18n-16.0/vi.xpi) = 29e34ca8077ef008a949ef4b94a886f4150913874b30f21689b942f57dffeac9 -SIZE (xpi/firefox-i18n-16.0/vi.xpi) = 307314 -SHA256 (xpi/firefox-i18n-16.0/zh-CN.xpi) = b001550852eb2d0bf4c02e7a2e5889847826e8d984d061cefd075acafc30afde -SIZE (xpi/firefox-i18n-16.0/zh-CN.xpi) = 301145 -SHA256 (xpi/firefox-i18n-16.0/zh-TW.xpi) = 73d1dca1d2136d7f22e22efed099243a2265f6996aaa7a55af8a7c61f3129025 -SIZE (xpi/firefox-i18n-16.0/zh-TW.xpi) = 302070 -SHA256 (xpi/firefox-i18n-16.0/zu.xpi) = 20f478e8ea84194ee17b32cc7a9aca2b054c2e936df376abf6cd21b8f0223772 -SIZE (xpi/firefox-i18n-16.0/zu.xpi) = 289543 +SHA256 (xpi/firefox-i18n-16.0.1/af.xpi) = af104a4e9c51c226c157c438df00080cd293d68a32a81e8051a184877726568c +SIZE (xpi/firefox-i18n-16.0.1/af.xpi) = 278056 +SHA256 (xpi/firefox-i18n-16.0.1/ak.xpi) = 0987ae85ba766ca9100a2ca8af1bae78b8712cc211a865bf42d846d8ed442aad +SIZE (xpi/firefox-i18n-16.0.1/ak.xpi) = 280150 +SHA256 (xpi/firefox-i18n-16.0.1/ar.xpi) = 88b0c5a900dfa4af221755ff9c27ebb5148079c3815cf1a3333cbea700c39268 +SIZE (xpi/firefox-i18n-16.0.1/ar.xpi) = 308218 +SHA256 (xpi/firefox-i18n-16.0.1/ast.xpi) = b5aa6723024e66baafcf579e54832f681ed55102f5d7d881f04fa00196d28b03 +SIZE (xpi/firefox-i18n-16.0.1/ast.xpi) = 256862 +SHA256 (xpi/firefox-i18n-16.0.1/be.xpi) = 1472f99cd6b56c1eb585b6446fa5dd7e6153843033aa636a9c854854c6078ca2 +SIZE (xpi/firefox-i18n-16.0.1/be.xpi) = 280506 +SHA256 (xpi/firefox-i18n-16.0.1/bg.xpi) = b4611af65bf93dae0e0ed2495cd4bb0e1ac73dd2e535cb8b7159a41e00991323 +SIZE (xpi/firefox-i18n-16.0.1/bg.xpi) = 323171 +SHA256 (xpi/firefox-i18n-16.0.1/bn-BD.xpi) = 15c8b23e76b6944c04a3ba01a6949c623e2ff0924c76ce60156bd35b40f2aaaf +SIZE (xpi/firefox-i18n-16.0.1/bn-BD.xpi) = 333015 +SHA256 (xpi/firefox-i18n-16.0.1/bn-IN.xpi) = 0915a41e6023dbbdd6bb6a7a60f8615e6da03db579c7b15a40910f1e56267754 +SIZE (xpi/firefox-i18n-16.0.1/bn-IN.xpi) = 365382 +SHA256 (xpi/firefox-i18n-16.0.1/br.xpi) = 6ff7640efae8e1638047bee8942eebcc1c38491379597ae5ebffdb5848012fa4 +SIZE (xpi/firefox-i18n-16.0.1/br.xpi) = 288764 +SHA256 (xpi/firefox-i18n-16.0.1/bs.xpi) = d5054e2e1556733cc061c6da40c84a60575aaa25414d5cfaa40aafac6a05a17b +SIZE (xpi/firefox-i18n-16.0.1/bs.xpi) = 286864 +SHA256 (xpi/firefox-i18n-16.0.1/ca.xpi) = 2635191706c19af92c1c1f47b34eb802a6052a412349aff956459418f3ffb424 +SIZE (xpi/firefox-i18n-16.0.1/ca.xpi) = 288250 +SHA256 (xpi/firefox-i18n-16.0.1/cs.xpi) = 224842605d0400eb98e8a9848d522d3898177ca5b66450c2362830ddd885a624 +SIZE (xpi/firefox-i18n-16.0.1/cs.xpi) = 291456 +SHA256 (xpi/firefox-i18n-16.0.1/cy.xpi) = 8a1730db2331938bfa8416cbe00dadd0705a1b0a92001cd84db1298fc796425c +SIZE (xpi/firefox-i18n-16.0.1/cy.xpi) = 281769 +SHA256 (xpi/firefox-i18n-16.0.1/da.xpi) = 0b8f5b62aed53eb094d1e65b2749e29ea434d6ceefc27bb8ee8537aff01fea2a +SIZE (xpi/firefox-i18n-16.0.1/da.xpi) = 280977 +SHA256 (xpi/firefox-i18n-16.0.1/de.xpi) = 936154f4471232f48ec9f6e296898285c07079ea1d2328c97897c1cd0f5a95e9 +SIZE (xpi/firefox-i18n-16.0.1/de.xpi) = 267035 +SHA256 (xpi/firefox-i18n-16.0.1/el.xpi) = 028f4f94522e9ddfd0e74c56c9b4c27c348df758ede103186a201862da7f4cc7 +SIZE (xpi/firefox-i18n-16.0.1/el.xpi) = 304321 +SHA256 (xpi/firefox-i18n-16.0.1/en-GB.xpi) = acdb7432aa54207034ee787073037c94bd3b27fc7c591dec1a30c076b784f2a7 +SIZE (xpi/firefox-i18n-16.0.1/en-GB.xpi) = 269394 +SHA256 (xpi/firefox-i18n-16.0.1/en-US.xpi) = 56bb9b4288630586439043c32a5808e795c30b00b0f67f1d24a09b98b5f56247 +SIZE (xpi/firefox-i18n-16.0.1/en-US.xpi) = 269411 +SHA256 (xpi/firefox-i18n-16.0.1/en-ZA.xpi) = 386bd8d5731ca4c459a0f61e717b8b40a2da080eb13c957839468afa5703ba75 +SIZE (xpi/firefox-i18n-16.0.1/en-ZA.xpi) = 269269 +SHA256 (xpi/firefox-i18n-16.0.1/eo.xpi) = 5c700d51c2d1b94367a524f6bcd4dc340e19c7a840a9ea2e6d4f0acdff7b52f6 +SIZE (xpi/firefox-i18n-16.0.1/eo.xpi) = 281892 +SHA256 (xpi/firefox-i18n-16.0.1/es-AR.xpi) = d7629b0939af4f70bcafb04443be9c76730b045d0619fa11b692ed4901a464f9 +SIZE (xpi/firefox-i18n-16.0.1/es-AR.xpi) = 287619 +SHA256 (xpi/firefox-i18n-16.0.1/es-CL.xpi) = 79f0ac68b9c172b1f7f317105b32f92671a46d92bcc24db362946568d1a02c5b +SIZE (xpi/firefox-i18n-16.0.1/es-CL.xpi) = 289749 +SHA256 (xpi/firefox-i18n-16.0.1/es-ES.xpi) = 833b4d81100637e1340978e481f5564302f20f2d515cd5a5d1053aed92893738 +SIZE (xpi/firefox-i18n-16.0.1/es-ES.xpi) = 240011 +SHA256 (xpi/firefox-i18n-16.0.1/es-MX.xpi) = 948baeb2f22022de01035777e0328caed47b0a53082e309b5f1bf9c4c71c357d +SIZE (xpi/firefox-i18n-16.0.1/es-MX.xpi) = 241869 +SHA256 (xpi/firefox-i18n-16.0.1/et.xpi) = e428b706884fb40bf262fe21ad2973bc8d146d614bd4ec34c982c52e8bde4440 +SIZE (xpi/firefox-i18n-16.0.1/et.xpi) = 281629 +SHA256 (xpi/firefox-i18n-16.0.1/eu.xpi) = a604558ba003ce83331f00a8892b75893468f5856b0bc7c00fd6be9ac34095ee +SIZE (xpi/firefox-i18n-16.0.1/eu.xpi) = 279862 +SHA256 (xpi/firefox-i18n-16.0.1/fa.xpi) = c63de21d74d1a58d5ef547eb3190cc4969145f8140879f4875303f1b2aad1207 +SIZE (xpi/firefox-i18n-16.0.1/fa.xpi) = 317209 +SHA256 (xpi/firefox-i18n-16.0.1/fi.xpi) = 78def3a6bd7f2758dc2b8c412708cf0a41cb19e634b4be10c6158c86f4a18986 +SIZE (xpi/firefox-i18n-16.0.1/fi.xpi) = 284821 +SHA256 (xpi/firefox-i18n-16.0.1/fr.xpi) = f2ded97698b2c4d53c573114a07d038f846d573e93503bccde56c38109eb0943 +SIZE (xpi/firefox-i18n-16.0.1/fr.xpi) = 282881 +SHA256 (xpi/firefox-i18n-16.0.1/fy-NL.xpi) = b6d123091d8f4955ccbc92693c2fcc16d5459d2636457f3d858f0b0bd7e71639 +SIZE (xpi/firefox-i18n-16.0.1/fy-NL.xpi) = 280264 +SHA256 (xpi/firefox-i18n-16.0.1/ga-IE.xpi) = 880eca0f55abb2fd33eed4c1368348d01c607336a925a76bd022edcb1fe3c5ad +SIZE (xpi/firefox-i18n-16.0.1/ga-IE.xpi) = 293835 +SHA256 (xpi/firefox-i18n-16.0.1/gl.xpi) = 8e8905bd271ed5ecf46e5974b949b5f2890ddad0acac5b5f7efbb0fcdda5a2fe +SIZE (xpi/firefox-i18n-16.0.1/gl.xpi) = 285282 +SHA256 (xpi/firefox-i18n-16.0.1/gu-IN.xpi) = 2c478da83a8cb86a9abd966ddd6ca3d04d29427d5cd65f1dfb20d1f60efb1b01 +SIZE (xpi/firefox-i18n-16.0.1/gu-IN.xpi) = 311769 +SHA256 (xpi/firefox-i18n-16.0.1/he.xpi) = 39c0025dadb1592f9766a629c1f8178f8e1c1795a97d2dc5fbce1c5ba5714c03 +SIZE (xpi/firefox-i18n-16.0.1/he.xpi) = 297591 +SHA256 (xpi/firefox-i18n-16.0.1/hi-IN.xpi) = df6fc95b41ee3a4875ea23d6dfb17d51abfbf21d5891d3cd576d9ef285488bd1 +SIZE (xpi/firefox-i18n-16.0.1/hi-IN.xpi) = 327162 +SHA256 (xpi/firefox-i18n-16.0.1/hr.xpi) = 17937c8b11af668aa2143caa0ec7eb8afeb639a65962860b7b0314907224c521 +SIZE (xpi/firefox-i18n-16.0.1/hr.xpi) = 287884 +SHA256 (xpi/firefox-i18n-16.0.1/hu.xpi) = f247c74243bd5ca9d15e270f79c0034ed086e0d3fae7409bb6112b29627fa8f6 +SIZE (xpi/firefox-i18n-16.0.1/hu.xpi) = 298915 +SHA256 (xpi/firefox-i18n-16.0.1/hy-AM.xpi) = 14090fddbf55ea444c569ab331a734d61012d064d342c73fc29886a4af10d783 +SIZE (xpi/firefox-i18n-16.0.1/hy-AM.xpi) = 324513 +SHA256 (xpi/firefox-i18n-16.0.1/id.xpi) = df85dc731026ffc62cd9f393627b02f4b6dca3108d682e5b66d30b8a43bb0baa +SIZE (xpi/firefox-i18n-16.0.1/id.xpi) = 277128 +SHA256 (xpi/firefox-i18n-16.0.1/is.xpi) = 8b2592d31095278e0fdcbdb1a3e8022b1099df5913657767075aabdc041002cd +SIZE (xpi/firefox-i18n-16.0.1/is.xpi) = 281846 +SHA256 (xpi/firefox-i18n-16.0.1/it.xpi) = 6fbafb74fdfcdb33fa45dd0811307d7b127e113a77834d69df164ff16ab434e0 +SIZE (xpi/firefox-i18n-16.0.1/it.xpi) = 236238 +SHA256 (xpi/firefox-i18n-16.0.1/ja.xpi) = 0ca43ca70e1aae91f0a434f6a426fd2203b96ffa65a0fbbbd8f3ef21601adf1b +SIZE (xpi/firefox-i18n-16.0.1/ja.xpi) = 319470 +SHA256 (xpi/firefox-i18n-16.0.1/kk.xpi) = 7f6daf95f1f6309d24a5692b903c5da1bee6a77beafe6436e3f79e76bfb85c28 +SIZE (xpi/firefox-i18n-16.0.1/kk.xpi) = 326255 +SHA256 (xpi/firefox-i18n-16.0.1/kn.xpi) = dd224edd1a908fbf9f2eaefda215c22f712b2e4cad65034becc9273330a28b4f +SIZE (xpi/firefox-i18n-16.0.1/kn.xpi) = 347221 +SHA256 (xpi/firefox-i18n-16.0.1/ko.xpi) = 1dc9aecc6a3c570db7cfbf6b7e9b1320b857bdc87ba5113f04cb358b15e658e4 +SIZE (xpi/firefox-i18n-16.0.1/ko.xpi) = 269733 +SHA256 (xpi/firefox-i18n-16.0.1/ku.xpi) = f5412d9e3b814f525060db4fd8e14fea84b58bc218ca458e995febb44311c7c3 +SIZE (xpi/firefox-i18n-16.0.1/ku.xpi) = 298000 +SHA256 (xpi/firefox-i18n-16.0.1/lg.xpi) = 241343c3dac2b449fbdf15b3b9395dce3595e8f4135e27f8c291b08830c4f7e7 +SIZE (xpi/firefox-i18n-16.0.1/lg.xpi) = 287622 +SHA256 (xpi/firefox-i18n-16.0.1/lt.xpi) = e155b4e8b15632ad0d18cc7d993e55302d45189443f0db9bd6d966a6f928dcbb +SIZE (xpi/firefox-i18n-16.0.1/lt.xpi) = 344064 +SHA256 (xpi/firefox-i18n-16.0.1/lv.xpi) = ae61416da001ba89388ca0006b685258c92e526bb677f136ab3f3d08be6194b4 +SIZE (xpi/firefox-i18n-16.0.1/lv.xpi) = 284885 +SHA256 (xpi/firefox-i18n-16.0.1/mai.xpi) = bfbff34dec693a1f529ab89b4b67d6d2e3117ad27f7fa2d43a76afed8ca75a63 +SIZE (xpi/firefox-i18n-16.0.1/mai.xpi) = 324332 +SHA256 (xpi/firefox-i18n-16.0.1/mk.xpi) = 9b349884da5486e60b824844e5108482ec40ccadd8cf9eed33c3eb464096b5c8 +SIZE (xpi/firefox-i18n-16.0.1/mk.xpi) = 312147 +SHA256 (xpi/firefox-i18n-16.0.1/ml.xpi) = 26821d049e21025b4398b891f31a67914ed57fd7437d1f752e95873deac6f48a +SIZE (xpi/firefox-i18n-16.0.1/ml.xpi) = 354415 +SHA256 (xpi/firefox-i18n-16.0.1/mr.xpi) = ed2831e68d88d6b0395704198b982507bbade78b869bb4790f5970cefe41e7c8 +SIZE (xpi/firefox-i18n-16.0.1/mr.xpi) = 324388 +SHA256 (xpi/firefox-i18n-16.0.1/nb-NO.xpi) = c047e8652b9b9375a03eefa2e52ed11d1773aa01ad66c8ca753bd76527a2dbe9 +SIZE (xpi/firefox-i18n-16.0.1/nb-NO.xpi) = 269088 +SHA256 (xpi/firefox-i18n-16.0.1/nl.xpi) = 2c84483919e9d21877b886e89bd67ae9b5099247d03047887e931cfc79c33b01 +SIZE (xpi/firefox-i18n-16.0.1/nl.xpi) = 284464 +SHA256 (xpi/firefox-i18n-16.0.1/nn-NO.xpi) = 3cbeddefb2f9ee2b644bb302c9d258e033d38e42c3d9922493513781dc369433 +SIZE (xpi/firefox-i18n-16.0.1/nn-NO.xpi) = 283253 +SHA256 (xpi/firefox-i18n-16.0.1/nso.xpi) = 017211c2eb6dcba01a3739ef18c253aad744da7820ad61142227ad5737480a1c +SIZE (xpi/firefox-i18n-16.0.1/nso.xpi) = 284406 +SHA256 (xpi/firefox-i18n-16.0.1/or.xpi) = add9c263b2fbea952cca6fb71820b4c0c6138b369e8195d6d1d034152ca29436 +SIZE (xpi/firefox-i18n-16.0.1/or.xpi) = 321593 +SHA256 (xpi/firefox-i18n-16.0.1/pa-IN.xpi) = bfa3cb1bcb993d82a77a92623f82354e22b7375bc4ee6c60422bdbda5d15002a +SIZE (xpi/firefox-i18n-16.0.1/pa-IN.xpi) = 314701 +SHA256 (xpi/firefox-i18n-16.0.1/pl.xpi) = 6bbd6bbb1244b57e57f1ed3566324d35099dd0449cb2053a2004a9f54dc41d80 +SIZE (xpi/firefox-i18n-16.0.1/pl.xpi) = 295729 +SHA256 (xpi/firefox-i18n-16.0.1/pt-BR.xpi) = 60a00077712a052093e90c1de6ae37c21be747ec4c68195431a2a9d4561f48e1 +SIZE (xpi/firefox-i18n-16.0.1/pt-BR.xpi) = 286316 +SHA256 (xpi/firefox-i18n-16.0.1/pt-PT.xpi) = e8a6b15382c11931c702b7c3f079733386b2ada92865bf342bb5b59a36a79a04 +SIZE (xpi/firefox-i18n-16.0.1/pt-PT.xpi) = 286521 +SHA256 (xpi/firefox-i18n-16.0.1/rm.xpi) = 6a9e4b4ccd1f1061e4125da9611116ce75f8c336b87e678487bdef68bf2a30cf +SIZE (xpi/firefox-i18n-16.0.1/rm.xpi) = 286909 +SHA256 (xpi/firefox-i18n-16.0.1/ro.xpi) = d1b645fe3b8ce62c04f653481f957c37f0bb333c505a922a1ab9e9072a8facfc +SIZE (xpi/firefox-i18n-16.0.1/ro.xpi) = 308190 +SHA256 (xpi/firefox-i18n-16.0.1/ru.xpi) = 05e53624d80ab253356d6de81b7c9646f755f772ebd5a2acb011eb002e509765 +SIZE (xpi/firefox-i18n-16.0.1/ru.xpi) = 282174 +SHA256 (xpi/firefox-i18n-16.0.1/si.xpi) = 659d738773ada29d683101837bc189a5ea78e1e660a60b98f3d65304205862d4 +SIZE (xpi/firefox-i18n-16.0.1/si.xpi) = 312448 +SHA256 (xpi/firefox-i18n-16.0.1/sk.xpi) = ec95cb2336d918ad3434dec56253b37fd9dca972d18fabf17e1cd0ba12f1006d +SIZE (xpi/firefox-i18n-16.0.1/sk.xpi) = 298466 +SHA256 (xpi/firefox-i18n-16.0.1/sl.xpi) = f19d6dbf54d10bef606432e2397d81b226e43cf2861e23029d5ab8a1f9167489 +SIZE (xpi/firefox-i18n-16.0.1/sl.xpi) = 282149 +SHA256 (xpi/firefox-i18n-16.0.1/son.xpi) = db8ac9e996dfaf325ad7f33d3234f69068bbd5066d98c1dd945638a5b16889ad +SIZE (xpi/firefox-i18n-16.0.1/son.xpi) = 279781 +SHA256 (xpi/firefox-i18n-16.0.1/sq.xpi) = c3f835fe294608f31ff3036c1b01fc1c1b1347783120b3b05130aff96decae3e +SIZE (xpi/firefox-i18n-16.0.1/sq.xpi) = 266111 +SHA256 (xpi/firefox-i18n-16.0.1/sr.xpi) = 9d009d120e58860f3a6c0984c065396a136cc6dcc66a3d1e32134e751b50d474 +SIZE (xpi/firefox-i18n-16.0.1/sr.xpi) = 326907 +SHA256 (xpi/firefox-i18n-16.0.1/sv-SE.xpi) = 25df1d67d50594819e1dec8952b2602a99abb4b08ce7e814e25253cede0b0a27 +SIZE (xpi/firefox-i18n-16.0.1/sv-SE.xpi) = 285754 +SHA256 (xpi/firefox-i18n-16.0.1/ta-LK.xpi) = c1fe0d2de09b7a20dc2c1591ad7561a4e99b07f54c55dcf97e80d70bf85dbded +SIZE (xpi/firefox-i18n-16.0.1/ta-LK.xpi) = 335847 +SHA256 (xpi/firefox-i18n-16.0.1/ta.xpi) = 75de90b90899e74235e8b6859e58d22a1e7089d4fa8b96ef62d555c9af8f775b +SIZE (xpi/firefox-i18n-16.0.1/ta.xpi) = 318908 +SHA256 (xpi/firefox-i18n-16.0.1/te.xpi) = 324912641e319a9a694a48cb486bcc659cf1258e81e8355999cfe2a0d6b8b390 +SIZE (xpi/firefox-i18n-16.0.1/te.xpi) = 335042 +SHA256 (xpi/firefox-i18n-16.0.1/th.xpi) = b97a2cbaccda652d0abbde633b0de2c3edb9550a8250e38eca63d3b5bce8a41c +SIZE (xpi/firefox-i18n-16.0.1/th.xpi) = 316437 +SHA256 (xpi/firefox-i18n-16.0.1/tr.xpi) = 2aded5833fe1237455ac23ad1bce7c947e6a942a48a8347bbcd84fe62a88b780 +SIZE (xpi/firefox-i18n-16.0.1/tr.xpi) = 291805 +SHA256 (xpi/firefox-i18n-16.0.1/uk.xpi) = 7de2ea352b2b26ca880b232397b1316f4b49b20c26b74ce9ef5452ef94fa43a0 +SIZE (xpi/firefox-i18n-16.0.1/uk.xpi) = 320797 +SHA256 (xpi/firefox-i18n-16.0.1/vi.xpi) = 457b7dbdad4708afbce00d14c58259af1f0f6dfd433f31593960ecbf996f0f6b +SIZE (xpi/firefox-i18n-16.0.1/vi.xpi) = 307315 +SHA256 (xpi/firefox-i18n-16.0.1/zh-CN.xpi) = b519daba15d78e66e1279e24252aa73544f30a93864657658db1869d814e9b7a +SIZE (xpi/firefox-i18n-16.0.1/zh-CN.xpi) = 301146 +SHA256 (xpi/firefox-i18n-16.0.1/zh-TW.xpi) = ef5721f52e289a105c73db5e0ab6f82c491be2faecddde39197dfd3f12ba3f2e +SIZE (xpi/firefox-i18n-16.0.1/zh-TW.xpi) = 302071 +SHA256 (xpi/firefox-i18n-16.0.1/zu.xpi) = 3446efb31f0a18a9755ab1c9ebe99f68d56db4bebc9f67739c77ddbce8cf90cc +SIZE (xpi/firefox-i18n-16.0.1/zu.xpi) = 289544 Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Thu Oct 11 18:13:28 2012 (r305735) +++ head/www/firefox/Makefile Thu Oct 11 19:15:12 2012 (r305736) @@ -6,7 +6,7 @@ # PORTNAME= firefox -DISTVERSION= 16.0 +DISTVERSION= 16.0.1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Thu Oct 11 18:13:28 2012 (r305735) +++ head/www/firefox/distinfo Thu Oct 11 19:15:12 2012 (r305736) @@ -1,2 +1,2 @@ -SHA256 (firefox-16.0.source.tar.bz2) = 60d4e73a5ff2f796d8c9f3d0650a15afe6c140e017d0678ccf16c968e2c5ff55 -SIZE (firefox-16.0.source.tar.bz2) = 89461772 +SHA256 (firefox-16.0.1.source.tar.bz2) = 57ed98109718aacfdeda2af11b0179916e462ede8ac6576ee99c7d066b162fe7 +SIZE (firefox-16.0.1.source.tar.bz2) = 89452319 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 19:18:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C2BC82A7; Thu, 11 Oct 2012 19:18:41 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward13.mail.yandex.net (forward13.mail.yandex.net [IPv6:2a02:6b8:0:801::3]) by mx1.freebsd.org (Postfix) with ESMTP id 37DF78FC19; Thu, 11 Oct 2012 19:18:41 +0000 (UTC) Received: from smtp12.mail.yandex.net (smtp12.mail.yandex.net [95.108.131.191]) by forward13.mail.yandex.net (Yandex) with ESMTP id A1F38141952; Thu, 11 Oct 2012 23:18:39 +0400 (MSK) Received: from smtp12.mail.yandex.net (localhost [127.0.0.1]) by smtp12.mail.yandex.net (Yandex) with ESMTP id 5C61116A02A3; Thu, 11 Oct 2012 23:18:39 +0400 (MSK) Received: from unknown (unknown [178.76.224.133]) by smtp12.mail.yandex.net (nwsmtp/Yandex) with ESMTP id IcZOlkWX-IcZaTVP4; Thu, 11 Oct 2012 23:18:39 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1349983119; bh=E29SG5BnRVjdvbDnoUxrKV0fWZ+ueuhMHZO9km9MXpw=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=B/NVz0AX5zGyhDMFOsgnnzkNayOwn1edlMqmh8TqFiltFl8zKtUdld1qr6FurQLRg PPwYBtlSS3nPZKHlO5oRWiwZr1JhlFoFJODnFKaUp8QMuCF3mK8EH2f2SZ9L9MjphY fl9cfk5Ms0pd1HDknBnDmzdMf5HbsOzRk9rRLwTc= Message-ID: <50771B7C.40906@yandex.ru> Date: Thu, 11 Oct 2012 23:18:20 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120912 Thunderbird/15.0.1 MIME-Version: 1.0 To: Florian Smeets Subject: Re: svn commit: r305736 - in head: mail/thunderbird mail/thunderbird-i18n security/vuxml www/firefox www/firefox-i18n References: <201210111915.q9BJFCet071618@svn.freebsd.org> In-Reply-To: <201210111915.q9BJFCet071618@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 19:18:41 -0000 Florian Smeets wrote on 11.10.2012 23:15: > Author: flo > Date: Thu Oct 11 19:15:12 2012 > New Revision: 305736 > URL: http://svn.freebsd.org/changeset/ports/305736 > > Log: > - update to 16.0.1 > - update vuln.xml entry > > Feature safe: yes It's a hell of a work to do this twice in the same day, thank you so much for this! -- Regards, Ruslan Tinderboxing kills... the drives. From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 19:23:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 240C043F; Thu, 11 Oct 2012 19:23:57 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0C5FA8FC12; Thu, 11 Oct 2012 19:23:57 +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 q9BJNukv072742; Thu, 11 Oct 2012 19:23:56 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BJNu9w072739; Thu, 11 Oct 2012 19:23:56 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210111923.q9BJNu9w072739@svn.freebsd.org> From: TAKATSU Tomonari Date: Thu, 11 Oct 2012 19:23:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305737 - head/ftp/R-cran-RCurl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 19:23:57 -0000 Author: tota Date: Thu Oct 11 19:23:56 2012 New Revision: 305737 URL: http://svn.freebsd.org/changeset/ports/305737 Log: - Update to 1.95-1.1 Feature safe: yes Modified: head/ftp/R-cran-RCurl/Makefile head/ftp/R-cran-RCurl/distinfo Modified: head/ftp/R-cran-RCurl/Makefile ============================================================================== --- head/ftp/R-cran-RCurl/Makefile Thu Oct 11 19:15:12 2012 (r305736) +++ head/ftp/R-cran-RCurl/Makefile Thu Oct 11 19:23:56 2012 (r305737) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= RCurl -DISTVERSION= 1.95-0.1 +DISTVERSION= 1.95-1.1 CATEGORIES= ftp DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/ftp/R-cran-RCurl/distinfo ============================================================================== --- head/ftp/R-cran-RCurl/distinfo Thu Oct 11 19:15:12 2012 (r305736) +++ head/ftp/R-cran-RCurl/distinfo Thu Oct 11 19:23:56 2012 (r305737) @@ -1,2 +1,2 @@ -SHA256 (RCurl_1.95-0.1.tar.gz) = 22129454bd6914343a1e5b28524e1d78abb72b56175bbfe2f67c69aa667af674 -SIZE (RCurl_1.95-0.1.tar.gz) = 875290 +SHA256 (RCurl_1.95-1.1.tar.gz) = 678a5b91b1bdc8db52340d74f07ce0c4a8d6f1ff8357f8b3b52587adb6b953cb +SIZE (RCurl_1.95-1.1.tar.gz) = 874317 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 19:32:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 488D46A7; Thu, 11 Oct 2012 19:32:16 +0000 (UTC) (envelope-from tj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2FCAE8FC08; Thu, 11 Oct 2012 19:32:16 +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 q9BJWGKI073828; Thu, 11 Oct 2012 19:32:16 GMT (envelope-from tj@svn.freebsd.org) Received: (from tj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BJWFF5073822; Thu, 11 Oct 2012 19:32:15 GMT (envelope-from tj@svn.freebsd.org) Message-Id: <201210111932.q9BJWFF5073822@svn.freebsd.org> From: Tom Judge Date: Thu, 11 Oct 2012 19:32:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305738 - in head/devel: . p5-Data-Rand-Obscure X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 19:32:16 -0000 Author: tj Date: Thu Oct 11 19:32:15 2012 New Revision: 305738 URL: http://svn.freebsd.org/changeset/ports/305738 Log: A module used to generate (fairly) random strings easily. WWW: http://search.cpan.org/dist/Data-Rand-Obscure/ Feature safe: yes Approved by: db (mentor) Added: head/devel/p5-Data-Rand-Obscure/ head/devel/p5-Data-Rand-Obscure/Makefile (contents, props changed) head/devel/p5-Data-Rand-Obscure/distinfo (contents, props changed) head/devel/p5-Data-Rand-Obscure/pkg-descr (contents, props changed) head/devel/p5-Data-Rand-Obscure/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 11 19:23:56 2012 (r305737) +++ head/devel/Makefile Thu Oct 11 19:32:15 2012 (r305738) @@ -1630,6 +1630,7 @@ SUBDIR += p5-Data-Printer SUBDIR += p5-Data-Properties SUBDIR += p5-Data-Rand + SUBDIR += p5-Data-Rand-Obscure SUBDIR += p5-Data-Random SUBDIR += p5-Data-Range-Compare SUBDIR += p5-Data-Recursive-Encode Added: head/devel/p5-Data-Rand-Obscure/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Rand-Obscure/Makefile Thu Oct 11 19:32:15 2012 (r305738) @@ -0,0 +1,26 @@ +# $FreeBSD$ +# + +PORTNAME= Data-Rand-Obscure +PORTVERSION= 0.021 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= tj@FreeBSD.org +COMMENT= Perl module for generating (fairly) random strings easily + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Carp-Clan>=6.04:${PORTSDIR}/devel/p5-Carp-Clan \ + p5-Object-Tiny>=1.08:${PORTSDIR}/devel/p5-Object-Tiny +RUN_DEPENDS= p5-Carp-Clan>=6.04:${PORTSDIR}/devel/p5-Carp-Clan \ + p5-Object-Tiny>=1.08:${PORTSDIR}/devel/p5-Object-Tiny + +PERL_CONFIGURE= yes + +MAN3= Data::Rand::Obscure.3 \ + Data::Rand::Obscure::Generator.3 + +.include Added: head/devel/p5-Data-Rand-Obscure/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Rand-Obscure/distinfo Thu Oct 11 19:32:15 2012 (r305738) @@ -0,0 +1,2 @@ +SHA256 (Data-Rand-Obscure-0.021.tar.gz) = 20e456da4cc18b125edd4f6d8ae72146d09603e0b3cbdf29b37f4c06d811c484 +SIZE (Data-Rand-Obscure-0.021.tar.gz) = 22576 Added: head/devel/p5-Data-Rand-Obscure/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Rand-Obscure/pkg-descr Thu Oct 11 19:32:15 2012 (r305738) @@ -0,0 +1,3 @@ +A module used to generate (fairly) random strings easily. + +WWW: http://search.cpan.org/dist/Data-Rand-Obscure/ Added: head/devel/p5-Data-Rand-Obscure/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Data-Rand-Obscure/pkg-plist Thu Oct 11 19:32:15 2012 (r305738) @@ -0,0 +1,9 @@ +%%SITE_PERL%%/Data/Rand/Obscure.pm +%%SITE_PERL%%/Data/Rand/Obscure/Generator.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Rand/Obscure/.packlist +@dirrm %%SITE_PERL%%/Data/Rand/Obscure +@dirrmtry %%SITE_PERL%%/Data/Rand +@dirrmtry %%SITE_PERL%%/Data +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Rand/Obscure +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/Rand +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 19:45:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 89CF9B8E; Thu, 11 Oct 2012 19:45:48 +0000 (UTC) (envelope-from Cy.Schubert@komquats.com) Received: from idcmail-mo1so.shaw.ca (idcmail-mo1so.shaw.ca [24.71.223.10]) by mx1.freebsd.org (Postfix) with ESMTP id 164388FC08; Thu, 11 Oct 2012 19:45:47 +0000 (UTC) Received: from pd3ml1so-ssvc.prod.shaw.ca ([10.0.141.140]) by pd4mo1so-svcs.prod.shaw.ca with ESMTP; 11 Oct 2012 13:45:46 -0600 X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.1 cv=YS95TUGYX+MRkNY/meip+CxRTyy2F4x7QGJ4HWfgHsg= c=1 sm=1 a=cI6qOsL9_54A:10 a=QrugwKR0C_UA:10 a=wAGQQ9Az6v0A:10 a=BLceEmwcHowA:10 a=ICAaq7hcmGcA:10 a=kj9zAlcOel0A:10 a=IbtKDeXwb2+SRU442/pi3A==:17 a=BWvPGDcYAAAA:8 a=6I5d2MoRAAAA:8 a=VxmjJ2MpAAAA:8 a=Hy9CwW6LAAAA:8 a=pQs5aej7AAAA:8 a=8nT4wR74KWK_qVEZJf8A:9 a=CjuIK1q_8ugA:10 a=V7tsTZBp22UA:10 a=SV7veod9ZcQA:10 a=fsWxcQRYqyYA:10 a=HpAAvcLHHh0Zw7uRqdWCyQ==:117 Received: from unknown (HELO spqr.komquats.com) ([96.50.7.119]) by pd3ml1so-dmz.prod.shaw.ca with ESMTP; 11 Oct 2012 13:45:46 -0600 Received: from slippy.cwsent.com (slippy8 [10.2.2.6]) by spqr.komquats.com (Postfix) with ESMTP id 14AA080; Thu, 11 Oct 2012 12:45:45 -0700 (PDT) Received: from slippy (localhost [127.0.0.1]) by slippy.cwsent.com (8.14.5/8.14.5) with ESMTP id q9BJjjvc034801; Thu, 11 Oct 2012 12:45:45 -0700 (PDT) (envelope-from Cy.Schubert@komquats.com) Message-Id: <201210111945.q9BJjjvc034801@slippy.cwsent.com> X-Mailer: exmh version 2.7.2 01/07/2005 with nmh-1.3 From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.komquats.com/ To: Cy Schubert Subject: Re: svn commit: r305684 - in head: . Mk mail mail/enigmail mail/enigmail-seamonkey mail/enigmail-thunderbird mail/enigmail-thunderbird-esr mail/linux-thunderbird mail/thunderbird mail/thunderbird-esr m... In-Reply-To: Message from Cy Schubert of "Thu, 11 Oct 2012 11:31:41 PDT." <201210111831.q9BIVfp4060165@slippy.cwsent.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 11 Oct 2012 12:45:45 -0700 Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, Florian Smeets , ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Cy Schubert List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 19:45:48 -0000 I don't have the commit email yet but it appears this has been fixed. Thanks. -- Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org The need of the many outweighs the greed of the few. In message <201210111831.q9BIVfp4060165@slippy.cwsent.com>, Cy Schubert writes: > In message <201210102113.q9ALD7xC002643@svn.freebsd.org>, Florian Smeets > writes > : > > Author: flo > > Date: Wed Oct 10 21:13:06 2012 > > New Revision: 305684 > > URL: http://svn.freebsd.org/changeset/ports/305684 > > > > Log: > > - Update firefox-esr, thunderbird-esr, linux-firefox and linux-thunderbir > d > > to 10.0.8 > > - Update firefox and thunderbird to 16.0 > > - Update seamonkey to 2.13 > > - Update all -i18n ports respectively > > - switch firefox 16.0 and seamonkey 2.13 to ALSA by default for better > > latency during pause and seeking with HTML5 video > > - remove fedisableexcept() hacks, obsolete since FreeBSD 4.0 > > - support system hunspell dictionaries [1] > > - unbreak -esr ports with clang3.2 [2] > > - unbreak nss build when CC contains full path [3] > > - remove GNOME option grouping [4] > > - integrate enigmail into thunderbird/seamonkey as an option [5] > > - remove mail/enigmail* [6] > > - enable ENIGMAIL, LIGHTNING and GIO options by default > > - add more reporters in about:memory: page-faults-hard, page-faults-soft, > > resident, vsize > > - use bundled jemalloc 3.0.0 on FreeBSD < 10.0 for gecko 16.0, > > only heap-allocated reporter works in about:memory (see bug 762445) > > - use lrintf() instead of slow C cast in bundled libopus > > - use libjpeg-turbo's faster color conversion if available during build > > - record startup time for telemetry > > - use -z origin instead of hardcoding path to gecko runtime > > - fail early if incompatible libxul version is installed (in USE_GECKO) > > - *miscellaneous cleanups and fixups* > > > > PR: ports/171534 [1] > > PR: ports/171566 [2] > > PR: ports/172164 [3] > > PR: ports/172201 [4] > > Discussed with: ale, beat, Jan Beich [5] > > Approved by: ale [6] > > In collaboration with: Jan Beich > > Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392 > > Feature safe: yes > > Approved by: portmgr (beat) > > This should be flagged FORBIDDEN. See https://blog.mozilla.org/security/2012 > /10/10/security-vulnerability-in-firefox-16/. Malicious sites have access > to Visted URLs and URL parameters. It appears that Thunderbird and > Seamonkey are not affected > > > -- > Cheers, > Cy Schubert > FreeBSD UNIX: Web: http://www.FreeBSD.org > > The need of the many outweighs the greed of the few. > > > _______________________________________________ > svn-ports-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" > > From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 19:55:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F186AE2; Thu, 11 Oct 2012 19:55:47 +0000 (UTC) (envelope-from nox@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D94068FC17; Thu, 11 Oct 2012 19:55:47 +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 q9BJtlda076794; Thu, 11 Oct 2012 19:55:47 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BJtl2N076791; Thu, 11 Oct 2012 19:55:47 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201210111955.q9BJtl2N076791@svn.freebsd.org> From: Juergen Lock Date: Thu, 11 Oct 2012 19:55:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305739 - in head/sysutils/smartmontools: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 19:55:48 -0000 Author: nox Date: Thu Oct 11 19:55:47 2012 New Revision: 305739 URL: http://svn.freebsd.org/changeset/ports/305739 Log: - Fix AUTO in daily_status_smart_devices parameter (skip arX devices). - Bump PORTREVISION. PR: ports/172480 Submitted by: Leonid Nevecherya Approved by: samm@os2.kiev.ua (maintainer) Feature safe: yes Modified: head/sysutils/smartmontools/Makefile (contents, props changed) head/sysutils/smartmontools/files/smart.in (contents, props changed) Modified: head/sysutils/smartmontools/Makefile ============================================================================== --- head/sysutils/smartmontools/Makefile Thu Oct 11 19:32:15 2012 (r305738) +++ head/sysutils/smartmontools/Makefile Thu Oct 11 19:55:47 2012 (r305739) @@ -7,6 +7,7 @@ PORTNAME= smartmontools PORTVERSION= 5.43 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= SF Modified: head/sysutils/smartmontools/files/smart.in ============================================================================== --- head/sysutils/smartmontools/files/smart.in Thu Oct 11 19:32:15 2012 (r305738) +++ head/sysutils/smartmontools/files/smart.in Thu Oct 11 19:55:47 2012 (r305739) @@ -16,7 +16,7 @@ smartctl=%%PREFIX%%/sbin/smartctl case "${daily_status_smart_devices}" in # XXX AUTO mode selects only regular ad/da disks [Aa][Uu][Tt][Oo]) - daily_status_smart_devices="$(sysctl -n kern.disks | sed -E 's/[[:<:]]cd[0-9]+//g')" + daily_status_smart_devices="$(sysctl -n kern.disks | sed -E 's/[[:<:]](cd|ar)[0-9]+//g')" ;; *) ;; esac From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 20:11:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 78E18551; Thu, 11 Oct 2012 20:11:27 +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 5F2EC8FC1E; Thu, 11 Oct 2012 20:11:27 +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 q9BKBRQH078827; Thu, 11 Oct 2012 20:11:27 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BKBRtE078823; Thu, 11 Oct 2012 20:11:27 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210112011.q9BKBRtE078823@svn.freebsd.org> From: Bryan Drewery Date: Thu, 11 Oct 2012 20:11:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305740 - in head/security/openvpn-beta: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 20:11:27 -0000 Author: bdrewery Date: Thu Oct 11 20:11:26 2012 New Revision: 305740 URL: http://svn.freebsd.org/changeset/ports/305740 Log: - Properly install symlinks for auth-pam and down-root plugins [1] - Fix pkg-message description of locations of these plugins [1] - Fix plist for nonexistent DOCSDIR/openvpn PR: ports/172598 [1] Submitted by: Eric F Crist (maintainer) [1] Feature safe: yes Modified: head/security/openvpn-beta/Makefile head/security/openvpn-beta/files/pkg-message.in head/security/openvpn-beta/pkg-plist Modified: head/security/openvpn-beta/Makefile ============================================================================== --- head/security/openvpn-beta/Makefile Thu Oct 11 19:55:47 2012 (r305739) +++ head/security/openvpn-beta/Makefile Thu Oct 11 20:11:26 2012 (r305740) @@ -6,6 +6,7 @@ DISTVERSION= 2.3_beta1 CATEGORIES= security net MASTER_SITES= http://swupdate.openvpn.net/community/releases/ PKGNAMESUFFIX= -beta +PORTREVISION= 1 MAINTAINER= ecrist@secure-computing.net COMMENT= Secure IP/Ethernet tunnel daemon @@ -90,10 +91,9 @@ post-build: post-install: ${MKDIR} ${PREFIX}/lib - ${INSTALL_LIB} ${WRKSRC}/src/plugins/down-root/.libs/openvpn-plugin-down-root.so ${PREFIX}/lib/ - ${INSTALL_LIB} ${WRKSRC}/src/plugins/auth-pam/.libs/openvpn-plugin-auth-pam.so ${PREFIX}/lib/ - ${LN} -s ${WRKSRC}/src/plugins/down-root/.libs/openvpn-plugin-down-root.so ${PREFIX}/lib/openvpn-down-root.so - ${LN} -s ${WRKSRC}/src/plugins/down-root/.libs/openvpn-plugin-auth-pam.so ${PREFIX}/lib/openvpn-auth-pam.so + ${LN} -s ${PREFIX}/lib/openvpn/plugins/openvpn-plugin-down-root.so ${PREFIX}/lib/openvpn-down-root.so + ${LN} -s ${PREFIX}/lib/openvpn/plugins/openvpn-plugin-auth-pam.so ${PREFIX}/lib/openvpn-auth-pam.so + .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} .for docs in AUTHORS COPYING COPYRIGHT.GPL ChangeLog INSTALL \ Modified: head/security/openvpn-beta/files/pkg-message.in ============================================================================== --- head/security/openvpn-beta/files/pkg-message.in Thu Oct 11 19:55:47 2012 (r305739) +++ head/security/openvpn-beta/files/pkg-message.in Thu Oct 11 20:11:26 2012 (r305740) @@ -13,10 +13,10 @@ ### The following plugin locations have changed. There is a symlink to the ### new file for the duration of the 2.3 release. This will be removed in ### OpenVPN 2.4+. -### Old Location: +### New Location: ### %%PREFIX%%/openvpn/plugins/openvpn-plugin-auth-pam.so ### %%PREFIX%%/openvpn/plugins/openvpn-plugin-down-root.so ### -### New Location: +### Old Location: ### %%PREFIX%%/openvpn-plugin-auth-pam.so ### %%PREFIX%%/openvpn-plugin-down-root.so Modified: head/security/openvpn-beta/pkg-plist ============================================================================== --- head/security/openvpn-beta/pkg-plist Thu Oct 11 19:55:47 2012 (r305739) +++ head/security/openvpn-beta/pkg-plist Thu Oct 11 20:11:26 2012 (r305740) @@ -1,8 +1,6 @@ lib/openvpn/plugins/openvpn-plugin-auth-pam.so -lib/openvpn-plugin-auth-pam.so lib/openvpn/plugins/openvpn-plugin-auth-pam.la lib/openvpn/plugins/openvpn-plugin-down-root.so -lib/openvpn-plugin-down-root.so lib/openvpn/plugins/openvpn-plugin-down-root.la lib/openvpn-auth-pam.so lib/openvpn-down-root.so @@ -41,7 +39,6 @@ sbin/openvpn %%PORTDOCS%%%%DOCSDIR%%/sample-scripts/bridge-stop %%PORTDOCS%%%%DOCSDIR%%/sample-scripts/ucn.pl %%PORTDOCS%%%%DOCSDIR%%/sample-scripts/verify-cn -@dirrmtry %%PORTDOCS%%%%DOCSDIR%%/openvpn @dirrmtry %%PORTDOCS%%%%DOCSDIR%%/sample @dirrmtry %%PORTDOCS%%%%DOCSDIR%%/sample-config-files @dirrmtry %%PORTDOCS%%%%DOCSDIR%%/sample-scripts From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 20:13:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C89C1640; Thu, 11 Oct 2012 20:13:19 +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 B0A878FC12; Thu, 11 Oct 2012 20:13: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 q9BKDJDP079125; Thu, 11 Oct 2012 20:13:19 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BKDJhx079120; Thu, 11 Oct 2012 20:13:19 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210112013.q9BKDJhx079120@svn.freebsd.org> From: Bryan Drewery Date: Thu, 11 Oct 2012 20:13:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305741 - in head/security/openvpn-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 20:13:19 -0000 Author: bdrewery Date: Thu Oct 11 20:13:18 2012 New Revision: 305741 URL: http://svn.freebsd.org/changeset/ports/305741 Log: - Update to latest snapshot [1] - Properly install symlinks for auth-pam and down-root plugins [1] - Fix pkg-message description of locations of these plugins [1] - Fix plist for nonexistent DOCSDIR/openvpn and DOCSDIRS/sample PR: ports/172587 [1] Submitted by: Eric F Crist (maintainer) [1] Feature safe: yes Modified: head/security/openvpn-devel/Makefile head/security/openvpn-devel/distinfo head/security/openvpn-devel/files/pkg-message.in head/security/openvpn-devel/pkg-plist Modified: head/security/openvpn-devel/Makefile ============================================================================== --- head/security/openvpn-devel/Makefile Thu Oct 11 20:11:26 2012 (r305740) +++ head/security/openvpn-devel/Makefile Thu Oct 11 20:13:18 2012 (r305741) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openvpn -DISTVERSION= 201237 +DISTVERSION= 201240 CATEGORIES= security net MASTER_SITES= ftp://ftp.secure-computing.net/pub/FreeBSD/ports/openvpn-devel/ \ ftp://ftp2.secure-computing.net/pub/FreeBSD/ports/openvpn-devel/ @@ -91,10 +91,8 @@ post-build: post-install: ${MKDIR} ${PREFIX}/lib - ${INSTALL_LIB} ${WRKSRC}/src/plugins/down-root/.libs/openvpn-plugin-down-root.so ${PREFIX}/lib/ - ${INSTALL_LIB} ${WRKSRC}/src/plugins/auth-pam/.libs/openvpn-plugin-auth-pam.so ${PREFIX}/lib/ - ${LN} -s ${WRKSRC}/src/plugins/down-root/.libs/openvpn-plugin-down-root.so ${PREFIX}/lib/openvpn-down-root.so - ${LN} -s ${WRKSRC}/src/plugins/down-root/.libs/openvpn-plugin-auth-pam.so ${PREFIX}/lib/openvpn-auth-pam.so + ${LN} -s ${PREFIX}/lib/openvpn/plugins/openvpn-plugin-down-root.so ${PREFIX}/lib/openvpn-down-root.so + ${LN} -s ${PREFIX}/lib/openvpn/plugins/openvpn-plugin-auth-pam.so ${PREFIX}/lib/openvpn-auth-pam.so .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} .for docs in AUTHORS COPYING COPYRIGHT.GPL ChangeLog INSTALL \ Modified: head/security/openvpn-devel/distinfo ============================================================================== --- head/security/openvpn-devel/distinfo Thu Oct 11 20:11:26 2012 (r305740) +++ head/security/openvpn-devel/distinfo Thu Oct 11 20:13:18 2012 (r305741) @@ -1,2 +1,2 @@ -SHA256 (openvpn-201237.tar.gz) = f6786994921acb6d207e0acdc410aa9c8096650390bcb0f36f7491cb7707a0a8 -SIZE (openvpn-201237.tar.gz) = 1519381 +SHA256 (openvpn-201240.tar.gz) = 60fd4af631fb4105322d6de21ad53928f5627c7cca7e8d6e3b388d100910fa1a +SIZE (openvpn-201240.tar.gz) = 1498790 Modified: head/security/openvpn-devel/files/pkg-message.in ============================================================================== --- head/security/openvpn-devel/files/pkg-message.in Thu Oct 11 20:11:26 2012 (r305740) +++ head/security/openvpn-devel/files/pkg-message.in Thu Oct 11 20:13:18 2012 (r305741) @@ -13,10 +13,11 @@ ### The following plugin locations have changed. There is a symlink to the ### new file for the duration of the 2.3 release. This will be removed in ### OpenVPN 2.4+. -### Old Location: +### New Location: ### %%PREFIX%%/openvpn/plugins/openvpn-plugin-auth-pam.so ### %%PREFIX%%/openvpn/plugins/openvpn-plugin-down-root.so ### -### New Location: -### %%PREFIX%%/openvpn-plugin-auth-pam.so -### %%PREFIX%%/openvpn-plugin-down-root.so +### Old Location: +### %%PREFIX%%/lib/openvpn-plugin-down-root.so +### %%PREFIX%%/lib/openvpn-plugin-auth-pam.so + Modified: head/security/openvpn-devel/pkg-plist ============================================================================== --- head/security/openvpn-devel/pkg-plist Thu Oct 11 20:11:26 2012 (r305740) +++ head/security/openvpn-devel/pkg-plist Thu Oct 11 20:13:18 2012 (r305741) @@ -1,8 +1,6 @@ lib/openvpn/plugins/openvpn-plugin-auth-pam.so -lib/openvpn-plugin-auth-pam.so lib/openvpn/plugins/openvpn-plugin-auth-pam.la lib/openvpn/plugins/openvpn-plugin-down-root.so -lib/openvpn-plugin-down-root.so lib/openvpn/plugins/openvpn-plugin-down-root.la lib/openvpn-auth-pam.so lib/openvpn-down-root.so @@ -41,10 +39,8 @@ sbin/openvpn %%PORTDOCS%%%%DOCSDIR%%/sample-scripts/bridge-stop %%PORTDOCS%%%%DOCSDIR%%/sample-scripts/ucn.pl %%PORTDOCS%%%%DOCSDIR%%/sample-scripts/verify-cn -@dirrmtry %%PORTDOCS%%%%DOCSDIR%%/openvpn @dirrmtry %%PORTDOCS%%%%DOCSDIR%%/sample-scripts @dirrmtry %%PORTDOCS%%%%DOCSDIR%%/sample-config-files -@dirrmtry %%PORTDOCS%%%%DOCSDIR%%/sample @dirrmtry %%PORTDOCS%%%%DOCSDIR%% @dirrmtry lib/openvpn/plugins @dirrmtry lib/openvpn From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 20:19:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 624798ED; Thu, 11 Oct 2012 20:19:07 +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 402678FC08; Thu, 11 Oct 2012 20:19: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 q9BKJ7UH079964; Thu, 11 Oct 2012 20:19:07 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BKJ7mJ079957; Thu, 11 Oct 2012 20:19:07 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210112019.q9BKJ7mJ079957@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Thu, 11 Oct 2012 20:19:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305742 - in head/databases: . py-fdb py-fdb/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 20:19:07 -0000 Author: rm Date: Thu Oct 11 20:19:06 2012 New Revision: 305742 URL: http://svn.freebsd.org/changeset/ports/305742 Log: Firebird RDBMS bindings for Python. fdb package is a set of Firebird RDBMS bindings for python. It works on Python 2.6+ and Python 3.x WWW: http://www.firebirdsql.org/en/python-devel-status/ PR: 172455 Submitted by: Jose Jachuf Feature safe: yes Added: head/databases/py-fdb/ head/databases/py-fdb/Makefile (contents, props changed) head/databases/py-fdb/distinfo (contents, props changed) head/databases/py-fdb/files/ head/databases/py-fdb/files/py3k-fix-pkg-plist.inc (contents, props changed) head/databases/py-fdb/pkg-descr (contents, props changed) head/databases/py-fdb/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu Oct 11 20:13:18 2012 (r305741) +++ head/databases/Makefile Thu Oct 11 20:19:06 2012 (r305742) @@ -691,6 +691,7 @@ SUBDIR += py-cql SUBDIR += py-dbf SUBDIR += py-dbutils + SUBDIR += py-fdb SUBDIR += py-firebirdsql SUBDIR += py-flask-sqlalchemy SUBDIR += py-forgetsql Added: head/databases/py-fdb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-fdb/Makefile Thu Oct 11 20:19:06 2012 (r305742) @@ -0,0 +1,33 @@ +# Created by: Jose Jachuf +# $FreeBSD$ + +PORTNAME= fdb +PORTVERSION= 0.9.1 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jjachuf@gmail.com +COMMENT= Firebird RDBMS bindings for Python + +LICENSE= BSD + +LIB_DEPENDS= fbclient:${PORTSDIR}/databases/firebird25-client + +USE_PYTHON= yes +USE_PYDISTUTILS=easy_install + +.include + +.if ${PYTHON_REL} >= 320 +.include "${FILESDIR}/py3k-fix-pkg-plist.inc" +.endif + +post-patch: + @${ECHO_MSG} + @${ECHO_MSG} "Please make sure that your firebird-client installation" + @${ECHO_MSG} "is built with command make -DPACKAGE_BUILDING." + @${ECHO_MSG} "The build of py-fdb will fail otherwise." + @${ECHO_MSG} + +.include Added: head/databases/py-fdb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-fdb/distinfo Thu Oct 11 20:19:06 2012 (r305742) @@ -0,0 +1,2 @@ +SHA256 (fdb-0.9.1.tar.gz) = 01dffb6a4638d980f2cbc7c785c48435919d88361b3472c1c9758ae8145daf65 +SIZE (fdb-0.9.1.tar.gz) = 468175 Added: head/databases/py-fdb/files/py3k-fix-pkg-plist.inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-fdb/files/py3k-fix-pkg-plist.inc Thu Oct 11 20:19:06 2012 (r305742) @@ -0,0 +1,14 @@ +# When Python version is 3.2+ we rewrite all the filenames +# of TMPPLIST that end with .py[co], so that they conform +# to PEP 3147 (see http://www.python.org/dev/peps/pep-3147/) +PYMAGICTAG= ${PYTHON_CMD} -c 'import imp; print(imp.get_tag())' +add-plist-post: + @${AWK} '\ + /\.py[co]$$/ && !($$0 ~ "/" pc "/") {id = match($$0, /\/[^\/]+\.py[co]$$/); if (id != 0) {d = substr($$0, 1, RSTART - 1); dirs[d] = 1}; sub(/\.py[co]$$/, "." mt "&"); sub(/[^\/]+\.py[co]$$/, pc "/&"); print; next} \ + /^@dirrm / {d = substr($$0, 8); if (d in dirs) {print $$0 "/" pc}; print $$0; next} \ + {print} \ + END {if (sp in dirs) {print "@dirrm " sp "/" pc}} \ + ' \ + pc="__pycache__" mt="$$(${PYMAGICTAG})" sp="${PYTHON_SITELIBDIR:S,${PYTHONBASE}/,,g}" \ + ${TMPPLIST} > ${TMPPLIST}.pyc_tmp + @${MV} ${TMPPLIST}.pyc_tmp ${TMPPLIST} Added: head/databases/py-fdb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-fdb/pkg-descr Thu Oct 11 20:19:06 2012 (r305742) @@ -0,0 +1,5 @@ +Firebird RDBMS bindings for Python. +fdb package is a set of Firebird RDBMS bindings for python. +It works on Python 2.6+ and Python 3.x + +WWW: http://www.firebirdsql.org/en/python-devel-status/ Added: head/databases/py-fdb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-fdb/pkg-plist Thu Oct 11 20:19:06 2012 (r305742) @@ -0,0 +1,21 @@ +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/fbcore.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/fbcore.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/fbcore.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/ibase.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/ibase.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/ibase.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/services.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/services.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb/services.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/fdb +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 20:31:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 14308AA4; Thu, 11 Oct 2012 20:31:14 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F0F4D8FC08; Thu, 11 Oct 2012 20:31: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 q9BKVDmo081462; Thu, 11 Oct 2012 20:31:13 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BKVDbU081460; Thu, 11 Oct 2012 20:31:13 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201210112031.q9BKVDbU081460@svn.freebsd.org> From: Wesley Shields Date: Thu, 11 Oct 2012 20:31:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305743 - head/x11/xdialog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 20:31:14 -0000 Author: wxs Date: Thu Oct 11 20:31:13 2012 New Revision: 305743 URL: http://svn.freebsd.org/changeset/ports/305743 Log: Fix WWW in pkg-descr. PR: ports/171890 Submitted by: Derek Wood Approved by: sylvio@ (maintainer timeout) Feature safe: yes Modified: head/x11/xdialog/pkg-descr (contents, props changed) Modified: head/x11/xdialog/pkg-descr ============================================================================== --- head/x11/xdialog/pkg-descr Thu Oct 11 20:19:06 2012 (r305742) +++ head/x11/xdialog/pkg-descr Thu Oct 11 20:31:13 2012 (r305743) @@ -4,4 +4,4 @@ program with an X-windows interface. The and use while adding even more functionalities. Author: Thierry Godefroy -WWW: http://xdialog.dyns.net/ +WWW: http://xdialog.free.fr/ From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 21:04:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 116E3960; Thu, 11 Oct 2012 21:04:28 +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 107328FC08; Thu, 11 Oct 2012 21:04:26 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1193061bkc.13 for ; Thu, 11 Oct 2012 14:04:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=KOhhPvtIaMHrD3fNZmpAjigu8dss8l3f79cNJRHSPpM=; b=voQ6vJULfnEB6qWwBfLt0E9elEcqN0A6tjxXOp3XuC6OvLd2hqQ1lNT0llJ2gVwF76 Js867h2KuFT7GJ2VWa7oK9z4HvxE2sT/446RCEvMCHuXO/aeAW2oYZ6BEb6W6oOUAt3Y H+OTxphAoTsJg0cwPaTfsILmqgWaZezGpMQz5qNr2IaRK5/T4XNqrJ3WoICVJbOFye5u o+EYxneCWxBZfEpU3xxwqdDOwpNqUtJ1v8S+6tdfM279Ma1AyoBt0YJMNegqMNuEDn6k u6XxOxVerQ0fI0ZO5B363aRsUO8+E6M0in3GNYSFUbCDhSb/DLmo61wpMALJetHrhvEP Z5iw== MIME-Version: 1.0 Received: by 10.204.150.213 with SMTP id z21mr785013bkv.45.1349989460486; Thu, 11 Oct 2012 14:04:20 -0700 (PDT) Received: by 10.204.50.197 with HTTP; Thu, 11 Oct 2012 14:04:20 -0700 (PDT) Received: by 10.204.50.197 with HTTP; Thu, 11 Oct 2012 14:04:20 -0700 (PDT) In-Reply-To: <201210112031.q9BKVDbU081460@svn.freebsd.org> References: <201210112031.q9BKVDbU081460@svn.freebsd.org> Date: Thu, 11 Oct 2012 22:04:20 +0100 Message-ID: Subject: Re: svn commit: r305743 - head/x11/xdialog From: Chris Rees To: Wesley Shields Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 21:04:28 -0000 On 11 Oct 2012 21:31, "Wesley Shields" wrote: > > Author: wxs > Date: Thu Oct 11 20:31:13 2012 > New Revision: 305743 > URL: http://svn.freebsd.org/changeset/ports/305743 > > Log: > Fix WWW in pkg-descr. > > PR: ports/171890 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=171890 > Submitted by: Derek Wood > Approved by: sylvio@ (maintainer timeout) > Feature safe: yes > > Modified: > head/x11/xdialog/pkg-descr (contents, props changed) > > Modified: head/x11/xdialog/pkg-descr > ============================================================================== > --- head/x11/xdialog/pkg-descr Thu Oct 11 20:19:06 2012 (r305742) > +++ head/x11/xdialog/pkg-descr Thu Oct 11 20:31:13 2012 (r305743) > @@ -4,4 +4,4 @@ program with an X-windows interface. The > and use while adding even more functionalities. > > Author: Thierry Godefroy > -WWW: http://xdialog.dyns.net/ > +WWW: http://xdialog.free.fr/ Could the Author tag go too? Chris From owner-svn-ports-head@FreeBSD.ORG Thu Oct 11 22:36:17 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0CF7444; Thu, 11 Oct 2012 22:36:17 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D98308FC0C; Thu, 11 Oct 2012 22:36:17 +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 q9BMaHQL097254; Thu, 11 Oct 2012 22:36:17 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9BMaHn5097252; Thu, 11 Oct 2012 22:36:17 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210112236.q9BMaHn5097252@svn.freebsd.org> From: TAKATSU Tomonari Date: Thu, 11 Oct 2012 22:36:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305744 - head/net-im/mikutter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Oct 2012 22:36:18 -0000 Author: tota Date: Thu Oct 11 22:36:17 2012 New Revision: 305744 URL: http://svn.freebsd.org/changeset/ports/305744 Log: - Unbreak and mark IGNORE when RUBY_DEFAULT_VER is not 1.9 - Revive Created by line which was Whom line in Makefile header Feature safe: yes Modified: head/net-im/mikutter/Makefile Modified: head/net-im/mikutter/Makefile ============================================================================== --- head/net-im/mikutter/Makefile Thu Oct 11 20:31:13 2012 (r305743) +++ head/net-im/mikutter/Makefile Thu Oct 11 22:36:17 2012 (r305744) @@ -1,3 +1,4 @@ +# Created by: TAKATSU Tomonari # $FreeBSD$ PORTNAME= mikutter @@ -26,6 +27,7 @@ RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/gtk2 WRKSRC= ${WRKDIR}/${PORTNAME} USE_RUBY= yes +RUBY_VER= 1.9 NO_BUILD= yes CONFLICTS= mikutter-0.0.3.* @@ -50,8 +52,8 @@ OPTIONS_DEFAULT= ${OPTIONS_DEFINE} .include -.if ${RUBY_VER} == 1.8 -BROKEN= does not build +.if ${RUBY_DEFAULT_VER} != ${RUBY_VER} +IGNORE= requires RUBY_DEFAULT_VER=${RUBY_VER} .endif .if ${PORT_OPTIONS:MHTTPCLIENT} From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 00:28:45 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DD3887A; Fri, 12 Oct 2012 00:28:45 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.49.45]) by mx1.freebsd.org (Postfix) with ESMTP id 2FDC48FC08; Fri, 12 Oct 2012 00:28:45 +0000 (UTC) Received: by syn.atarininja.org (Postfix, from userid 1001) id 2E0AC5C34; Thu, 11 Oct 2012 20:28:38 -0400 (EDT) Date: Thu, 11 Oct 2012 20:28:38 -0400 From: Wesley Shields To: Chris Rees Subject: Re: svn commit: r305743 - head/x11/xdialog Message-ID: <20121012002838.GA98393@atarininja.org> References: <201210112031.q9BKVDbU081460@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 00:28:45 -0000 On Thu, Oct 11, 2012 at 10:04:20PM +0100, Chris Rees wrote: > On 11 Oct 2012 21:31, "Wesley Shields" wrote: > > > > Author: wxs > > Date: Thu Oct 11 20:31:13 2012 > > New Revision: 305743 > > URL: http://svn.freebsd.org/changeset/ports/305743 > > > > Log: > > Fix WWW in pkg-descr. > > > > PR: ports/171890 > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=171890 > > Submitted by: Derek Wood > > Approved by: sylvio@ (maintainer timeout) > > Feature safe: yes > > > > Modified: > > head/x11/xdialog/pkg-descr (contents, props changed) > > > > Modified: head/x11/xdialog/pkg-descr > > > ============================================================================== > > --- head/x11/xdialog/pkg-descr Thu Oct 11 20:19:06 2012 (r305742) > > +++ head/x11/xdialog/pkg-descr Thu Oct 11 20:31:13 2012 (r305743) > > @@ -4,4 +4,4 @@ program with an X-windows interface. The > > and use while adding even more functionalities. > > > > Author: Thierry Godefroy > > -WWW: http://xdialog.dyns.net/ > > +WWW: http://xdialog.free.fr/ > > Could the Author tag go too? Probably. It's probably not worth it though. -- WXS From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 00:42:32 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C5D8217; Fri, 12 Oct 2012 00:42:32 +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 DEA9B8FC0A; Fri, 12 Oct 2012 00:42:31 +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 q9C0gVdl012215; Fri, 12 Oct 2012 00:42:31 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C0gVo2012205; Fri, 12 Oct 2012 00:42:31 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210120042.q9C0gVo2012205@svn.freebsd.org> From: Jung-uk Kim Date: Fri, 12 Oct 2012 00:42:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305745 - in head/java: . bootstrap-openjdk openjdk6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 00:42:32 -0000 Author: jkim Date: Fri Oct 12 00:42:31 2012 New Revision: 305745 URL: http://svn.freebsd.org/changeset/ports/305745 Log: Add a port to self-bootstrap OpenJDK6. Note the initial distfiles were bootstrapped with pre-built openjdk6 packages from FreeBSD build clusters on clean 7.4-RELEASE installation, and the ports tree was checked out at r305682. Feature safe: yes Added: head/java/bootstrap-openjdk/ head/java/bootstrap-openjdk/Makefile (contents, props changed) head/java/bootstrap-openjdk/Makefile.update (contents, props changed) head/java/bootstrap-openjdk/distinfo.amd64 (contents, props changed) head/java/bootstrap-openjdk/distinfo.i386 (contents, props changed) head/java/bootstrap-openjdk/pkg-descr (contents, props changed) head/java/bootstrap-openjdk/pkg-message (contents, props changed) head/java/bootstrap-openjdk/pkg-plist (contents, props changed) Modified: head/java/Makefile head/java/openjdk6/Makefile Modified: head/java/Makefile ============================================================================== --- head/java/Makefile Thu Oct 11 22:36:17 2012 (r305744) +++ head/java/Makefile Fri Oct 12 00:42:31 2012 (r305745) @@ -6,6 +6,7 @@ SUBDIR += avis SUBDIR += berkeley-db SUBDIR += bluej + SUBDIR += bootstrap-openjdk SUBDIR += bouncycastle SUBDIR += cacao SUBDIR += castor Added: head/java/bootstrap-openjdk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/bootstrap-openjdk/Makefile Fri Oct 12 00:42:31 2012 (r305745) @@ -0,0 +1,58 @@ +# $FreeBSD$ + +PORTNAME= ${JDK_NAME} +PORTVERSION= ${DISTVERSION_${ARCH}} +CATEGORIES= java devel +MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= jkim +PKGNAMEPREFIX= bootstrap- +DISTNAME= ${JDK_PORT}-${ARCH}-${PORTVERSION} + +MAINTAINER= jkim@FreeBSD.org +COMMENT= Oracle's Java 6 virtual machine release under the GPL v2 + +LICENSE= GPLv2 + +RUN_DEPENDS= ${LOCALBASE}/share/java/zi:${PORTSDIR}/java/java-zoneinfo + +ONLY_FOR_ARCH= amd64 i386 + +DISTINFO_FILE= ${.CURDIR}/distinfo.${ARCH} +DISTVERSION_amd64= r305682 +DISTVERSION_i386= r305682 + +JDK_NAME= openjdk +JDK_PORT= openjdk6 +JDK_ROOT= bootstrap-${JDK_NAME} + +NO_BUILD= yes +PLIST_SUB= ARCH=${ARCH} JDK_NAME=${JDK_NAME} JDK_ROOT=${JDK_ROOT} +USE_XZ= yes +WRKSRC= ${WRKDIR}/${JDK_ROOT} + +INSTALLDIR= ${PREFIX}/${JDK_ROOT} +JDK_BINS= bin/* jre/bin/* jre/lib/${ARCH}/jexec + +.include + +.if ${OSVERSION} >= 800105 +RUN_DEPENDS+= ${LOCALBASE}/lib/compat/libz.so.4:${PORTSDIR}/misc/compat7x +.endif + +.if ${ARCH} == "i386" +PLIST_SUB+= CLIENTVM="" +.else +PLIST_SUB+= CLIENTVM="@comment " +.endif + +do-install: + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${INSTALLDIR} + @cd ${INSTALLDIR} && ${CHOWN} ${BINOWN}:${BINGRP} ${JDK_BINS} + @cd ${INSTALLDIR} && ${CHMOD} ${BINMODE} ${JDK_BINS} + @${CAT} ${PKGMESSAGE} + +update: + @${MAKE} -f ${.CURDIR}/Makefile.update \ + JDK_NAME=${JDK_NAME} JDK_PORT=${JDK_PORT} JDK_ROOT=${JDK_ROOT} + +.include Added: head/java/bootstrap-openjdk/Makefile.update ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/bootstrap-openjdk/Makefile.update Fri Oct 12 00:42:31 2012 (r305745) @@ -0,0 +1,83 @@ +# $FreeBSD$ + +JDK_NAME?= openjdk +JDK_PORT?= openjdk6 +JDK_ROOT?= bootstrap-${JDK_NAME} +TARGET_OS?= 7 + +.if !defined(PORTSDIR) +.if exists(${.CURDIR}/../${JDK_PORT}/Makefile) +PORTSDIR= ${.CURDIR}/../.. +.else +PORTSDIR= /usr/ports +.endif +.endif + +LOCALBASE?= /usr/local + +.include "${PORTSDIR}/Mk/bsd.commands.mk" + +JDK_EXCLUDE?= demo man sample src.zip +JDK_PORTDIR!= ${REALPATH} ${PORTSDIR}/java/${JDK_PORT} +JDK_IMAGEDIR?= ${JDK_PORTDIR}/work/build/bsd-${ARCH:S/i386/i586/}/j2sdk-image + +GET_REVISION= ${LOCALBASE}/bin/svnversion ${JDK_PORTDIR} +TAR?= /usr/bin/tar + +ARCH!= ${UNAME} -p +BUILD_OS!= ${UNAME} -r | ${SED} -e 's/\..*//' +PORTREVISION!= ${GET_REVISION} 2>/dev/null || ${TRUE} + +DISTDIR?= ${.CURDIR} +DISTFILE= ${JDK_PORT}-${ARCH}-r${PORTREVISION}.tar.xz +DISTINFO_FILE= ${.CURDIR}/distinfo.${ARCH} +MAKEFILE= ${.CURDIR}/Makefile + +TAR_EXCLUDE= +.if !empty(JDK_EXCLUDE) +.for i in ${JDK_EXCLUDE} +TAR_EXCLUDE+= --exclude ${i} +.endfor +.endif + +all: + @${ECHO} "" + @${ECHO} "==============================================================" + @${ECHO} "" +.if ${BUILD_OS} > ${TARGET_OS} + @${ECHO} "We need FreeBSD ${TARGET_OS} but you seem to have ${BUILD_OS}." + @${ECHO} "" + @${ECHO} "==============================================================" + @${ECHO} "" + @${FALSE} +.endif + @${ECHO} "Building ${DISTFILE}...." + @${ECHO} "" + @${ECHO} "Started at "`${SETENV} LANG=C date -u`"." + @${ECHO} "" + @${ECHO} "==============================================================" + @${ECHO} "" +.if !defined(NO_BUILD) + @cd "${JDK_PORTDIR}" && ${MAKE} BATCH=yes +.endif + @cd "${JDK_IMAGEDIR}" && \ + ${FIND} . \! -type d | ${SORT} | \ + ${TAR} -c -f - -T - -s '|^\./|${JDK_ROOT}/|' ${TAR_EXCLUDE} | \ + ${XZ_CMD} -9 -c > "${DISTDIR}/${DISTFILE}" + @${SED} -i.bak \ + 's/^DISTVERSION_${ARCH}=.*/DISTVERSION_${ARCH}= r${PORTREVISION}/' \ + "${MAKEFILE}" + @${MAKE} -f "${MAKEFILE}" makesum DISTDIR="${DISTDIR}" \ + DISTINFO_FILE="${DISTINFO_FILE}" + @${ECHO} "" + @${ECHO} "==============================================================" + @${ECHO} "" + @${ECHO} "${DISTFILE} was built successfully!" + @${ECHO} "" + @${ECHO} "Finished at "`${SETENV} LANG=C date -u`"." + @${ECHO} "" + @${ECHO} "You may clean up the build directory if everything looks okay," + @${ECHO} "e.g., 'rm -fr ${JDK_PORTDIR}/work'." + @${ECHO} "" + @${ECHO} "==============================================================" + @${ECHO} "" Added: head/java/bootstrap-openjdk/distinfo.amd64 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/bootstrap-openjdk/distinfo.amd64 Fri Oct 12 00:42:31 2012 (r305745) @@ -0,0 +1,2 @@ +SHA256 (openjdk6-amd64-r305682.tar.xz) = 4a9300f92669608fad6a0d763003fe4a3bc5c11875a265040d99dc78b09503b4 +SIZE (openjdk6-amd64-r305682.tar.xz) = 25168044 Added: head/java/bootstrap-openjdk/distinfo.i386 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/bootstrap-openjdk/distinfo.i386 Fri Oct 12 00:42:31 2012 (r305745) @@ -0,0 +1,2 @@ +SHA256 (openjdk6-i386-r305682.tar.xz) = 0fa7277c89007e5ce265494a94881f80c6d87cc73ff6b42c1f46fce83b08416d +SIZE (openjdk6-i386-r305682.tar.xz) = 25470632 Added: head/java/bootstrap-openjdk/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/bootstrap-openjdk/pkg-descr Fri Oct 12 00:42:31 2012 (r305745) @@ -0,0 +1,7 @@ +OpenJDK is an open-source implementation of the Java Platform, Standard Edition. + +Much of the OpenJDK code is licensed under the GPL version 2 with the +Classpath exception. The Java Hotspot virtual machine source code is +licensed under the GPL version 2 only. + +WWW: http://openjdk.java.net/ Added: head/java/bootstrap-openjdk/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/bootstrap-openjdk/pkg-message Fri Oct 12 00:42:31 2012 (r305745) @@ -0,0 +1,19 @@ +====================================================================== + +WARNING: This port only exists for bootstrapping java/openjdk[67]. +You are advised to remove this port as soon as a stable JDK is built. + +This OpenJDK implementation requires fdescfs(5) mounted on /dev/fd and +procfs(5) mounted on /proc. + +If you have not done it yet, please do the following: + + mount -t fdescfs fdesc /dev/fd + mount -t procfs proc /proc + +To make it permanent, you need the following lines in /etc/fstab: + + fdesc /dev/fd fdescfs rw 0 0 + proc /proc procfs rw 0 0 + +====================================================================== Added: head/java/bootstrap-openjdk/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/bootstrap-openjdk/pkg-plist Fri Oct 12 00:42:31 2012 (r305745) @@ -0,0 +1,181 @@ +%%JDK_ROOT%%/ASSEMBLY_EXCEPTION +%%JDK_ROOT%%/LICENSE +%%JDK_ROOT%%/THIRD_PARTY_README +%%JDK_ROOT%%/bin/appletviewer +%%JDK_ROOT%%/bin/apt +%%JDK_ROOT%%/bin/extcheck +%%JDK_ROOT%%/bin/idlj +%%JDK_ROOT%%/bin/jar +%%JDK_ROOT%%/bin/jarsigner +%%JDK_ROOT%%/bin/java +%%JDK_ROOT%%/bin/javac +%%JDK_ROOT%%/bin/javadoc +%%JDK_ROOT%%/bin/javah +%%JDK_ROOT%%/bin/javap +%%JDK_ROOT%%/bin/jconsole +%%JDK_ROOT%%/bin/jdb +%%JDK_ROOT%%/bin/jhat +%%JDK_ROOT%%/bin/jinfo +%%JDK_ROOT%%/bin/jmap +%%JDK_ROOT%%/bin/jps +%%JDK_ROOT%%/bin/jrunscript +%%JDK_ROOT%%/bin/jsadebugd +%%JDK_ROOT%%/bin/jstack +%%JDK_ROOT%%/bin/jstat +%%JDK_ROOT%%/bin/jstatd +%%JDK_ROOT%%/bin/keytool +%%JDK_ROOT%%/bin/native2ascii +%%JDK_ROOT%%/bin/orbd +%%JDK_ROOT%%/bin/pack200 +%%JDK_ROOT%%/bin/policytool +%%JDK_ROOT%%/bin/rmic +%%JDK_ROOT%%/bin/rmid +%%JDK_ROOT%%/bin/rmiregistry +%%JDK_ROOT%%/bin/schemagen +%%JDK_ROOT%%/bin/serialver +%%JDK_ROOT%%/bin/servertool +%%JDK_ROOT%%/bin/tnameserv +%%JDK_ROOT%%/bin/unpack200 +%%JDK_ROOT%%/bin/wsgen +%%JDK_ROOT%%/bin/wsimport +%%JDK_ROOT%%/bin/xjc +%%JDK_ROOT%%/include/classfile_constants.h +%%JDK_ROOT%%/include/freebsd/jawt_md.h +%%JDK_ROOT%%/include/freebsd/jni_md.h +%%JDK_ROOT%%/include/jawt.h +%%JDK_ROOT%%/include/jdwpTransport.h +%%JDK_ROOT%%/include/jni.h +%%JDK_ROOT%%/include/jvmti.h +%%JDK_ROOT%%/include/jvmticmlr.h +%%JDK_ROOT%%/jre/ASSEMBLY_EXCEPTION +%%JDK_ROOT%%/jre/LICENSE +%%JDK_ROOT%%/jre/THIRD_PARTY_README +%%JDK_ROOT%%/jre/bin/java +%%JDK_ROOT%%/jre/bin/keytool +%%JDK_ROOT%%/jre/bin/orbd +%%JDK_ROOT%%/jre/bin/pack200 +%%JDK_ROOT%%/jre/bin/policytool +%%JDK_ROOT%%/jre/bin/rmid +%%JDK_ROOT%%/jre/bin/rmiregistry +%%JDK_ROOT%%/jre/bin/servertool +%%JDK_ROOT%%/jre/bin/tnameserv +%%JDK_ROOT%%/jre/bin/unpack200 +%%CLIENTVM%%%%JDK_ROOT%%/jre/lib/%%ARCH%%/client/Xusage.txt +%%CLIENTVM%%%%JDK_ROOT%%/jre/lib/%%ARCH%%/client/libjsig.so +%%CLIENTVM%%%%JDK_ROOT%%/jre/lib/%%ARCH%%/client/libjvm.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/headless/libmawt.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/jexec +%%JDK_ROOT%%/jre/lib/%%ARCH%%/jvm.cfg +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libattach.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libawt.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libdt_socket.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libfontmanager.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libhprof.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libinstrument.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libj2gss.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libj2pcsc.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libj2pkcs11.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjaas_unix.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjava.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjava_crw_demo.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjawt.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjdwp.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjli.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjpeg.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjsig.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libjsound.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/liblcms.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libmanagement.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libmlib_image.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libnet.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libnio.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libnpt.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/librmi.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libsaproc.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libsplashscreen.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libunpack.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libverify.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/libzip.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/native_threads/libhpi.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/server/Xusage.txt +%%JDK_ROOT%%/jre/lib/%%ARCH%%/server/libjsig.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/server/libjvm.so +%%JDK_ROOT%%/jre/lib/%%ARCH%%/xawt/libmawt.so +%%JDK_ROOT%%/jre/lib/calendars.properties +%%JDK_ROOT%%/jre/lib/charsets.jar +%%JDK_ROOT%%/jre/lib/classlist +%%JDK_ROOT%%/jre/lib/cmm/CIEXYZ.pf +%%JDK_ROOT%%/jre/lib/cmm/GRAY.pf +%%JDK_ROOT%%/jre/lib/cmm/LINEAR_RGB.pf +%%JDK_ROOT%%/jre/lib/cmm/PYCC.pf +%%JDK_ROOT%%/jre/lib/cmm/sRGB.pf +%%JDK_ROOT%%/jre/lib/content-types.properties +%%JDK_ROOT%%/jre/lib/currency.data +%%JDK_ROOT%%/jre/lib/ext/dnsns.jar +%%JDK_ROOT%%/jre/lib/ext/localedata.jar +%%JDK_ROOT%%/jre/lib/ext/meta-index +%%JDK_ROOT%%/jre/lib/ext/sunjce_provider.jar +%%JDK_ROOT%%/jre/lib/ext/sunpkcs11.jar +%%JDK_ROOT%%/jre/lib/flavormap.properties +%%JDK_ROOT%%/jre/lib/fontconfig.bfc +%%JDK_ROOT%%/jre/lib/fontconfig.properties.src +%%JDK_ROOT%%/jre/lib/im/indicim.jar +%%JDK_ROOT%%/jre/lib/im/thaiim.jar +%%JDK_ROOT%%/jre/lib/images/cursors/cursors.properties +%%JDK_ROOT%%/jre/lib/images/cursors/invalid32x32.gif +%%JDK_ROOT%%/jre/lib/images/cursors/motif_CopyDrop32x32.gif +%%JDK_ROOT%%/jre/lib/images/cursors/motif_CopyNoDrop32x32.gif +%%JDK_ROOT%%/jre/lib/images/cursors/motif_LinkDrop32x32.gif +%%JDK_ROOT%%/jre/lib/images/cursors/motif_LinkNoDrop32x32.gif +%%JDK_ROOT%%/jre/lib/images/cursors/motif_MoveDrop32x32.gif +%%JDK_ROOT%%/jre/lib/images/cursors/motif_MoveNoDrop32x32.gif +%%JDK_ROOT%%/jre/lib/jce.jar +%%JDK_ROOT%%/jre/lib/jsse.jar +%%JDK_ROOT%%/jre/lib/jvm.hprof.txt +%%JDK_ROOT%%/jre/lib/logging.properties +%%JDK_ROOT%%/jre/lib/management-agent.jar +%%JDK_ROOT%%/jre/lib/management/jmxremote.access +%%JDK_ROOT%%/jre/lib/management/jmxremote.password.template +%%JDK_ROOT%%/jre/lib/management/management.properties +%%JDK_ROOT%%/jre/lib/management/snmp.acl.template +%%JDK_ROOT%%/jre/lib/meta-index +%%JDK_ROOT%%/jre/lib/net.properties +%%JDK_ROOT%%/jre/lib/psfont.properties.ja +%%JDK_ROOT%%/jre/lib/psfontj2d.properties +%%JDK_ROOT%%/jre/lib/resources.jar +%%JDK_ROOT%%/jre/lib/rt.jar +%%JDK_ROOT%%/jre/lib/security/US_export_policy.jar +%%JDK_ROOT%%/jre/lib/security/cacerts +%%JDK_ROOT%%/jre/lib/security/java.policy +%%JDK_ROOT%%/jre/lib/security/java.security +%%JDK_ROOT%%/jre/lib/security/local_policy.jar +%%JDK_ROOT%%/jre/lib/sound.properties +%%JDK_ROOT%%/jre/lib/zi +%%JDK_ROOT%%/lib/ct.sym +%%JDK_ROOT%%/lib/dt.jar +%%JDK_ROOT%%/lib/ir.idl +%%JDK_ROOT%%/lib/jconsole.jar +%%JDK_ROOT%%/lib/orb.idl +%%JDK_ROOT%%/lib/sa-jdi.jar +%%JDK_ROOT%%/lib/tools.jar +@dirrm %%JDK_ROOT%%/lib +@dirrm %%JDK_ROOT%%/jre/lib/security +@dirrm %%JDK_ROOT%%/jre/lib/management +@dirrm %%JDK_ROOT%%/jre/lib/images/cursors +@dirrm %%JDK_ROOT%%/jre/lib/images +@dirrm %%JDK_ROOT%%/jre/lib/im +@dirrm %%JDK_ROOT%%/jre/lib/ext +@dirrm %%JDK_ROOT%%/jre/lib/cmm +@dirrm %%JDK_ROOT%%/jre/lib/%%ARCH%%/xawt +@dirrm %%JDK_ROOT%%/jre/lib/%%ARCH%%/server +@dirrm %%JDK_ROOT%%/jre/lib/%%ARCH%%/native_threads +@dirrm %%JDK_ROOT%%/jre/lib/%%ARCH%%/headless +%%CLIENTVM%%@dirrm %%JDK_ROOT%%/jre/lib/%%ARCH%%/client +@dirrm %%JDK_ROOT%%/jre/lib/%%ARCH%% +@dirrm %%JDK_ROOT%%/jre/lib +@dirrm %%JDK_ROOT%%/jre/bin +@dirrm %%JDK_ROOT%%/jre +@dirrm %%JDK_ROOT%%/include/freebsd +@dirrm %%JDK_ROOT%%/include +@dirrm %%JDK_ROOT%%/bin +@dirrm %%JDK_ROOT%% Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Thu Oct 11 22:36:17 2012 (r305744) +++ head/java/openjdk6/Makefile Fri Oct 12 00:42:31 2012 (r305745) @@ -99,8 +99,7 @@ NOPRECIOUSMAKEVARS= yes ONLY_FOR_ARCHS= amd64 i386 BOOTSTRAP_JDKS= ${LOCALBASE}/openjdk6 \ - ${LOCALBASE}/jdk1.6.0 \ - ${LOCALBASE}/diablo-jdk1.6.0 + ${LOCALBASE}/bootstrap-openjdk # do we have valid native jdk installed? .for CJDK in ${BOOTSTRAP_JDKS} @@ -111,8 +110,8 @@ BOOTSTRAPJDKDIR= ${CJDK} # 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 MAKE_ENV= LANG=C LC_ALL=C \ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 00:53:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CE0B6A1; Fri, 12 Oct 2012 00:53:49 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 239108FC12; Fri, 12 Oct 2012 00:53:49 +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 q9C0rmT3013575; Fri, 12 Oct 2012 00:53:48 GMT (envelope-from brooks@svn.freebsd.org) Received: (from brooks@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C0rm0I013571; Fri, 12 Oct 2012 00:53:48 GMT (envelope-from brooks@svn.freebsd.org) Message-Id: <201210120053.q9C0rm0I013571@svn.freebsd.org> From: Brooks Davis Date: Fri, 12 Oct 2012 00:53:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305746 - in head/lang/dragonegg-devel46: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 00:53:49 -0000 Author: brooks Date: Fri Oct 12 00:53:48 2012 New Revision: 305746 URL: http://svn.freebsd.org/changeset/ports/305746 Log: Add a port of the development version of DragonEgg. DragonEgg is a gcc plugin that replaces GCC's optimizers and code generators with those from the LLVM project. It works with gcc-4.5 or gcc-4.6, can target the x86-32/x86-64 and ARM processor families. It fully supports Ada, C, C++ and Fortran. It has partial support for Go, Java, Obj-C and Obj-C++. Feature safe: yes Added: head/lang/dragonegg-devel46/ head/lang/dragonegg-devel46/Makefile (contents, props changed) head/lang/dragonegg-devel46/distinfo (contents, props changed) head/lang/dragonegg-devel46/files/ head/lang/dragonegg-devel46/files/patch-README (contents, props changed) head/lang/dragonegg-devel46/pkg-descr (contents, props changed) Added: head/lang/dragonegg-devel46/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/dragonegg-devel46/Makefile Fri Oct 12 00:53:48 2012 (r305746) @@ -0,0 +1,74 @@ +# $FreeBSD$ +# + +PORTNAME= dragonegg46 +PORTVERSION= 3.2.r${SVN_REV} +CATEGORIES= lang devel +MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= brooks +PKGNAMESUFFIX= -devel + +MAINTAINER= brooks@FreeBSD.org +COMMENT= GCC plugin to use the LLVM backend + +# XXX: not entierly sure if llvm-devel is a depend +BUILD_DEPENDS+= llvm-devel>=${PORTVERSION}:${PORTSDIR}/devel/llvm-devel +RUN_DEPENDS+= ${CC}:${PORTSDIR}/lang/gcc \ + llvm-devel>=${PORTVERSION}:${PORTSDIR}/devel/llvm-devel + +OPTIONS_DEFINE= DOCS + +USE_BZIP2= yes +USE_GCC= 4.6 +USE_GMAKE= yes +USE_LDCONFIG= yes +MAKE_JOBS_SAFE= yes + +DRAGONEGG_RELEASE= ${PORTVERSION:C/\.r[0-9]*//} +DRAGONEGG_SO= dragonegg-${DRAGONEGG_RELEASE}.so +DRAGONEGG_PATH= ${GCC_LIBDIR}/${DRAGONEGG_SO} +GCC_LIBDIR= lib/${CC} + +ALL_TARGET= +MAKE_ARGS= GCC=${LOCALBASE}/bin/${CC} + +.include "${.CURDIR}/../../devel/llvm-devel/Makefile.svn_rev" + +PLIST_FILES= ${GCC_LIBDIR}/${DRAGONEGG_SO} + +.include + +.if ${PORT_OPTIONS:MDOCS} +PORTDOCS= README +.endif + +.if defined(BOOTSTRAP) || defined(SVN_FETCH) +FETCH_DEPENDS+= svn:${PORTSDIR}/devel/subversion + +do-fetch: + ${MKDIR} ${WRKDIR} + svn export -r ${SVN_REV} \ + http://llvm.org/svn/llvm-project/dragonegg/trunk \ + ${WRKDIR}/${DISTNAME} + cd ${WRKDIR}; tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} +.if ${USER} == brooks + scp ${DISTDIR}/${DISTNAME}.tar.bz2 \ + freefall.freebsd.org:public_distfiles/ +.endif +.endif + +post-patch: + ${REINPLACE_CMD} -e 's/%%CC%%/${CC}/' \ + -e 's#%%PLUGINPATH%%#${LOCALBASE}/${DRAGONEGG_PATH}#' \ + -e 's/arg-dragonegg/arg-dragonegg-${DRAGONEGG_RELEASE}/' \ + ${WRKSRC}/README + +do-install: + ${INSTALL_LIB} ${WRKSRC}/dragonegg.so \ + ${LOCALBASE}/${GCC_LIBDIR}/${DRAGONEGG_SO} +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +.include Added: head/lang/dragonegg-devel46/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/dragonegg-devel46/distinfo Fri Oct 12 00:53:48 2012 (r305746) @@ -0,0 +1,2 @@ +SHA256 (dragonegg46-3.2.r164604.tar.bz2) = 6cc9cf2056e95883571ed67b454589e7655a3c219e07b27249252fc40a4737f5 +SIZE (dragonegg46-3.2.r164604.tar.bz2) = 602853 Added: head/lang/dragonegg-devel46/files/patch-README ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/dragonegg-devel46/files/patch-README Fri Oct 12 00:53:48 2012 (r305746) @@ -0,0 +1,90 @@ + +$FreeBSD$ + +--- README.orig ++++ README +@@ -1,82 +1,15 @@ + ---------------------- +-- BUILD INSTRUCTIONS - +----------------------- +- +-Prerequisites +-------------- +- +-The dragonegg plugin works with gcc 4.5, gcc 4.6 or gcc-4.7, so you will need to +-have one of these installed. Many linux distributions ship one or both of them, +-perhaps as an addon package; binaries can be downloaded for most platforms. +-Otherwise you can always build gcc yourself. Plugin support (--enable-plugin) +-needs to be enabled in gcc, but since it is enabled by default on most platforms +-you usually won't need to do this explicitly. +- +-Step 0: Build and install llvm +------------------------------- +- +-I'm assuming anyone reading this knows how to build and install llvm. The +-version of llvm must match the version of the plugin, so if you are building +-dragonegg-3.0 then you should use llvm-3.0, while if you are building the +-development version of dragonegg then use the development version of llvm. +- +- +-Step 1: Build the plugin +------------------------- +- +-Build the plugin like this: +- GCC=PATH_TO_INSTALLED_GCC make +-This command should be executed in the directory containing this README. +- +-The plugin needs to know about the version of gcc it will be loaded into, which +-is why you need to specify your version of gcc 4.5/4.6 via the GCC variable like +-this. For example, if the version of gcc you want to load the plugin into is +-/usr/local/gcc-4.6/bin/gcc, then you should do +- GCC=/usr/local/gcc-4.6/bin/gcc make +-If you don't set the GCC variable then by default "gcc" is used, so you +-can just do +- make +-if you plan to use the plugin with whatever version of gcc is in your path. +- +-The plugin makes use of various gcc headers that are usually shipped with gcc. +-However some linux distributions, for example debian and ubuntu, have split the +-headers out of gcc into a separate package. So if you get errors along the +-lines of "config.h not found", check whether gcc headers like "config.h" and +-"tree.h" are installed. On debian the package containing headers is called +-gcc-4.5-plugin-dev or gcc-4.6-plugin-dev. +- +-The plugin is compiled using the system compiler, and not with the gcc specified +-in the GCC variable (which wouldn't work if it is a cross compiler). If you +-want to also compile the plugin with your copy of gcc 4.5/4.6, you can do: +- CXX=PATH_TO_INSTALLED_GCC GCC=PATH_TO_INSTALLED_GCC make +- +-The build system runs the "llvm-config" program (which should be in your path if +-you installed llvm properly in step 0) to find out about the copy of LLVM you +-installed, so there is no need to tell the build system explicitly about LLVM. +-If llvm-config is not in your path then you can specify where to find it using +-the LLVM_CONFIG variable. +- +-The end result of the build is a shared library, dragonegg.so. +- +-If you want the dragonegg plugin to be able to load LLVM plugins then pass +-ENABLE_LLVM_PLUGINS=1 to make. +- +- +----------------------- + - USAGE INSTRUCTIONS - + ---------------------- + +-Run gcc as usual, but pass -fplugin=./dragonegg.so as an extra command line +-argument. Make sure you use the gcc you built dragonegg against (see step 1)! ++Run %%CC%% as usual, but pass -fplugin=%%PLUGINPATH%% ++as an extra command line argument. + + + ------------------ + - USEFUL OPTIONS - + ------------------ + +-If you renamed dragonegg.so to something else, for example llvm.so, replace +--fplugin-arg-dragonegg with -fplugin-arg-llvm in the options below. +- + -fplugin-arg-dragonegg-emit-ir + -flto + Output LLVM IR rather than target assembler. You need to use -S with this, Added: head/lang/dragonegg-devel46/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/dragonegg-devel46/pkg-descr Fri Oct 12 00:53:48 2012 (r305746) @@ -0,0 +1,8 @@ +DragonEgg is a gcc plugin that replaces GCC's optimizers and code +generators with those from the LLVM project. It works with gcc-4.5 +or gcc-4.6, can target the x86-32/x86-64 and ARM processor families, +and has been successfully used on the Darwin, FreeBSD, KFreeBSD, +Linux and OpenBSD platforms. It fully supports Ada, C, C++ and +Fortran. It has partial support for Go, Java, Obj-C and Obj-C++. + +WWW: http://dragonegg.llvm.org/ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 01:04:31 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 53A81B1F; Fri, 12 Oct 2012 01:04:31 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3C9628FC19; Fri, 12 Oct 2012 01:04:31 +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 q9C14VX3014868; Fri, 12 Oct 2012 01:04:31 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C14V6Z014866; Fri, 12 Oct 2012 01:04:31 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210120104.q9C14V6Z014866@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 01:04:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305747 - head/lang/pypy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 01:04:31 -0000 Author: jhale Date: Fri Oct 12 01:04:30 2012 New Revision: 305747 URL: http://svn.freebsd.org/changeset/ports/305747 Log: - Remove quotes from options string While here: - Trim Makefile header PR: ports/172603 Submitted by: David Naylor (maintainer) Approved by: makc, avilla (mentors, implicit) Reported by: Riccardo Torrini Feature safe: yes Modified: head/lang/pypy/Makefile Modified: head/lang/pypy/Makefile ============================================================================== --- head/lang/pypy/Makefile Fri Oct 12 00:53:48 2012 (r305746) +++ head/lang/pypy/Makefile Fri Oct 12 01:04:30 2012 (r305747) @@ -1,9 +1,5 @@ -# New ports collection Makefile for: pypy -# Date created: 2011/05/17 -# Whom: David Naylor -# +# Created by: David Naylor # $FreeBSD$ -# PORTNAME= pypy DISTVERSION= 1.9 @@ -23,7 +19,7 @@ LIB_DEPENDS= expat:${PORTSDIR}/textproc/ ffi:${PORTSDIR}/devel/libffi OPTIONS_DEFINE= SANDBOX -SANDBOX_DESC= "Translate a sandboxed pypy" +SANDBOX_DESC= Translate a sandboxed pypy BUILD_WRKSRC= ${WRKDIR} USE_BZIP2= yes From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 02:08:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 014C6A33; Fri, 12 Oct 2012 02:08:59 +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 DD6078FC17; Fri, 12 Oct 2012 02:08: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 q9C28wnL023284; Fri, 12 Oct 2012 02:08:58 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C28w4G023279; Fri, 12 Oct 2012 02:08:58 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210120208.q9C28w4G023279@svn.freebsd.org> From: Bryan Drewery Date: Fri, 12 Oct 2012 02:08:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305748 - head/security/pam_google_authenticator X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 02:08:59 -0000 Author: bdrewery Date: Fri Oct 12 02:08:58 2012 New Revision: 305748 URL: http://svn.freebsd.org/changeset/ports/305748 Log: - Update to 20120831 snapshot [1] - Trim header PR: ports/171201 [1] Submitted by: dumbbell [1] Approved by: Jui-Nan Lin (maintainer) [1] Feature safe: yes Modified: head/security/pam_google_authenticator/Makefile head/security/pam_google_authenticator/distinfo Modified: head/security/pam_google_authenticator/Makefile ============================================================================== --- head/security/pam_google_authenticator/Makefile Fri Oct 12 01:04:30 2012 (r305747) +++ head/security/pam_google_authenticator/Makefile Fri Oct 12 02:08:58 2012 (r305748) @@ -1,13 +1,8 @@ -# New ports collection makefile for: pam_google_authenticator -# Date created: 19 May 2011 -# Whom: Jui-Nan Lin -# +# Created by: Jui-Nan Lin # $FreeBSD$ -# PORTNAME= pam_google_authenticator -PORTVERSION= 20120119 -PORTREVISION= 2 +PORTVERSION= 20120831 CATEGORIES= security MASTER_SITES= LOCAL/dumbbell DISTNAME= google-authenticator-${PORTVERSION} Modified: head/security/pam_google_authenticator/distinfo ============================================================================== --- head/security/pam_google_authenticator/distinfo Fri Oct 12 01:04:30 2012 (r305747) +++ head/security/pam_google_authenticator/distinfo Fri Oct 12 02:08:58 2012 (r305748) @@ -1,2 +1,2 @@ -SHA256 (google-authenticator-20120119.tar.gz) = 5626086d46a68525975cbb3f06553ac0120f464f205bfbe8979a13f16d821cf5 -SIZE (google-authenticator-20120119.tar.gz) = 36795 +SHA256 (google-authenticator-20120831.tar.gz) = d305497f97c2f8c1537850553e6d2630d688689f3323427fac30d4857185ff34 +SIZE (google-authenticator-20120831.tar.gz) = 37160 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 02:50:37 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D96B58B8; Fri, 12 Oct 2012 02:50:37 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C166D8FC1A; Fri, 12 Oct 2012 02:50: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 q9C2obAx028434; Fri, 12 Oct 2012 02:50:37 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C2oboj028431; Fri, 12 Oct 2012 02:50:37 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210120250.q9C2oboj028431@svn.freebsd.org> From: Eitan Adler Date: Fri, 12 Oct 2012 02:50:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305749 - head/textproc/igor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 02:50:37 -0000 Author: eadler Date: Fri Oct 12 02:50:37 2012 New Revision: 305749 URL: http://svn.freebsd.org/changeset/ports/305749 Log: Update to 1.330 Changes: Major improvements include DocBook XML support and the ability to use additional spelling dictionaries. Numerous bug fixes and improvements. PR: ports/172617 Submitted by: wblock (maintainer) Feature safe: yes Modified: head/textproc/igor/Makefile head/textproc/igor/distinfo Modified: head/textproc/igor/Makefile ============================================================================== --- head/textproc/igor/Makefile Fri Oct 12 02:08:58 2012 (r305748) +++ head/textproc/igor/Makefile Fri Oct 12 02:50:37 2012 (r305749) @@ -1,12 +1,7 @@ -# New ports collection makefile for: igor -# Date created: 2012-02-03 -# Whom: gjb@freebsd.org -# # $FreeBSD$ -# PORTNAME= igor -PORTVERSION= 1.309 +PORTVERSION= 1.330 CATEGORIES= textproc MASTER_SITES= http://www.glenbarber.us/ports/${CATEGORIES}/${PORTNAME}/ Modified: head/textproc/igor/distinfo ============================================================================== --- head/textproc/igor/distinfo Fri Oct 12 02:08:58 2012 (r305748) +++ head/textproc/igor/distinfo Fri Oct 12 02:50:37 2012 (r305749) @@ -1,2 +1,2 @@ -SHA256 (igor-1.309.tar.gz) = 89e085c241b87c837a7f5704be5436187f06e86b15dbd67c52ae87de03d2776d -SIZE (igor-1.309.tar.gz) = 18985 +SHA256 (igor-1.330.tar.gz) = 30fc667aaa31d98dfc0f9f87959e448304b6dc3ea53dd81070e0481f6ae00024 +SIZE (igor-1.330.tar.gz) = 20379 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:03:07 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D2204EB3; Fri, 12 Oct 2012 06:03:07 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A097A8FC0A; Fri, 12 Oct 2012 06: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 q9C637sI050907; Fri, 12 Oct 2012 06:03:07 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C637i7050903; Fri, 12 Oct 2012 06:03:07 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210120603.q9C637i7050903@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 06:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305750 - head/converters/p5-WAP-wbxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:03:07 -0000 Author: jhale Date: Fri Oct 12 06:03:06 2012 New Revision: 305750 URL: http://svn.freebsd.org/changeset/ports/305750 Log: - Update to 1.13 [1] - Trim Makefile header PR: ports/168261 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: timur (maintainer timeout, 4.5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/converters/p5-WAP-wbxml/Makefile (contents, props changed) head/converters/p5-WAP-wbxml/distinfo (contents, props changed) head/converters/p5-WAP-wbxml/pkg-plist (contents, props changed) Modified: head/converters/p5-WAP-wbxml/Makefile ============================================================================== --- head/converters/p5-WAP-wbxml/Makefile Fri Oct 12 02:50:37 2012 (r305749) +++ head/converters/p5-WAP-wbxml/Makefile Fri Oct 12 06:03:06 2012 (r305750) @@ -1,12 +1,8 @@ -# New ports collection makefile for: converters/p5-WAP-wbxml -# Date created: 1 Aug 2006 -# Whom: Timur I. Bakeyev -# +# Created by: Timur I. Bakeyev # $FreeBSD$ -# PORTNAME= WAP-wbxml -PORTVERSION= 1.11 +PORTVERSION= 1.13 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/converters/p5-WAP-wbxml/distinfo ============================================================================== --- head/converters/p5-WAP-wbxml/distinfo Fri Oct 12 02:50:37 2012 (r305749) +++ head/converters/p5-WAP-wbxml/distinfo Fri Oct 12 06:03:06 2012 (r305750) @@ -1,2 +1,2 @@ -SHA256 (WAP-wbxml-1.11.tar.gz) = 16d56ee15b1b18b92b51db9491ac8467a2e925e3017c1cbcab503fc94e25d085 -SIZE (WAP-wbxml-1.11.tar.gz) = 29674 +SHA256 (WAP-wbxml-1.13.tar.gz) = e17d6e3fa3b5695b759cf07110483ba597f7a11fe8ea93de3c9b55b02b449552 +SIZE (WAP-wbxml-1.13.tar.gz) = 38257 Modified: head/converters/p5-WAP-wbxml/pkg-plist ============================================================================== --- head/converters/p5-WAP-wbxml/pkg-plist Fri Oct 12 02:50:37 2012 (r305749) +++ head/converters/p5-WAP-wbxml/pkg-plist Fri Oct 12 06:03:06 2012 (r305750) @@ -1,10 +1,14 @@ bin/wbxmlc %%SITE_PERL%%/WAP/wbxml.pm -%%SITE_PERL%%/WAP/wbxml/wap.wbrules.xml +%%SITE_PERL%%/WAP/wbxml/WbRules.pm +%%SITE_PERL%%/WAP/wbxml/activesync.wbrules.pl +%%SITE_PERL%%/WAP/wbxml/activesync.wbrules.xml +%%SITE_PERL%%/WAP/wbxml/syncml.wbrules.pl %%SITE_PERL%%/WAP/wbxml/syncml.wbrules.xml -%%SITE_PERL%%/WAP/wbxml/wv.wbrules.xml %%SITE_PERL%%/WAP/wbxml/wap.wbrules.pl -%%SITE_PERL%%/WAP/wbxml/WbRules.pm +%%SITE_PERL%%/WAP/wbxml/wap.wbrules.xml +%%SITE_PERL%%/WAP/wbxml/wv.wbrules.pl +%%SITE_PERL%%/WAP/wbxml/wv.wbrules.xml %%SITE_PERL%%/%%PERL_ARCH%%/auto/WAP/wbxml/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/WAP/wbxml @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WAP From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:08:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21A6BA3; Fri, 12 Oct 2012 06:08:25 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 002CC8FC1B; Fri, 12 Oct 2012 06:08:25 +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 q9C68OEt051594; Fri, 12 Oct 2012 06:08:24 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C68O7l051589; Fri, 12 Oct 2012 06:08:24 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210120608.q9C68O7l051589@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 06:08:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305751 - head/textproc/p5-Net-IDN-Encode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:08:25 -0000 Author: jhale Date: Fri Oct 12 06:08:24 2012 New Revision: 305751 URL: http://svn.freebsd.org/changeset/ports/305751 Log: - Update to 2.003 [1] - Trim Makefile header PR: ports/168285 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: timur (maintainer timeout, 4.5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/textproc/p5-Net-IDN-Encode/Makefile (contents, props changed) head/textproc/p5-Net-IDN-Encode/distinfo (contents, props changed) head/textproc/p5-Net-IDN-Encode/pkg-plist (contents, props changed) Modified: head/textproc/p5-Net-IDN-Encode/Makefile ============================================================================== --- head/textproc/p5-Net-IDN-Encode/Makefile Fri Oct 12 06:03:06 2012 (r305750) +++ head/textproc/p5-Net-IDN-Encode/Makefile Fri Oct 12 06:08:24 2012 (r305751) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Net-IDN-Encode -# Date created: 10 Dec 2010 -# Whom: Timur Bakeyev -# +# Created by: Timur Bakeyev # $FreeBSD$ -# PORTNAME= Net-IDN-Encode -PORTVERSION= 1.100 +PORTVERSION= 2.003 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -20,6 +16,8 @@ BUILD_DEPENDS:= ${RUN_DEPENDS} \ PERL_MODBUILD= yes -MAN3= Net::IDN::Encode.3 Net::IDN::Punycode.3 Net::IDN::Punycode::PP.3 +MAN3= Net::IDN::Encode.3 Net::IDN::Overview.3 Net::IDN::Punycode.3 \ + Net::IDN::Punycode::PP.3 Net::IDN::Standards.3 \ + Net::IDN::UTS46.3 Net::IDN::UTS46::_Mapping.3 .include Modified: head/textproc/p5-Net-IDN-Encode/distinfo ============================================================================== --- head/textproc/p5-Net-IDN-Encode/distinfo Fri Oct 12 06:03:06 2012 (r305750) +++ head/textproc/p5-Net-IDN-Encode/distinfo Fri Oct 12 06:08:24 2012 (r305751) @@ -1,2 +1,2 @@ -SHA256 (Net-IDN-Encode-1.100.tar.gz) = aecb018696db9f7a2b13a1fc57638bce99215450f5292a768b4290f7e55e87fe -SIZE (Net-IDN-Encode-1.100.tar.gz) = 23227 +SHA256 (Net-IDN-Encode-2.003.tar.gz) = fdf071307aae5f78372fa18c5b91103a030de3ed8b7af3460e3b833ef950119f +SIZE (Net-IDN-Encode-2.003.tar.gz) = 166681 Modified: head/textproc/p5-Net-IDN-Encode/pkg-plist ============================================================================== --- head/textproc/p5-Net-IDN-Encode/pkg-plist Fri Oct 12 06:03:06 2012 (r305750) +++ head/textproc/p5-Net-IDN-Encode/pkg-plist Fri Oct 12 06:08:24 2012 (r305751) @@ -1,11 +1,16 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/Encode.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/Overview.pod %%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/Punycode.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/Punycode/PP.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/Standards.pod +%%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/UTS46.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/UTS46/_Mapping.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/IDN/Punycode/Punycode.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/IDN/Punycode/Punycode.so @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/IDN/Punycode @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/IDN @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/UTS46 @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN/Punycode @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Net/IDN @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Net From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:11:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13D3A3CA; Fri, 12 Oct 2012 06:11:54 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D65048FC14; Fri, 12 Oct 2012 06:11:53 +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 q9C6BrCr052084; Fri, 12 Oct 2012 06:11:53 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C6Brdj052081; Fri, 12 Oct 2012 06:11:53 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210120611.q9C6Brdj052081@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 06:11:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305752 - head/converters/p5-Net-IDN-Nameprep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:11:54 -0000 Author: jhale Date: Fri Oct 12 06:11:53 2012 New Revision: 305752 URL: http://svn.freebsd.org/changeset/ports/305752 Log: - Update to 1.101 [1] - Fix COMMENT [1] - Trim Makefile header PR: ports/168260 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: timur (maintainer timeout, 4.5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/converters/p5-Net-IDN-Nameprep/Makefile (contents, props changed) head/converters/p5-Net-IDN-Nameprep/distinfo (contents, props changed) Modified: head/converters/p5-Net-IDN-Nameprep/Makefile ============================================================================== --- head/converters/p5-Net-IDN-Nameprep/Makefile Fri Oct 12 06:08:24 2012 (r305751) +++ head/converters/p5-Net-IDN-Nameprep/Makefile Fri Oct 12 06:11:53 2012 (r305752) @@ -1,18 +1,14 @@ -# New ports collection makefile for: p5-Net-IDN-Nameprep -# Date created: 10 Dec 2010 -# Whom: Timur Bakeyev -# +# Created by: Timur Bakeyev # $FreeBSD$ -# PORTNAME= Net-IDN-Nameprep -PORTVERSION= 1.100 +PORTVERSION= 1.101 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= timur@FreeBSD.org -COMMENT= normalization of domain names (Nameprep, RFC 3491) +COMMENT= Normalization of domain names (Nameprep, RFC 3491) RUN_DEPENDS= p5-Unicode-Stringprep>=0:${PORTSDIR}/converters/p5-Unicode-Stringprep BUILD_DEPENDS:= ${RUN_DEPENDS} \ Modified: head/converters/p5-Net-IDN-Nameprep/distinfo ============================================================================== --- head/converters/p5-Net-IDN-Nameprep/distinfo Fri Oct 12 06:08:24 2012 (r305751) +++ head/converters/p5-Net-IDN-Nameprep/distinfo Fri Oct 12 06:11:53 2012 (r305752) @@ -1,2 +1,2 @@ -SHA256 (Net-IDN-Nameprep-1.100.tar.gz) = 5d58aa05e09ff629493bcda2f25496d1980cf35673488c21ac1caa2607760d00 -SIZE (Net-IDN-Nameprep-1.100.tar.gz) = 14475 +SHA256 (Net-IDN-Nameprep-1.101.tar.gz) = 2861058143a8b26fb06b691ad289e3c6a0b0ae093f32769089f2a7c5fae4d4f8 +SIZE (Net-IDN-Nameprep-1.101.tar.gz) = 15063 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:14:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 543174E6; Fri, 12 Oct 2012 06:14:47 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3C0AC8FC0A; Fri, 12 Oct 2012 06:14:47 +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 q9C6Ellx052457; Fri, 12 Oct 2012 06:14:47 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C6ElsV052454; Fri, 12 Oct 2012 06:14:47 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210120614.q9C6ElsV052454@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 06:14:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305753 - head/converters/p5-Encode-Punycode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:14:47 -0000 Author: jhale Date: Fri Oct 12 06:14:46 2012 New Revision: 305753 URL: http://svn.freebsd.org/changeset/ports/305753 Log: - Update to 1.001 [1] - Trim Makefile header PR: ports/168259 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: timur (maintainer timeout, 4.5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/converters/p5-Encode-Punycode/Makefile (contents, props changed) head/converters/p5-Encode-Punycode/distinfo (contents, props changed) Modified: head/converters/p5-Encode-Punycode/Makefile ============================================================================== --- head/converters/p5-Encode-Punycode/Makefile Fri Oct 12 06:11:53 2012 (r305752) +++ head/converters/p5-Encode-Punycode/Makefile Fri Oct 12 06:14:46 2012 (r305753) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Encode-Punycode -# Date created: Dec 10, 2010 -# Whom: Timur Bakeyev -# +# Created by: Timur Bakeyev # $FreeBSD$ -# PORTNAME= Encode-Punycode -PORTVERSION= 1.000 +PORTVERSION= 1.001 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/converters/p5-Encode-Punycode/distinfo ============================================================================== --- head/converters/p5-Encode-Punycode/distinfo Fri Oct 12 06:11:53 2012 (r305752) +++ head/converters/p5-Encode-Punycode/distinfo Fri Oct 12 06:14:46 2012 (r305753) @@ -1,2 +1,2 @@ -SHA256 (Encode-Punycode-1.000.tar.gz) = 30ec948b33036232476b00e0f5d42441844a726c4438e3b9a787df55b3ecfd5f -SIZE (Encode-Punycode-1.000.tar.gz) = 13835 +SHA256 (Encode-Punycode-1.001.tar.gz) = a08dbc7bd32205e1f53e6bd1ee3e45bcc04809be2742fd0ce146b860d05a2fb7 +SIZE (Encode-Punycode-1.001.tar.gz) = 14576 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:37:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C28B9CFD; Fri, 12 Oct 2012 06:37:33 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AABF38FC0A; Fri, 12 Oct 2012 06:37:33 +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 q9C6bXJd055366; Fri, 12 Oct 2012 06:37:33 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C6bXvR055363; Fri, 12 Oct 2012 06:37:33 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210120637.q9C6bXvR055363@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 06:37:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305754 - head/devel/p5-boolean X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:37:33 -0000 Author: jhale Date: Fri Oct 12 06:37:33 2012 New Revision: 305754 URL: http://svn.freebsd.org/changeset/ports/305754 Log: - Update to 0.28 [1] - Trim Makefile header PR: ports/168270 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: timur (maintainer timeout, 4.5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/devel/p5-boolean/Makefile (contents, props changed) head/devel/p5-boolean/distinfo (contents, props changed) Modified: head/devel/p5-boolean/Makefile ============================================================================== --- head/devel/p5-boolean/Makefile Fri Oct 12 06:14:46 2012 (r305753) +++ head/devel/p5-boolean/Makefile Fri Oct 12 06:37:33 2012 (r305754) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-boolean -# Date created: 2009-02-23 -# Whom: Timur I. Bakeyev -# +# Created by: Timur I. Bakeyev # $FreeBSD$ -# PORTNAME= boolean -PORTVERSION= 0.23 +PORTVERSION= 0.28 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:INGY Modified: head/devel/p5-boolean/distinfo ============================================================================== --- head/devel/p5-boolean/distinfo Fri Oct 12 06:14:46 2012 (r305753) +++ head/devel/p5-boolean/distinfo Fri Oct 12 06:37:33 2012 (r305754) @@ -1,2 +1,2 @@ -SHA256 (boolean-0.23.tar.gz) = 22bdada78caa64d7ea5bbd3e2287c66d48839c61345892d6c5624065a6dc86cf -SIZE (boolean-0.23.tar.gz) = 21556 +SHA256 (boolean-0.28.tar.gz) = 2cde27c2eff1302738fd6061ffd1a4ac71b24f4944374fcc92f1b7550223453e +SIZE (boolean-0.28.tar.gz) = 31810 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:41:52 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 55B8AE3D; Fri, 12 Oct 2012 06:41:52 +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 3E5688FC08; Fri, 12 Oct 2012 06:41:52 +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 q9C6fqbj056081; Fri, 12 Oct 2012 06:41:52 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C6fqWL056079; Fri, 12 Oct 2012 06:41:52 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201210120641.q9C6fqWL056079@svn.freebsd.org> From: Jung-uk Kim Date: Fri, 12 Oct 2012 06:41:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305755 - head/java/bootstrap-openjdk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:41:52 -0000 Author: jkim Date: Fri Oct 12 06:41:51 2012 New Revision: 305755 URL: http://svn.freebsd.org/changeset/ports/305755 Log: Fix pkg-plist for i386. Feature safe: yes Modified: head/java/bootstrap-openjdk/pkg-plist Modified: head/java/bootstrap-openjdk/pkg-plist ============================================================================== --- head/java/bootstrap-openjdk/pkg-plist Fri Oct 12 06:37:33 2012 (r305754) +++ head/java/bootstrap-openjdk/pkg-plist Fri Oct 12 06:41:51 2012 (r305755) @@ -8,6 +8,7 @@ %%JDK_ROOT%%/bin/jar %%JDK_ROOT%%/bin/jarsigner %%JDK_ROOT%%/bin/java +%%CLIENTVM%%%%JDK_ROOT%%/bin/java-rmi.cgi %%JDK_ROOT%%/bin/javac %%JDK_ROOT%%/bin/javadoc %%JDK_ROOT%%/bin/javah From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:48:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03DB8F94; Fri, 12 Oct 2012 06:48:49 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C625D8FC0A; Fri, 12 Oct 2012 06:48: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 q9C6mmJK057041; Fri, 12 Oct 2012 06:48:48 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C6mmPR057038; Fri, 12 Oct 2012 06:48:48 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210120648.q9C6mmPR057038@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 06:48:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305756 - head/devel/p5-DateTime-Format-Natural X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:48:49 -0000 Author: jhale Date: Fri Oct 12 06:48:48 2012 New Revision: 305756 URL: http://svn.freebsd.org/changeset/ports/305756 Log: - Update to 0.99 [1] - Trim Makefile header PR: ports/168271 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: timur (maintainer timeout, 4.5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/devel/p5-DateTime-Format-Natural/Makefile (contents, props changed) head/devel/p5-DateTime-Format-Natural/distinfo (contents, props changed) Modified: head/devel/p5-DateTime-Format-Natural/Makefile ============================================================================== --- head/devel/p5-DateTime-Format-Natural/Makefile Fri Oct 12 06:41:51 2012 (r305755) +++ head/devel/p5-DateTime-Format-Natural/Makefile Fri Oct 12 06:48:48 2012 (r305756) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-DateTime-Format-Natural -# Date created: 22 Jul 2008 -# Whom: Timur I. Bakeyev -# +# Created by: Timur I. Bakeyev # $FreeBSD$ -# PORTNAME= DateTime-Format-Natural -PORTVERSION= 0.98 +PORTVERSION= 0.99 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,8 +10,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= timur@FreeBSD.org COMMENT= Create machine readable date/time with natural parsing logic -BUILD_DEPENDS= \ - p5-boolean>=0:${PORTSDIR}/devel/p5-boolean \ +BUILD_DEPENDS= p5-boolean>=0:${PORTSDIR}/devel/p5-boolean \ p5-Date-Calc>=0:${PORTSDIR}/devel/p5-Date-Calc \ p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ Modified: head/devel/p5-DateTime-Format-Natural/distinfo ============================================================================== --- head/devel/p5-DateTime-Format-Natural/distinfo Fri Oct 12 06:41:51 2012 (r305755) +++ head/devel/p5-DateTime-Format-Natural/distinfo Fri Oct 12 06:48:48 2012 (r305756) @@ -1,2 +1,2 @@ -SHA256 (DateTime-Format-Natural-0.98.tar.gz) = 8a277322b1d093a8af9fa019e37c7606fa7286a9b0fe38e96808e3de309e5d7c -SIZE (DateTime-Format-Natural-0.98.tar.gz) = 67632 +SHA256 (DateTime-Format-Natural-0.99.tar.gz) = f732a29cc95629a1c360d36aaebfe688d9f83f8c02843906e46a90914b8a962f +SIZE (DateTime-Format-Natural-0.99.tar.gz) = 68483 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:49:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5533F1; Fri, 12 Oct 2012 06:49:13 +0000 (UTC) (envelope-from tmueller@sysgo.com) Received: from mail1.sysgo.com (mail1.sysgo.com [176.9.26.183]) by mx1.freebsd.org (Postfix) with ESMTP id 5C3DC8FC12; Fri, 12 Oct 2012 06:49:13 +0000 (UTC) Received: from lantia.sysgo.com (unknown [172.22.2.7]) by mail1.sysgo.com (Postfix) with ESMTP id DBC0C462EB; Fri, 12 Oct 2012 08:43:18 +0200 (CEST) Received: by lantia.sysgo.com (Postfix, from userid 113) id C9B864DAAAA; Fri, 12 Oct 2012 08:43:18 +0200 (CEST) Received: from tmu.ulm.sysgo.com (tmu.ulm.sysgo.com [172.30.3.10]) by lantia.sysgo.com (Postfix) with ESMTP id AAADD4DAA56; Fri, 12 Oct 2012 08:43:18 +0200 (CEST) Date: Fri, 12 Oct 2012 08:43:18 +0200 From: Thomas Mueller To: Sunpoet Po-Chuan Hsieh Subject: Re: svn commit: r305581 - head/german/mythes Message-ID: <20121012084318.3e630a4d@tmu.ulm.sysgo.com> In-Reply-To: <201210091358.q99DwrNv016440@svn.freebsd.org> References: <201210091358.q99DwrNv016440@svn.freebsd.org> Organization: SYSGO AG X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:49:13 -0000 On Tue, 9 Oct 2012 13:58:53 +0000 (UTC), Sunpoet Po-Chuan Hsieh wrote: > Author: sunpoet > Date: Tue Oct 9 13:58:53 2012 > New Revision: 305581 > URL: http://svn.freebsd.org/changeset/ports/305581 > > Log: > - Update to 2012.09.07 > > Modified: > head/german/mythes/Makefile > head/german/mythes/distinfo > > Modified: head/german/mythes/Makefile > ============================================================================== > --- head/german/mythes/Makefile Tue Oct 9 13:53:17 2012 (r305580) > +++ head/german/mythes/Makefile Tue Oct 9 13:58:53 2012 (r305581) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= mythes > -PORTVERSION= 2012.09.30 > +PORTVERSION= 2012.09.07 Is there a particular reason why this version goes backwards? -- Thomas Mueller From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 06:53:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08CA631E; Fri, 12 Oct 2012 06:53:44 +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 E60398FC0A; Fri, 12 Oct 2012 06:53: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 q9C6rhnG057705; Fri, 12 Oct 2012 06:53:43 GMT (envelope-from lth@svn.freebsd.org) Received: (from lth@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C6rhU2057702; Fri, 12 Oct 2012 06:53:43 GMT (envelope-from lth@svn.freebsd.org) Message-Id: <201210120653.q9C6rhU2057702@svn.freebsd.org> From: Lars Thegler Date: Fri, 12 Oct 2012 06:53:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305757 - head/net/p5-Net-MAC-Vendor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 06:53:44 -0000 Author: lth Date: Fri Oct 12 06:53:43 2012 New Revision: 305757 URL: http://svn.freebsd.org/changeset/ports/305757 Log: Update to 1.1901 Feature safe: yes Modified: head/net/p5-Net-MAC-Vendor/Makefile head/net/p5-Net-MAC-Vendor/distinfo Modified: head/net/p5-Net-MAC-Vendor/Makefile ============================================================================== --- head/net/p5-Net-MAC-Vendor/Makefile Fri Oct 12 06:48:48 2012 (r305756) +++ head/net/p5-Net-MAC-Vendor/Makefile Fri Oct 12 06:53:43 2012 (r305757) @@ -6,7 +6,7 @@ # PORTNAME= Net-MAC-Vendor -PORTVERSION= 1.18 +PORTVERSION= 1.1901 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-Net-MAC-Vendor/distinfo ============================================================================== --- head/net/p5-Net-MAC-Vendor/distinfo Fri Oct 12 06:48:48 2012 (r305756) +++ head/net/p5-Net-MAC-Vendor/distinfo Fri Oct 12 06:53:43 2012 (r305757) @@ -1,2 +1,2 @@ -SHA256 (Net-MAC-Vendor-1.18.tar.gz) = c4e2c34471dcb13ecf3e4091c688694fda9960ba2bc1fcaa379edac6269ebc67 -SIZE (Net-MAC-Vendor-1.18.tar.gz) = 43724 +SHA256 (Net-MAC-Vendor-1.1901.tar.gz) = 2906921a3bc9096ea15647f25cd0564e5ec452c7b235b837e6bf530d9687e1d8 +SIZE (Net-MAC-Vendor-1.1901.tar.gz) = 1405300 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 07:04:46 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8107777E; Fri, 12 Oct 2012 07:04:46 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 69C7C8FC08; Fri, 12 Oct 2012 07:04:46 +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 q9C74kBI059041; Fri, 12 Oct 2012 07:04:46 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C74kIh059039; Fri, 12 Oct 2012 07:04:46 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210120704.q9C74kIh059039@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 12 Oct 2012 07:04:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305758 - head/dns/libbind X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:04:46 -0000 Author: bapt Date: Fri Oct 12 07:04:45 2012 New Revision: 305758 URL: http://svn.freebsd.org/changeset/ports/305758 Log: Convert to new options framework Feature safe: yes Modified: head/dns/libbind/Makefile Modified: head/dns/libbind/Makefile ============================================================================== --- head/dns/libbind/Makefile Fri Oct 12 06:53:43 2012 (r305757) +++ head/dns/libbind/Makefile Fri Oct 12 07:04:45 2012 (r305758) @@ -17,18 +17,17 @@ MAKE_JOBS_UNSAFE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var --with-randomdev=/dev/random -OPTIONS= IPV6 "Compile with IPv6 support" on \ - THREADS "Compile with thread support" on +OPTIONS_DEFINE= IPV6 THREADS .include -.if !defined(WITHOUT_IPV6) +.if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 .endif -.if !defined(WITHOUT_THREADS) +.if ${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+= --enable-threads .else CONFIGURE_ARGS+= --disable-threads From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 07:06:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 818589C9; Fri, 12 Oct 2012 07:06:47 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6AA618FC17; Fri, 12 Oct 2012 07:06:47 +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 q9C76ljf059341; Fri, 12 Oct 2012 07:06:47 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C76l0O059339; Fri, 12 Oct 2012 07:06:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210120706.q9C76l0O059339@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 12 Oct 2012 07:06:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305759 - head/dns/libbind X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:06:47 -0000 Author: bapt Date: Fri Oct 12 07:06:46 2012 New Revision: 305759 URL: http://svn.freebsd.org/changeset/ports/305759 Log: forgot the keep the defaults Feature safe: yes Modified: head/dns/libbind/Makefile Modified: head/dns/libbind/Makefile ============================================================================== --- head/dns/libbind/Makefile Fri Oct 12 07:04:45 2012 (r305758) +++ head/dns/libbind/Makefile Fri Oct 12 07:06:46 2012 (r305759) @@ -18,6 +18,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var --with-randomdev=/dev/random OPTIONS_DEFINE= IPV6 THREADS +OPTIONS_DEFAULT= IPV6 THREADS .include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 07:08:39 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EFB2B13; Fri, 12 Oct 2012 07:08:39 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 67C738FC12; Fri, 12 Oct 2012 07:08: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 q9C78d4D059600; Fri, 12 Oct 2012 07:08:39 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C78dpV059598; Fri, 12 Oct 2012 07:08:39 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210120708.q9C78dpV059598@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 12 Oct 2012 07:08:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305760 - head/dns/p5-Net-DNS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:08:39 -0000 Author: bapt Date: Fri Oct 12 07:08:38 2012 New Revision: 305760 URL: http://svn.freebsd.org/changeset/ports/305760 Log: Convert to new options framework Feature safe: yes Modified: head/dns/p5-Net-DNS/Makefile Modified: head/dns/p5-Net-DNS/Makefile ============================================================================== --- head/dns/p5-Net-DNS/Makefile Fri Oct 12 07:06:46 2012 (r305759) +++ head/dns/p5-Net-DNS/Makefile Fri Oct 12 07:08:38 2012 (r305760) @@ -1,5 +1,4 @@ # Created by: James FitzGibbon -# # $FreeBSD$ PORTNAME= Net-DNS @@ -8,7 +7,7 @@ CATEGORIES= dns net perl5 ipv6 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 interface to the DNS resolver, and dynamic updates # Warnings during build are harmless, the port does not need these to build @@ -19,8 +18,8 @@ TEST_DEPENDS= p5-Test-Pod>0:${PORTSDIR}/ MAKE_JOBS_SAFE= yes -OPTIONS= IPV6 "Enable functionality over IPv6 transport" on \ - IDN "Add support for IDN domain names" off +OPTIONS_DEFINE= IPV6 IDN DOCS +OPTIONS_DEFAULT= IPV6 PERL_CONFIGURE= yes CONFIGURE_ARGS+= --no-online-tests --no-IPv6-tests @@ -58,18 +57,18 @@ PORTDOCS= Changes README TODO RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA .endif -.if !defined(WITHOUT_IPV6) +.if ${PORT_OPTIONS:MIPV6} RUN_DEPENDS+= p5-IO-Socket-INET6>0:${PORTSDIR}/net/p5-IO-Socket-INET6 .endif -.if defined(WITH_IDN) +.if ${PORT_OPTIONS:MIDN} RUN_DEPENDS+= p5-Net-LibIDN>0:${PORTSDIR}/dns/p5-Net-LibIDN .endif DOCSDIR= ${PREFIX}/share/doc/p5-Net-DNS post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 07:08:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 22BE7C17; Fri, 12 Oct 2012 07:08:53 +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 00BC58FC16; Fri, 12 Oct 2012 07:08:53 +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 q9C78qFk059695; Fri, 12 Oct 2012 07:08:52 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C78qN6059691; Fri, 12 Oct 2012 07:08:52 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201210120708.q9C78qN6059691@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Fri, 12 Oct 2012 07:08:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305761 - head/dns/py-easyzone X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:08:53 -0000 Author: rm Date: Fri Oct 12 07:08:52 2012 New Revision: 305761 URL: http://svn.freebsd.org/changeset/ports/305761 Log: - convert Makefile header to new two-line format - add dns/py-dnspython to RUN_DEPENDS too, because easyzone will not work w/o it - remove some redundant python specific knobs: PYDISTUTILS_NOEGGINFO, PYDISTUTILS_PKGNAME - use PYEASYINSTALL_EGG in pkg-plist instead of redundant passing PORTVERSION and PYTHON_VER there - bump PORTREVISION because of dependencies change PR: 172446 Submitted by: rm (myself) Approved by: Attila Nagy (maintainer, by mail) Feature safe: yes Modified: head/dns/py-easyzone/Makefile head/dns/py-easyzone/pkg-plist Modified: head/dns/py-easyzone/Makefile ============================================================================== --- head/dns/py-easyzone/Makefile Fri Oct 12 07:08:38 2012 (r305760) +++ head/dns/py-easyzone/Makefile Fri Oct 12 07:08:52 2012 (r305761) @@ -1,12 +1,9 @@ -# New ports collection makefile for: py-easyzone -# Date created: 10 February 2012 -# Whom: Attila Nagy -# +# Created by: Attila Nagy # $FreeBSD$ -# PORTNAME= easyzone PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= dns python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,12 +14,9 @@ COMMENT= DNS Zone abstraction module for LICENSE= MIT BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:${PORTSDIR}/dns/py-dnspython +RUN_DEPENDS:= ${BUILD_DEPENDS} USE_PYTHON= yes USE_PYDISTUTILS= easy_install -PYDISTUTILS_NOEGGINFO= yes -PYDISTUTILS_PKGNAME= easyzone -PLIST_SUB+= PORTVERSION=${PORTVERSION} \ - PYTHON_VER=${PYTHON_VER} .include Modified: head/dns/py-easyzone/pkg-plist ============================================================================== --- head/dns/py-easyzone/pkg-plist Fri Oct 12 07:08:38 2012 (r305760) +++ head/dns/py-easyzone/pkg-plist Fri Oct 12 07:08:52 2012 (r305761) @@ -1,22 +1,22 @@ -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/EGG-INFO/PKG-INFO -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/EGG-INFO/SOURCES.txt -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/EGG-INFO/dependency_links.txt -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/EGG-INFO/entry_points.txt -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/EGG-INFO/not-zip-safe -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/EGG-INFO/requires.txt -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/EGG-INFO/top_level.txt -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/__init__.py -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/__init__.pyc -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/__init__.pyo -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/easyzone.py -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/easyzone.pyc -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/easyzone.pyo -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/zone_check.py -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/zone_check.pyc -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/zone_check.pyo -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/zone_reload.py -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/zone_reload.pyc -%%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone/zone_reload.pyo -@dirrm %%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/easyzone -@dirrm %%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg/EGG-INFO -@dirrm %%PYTHON_SITELIBDIR%%/easyzone-%%PORTVERSION%%-py%%PYTHON_VER%%.egg +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/easyzone.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/easyzone.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/easyzone.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/zone_check.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/zone_check.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/zone_check.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/zone_reload.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/zone_reload.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone/zone_reload.pyo +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/easyzone +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 07:17:34 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 685F9100; Fri, 12 Oct 2012 07:17:34 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 477688FC12; Fri, 12 Oct 2012 07:17: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 q9C7HYCN060846; Fri, 12 Oct 2012 07:17:34 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C7HYo3060842; Fri, 12 Oct 2012 07:17:34 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201210120717.q9C7HYo3060842@svn.freebsd.org> From: "Vanilla I. Shu" Date: Fri, 12 Oct 2012 07:17:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305762 - in head/audio/s3mod: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:17:34 -0000 Author: vanilla Date: Fri Oct 12 07:17:33 2012 New Revision: 305762 URL: http://svn.freebsd.org/changeset/ports/305762 Log: Fix build with clang. Feature safe: yes Added: head/audio/s3mod/files/patch-dsp.c (contents, props changed) head/audio/s3mod/files/patch-dsp.h (contents, props changed) Deleted: head/audio/s3mod/files/patch-ad Modified: head/audio/s3mod/Makefile Modified: head/audio/s3mod/Makefile ============================================================================== --- head/audio/s3mod/Makefile Fri Oct 12 07:08:52 2012 (r305761) +++ head/audio/s3mod/Makefile Fri Oct 12 07:17:33 2012 (r305762) @@ -1,9 +1,5 @@ -# New ports collection makefile for: s3mod -# Date created: 9 March 1995 -# Whom: ugen -# +# Created by: ugen # $FreeBSD$ -# PORTNAME= s3mod PORTVERSION= 1.09 Added: head/audio/s3mod/files/patch-dsp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/s3mod/files/patch-dsp.c Fri Oct 12 07:17:33 2012 (r305762) @@ -0,0 +1,54 @@ +--- dsp.c.orig 2012-10-10 23:29:01.000000000 +0800 ++++ dsp.c 2012-10-10 23:30:54.000000000 +0800 +@@ -22,20 +22,20 @@ + * linux_dsp.c - Support for the Linux DSP driver from the Voxware(C) Drivers. + */ + +-#ifdef LINUX ++#ifdef __FreeBSD__ + #include "config.h" + #include + #include + #include + #include +-#include +-#include ++#include ++#include + #include "main.h" + #include "dsp.h" + + static int audio; + +-int get_dsp_device(void) ++void get_dsp_device(void) + { + uint32 j; + +@@ -68,11 +68,6 @@ int get_dsp_device(void) + printf("Unable to get audio blocksize\n"); + exit(1); + } +- if ((audio_buffer_size < 4096) || (audio_buffer_size > 131072)) +- { +- printf("Invalid audio buffer size: %d\n",audio_buffer_size); +- exit(1); +- } + if (!(audio_start_buffer = (uint8 *) malloc(audio_buffer_size))) + { + printf("Could not get audio buffer memory!\n"); +@@ -80,7 +75,6 @@ int get_dsp_device(void) + } + audio_end_buffer = &audio_start_buffer[audio_buffer_size]; + audio_curptr = audio_start_buffer; +- return; + } + + void write_dsp_device(void *buf, int size) { +@@ -93,5 +87,5 @@ void close_dsp_device() { + return; + } + +-#endif /* ?LINUX */ ++#endif /* ?__FreeBSD__ */ + Added: head/audio/s3mod/files/patch-dsp.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/s3mod/files/patch-dsp.h Fri Oct 12 07:17:33 2012 (r305762) @@ -0,0 +1,11 @@ +--- dsp.h.orig 2012-10-10 23:31:11.000000000 +0800 ++++ dsp.h 2012-10-10 23:31:22.000000000 +0800 +@@ -34,7 +34,7 @@ extern uint8 *audio_sta + extern uint8 *audio_end_buffer; + extern uint8 *audio_curptr; + +-int get_dsp_device(void); ++void get_dsp_device(void); + void write_dsp_device(void *buf, int size); + void close_dsp_device(void); + #endif /* DSP */ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 07:47:01 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23020AF8; Fri, 12 Oct 2012 07:47:01 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0D0668FC17; Fri, 12 Oct 2012 07:47: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 q9C7l0J3064372; Fri, 12 Oct 2012 07:47:00 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C7l0Tv064370; Fri, 12 Oct 2012 07:47:00 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210120747.q9C7l0Tv064370@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 12 Oct 2012 07:47:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305763 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:47:01 -0000 Author: bapt Date: Fri Oct 12 07:47:00 2012 New Revision: 305763 URL: http://svn.freebsd.org/changeset/ports/305763 Log: Fix typo Submitted by: John Hein Feature safe: yes Modified: head/Mk/bsd.commands.mk Modified: head/Mk/bsd.commands.mk ============================================================================== --- head/Mk/bsd.commands.mk Fri Oct 12 07:17:33 2012 (r305762) +++ head/Mk/bsd.commands.mk Fri Oct 12 07:47:00 2012 (r305763) @@ -116,7 +116,7 @@ ECHO_CMD?= echo # Shell builtin ECHO_MSG?= ${ECHO_CMD} .elif !defined(_PKGTOOLSDEFINED) -_PKGTOOLDEFINED= yes +_PKGTOOLSDEFINED= yes .if defined(WITH_PKGNG) PKG_BIN?= ${LOCALBASE}/sbin/pkg PKG_CMD?= ${PKG_BIN} register From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 07:57:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3B311799; Fri, 12 Oct 2012 07:57:47 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CC5B18FC08; Fri, 12 Oct 2012 07:57:47 +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 q9C7vl1q065671; Fri, 12 Oct 2012 07:57:47 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C7vliN065668; Fri, 12 Oct 2012 07:57:47 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201210120757.q9C7vliN065668@svn.freebsd.org> From: Pietro Cerutti Date: Fri, 12 Oct 2012 07:57:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305764 - in head/lang/tcl85: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:57:48 -0000 Author: gahr Date: Fri Oct 12 07:57:47 2012 New Revision: 305764 URL: http://svn.freebsd.org/changeset/ports/305764 Log: - Avoid creating unused empty directories when installing tcl-modules Approved by: portmgr (bapt) Feature safe: yes Modified: head/lang/tcl85/files/patch-unix-Makefile.in head/lang/tcl85/pkg-plist.tm Modified: head/lang/tcl85/files/patch-unix-Makefile.in ============================================================================== --- head/lang/tcl85/files/patch-unix-Makefile.in Fri Oct 12 07:47:00 2012 (r305763) +++ head/lang/tcl85/files/patch-unix-Makefile.in Fri Oct 12 07:57:47 2012 (r305764) @@ -143,7 +143,7 @@ fi +install-tm: -+ @for i in tcl8 tcl8/8.3 tcl8/8.4 tcl8/8.4/platform tcl8/8.5 tcl8/8.6; \ ++ @for i in tcl8 tcl8/8.4 tcl8/8.4/platform tcl8/8.5; \ + do \ + if [ ! -d "$(LIB_INSTALL_DIR)"/$$i ] ; then \ + echo "Making directory $(LIB_INSTALL_DIR)/$$i"; \ Modified: head/lang/tcl85/pkg-plist.tm ============================================================================== --- head/lang/tcl85/pkg-plist.tm Fri Oct 12 07:47:00 2012 (r305763) +++ head/lang/tcl85/pkg-plist.tm Fri Oct 12 07:57:47 2012 (r305764) @@ -3,7 +3,6 @@ lib/tcl8/8.4/platform/shell-1.1.4.tm lib/tcl8/8.4/platform-1.0.10.tm lib/tcl8/8.5/msgcat-1.4.5.tm lib/tcl8/8.5/tcltest-2.3.4.tm -@dirrmtry lib/tcl8/8.3 @dirrmtry lib/tcl8/8.4/platform @dirrmtry lib/tcl8/8.4 @dirrmtry lib/tcl8/8.5 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 09:08:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 192CF358; Fri, 12 Oct 2012 09:08:23 +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 F1D2B8FC0A; Fri, 12 Oct 2012 09:08:22 +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 q9C98MqA074043; Fri, 12 Oct 2012 09:08:22 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C98MSA074029; Fri, 12 Oct 2012 09:08:22 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210120908.q9C98MSA074029@svn.freebsd.org> From: Florian Smeets Date: Fri, 12 Oct 2012 09:08:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305765 - in head: Mk mail/thunderbird mail/thunderbird-esr mail/thunderbird-esr-i18n mail/thunderbird-esr/files mail/thunderbird/files www/firefox www/firefox-esr www/firefox-esr-i18n ... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 09:08:23 -0000 Author: flo Date: Fri Oct 12 09:08:22 2012 New Revision: 305765 URL: http://svn.freebsd.org/changeset/ports/305765 Log: - update {thunderbird,firefox}-esr* and libxul to 10.0.9 - use bundled jemalloc since 7.2 [1] - avoid thread-local variables before 8.3, 9.1, 10.0, to avoid crashes [2] - bump PORTREVISION on mail/thunderbird and www/firefox for the TLS fixes Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392 Reported by: angelv , Hanno Krusken [2] Reference: http://svnweb.freebsd.org/changeset/base/225582 [2] Submitted by: Jan Beich [1], [2] Feature safe: yes Deleted: head/mail/thunderbird-esr/files/patch-bug543241 head/mail/thunderbird/files/patch-bug543241 head/www/firefox-esr/files/patch-bug543241 head/www/firefox/files/patch-bug543241 head/www/libxul/files/patch-bug543241 Modified: head/Mk/bsd.gecko.mk head/mail/thunderbird-esr-i18n/Makefile head/mail/thunderbird-esr-i18n/distinfo head/mail/thunderbird-esr/Makefile head/mail/thunderbird-esr/distinfo head/mail/thunderbird/Makefile 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/Makefile head/www/libxul/Makefile head/www/libxul/distinfo Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Fri Oct 12 07:57:47 2012 (r305764) +++ head/Mk/bsd.gecko.mk Fri Oct 12 09:08:22 2012 (r305765) @@ -555,15 +555,18 @@ LDFLAGS+= -Wl,-rpath,${PREFIX}/lib/${MO .if ${OSVERSION} > 1000011 # use jemalloc 3.0.0 API in libc MOZ_EXPORT+= MOZ_JEMALLOC=1 -.elif ${OSVERSION} > 800004 +.elif ${OSVERSION} > 701106 MOZ_OPTIONS+= --enable-jemalloc MOZ_EXPORT+= MOZ_JEMALLOC=1 -.elif ${OSVERSION} > 700101 -# has _pthread_mutex_init_calloc_cb but firefox crashes when jemalloc -# configured without --enable-debug .endif .endif +.if (${OSVERSION} >= 900000 && ${OSVERSION} < 900045) \ + || ${OSVERSION} < 802513 +MOZ_EXPORT+= ac_cv_thread_keyword=no \ + je_cv_tls_model=no +.endif + # Standard depends _ALL_DEPENDS= cairo dbm event ffi hunspell jpeg nspr nss png sqlite vpx zip Modified: head/mail/thunderbird-esr-i18n/Makefile ============================================================================== --- head/mail/thunderbird-esr-i18n/Makefile Fri Oct 12 07:57:47 2012 (r305764) +++ head/mail/thunderbird-esr-i18n/Makefile Fri Oct 12 09:08:22 2012 (r305765) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird-i18n -PORTVERSION= 10.0.8 +PORTVERSION= 10.0.9 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 Fri Oct 12 07:57:47 2012 (r305764) +++ head/mail/thunderbird-esr-i18n/distinfo Fri Oct 12 09:08:22 2012 (r305765) @@ -1,16 +1,84 @@ -SHA256 (xpi/thunderbird-i18n-10.0.8/es-ES.xpi) = b2d651cf8e46979637b5e5c5a0ec95fb8d12e9f2f20c660504b0a509e42978cf -SIZE (xpi/thunderbird-i18n-10.0.8/es-ES.xpi) = 355142 -SHA256 (xpi/thunderbird-i18n-10.0.8/pt-BR.xpi) = d5604357b65b20a1e6acd4aa4eb9cb02154156b1836e90c4c18ac36fcbd3889f -SIZE (xpi/thunderbird-i18n-10.0.8/pt-BR.xpi) = 417229 -SHA256 (xpi/thunderbird-i18n-10.0.8/ru.xpi) = 675475afefed4ab8e8ac29bd74bd6b2619d403519db7a3b5159458a71e1138cc -SIZE (xpi/thunderbird-i18n-10.0.8/ru.xpi) = 411633 -SHA256 (xpi/thunderbird-i18n-10.0.8/ja.xpi) = 20c7b247db1b04b9c6299a13b348fdeaf320e683d6f36427cd468c30e4b102df -SIZE (xpi/thunderbird-i18n-10.0.8/ja.xpi) = 459030 -SHA256 (xpi/thunderbird-i18n-10.0.8/de.xpi) = 200c48b132653c1e72e580d73e471399cfd4e22ac3ef3f1df77c48840d0558f7 -SIZE (xpi/thunderbird-i18n-10.0.8/de.xpi) = 418265 -SHA256 (xpi/thunderbird-i18n-10.0.8/fr.xpi) = 4b00df0f3fa1092137b8735e86149183f7bcad9f97b3f36dd1f84aea430d1af6 -SIZE (xpi/thunderbird-i18n-10.0.8/fr.xpi) = 414748 -SHA256 (xpi/thunderbird-i18n-10.0.8/ko.xpi) = 3c60709ef8536f77be75b2659467d3e22ed327254c23e4812a5c756c59949ec0 -SIZE (xpi/thunderbird-i18n-10.0.8/ko.xpi) = 372015 -SHA256 (xpi/thunderbird-i18n-10.0.8/it.xpi) = 0bb9413db267342fbf8cea6abf180ab9aec174e98a1d59f3ed3b371f6ca54ae3 -SIZE (xpi/thunderbird-i18n-10.0.8/it.xpi) = 347632 +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 Modified: head/mail/thunderbird-esr/Makefile ============================================================================== --- head/mail/thunderbird-esr/Makefile Fri Oct 12 07:57:47 2012 (r305764) +++ head/mail/thunderbird-esr/Makefile Fri Oct 12 09:08:22 2012 (r305765) @@ -6,7 +6,7 @@ # PORTNAME= thunderbird -DISTVERSION= 10.0.8 +DISTVERSION= 10.0.9 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${DISTVERSION}esr/source Modified: head/mail/thunderbird-esr/distinfo ============================================================================== --- head/mail/thunderbird-esr/distinfo Fri Oct 12 07:57:47 2012 (r305764) +++ head/mail/thunderbird-esr/distinfo Fri Oct 12 09:08:22 2012 (r305765) @@ -1,4 +1,4 @@ -SHA256 (thunderbird-10.0.8esr.source.tar.bz2) = 9575f9f97fab48d36b3a24040db83fb9b92de913b3689e9910afaf39a486fbbd -SIZE (thunderbird-10.0.8esr.source.tar.bz2) = 97594384 +SHA256 (thunderbird-10.0.9esr.source.tar.bz2) = d20687aa99736d6ad36258a57061030e0ddc2003fb6368ffab3ccbe247c7bfb9 +SIZE (thunderbird-10.0.9esr.source.tar.bz2) = 97616343 SHA256 (enigmail-1.4.5.tar.gz) = fa59491fba21de9414a003933349074a8ec1833a1d64cac9f0a9f7020ed6c020 SIZE (enigmail-1.4.5.tar.gz) = 1269207 Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Fri Oct 12 07:57:47 2012 (r305764) +++ head/mail/thunderbird/Makefile Fri Oct 12 09:08:22 2012 (r305765) @@ -7,6 +7,7 @@ PORTNAME= thunderbird DISTVERSION= 16.0.1 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${DISTVERSION}/source Modified: head/www/firefox-esr-i18n/Makefile ============================================================================== --- head/www/firefox-esr-i18n/Makefile Fri Oct 12 07:57:47 2012 (r305764) +++ head/www/firefox-esr-i18n/Makefile Fri Oct 12 09:08:22 2012 (r305765) @@ -6,7 +6,7 @@ # PORTNAME= firefox-i18n -PORTVERSION= 10.0.8 +PORTVERSION= 10.0.9 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 Fri Oct 12 07:57:47 2012 (r305764) +++ head/www/firefox-esr-i18n/distinfo Fri Oct 12 09:08:22 2012 (r305765) @@ -1,164 +1,164 @@ -SHA256 (xpi/firefox-i18n-10.0.8/af.xpi) = e65b94d7a08d5701bdeb6e1f4c18df19600eb85d45d28d0345ca1bdabe2c234c -SIZE (xpi/firefox-i18n-10.0.8/af.xpi) = 238744 -SHA256 (xpi/firefox-i18n-10.0.8/ak.xpi) = 845e94ac1c466e46dd5575504ce6651a01fd465bbe2f9de1975c50d0a5cd1c50 -SIZE (xpi/firefox-i18n-10.0.8/ak.xpi) = 240571 -SHA256 (xpi/firefox-i18n-10.0.8/ar.xpi) = 6b0ac89dec757e14763927cb29098027a5a80d0ff222fd0497e4fdef2d158f6c -SIZE (xpi/firefox-i18n-10.0.8/ar.xpi) = 263702 -SHA256 (xpi/firefox-i18n-10.0.8/ast.xpi) = 1edc5e1f521ed0113948d87948f0ac20f20cddf6b4b351dea353a86963b30108 -SIZE (xpi/firefox-i18n-10.0.8/ast.xpi) = 237974 -SHA256 (xpi/firefox-i18n-10.0.8/be.xpi) = c04459e3cde9d84eefbc346356e52777099436b88d5f0e96dbd0c14d80c2d6bc -SIZE (xpi/firefox-i18n-10.0.8/be.xpi) = 245757 -SHA256 (xpi/firefox-i18n-10.0.8/bg.xpi) = f27c7461197f856e93127d32235f01b41a4a246c366ff22b13a90e7569e3a2bd -SIZE (xpi/firefox-i18n-10.0.8/bg.xpi) = 276756 -SHA256 (xpi/firefox-i18n-10.0.8/bn-BD.xpi) = 858551675beeaf45744c82a45e8f6f80fa4512affd0a465b0f28ddd4098a51d7 -SIZE (xpi/firefox-i18n-10.0.8/bn-BD.xpi) = 288293 -SHA256 (xpi/firefox-i18n-10.0.8/bn-IN.xpi) = bd971eafe783495da710be875acabbd839631406394521e54219dd51061b4be2 -SIZE (xpi/firefox-i18n-10.0.8/bn-IN.xpi) = 319304 -SHA256 (xpi/firefox-i18n-10.0.8/br.xpi) = 869faf87071ad2b157bbb577d6e31db62e9047fc0feb7dacb8000af6fd71c9a0 -SIZE (xpi/firefox-i18n-10.0.8/br.xpi) = 247651 -SHA256 (xpi/firefox-i18n-10.0.8/bs.xpi) = c6c26340e5d3034e7ef6a4c6924670ba0ef5b27926bfc2ae39104e652a2639bb -SIZE (xpi/firefox-i18n-10.0.8/bs.xpi) = 245308 -SHA256 (xpi/firefox-i18n-10.0.8/ca.xpi) = 3f2fb584b1b966412ad5967aa71f2874fae9c85cd017beb8b17a083064c3f1f6 -SIZE (xpi/firefox-i18n-10.0.8/ca.xpi) = 248221 -SHA256 (xpi/firefox-i18n-10.0.8/cs.xpi) = ba4c18820c7ad628cd4293186101829ba6abb702806114c07377f9f3bac9829f -SIZE (xpi/firefox-i18n-10.0.8/cs.xpi) = 248769 -SHA256 (xpi/firefox-i18n-10.0.8/cy.xpi) = 1e0b86a4a6d8e8d03066f4e9380b44dd55ed1f848993593f13171f5397b18b54 -SIZE (xpi/firefox-i18n-10.0.8/cy.xpi) = 244197 -SHA256 (xpi/firefox-i18n-10.0.8/da.xpi) = 2d81c6106390e66e0f226c8f4e3ef0d85874b5e6328115b61ba94f94e06b2021 -SIZE (xpi/firefox-i18n-10.0.8/da.xpi) = 240328 -SHA256 (xpi/firefox-i18n-10.0.8/de.xpi) = 932dab4efa1fdc0beec4df0dde7b7630395723339d6ce8915586f4eadcfa27db -SIZE (xpi/firefox-i18n-10.0.8/de.xpi) = 249297 -SHA256 (xpi/firefox-i18n-10.0.8/el.xpi) = 891d86cb6ed89f15a4e9dc8718344228e628dc3d8be85e5211bae0fc2559d29f -SIZE (xpi/firefox-i18n-10.0.8/el.xpi) = 264379 -SHA256 (xpi/firefox-i18n-10.0.8/en-GB.xpi) = 25c368952d9e6dc03178a76412c4e798606a04dc0b7b6209dbd10d9aa1673683 -SIZE (xpi/firefox-i18n-10.0.8/en-GB.xpi) = 231193 -SHA256 (xpi/firefox-i18n-10.0.8/en-US.xpi) = bc9376ebfe8caae2caf598cbfd5cdd958aa467b9c26d194caef7b4cb3b57eeac -SIZE (xpi/firefox-i18n-10.0.8/en-US.xpi) = 230680 -SHA256 (xpi/firefox-i18n-10.0.8/en-ZA.xpi) = 1f41f270cb2c1142461f7f347d2c9365fcf0bc7ae2312555c63909af040b871c -SIZE (xpi/firefox-i18n-10.0.8/en-ZA.xpi) = 233919 -SHA256 (xpi/firefox-i18n-10.0.8/eo.xpi) = cd40b09e15cc4575d51105f1662f7451c5cc681f22ce0060c2b736bd283e2b03 -SIZE (xpi/firefox-i18n-10.0.8/eo.xpi) = 240902 -SHA256 (xpi/firefox-i18n-10.0.8/es-AR.xpi) = 1e306d293b061189822fa979d05345692dfe03d620688d30c1412db4c17422e7 -SIZE (xpi/firefox-i18n-10.0.8/es-AR.xpi) = 245346 -SHA256 (xpi/firefox-i18n-10.0.8/es-CL.xpi) = 4a06f5228897d66dab526e431393fc9a4d9c99851ecf4c3793f08afce5a70312 -SIZE (xpi/firefox-i18n-10.0.8/es-CL.xpi) = 250205 -SHA256 (xpi/firefox-i18n-10.0.8/es-ES.xpi) = 088a8a4fd1d0b1c3356650e6341b404672ddd3a5ab49255961caa593d5228ccc -SIZE (xpi/firefox-i18n-10.0.8/es-ES.xpi) = 215378 -SHA256 (xpi/firefox-i18n-10.0.8/es-MX.xpi) = c5a039f7b9c87b841da53eadda83926bc8a133869d7acee1cc6d65af7cde41b7 -SIZE (xpi/firefox-i18n-10.0.8/es-MX.xpi) = 224151 -SHA256 (xpi/firefox-i18n-10.0.8/et.xpi) = 0bf5ef0aa1008d0f4c3baa8b701ec20eacbf54bcdb78c3b08c0c4c764c28fb93 -SIZE (xpi/firefox-i18n-10.0.8/et.xpi) = 242630 -SHA256 (xpi/firefox-i18n-10.0.8/eu.xpi) = db669a3df857c2b6f1c4ba68e7c8f52358b741aeba4a26e95333757bb37a650b -SIZE (xpi/firefox-i18n-10.0.8/eu.xpi) = 240251 -SHA256 (xpi/firefox-i18n-10.0.8/fa.xpi) = da16d2a0d1dec4b3f8d9e09afbd887682bd821801ab536c939caddab885b84f7 -SIZE (xpi/firefox-i18n-10.0.8/fa.xpi) = 272852 -SHA256 (xpi/firefox-i18n-10.0.8/fi.xpi) = 8ef47995cfc5d93c0a4058606e6a7bd70cf9dda8f290e06e66bfd060c05f918f -SIZE (xpi/firefox-i18n-10.0.8/fi.xpi) = 243629 -SHA256 (xpi/firefox-i18n-10.0.8/fr.xpi) = ce6959c1b9766943fd6c27b10673ae93b8df5bd890e9db4bb7c2a0cbb94fc574 -SIZE (xpi/firefox-i18n-10.0.8/fr.xpi) = 249568 -SHA256 (xpi/firefox-i18n-10.0.8/fy-NL.xpi) = 26aed5af8e255de4ad0b6da25551116670b51f86d40d1523a467c7272cb8b4b5 -SIZE (xpi/firefox-i18n-10.0.8/fy-NL.xpi) = 249343 -SHA256 (xpi/firefox-i18n-10.0.8/ga-IE.xpi) = d06dfe44a749feef65056989d828b1df5a008f8c71f6746365af2027c35700d1 -SIZE (xpi/firefox-i18n-10.0.8/ga-IE.xpi) = 252022 -SHA256 (xpi/firefox-i18n-10.0.8/gl.xpi) = 2562fa6c9258eaace0e4107e0a1ea05eadbbfd477143acdcfcafd2909d1f2a5f -SIZE (xpi/firefox-i18n-10.0.8/gl.xpi) = 243249 -SHA256 (xpi/firefox-i18n-10.0.8/gu-IN.xpi) = 002a7ccd57b89d0c063936dfd4be269cedb803167994637ce3c5ccf6dbef6afc -SIZE (xpi/firefox-i18n-10.0.8/gu-IN.xpi) = 275221 -SHA256 (xpi/firefox-i18n-10.0.8/he.xpi) = 200106afc6f5c23a0a98dddb3e8ac145b6481399aafa02a1b52cd80ae50bde7a -SIZE (xpi/firefox-i18n-10.0.8/he.xpi) = 264935 -SHA256 (xpi/firefox-i18n-10.0.8/hi-IN.xpi) = 8f68a4d116ad511fc3081b2ff2dbeb77ebfea48014d6f8734ee4e4396fca38ab -SIZE (xpi/firefox-i18n-10.0.8/hi-IN.xpi) = 280000 -SHA256 (xpi/firefox-i18n-10.0.8/hr.xpi) = 13429959a13cf5153955b18a89077a6df113005a75d97e929143fd236b1292c2 -SIZE (xpi/firefox-i18n-10.0.8/hr.xpi) = 249333 -SHA256 (xpi/firefox-i18n-10.0.8/hu.xpi) = 042ce9afd0d7289c72856f88a7819571a6d0e2be737bdf9a586980a9612c6a19 -SIZE (xpi/firefox-i18n-10.0.8/hu.xpi) = 253773 -SHA256 (xpi/firefox-i18n-10.0.8/hy-AM.xpi) = 449b184e72b851f9c7d1b7a2d7d2a3bd43689252526b06703a46da16da7893c2 -SIZE (xpi/firefox-i18n-10.0.8/hy-AM.xpi) = 445452 -SHA256 (xpi/firefox-i18n-10.0.8/id.xpi) = 6f148c8f7e67b958b206c331064b7c12b8f0c6c0a5b021a210f513f98c831d3e -SIZE (xpi/firefox-i18n-10.0.8/id.xpi) = 236824 -SHA256 (xpi/firefox-i18n-10.0.8/is.xpi) = 169f139f55c0fdb4d87131f81a19d15da846d8bb218aceac29309e5b9cd34f1b -SIZE (xpi/firefox-i18n-10.0.8/is.xpi) = 243067 -SHA256 (xpi/firefox-i18n-10.0.8/it.xpi) = 1e0eb506be163e07b8a2e9c68b9bd749d2b4d4d179e5999b515b06dee8f256e8 -SIZE (xpi/firefox-i18n-10.0.8/it.xpi) = 212716 -SHA256 (xpi/firefox-i18n-10.0.8/ja.xpi) = 723c26ff672b7886b6f1f8bbabdef7df832beabb90ac0164eb6124b06115187a -SIZE (xpi/firefox-i18n-10.0.8/ja.xpi) = 273115 -SHA256 (xpi/firefox-i18n-10.0.8/kk.xpi) = b507fa124a6d62123f68ef53e8ae1522a9672d6d4426ad97873d67ae5ae6225c -SIZE (xpi/firefox-i18n-10.0.8/kk.xpi) = 279777 -SHA256 (xpi/firefox-i18n-10.0.8/kn.xpi) = a3477b01061921b7996e6a4449b62734ba72e500921878511f5abe768cf185d6 -SIZE (xpi/firefox-i18n-10.0.8/kn.xpi) = 299830 -SHA256 (xpi/firefox-i18n-10.0.8/ko.xpi) = 70aaf965078c10d8c2d176358e124f13308abe6895daa41890aed0c2174315fc -SIZE (xpi/firefox-i18n-10.0.8/ko.xpi) = 227945 -SHA256 (xpi/firefox-i18n-10.0.8/ku.xpi) = 382fda1bc8ac9de310d7ac75f59bde607ff5064aee9783d1b67e7587837804e5 -SIZE (xpi/firefox-i18n-10.0.8/ku.xpi) = 254709 -SHA256 (xpi/firefox-i18n-10.0.8/lg.xpi) = ba04c687567000ae0d2893587983165f3809f34aa43d13af3a0f855cd46c4f89 -SIZE (xpi/firefox-i18n-10.0.8/lg.xpi) = 247673 -SHA256 (xpi/firefox-i18n-10.0.8/lt.xpi) = fd0e4f28026d7f94d9b7d311f375ccf4134653f2900b2cf01e50791fc2247225 -SIZE (xpi/firefox-i18n-10.0.8/lt.xpi) = 330631 -SHA256 (xpi/firefox-i18n-10.0.8/lv.xpi) = 3d4337a9db929af1fe1482cdd499fa95cee021a80b99f7b7f90afa5669201d0a -SIZE (xpi/firefox-i18n-10.0.8/lv.xpi) = 244352 -SHA256 (xpi/firefox-i18n-10.0.8/mai.xpi) = ef97a34fc330cf6e2fb886302d122278ce96a1cdc98b22ed0767c423b17feb13 -SIZE (xpi/firefox-i18n-10.0.8/mai.xpi) = 279253 -SHA256 (xpi/firefox-i18n-10.0.8/mk.xpi) = 8ae09cb016c4359729ed4c9f27c0f99c062beb2b2b522d055c5057c514507052 -SIZE (xpi/firefox-i18n-10.0.8/mk.xpi) = 272939 -SHA256 (xpi/firefox-i18n-10.0.8/ml.xpi) = a1ca0631aadafc3964846e33de9cd5efc9b8d795ef1bb5d025db0e554184247a -SIZE (xpi/firefox-i18n-10.0.8/ml.xpi) = 306675 -SHA256 (xpi/firefox-i18n-10.0.8/mr.xpi) = 997605c6ecbae4302f413c4bf008c71bbaf0191e5e72f01f8461628e197061d8 -SIZE (xpi/firefox-i18n-10.0.8/mr.xpi) = 281457 -SHA256 (xpi/firefox-i18n-10.0.8/nb-NO.xpi) = 27b83b14a6d6d728832c4330dd0ce2fff333c53acf46091c12d13557807d439a -SIZE (xpi/firefox-i18n-10.0.8/nb-NO.xpi) = 241210 -SHA256 (xpi/firefox-i18n-10.0.8/nl.xpi) = efeb8b6ce044e6254b6b271d2f6b9998b24e4a6b1799a4d7f22ad76416f2e322 -SIZE (xpi/firefox-i18n-10.0.8/nl.xpi) = 242400 -SHA256 (xpi/firefox-i18n-10.0.8/nn-NO.xpi) = 6ccc73f8ddcb17e68af28efe3fde44cbe050b8260fa68a44f179d4f7a60e4271 -SIZE (xpi/firefox-i18n-10.0.8/nn-NO.xpi) = 242453 -SHA256 (xpi/firefox-i18n-10.0.8/nso.xpi) = 401ff8179dc295dc09f958bd2c2d8e16441db8b9baac5ca63ecbba42d60f7694 -SIZE (xpi/firefox-i18n-10.0.8/nso.xpi) = 245695 -SHA256 (xpi/firefox-i18n-10.0.8/or.xpi) = 870aa1fb88415e378b473f7de656d8e5064b3f0285978da9540dfaea9f6cf1b3 -SIZE (xpi/firefox-i18n-10.0.8/or.xpi) = 281685 -SHA256 (xpi/firefox-i18n-10.0.8/pa-IN.xpi) = 71ee499e44149a1ae3ecb8c7cd69115ea8695b6d4ab16550ab0fc7f27bf3acd7 -SIZE (xpi/firefox-i18n-10.0.8/pa-IN.xpi) = 282145 -SHA256 (xpi/firefox-i18n-10.0.8/pl.xpi) = c30a48b98c726487126b686bd37685e22d9188b8951b4c9c471cf5dfbe029e91 -SIZE (xpi/firefox-i18n-10.0.8/pl.xpi) = 252046 -SHA256 (xpi/firefox-i18n-10.0.8/pt-BR.xpi) = 135323c4878a1263e3f86df2ebc3fb0ffd60e55084dc86f26932bbae7eff842a -SIZE (xpi/firefox-i18n-10.0.8/pt-BR.xpi) = 246849 -SHA256 (xpi/firefox-i18n-10.0.8/pt-PT.xpi) = 5f61b533f01107ac4af9daf6ee9960444d4aa5220154bad313a1e0044d164d0b -SIZE (xpi/firefox-i18n-10.0.8/pt-PT.xpi) = 246476 -SHA256 (xpi/firefox-i18n-10.0.8/rm.xpi) = 8f14beed486558ab7437ad6a405767f12ab8bc397871f94038d8df8f8a72fa05 -SIZE (xpi/firefox-i18n-10.0.8/rm.xpi) = 245771 -SHA256 (xpi/firefox-i18n-10.0.8/ro.xpi) = ca2945e49010f1348daa789eb1d4188e3ab0759e415008508c0cad15f1098d1b -SIZE (xpi/firefox-i18n-10.0.8/ro.xpi) = 263251 -SHA256 (xpi/firefox-i18n-10.0.8/ru.xpi) = b983a189c8da322a70333760640bfe8f664e250d460b8b69c27ad0fdfa0d1e07 -SIZE (xpi/firefox-i18n-10.0.8/ru.xpi) = 254984 -SHA256 (xpi/firefox-i18n-10.0.8/si.xpi) = d9577555b4ef34c934eb42ffe09a60001478f440714894092da8625248a2e413 -SIZE (xpi/firefox-i18n-10.0.8/si.xpi) = 271989 -SHA256 (xpi/firefox-i18n-10.0.8/sk.xpi) = 572496f3be73a19250e3360b91a01c7fd4580575725560233421d31bc963a7d2 -SIZE (xpi/firefox-i18n-10.0.8/sk.xpi) = 254288 -SHA256 (xpi/firefox-i18n-10.0.8/sl.xpi) = 51e24c6fe627ce3bbdac585106cdfcf67e74ba8cf580e165988dce0aba674544 -SIZE (xpi/firefox-i18n-10.0.8/sl.xpi) = 241035 -SHA256 (xpi/firefox-i18n-10.0.8/son.xpi) = 359eebfe63245255bb4988d2823f3141d763ff88ed4d97531fc9f3a9c056eecb -SIZE (xpi/firefox-i18n-10.0.8/son.xpi) = 239060 -SHA256 (xpi/firefox-i18n-10.0.8/sq.xpi) = 1b4229ad0f1a9a24d64deb21589b6906f581a0c88bf8c55383c4aa985ebbb3dd -SIZE (xpi/firefox-i18n-10.0.8/sq.xpi) = 227697 -SHA256 (xpi/firefox-i18n-10.0.8/sr.xpi) = 200eda813c393e7b276ed7cafb5a49bc6dc0d6266200ef5702989e5ab5244bfd -SIZE (xpi/firefox-i18n-10.0.8/sr.xpi) = 277744 -SHA256 (xpi/firefox-i18n-10.0.8/sv-SE.xpi) = 8f25c7aedd3f64733c2161c94c3b99ae3498cc4e79728f4d8945a847dcf3777c -SIZE (xpi/firefox-i18n-10.0.8/sv-SE.xpi) = 278880 -SHA256 (xpi/firefox-i18n-10.0.8/ta-LK.xpi) = fa188d4767123b938480469617588273943baadb30cf19d5564fccd6d2e75c65 -SIZE (xpi/firefox-i18n-10.0.8/ta-LK.xpi) = 290618 -SHA256 (xpi/firefox-i18n-10.0.8/ta.xpi) = 3e401e75dbe3414209da783dbd6ed95196d42a78f9e46bc31bd7d15004544d6e -SIZE (xpi/firefox-i18n-10.0.8/ta.xpi) = 274056 -SHA256 (xpi/firefox-i18n-10.0.8/te.xpi) = 034dcd346ce8ec5cfcd7072bf7cbb5018a72f3fc2247a9ade8859ac0eb07f169 -SIZE (xpi/firefox-i18n-10.0.8/te.xpi) = 289045 -SHA256 (xpi/firefox-i18n-10.0.8/th.xpi) = 263b0969d012db0a53c6e2d5e28c2e1b8fb50ff9aa18a8e5b2ca82fec5c62707 -SIZE (xpi/firefox-i18n-10.0.8/th.xpi) = 272422 -SHA256 (xpi/firefox-i18n-10.0.8/tr.xpi) = 14debc5200c40a30815219586f839b2db9023f6dce7f2e47317f511c9eaa94af -SIZE (xpi/firefox-i18n-10.0.8/tr.xpi) = 249917 -SHA256 (xpi/firefox-i18n-10.0.8/uk.xpi) = 14570c5911adc294157b0b47a5e792c6b7ec77f224fd3a44ec2ffa031f867e11 -SIZE (xpi/firefox-i18n-10.0.8/uk.xpi) = 279132 -SHA256 (xpi/firefox-i18n-10.0.8/vi.xpi) = 5a6db88669951f4bea809571ffbe15e55feec07c3276f9e797009e2ea01c4ca0 -SIZE (xpi/firefox-i18n-10.0.8/vi.xpi) = 262786 -SHA256 (xpi/firefox-i18n-10.0.8/zh-CN.xpi) = 336f096686ac0e928abe98031007a82dd9557edba8c77279b319b884babe5655 -SIZE (xpi/firefox-i18n-10.0.8/zh-CN.xpi) = 256546 -SHA256 (xpi/firefox-i18n-10.0.8/zh-TW.xpi) = e48ab0fea8d208b48db9a1fdc8c22439854c57f33e240007c2d587fdcf0de879 -SIZE (xpi/firefox-i18n-10.0.8/zh-TW.xpi) = 257492 -SHA256 (xpi/firefox-i18n-10.0.8/zu.xpi) = 2f08939f0ced3e5c59308829af376928ff9775ee4cf674cefb138abd7f6451ab -SIZE (xpi/firefox-i18n-10.0.8/zu.xpi) = 246395 +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 Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Fri Oct 12 07:57:47 2012 (r305764) +++ head/www/firefox-esr/Makefile Fri Oct 12 09:08:22 2012 (r305765) @@ -6,7 +6,7 @@ # PORTNAME= firefox -DISTVERSION= 10.0.8 +DISTVERSION= 10.0.9 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} Modified: head/www/firefox-esr/distinfo ============================================================================== --- head/www/firefox-esr/distinfo Fri Oct 12 07:57:47 2012 (r305764) +++ head/www/firefox-esr/distinfo Fri Oct 12 09:08:22 2012 (r305765) @@ -1,2 +1,2 @@ -SHA256 (firefox-10.0.8esr.source.tar.bz2) = e908c51761b0143b9f5e8b045b8c91b624357eee8786cd861028e1df60da52f9 -SIZE (firefox-10.0.8esr.source.tar.bz2) = 75620783 +SHA256 (firefox-10.0.9esr.source.tar.bz2) = 7719499f1b2610b497ed0ebbccd3fc84d2b331fed2ccd447aeb5e6b5b183155c +SIZE (firefox-10.0.9esr.source.tar.bz2) = 75634700 Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Fri Oct 12 07:57:47 2012 (r305764) +++ head/www/firefox/Makefile Fri Oct 12 09:08:22 2012 (r305765) @@ -7,6 +7,7 @@ PORTNAME= firefox DISTVERSION= 16.0.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Fri Oct 12 07:57:47 2012 (r305764) +++ head/www/libxul/Makefile Fri Oct 12 09:08:22 2012 (r305765) @@ -6,7 +6,7 @@ # PORTNAME= libxul -DISTVERSION= 10.0.8 +DISTVERSION= 10.0.9 CATEGORIES?= www devel MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= firefox/releases/${DISTVERSION}esr/source Modified: head/www/libxul/distinfo ============================================================================== --- head/www/libxul/distinfo Fri Oct 12 07:57:47 2012 (r305764) +++ head/www/libxul/distinfo Fri Oct 12 09:08:22 2012 (r305765) @@ -1,2 +1,2 @@ -SHA256 (firefox-10.0.8esr.source.tar.bz2) = e908c51761b0143b9f5e8b045b8c91b624357eee8786cd861028e1df60da52f9 -SIZE (firefox-10.0.8esr.source.tar.bz2) = 75620783 +SHA256 (firefox-10.0.9esr.source.tar.bz2) = 7719499f1b2610b497ed0ebbccd3fc84d2b331fed2ccd447aeb5e6b5b183155c +SIZE (firefox-10.0.9esr.source.tar.bz2) = 75634700 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 09:08:51 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 08AAB451; Fri, 12 Oct 2012 09:08:51 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E595C8FC1D; Fri, 12 Oct 2012 09:08: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 q9C98om6074157; Fri, 12 Oct 2012 09:08:50 GMT (envelope-from araujo@svn.freebsd.org) Received: (from araujo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C98oQD074154; Fri, 12 Oct 2012 09:08:50 GMT (envelope-from araujo@svn.freebsd.org) Message-Id: <201210120908.q9C98oQD074154@svn.freebsd.org> From: Marcelo Araujo Date: Fri, 12 Oct 2012 09:08:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305766 - head/graphics/xpdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 09:08:51 -0000 Author: araujo Date: Fri Oct 12 09:08:50 2012 New Revision: 305766 URL: http://svn.freebsd.org/changeset/ports/305766 Log: - Fix build and use the right path of freetype2. [1] - Don't install xpdf on libexec when build without X support. [1] PR: ports/169196 [1], ports/170525 [2] Submitted by: Christopher [1] Rainer Duffner [2] Feature safe: yes Modified: head/graphics/xpdf/Makefile head/graphics/xpdf/pkg-plist Modified: head/graphics/xpdf/Makefile ============================================================================== --- head/graphics/xpdf/Makefile Fri Oct 12 09:08:22 2012 (r305765) +++ head/graphics/xpdf/Makefile Fri Oct 12 09:08:50 2012 (r305766) @@ -7,7 +7,7 @@ PORTNAME= xpdf PORTVERSION= 3.03 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics print MASTER_SITES= ftp://ftp.foolabs.com/pub/xpdf/ \ ${MASTER_SITE_TEX_CTAN} @@ -24,7 +24,7 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --enable-opi \ --with-freetype2-library="${LOCALBASE}/lib" \ - --with-freetype2-includes="${LOCALBASE}/include/freetype2/" \ + --with-freetype2-includes="${LOCALBASE}/include/" \ --bindir="${PREFIX}/libexec/xpdf" OPTIONS= LIBPAPER "Enable libpaper" off \ @@ -65,7 +65,6 @@ PLIST_SUB+= X11="@comment " .else CONFIGURE_ARGS+= --with-x USE_MOTIF= yes -MAN1+= xpdf.1 PLIST_SUB+= X11="" .endif Modified: head/graphics/xpdf/pkg-plist ============================================================================== --- head/graphics/xpdf/pkg-plist Fri Oct 12 09:08:22 2012 (r305765) +++ head/graphics/xpdf/pkg-plist Fri Oct 12 09:08:50 2012 (r305766) @@ -5,7 +5,6 @@ libexec/xpdf/pdfdetach libexec/xpdf/pdftoppm libexec/xpdf/pdftops libexec/xpdf/pdftotext -libexec/xpdf/xpdf %%X11%%bin/xpdf etc/xpdfrc %%PORTDOCS%%%%DOCSDIR%%/ANNOUNCE From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 09:13:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27FA1822; Fri, 12 Oct 2012 09:13:43 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 11EB78FC1F; Fri, 12 Oct 2012 09:13: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 q9C9DgKm074806; Fri, 12 Oct 2012 09:13:42 GMT (envelope-from araujo@svn.freebsd.org) Received: (from araujo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C9Dgos074804; Fri, 12 Oct 2012 09:13:42 GMT (envelope-from araujo@svn.freebsd.org) Message-Id: <201210120913.q9C9Dgos074804@svn.freebsd.org> From: Marcelo Araujo Date: Fri, 12 Oct 2012 09:13:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305767 - head/graphics/xpdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 09:13:43 -0000 Author: araujo Date: Fri Oct 12 09:13:42 2012 New Revision: 305767 URL: http://svn.freebsd.org/changeset/ports/305767 Log: - Trim header, forgotten in my previous commit. Feature safe: yes Modified: head/graphics/xpdf/Makefile Modified: head/graphics/xpdf/Makefile ============================================================================== --- head/graphics/xpdf/Makefile Fri Oct 12 09:08:50 2012 (r305766) +++ head/graphics/xpdf/Makefile Fri Oct 12 09:13:42 2012 (r305767) @@ -1,9 +1,4 @@ -# New ports collection makefile for: xpdf -# Date created: 02 Feb 1996 -# Whom: chuckr@glue.umd.edu -# # $FreeBSD$ -# PORTNAME= xpdf PORTVERSION= 3.03 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 09:21:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C012A85; Fri, 12 Oct 2012 09:21:49 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4C4328FC18; Fri, 12 Oct 2012 09:21:49 +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 q9C9Lnsm075771; Fri, 12 Oct 2012 09:21:49 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C9LnMZ075769; Fri, 12 Oct 2012 09:21:49 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210120921.q9C9LnMZ075769@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 09:21:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305768 - head/multimedia/ffmpegthumbnailer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 09:21:49 -0000 Author: jhale Date: Fri Oct 12 09:21:48 2012 New Revision: 305768 URL: http://svn.freebsd.org/changeset/ports/305768 Log: - Add gconf2 dependency for GNOME option [1] - Convert to USE_PKGCONFIG - Drop USE_GMAKE; port builds with regular make - Drop unneeded WANT_GNOME - Drop specific ABI version numbers from LIB_DEPENDS - Improve GCONF_SCHEMAS handling - Trim Makefile header PR: ports/172459 Submitted by: Hon-Yu Lawrence Cheung [1] Approved by: mbsd (maintainer) makc, avilla (mentors, implicit) Feature safe: yes Modified: head/multimedia/ffmpegthumbnailer/Makefile (contents, props changed) Modified: head/multimedia/ffmpegthumbnailer/Makefile ============================================================================== --- head/multimedia/ffmpegthumbnailer/Makefile Fri Oct 12 09:13:42 2012 (r305767) +++ head/multimedia/ffmpegthumbnailer/Makefile Fri Oct 12 09:21:48 2012 (r305768) @@ -1,7 +1,4 @@ -# New ports collection makefile for: ffmpegthumbnailer -# Date created: Mo 18 Feb 2008 06:11:13 CET -# Whom: Dierk Sacher -# +# Created by: Dierk Sacher # $FreeBSD$ PORTNAME= ffmpegthumbnailer @@ -15,36 +12,37 @@ COMMENT= Lightweight video thumbnailer t LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ swscale:${PORTSDIR}/multimedia/ffmpeg \ - jpeg.11:${PORTSDIR}/graphics/jpeg + jpeg:${PORTSDIR}/graphics/jpeg CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig --enable-gio GNU_CONFIGURE= yes -USE_GMAKE= yes -USE_GNOME= gnomehack pkgconfig _glib20 +USE_PKGCONFIG= build +USE_GNOME= gnomehack _glib20 USE_LDCONFIG= yes -WANT_GNOME= yes - OPTIONS_DEFINE= GNOME -.include +MAN1= ffmpegthumbnailer.1 + +.include .if ${PORT_OPTIONS:MGNOME} PKGNAMESUFFIX+= -gnome +USE_GNOME+= gconf2 GCONF_SCHEMAS= ffmpegthumbnailer.schemas .endif -MAN1= ffmpegthumbnailer.1 - post-install: cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE} install-pkgconfigDATA .if ${PORT_OPTIONS:MGNOME} - ${INSTALL_DATA} ${FILESDIR}/${GCONF_SCHEMAS} ${LOCALBASE}/etc/gconf/schemas - @${SETENV} GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \ - gconftool-2 --makefile-install-rule ${LOCALBASE}/etc/gconf/schemas/${GCONF_SCHEMAS} \ - > /dev/null + ${MKDIR} ${PREFIX}/etc/gconf/schemas + ${INSTALL_DATA} ${FILESDIR}/${GCONF_SCHEMAS} ${PREFIX}/etc/gconf/schemas + @${SETENV} GCONF_CONFIG_SOURCE=xml:${GCONF_CONFIG_OPTIONS}:${PREFIX}/${GCONF_CONFIG_DIRECTORY} \ + gconftool-2 --makefile-install-rule ${PREFIX}/etc/gconf/schemas/${GCONF_SCHEMAS} \ + > /dev/null || ${TRUE} .endif -.include + +.include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 09:45:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AD2D2ED; Fri, 12 Oct 2012 09:45:57 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2B15F8FC0A; Fri, 12 Oct 2012 09:45:57 +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 q9C9jvaI078603; Fri, 12 Oct 2012 09:45:57 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C9ju4R078600; Fri, 12 Oct 2012 09:45:56 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210120945.q9C9ju4R078600@svn.freebsd.org> From: Frederic Culot Date: Fri, 12 Oct 2012 09:45:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305769 - head/net/p5-Net-Patricia X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 09:45:57 -0000 Author: culot Date: Fri Oct 12 09:45:56 2012 New Revision: 305769 URL: http://svn.freebsd.org/changeset/ports/305769 Log: - Update to 1.20 [1] - Remove dependency on p5-version (already in core) - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/Net-Patricia/Changes PR: ports/172580 [1] Submitted by: Nick Hilliard Feature safe: yes Modified: head/net/p5-Net-Patricia/Makefile head/net/p5-Net-Patricia/distinfo Modified: head/net/p5-Net-Patricia/Makefile ============================================================================== --- head/net/p5-Net-Patricia/Makefile Fri Oct 12 09:21:48 2012 (r305768) +++ head/net/p5-Net-Patricia/Makefile Fri Oct 12 09:45:56 2012 (r305769) @@ -1,12 +1,8 @@ -# New ports collection makefile for: p5-Net-Patricia -# Date created: Di 13 Mär 2001 19:37:25 CET -# Whom: Andreas Klemm -# +# Created by: Andreas Klemm # $FreeBSD$ -# PORTNAME= Net-Patricia -PORTVERSION= 1.19 +PORTVERSION= 1.20 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,12 +10,17 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl module for fast IP address lookups -RUN_DEPENDS= p5-version>=0:${PORTSDIR}/devel/p5-version \ - p5-Net-CIDR-Lite>=0:${PORTSDIR}/net/p5-Net-CIDR-Lite \ - p5-Socket6>=0:${PORTSDIR}/net/p5-Socket6 +BUILD_DEPENDS= p5-Net-CIDR-Lite>=0.20:${PORTSDIR}/net/p5-Net-CIDR-Lite +RUN_DEPENDS= p5-Socket6>=0:${PORTSDIR}/net/p5-Socket6 PERL_CONFIGURE= YES MAN3= Net::Patricia.3 -.include +.include + +.if ${PERL_LEVEL} < 501001 +TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Modified: head/net/p5-Net-Patricia/distinfo ============================================================================== --- head/net/p5-Net-Patricia/distinfo Fri Oct 12 09:21:48 2012 (r305768) +++ head/net/p5-Net-Patricia/distinfo Fri Oct 12 09:45:56 2012 (r305769) @@ -1,2 +1,2 @@ -SHA256 (Net-Patricia-1.19.tar.gz) = c378a73280fb458210664e933ce67b281cab49b326840aee065ef95308054d5a -SIZE (Net-Patricia-1.19.tar.gz) = 25387 +SHA256 (Net-Patricia-1.20.tar.gz) = bbec37f44384346b53daf2599bf1a3dd0726cde946e7cff56f3f6ac0ace072ef +SIZE (Net-Patricia-1.20.tar.gz) = 27271 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 09:58:40 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FAC37C7; Fri, 12 Oct 2012 09:58:40 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E23888FC17; Fri, 12 Oct 2012 09:58: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 q9C9wdqG080101; Fri, 12 Oct 2012 09:58:39 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C9wdjP080096; Fri, 12 Oct 2012 09:58:39 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210120958.q9C9wdjP080096@svn.freebsd.org> From: Frederic Culot Date: Fri, 12 Oct 2012 09:58:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305770 - head/textproc/py-rdflib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 09:58:40 -0000 Author: culot Date: Fri Oct 12 09:58:39 2012 New Revision: 305770 URL: http://svn.freebsd.org/changeset/ports/305770 Log: - Update to 3.2.3 Changes: https://github.com/RDFLib/rdflib/blob/master/CHANGELOG PR: ports/172612 Submitted by: Kubilay Kocak Feature safe: yes Modified: head/textproc/py-rdflib/Makefile head/textproc/py-rdflib/distinfo head/textproc/py-rdflib/pkg-plist Modified: head/textproc/py-rdflib/Makefile ============================================================================== --- head/textproc/py-rdflib/Makefile Fri Oct 12 09:45:56 2012 (r305769) +++ head/textproc/py-rdflib/Makefile Fri Oct 12 09:58:39 2012 (r305770) @@ -1,13 +1,8 @@ -# ex:ts=8 -# Ports collection makefile for: py-rdflib -# Date created: Aug 14, 2002 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD$ -# PORTNAME= rdflib -PORTVERSION= 3.2.1 +PORTVERSION= 3.2.3 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,7 +14,7 @@ LICENSE= BSD RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}isodate>=0:${PORTSDIR}/devel/py-isodate -USE_PYTHON= -2.7 +USE_PYTHON= -2.7 USE_PYDISTUTILS= yes post-patch: Modified: head/textproc/py-rdflib/distinfo ============================================================================== --- head/textproc/py-rdflib/distinfo Fri Oct 12 09:45:56 2012 (r305769) +++ head/textproc/py-rdflib/distinfo Fri Oct 12 09:58:39 2012 (r305770) @@ -1,2 +1,2 @@ -SHA256 (rdflib-3.2.1.tar.gz) = b1193b3614bf8f57793adcff0d0bbff9ed67a667849302c4f46192eb34822b21 -SIZE (rdflib-3.2.1.tar.gz) = 439814 +SHA256 (rdflib-3.2.3.tar.gz) = a3cab51c14fa6fe379261e0157c110d94e2f75ef62073ddc76fe56f5be624b75 +SIZE (rdflib-3.2.3.tar.gz) = 449077 Modified: head/textproc/py-rdflib/pkg-plist ============================================================================== --- head/textproc/py-rdflib/pkg-plist Fri Oct 12 09:45:56 2012 (r305769) +++ head/textproc/py-rdflib/pkg-plist Fri Oct 12 09:58:39 2012 (r305770) @@ -7,6 +7,9 @@ %%PYTHON_SITELIBDIR%%/rdflib/compare.py %%PYTHON_SITELIBDIR%%/rdflib/compare.pyc %%PYTHON_SITELIBDIR%%/rdflib/compare.pyo +%%PYTHON_SITELIBDIR%%/rdflib/compat.py +%%PYTHON_SITELIBDIR%%/rdflib/compat.pyc +%%PYTHON_SITELIBDIR%%/rdflib/compat.pyo %%PYTHON_SITELIBDIR%%/rdflib/events.py %%PYTHON_SITELIBDIR%%/rdflib/events.pyc %%PYTHON_SITELIBDIR%%/rdflib/events.pyo @@ -91,6 +94,9 @@ %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/rdfxml.py %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/rdfxml.pyc %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/rdfxml.pyo +%%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trig.py +%%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trig.pyc +%%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trig.pyo %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trix.py %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trix.pyc %%PYTHON_SITELIBDIR%%/rdflib/plugins/serializers/trix.pyo From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 10:31:19 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36F0936B; Fri, 12 Oct 2012 10:31:19 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 214058FC0C; Fri, 12 Oct 2012 10:31: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 q9CAVIi4086091; Fri, 12 Oct 2012 10:31:18 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CAVILS086088; Fri, 12 Oct 2012 10:31:18 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210121031.q9CAVILS086088@svn.freebsd.org> From: Frederic Culot Date: Fri, 12 Oct 2012 10:31:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305771 - head/databases/py-umemcache X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 10:31:19 -0000 Author: culot Date: Fri Oct 12 10:31:18 2012 New Revision: 305771 URL: http://svn.freebsd.org/changeset/ports/305771 Log: - Update to 1.5 - Sort USE_* flags PR: ports/172384 Submitted by: Kubilay Kocak (maintainer) Feature safe: yes Modified: head/databases/py-umemcache/Makefile head/databases/py-umemcache/distinfo Modified: head/databases/py-umemcache/Makefile ============================================================================== --- head/databases/py-umemcache/Makefile Fri Oct 12 09:58:39 2012 (r305770) +++ head/databases/py-umemcache/Makefile Fri Oct 12 10:31:18 2012 (r305771) @@ -1,12 +1,8 @@ -# New ports collection makefile for: py-umemcache -# Date created: 2012-08-18 -# Whom: Kubilay Kocak -# +# Created by: Kubilay Kocak # $FreeBSD$ -# PORTNAME= umemcache -PORTVERSION= 1.4 +PORTVERSION= 1.5 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,10 +12,10 @@ COMMENT= Memcache client written in high LICENSE= BSD -USE_DOS2UNIX= yes -USE_ZIP= yes -USE_PYTHON= -2.7 +USE_DOS2UNIX= yes +USE_PYTHON= -2.7 USE_PYDISTUTILS= yes +USE_ZIP= yes PLIST_FILES= %%PYTHON_SITELIBDIR%%/umemcache.so Modified: head/databases/py-umemcache/distinfo ============================================================================== --- head/databases/py-umemcache/distinfo Fri Oct 12 09:58:39 2012 (r305770) +++ head/databases/py-umemcache/distinfo Fri Oct 12 10:31:18 2012 (r305771) @@ -1,2 +1,2 @@ -SHA256 (umemcache-1.4.zip) = 0552e07cfa05bf19cbfa4b3b725b5daa5be9184d4bdeca98fb00f23aee20afb3 -SIZE (umemcache-1.4.zip) = 24005 +SHA256 (umemcache-1.5.zip) = d8276747d301e0fd8186ab3bd9847c4057328ef2fca08330e0eccf50f87bd4f0 +SIZE (umemcache-1.5.zip) = 25240 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 11:03:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6406DA4C; Fri, 12 Oct 2012 11:03:25 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4CEED8FC14; Fri, 12 Oct 2012 11:03:25 +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 q9CB3PKU090164; Fri, 12 Oct 2012 11:03:25 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CB3PUT090161; Fri, 12 Oct 2012 11:03:25 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210121103.q9CB3PUT090161@svn.freebsd.org> From: Frederic Culot Date: Fri, 12 Oct 2012 11:03:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305772 - head/devel/p5-CPAN-Perl-Releases X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 11:03:25 -0000 Author: culot Date: Fri Oct 12 11:03:24 2012 New Revision: 305772 URL: http://svn.freebsd.org/changeset/ports/305772 Log: - Update to 0.74 Changes: http://search.cpan.org/dist/CPAN-Perl-Releases/Changes Feature safe: yes Modified: head/devel/p5-CPAN-Perl-Releases/Makefile head/devel/p5-CPAN-Perl-Releases/distinfo Modified: head/devel/p5-CPAN-Perl-Releases/Makefile ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/Makefile Fri Oct 12 10:31:18 2012 (r305771) +++ head/devel/p5-CPAN-Perl-Releases/Makefile Fri Oct 12 11:03:24 2012 (r305772) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CPAN-Perl-Releases -PORTVERSION= 0.72 +PORTVERSION= 0.74 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-CPAN-Perl-Releases/distinfo ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/distinfo Fri Oct 12 10:31:18 2012 (r305771) +++ head/devel/p5-CPAN-Perl-Releases/distinfo Fri Oct 12 11:03:24 2012 (r305772) @@ -1,2 +1,2 @@ -SHA256 (CPAN-Perl-Releases-0.72.tar.gz) = 9f85c687c565318c7fa891ca38cc48346cf99a153a781eb26b289fb3762466b4 -SIZE (CPAN-Perl-Releases-0.72.tar.gz) = 16560 +SHA256 (CPAN-Perl-Releases-0.74.tar.gz) = 74d0414e359415b29bd6d79ed837aa3c94d1efd78661d8aa63f493c632fb02b5 +SIZE (CPAN-Perl-Releases-0.74.tar.gz) = 16637 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 11:10:31 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 078E6D86; Fri, 12 Oct 2012 11:10:31 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E4D5A8FC0C; Fri, 12 Oct 2012 11:10: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 q9CBAU6B091259; Fri, 12 Oct 2012 11:10:30 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CBAUtH091253; Fri, 12 Oct 2012 11:10:30 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210121110.q9CBAUtH091253@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 11:10:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305773 - in head/security: barnyard2 barnyard2-sguil barnyard2/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 11:10:31 -0000 Author: jhale Date: Fri Oct 12 11:10:30 2012 New Revision: 305773 URL: http://svn.freebsd.org/changeset/ports/305773 Log: - Update to 1.10 - Convert to new options framework - Allow for any available version of TCL to be used - Add LICENSE - Remove indefinite article from COMMENT, update - Mark MAKE_JOBS_SAFE - Trim Makefile header PR: ports/172456 Submitted by: Paul Schmehl (maintainer) Approved by: makc (mentor) Feature safe: yes Added: head/security/barnyard2/files/patch-etc__Makefile.am (contents, props changed) Deleted: head/security/barnyard2/files/patch-configure head/security/barnyard2/files/patch-etc-Makefile.in Modified: head/security/barnyard2-sguil/Makefile (contents, props changed) head/security/barnyard2/Makefile (contents, props changed) head/security/barnyard2/distinfo (contents, props changed) head/security/barnyard2/pkg-plist (contents, props changed) Modified: head/security/barnyard2-sguil/Makefile ============================================================================== --- head/security/barnyard2-sguil/Makefile Fri Oct 12 11:03:24 2012 (r305772) +++ head/security/barnyard2-sguil/Makefile Fri Oct 12 11:10:30 2012 (r305773) @@ -1,12 +1,11 @@ # $FreeBSD$ -# PKGNAMESUFFIX= -sguil MASTERDIR= ${.CURDIR}/../barnyard2 # enable tcl binding for sguil -WITH_TCL= yes +PORT_OPTIONS+= TCL SLAVE= yes .include "${MASTERDIR}/Makefile" Modified: head/security/barnyard2/Makefile ============================================================================== --- head/security/barnyard2/Makefile Fri Oct 12 11:03:24 2012 (r305772) +++ head/security/barnyard2/Makefile Fri Oct 12 11:10:30 2012 (r305773) @@ -1,88 +1,116 @@ -# New ports collection makefile for: barnyard2 -# Date created: 28 Aug 2009 -# Whom: pauls -# # $FreeBSD$ -# PORTNAME= barnyard2 -PORTVERSION= 1.9 -PORTREVISION= 2 +PORTVERSION= 1.10 +PORTREVISION?= 0 CATEGORIES= security -MASTER_SITES= http://www.securixlive.com/download/barnyard2/ MAINTAINER= pauls@utdallas.edu -COMMENT= An output system for Snort or Suricata that parses unified2 files +COMMENT= Interpreter for Snort unified2 binary output files + +LICENSE= GPLv2 + +USE_GITHUB= yes +GH_ACCOUNT= firnsy +GH_PROJECT= ${PORTNAME} +GH_TAGNAME= v2-${PORTVERSION} +GH_COMMIT= 2f5d496 + +OPTIONS_DEFINE= MYSQL PGSQL BRO SNORT SNORTSAM SURICATA +OPTIONS_DEFAULT=#empty +NO_OPTIONS_SORT=yes + +BRO_DESC= Depend on security/bro +MYSQL_DESC= Enable MySQL support +PGSQL_DESC= Enable PostgreSQL support +SNORT_DESC= Depend on security/snort +SNORTSAM_DESC= Depend on security/snortsam +SURICATA_DESC= Depend on security/suricata -OPTIONS= MYSQL "Enable MySQL support" on \ - POSTGRESQL "Enable PostgreSQL support" off \ - SNORT "Depend on security/snort" off \ - SURICATA "Depend on security/suricata" off .if !defined(SLAVE) -OPTIONS+= TCL "Enable TCL support" off +OPTIONS_DEFINE+=TCL .endif +USE_AUTOTOOLS= libtoolize aclocal autoheader automake autoconf +LIBTOOLIZE_ARGS=--copy --force +AUTOMAKE_ARGS= --add-missing --copy +ACLOCAL_ARGS= -I m4 -I ${LOCALBASE}/share/aclocal + USE_RC_SUBR= barnyard2 GNU_CONFIGURE= yes +MAKE_JOBS_SAFE= yes + SUB_FILES= pkg-message -PORTDOCS1= README -PORTDOCS2= INSTALL README.aruba README.database README.sguil +PORTDOCS1= README RELEASE.NOTES +PORTDOCS2= INSTALL README.aruba README.database README.sguil README.snortsam +PORTEXAMPLES= create_db2 create_mysql create_postgresql SCHEMA_ACCESS create_mssql create_oracle.sql PORTDOCS= ${PORTDOCS1} ${PORTDOCS2} -.include +.include -.if defined(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql \ --with-mysql-includes=${LOCALBASE}/include/mysql \ --with-mysql-libraries=${LOCALBASE}/lib/mysql SUB_LIST+= MYSQL=" mysql" .else +CONFIGURE_ARGS+= --without-mysql SUB_LIST+= MYSQL="" .endif -.if defined(WITH_POSTGRESQL) +.if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= yes -CONFIGURE_ARGS+= --with-postgresql +CONFIGURE_ARGS+= --with-postgresql=${LOCALBASE} SUB_LIST+= PGSQL=" postgresql" .else +CONFIGURE_ARGS+= --without-postgresql SUB_LIST+= PGSQL="" .endif -.if defined(WITH_SNORT) +.if ${PORT_OPTIONS:MBRO} +RUN_DEPENDS+= ${LOCALBASE}/bin/bro:${PORTSDIR}/security/bro +.endif + +.if ${PORT_OPTIONS:MSNORT} RUN_DEPENDS+= ${LOCALBASE}/bin/snort:${PORTSDIR}/security/snort .endif -.if defined(WITH_SURICATA) +.if ${PORT_OPTIONS:MSNORTSAM} +RUN_DEPENDS+= ${LOCALBASE}/bin/snortsnam:${PORTSDIR}/security/snortsam +.endif + +.if ${PORT_OPTIONS:MSURICATA} RUN_DEPENDS+= ${LOCALBASE}/bin/suricata:${PORTSDIR}/security/suricata .endif -.if defined(WITH_TCL) +.if ${PORT_OPTIONS:MTCL} USE_TCL= yes -CONFIGURE_ARGS+= --with-tcl=${PREFIX}/lib/tcl8.4 -LIB_DEPENDS+= tcl84.1:${PORTSDIR}/lang/tcl84 +CONFIGURE_ARGS+= --with-tcl=${LOCALBASE}/lib/tcl${TCL_VER} +.else +CONFIGURE_ARGS+= --without-tcl .endif -pre-install: - ${CHMOD} 744 ${WRKSRC}/install-sh - post-patch: @${REINPLACE_CMD} 's|/etc|${LOCALBASE}/etc|' \ ${WRKSRC}/etc/barnyard2.conf post-install: + if [ ! -f ${PREFIX}/etc/barnyard2.conf ]; then \ + ${CP} -p ${PREFIX}/etc/barnyard2.conf.sample ${PREFIX}/etc/barnyard2.conf; \ + fi -.for f in barnyard2.conf - [ -f ${PREFIX}/etc/${f} ] || \ - ${INSTALL_DATA} ${WRKSRC}/etc/${f} ${PREFIX}/etc/${f} -.endfor -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS1} ${DOCSDIR} cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS2} ${DOCSDIR} .endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + cd ${WRKSRC}/schemas && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR} +.endif @${CAT} ${PKGMESSAGE} -.include +.include Modified: head/security/barnyard2/distinfo ============================================================================== --- head/security/barnyard2/distinfo Fri Oct 12 11:03:24 2012 (r305772) +++ head/security/barnyard2/distinfo Fri Oct 12 11:10:30 2012 (r305773) @@ -1,2 +1,2 @@ -SHA256 (barnyard2-1.9.tar.gz) = 6bce0d5bd4a6fa2be2e5b1daaed1d6d0ec8e7f50b33bc1125125c8a9e78a5b0c -SIZE (barnyard2-1.9.tar.gz) = 652879 +SHA256 (barnyard2-1.10.tar.gz) = 31d4e3745606489658bd411f74ffeb8a27573fdc08d0b51a6a71e1bf4dece8a2 +SIZE (barnyard2-1.10.tar.gz) = 419781 Added: head/security/barnyard2/files/patch-etc__Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/barnyard2/files/patch-etc__Makefile.am Fri Oct 12 11:10:30 2012 (r305773) @@ -0,0 +1,8 @@ +--- ./etc/Makefile.am.orig 2012-10-08 10:03:32.000000000 -0400 ++++ ./etc/Makefile.am 2012-10-08 10:05:02.000000000 -0400 +@@ -4,4 +4,4 @@ + EXTRA_DIST = barnyard2.conf + + install-data-am: +- test -e $(sysconfdir)/barnyard2.conf || install -m 600 $(top_srcdir)/etc/barnyard2.conf $(sysconfdir) ++ install -m 600 $(top_srcdir)/etc/barnyard2.conf $(sysconfdir)/barnyard2.conf.sample Modified: head/security/barnyard2/pkg-plist ============================================================================== --- head/security/barnyard2/pkg-plist Fri Oct 12 11:03:24 2012 (r305772) +++ head/security/barnyard2/pkg-plist Fri Oct 12 11:10:30 2012 (r305773) @@ -1,4 +1,4 @@ bin/barnyard2 -@unexec if [ -f %D/etc/barnyard2.conf ] && cmp -s %D/etc/barnyard2.conf %D/etc/barnyard2.conf-sample; then rm -f %D/etc/barnyard2.conf; fi -etc/barnyard2.conf-sample -@exec if [ ! -f %D/etc/barnyard2.conf ] ; then cp -p %D/%F %B/barnyard2.conf; fi +@unexec if cmp -s %D/etc/barnyard2.conf %D/etc/barnyard2.conf.sample; then rm -f %D/etc/barnyard2.conf; fi +etc/barnyard2.conf.sample +@exec [ -f %B/barnyard2.conf ] || cp -p %B/%f %B/barnyard2.conf From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 11:29:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FB507D7; Fri, 12 Oct 2012 11:29:35 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id ED3558FC16; Fri, 12 Oct 2012 11:29: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 q9CBTY80093893; Fri, 12 Oct 2012 11:29:34 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CBTYsa093890; Fri, 12 Oct 2012 11:29:34 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210121129.q9CBTYsa093890@svn.freebsd.org> From: Frederic Culot Date: Fri, 12 Oct 2012 11:29:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305774 - head/devel/p5-Term-Menus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 11:29:35 -0000 Author: culot Date: Fri Oct 12 11:29:34 2012 New Revision: 305774 URL: http://svn.freebsd.org/changeset/ports/305774 Log: - Update to 2.19 Changes: http://search.cpan.org/dist/Term-Menus/ChangeLog Feature safe: yes Modified: head/devel/p5-Term-Menus/Makefile head/devel/p5-Term-Menus/distinfo Modified: head/devel/p5-Term-Menus/Makefile ============================================================================== --- head/devel/p5-Term-Menus/Makefile Fri Oct 12 11:10:30 2012 (r305773) +++ head/devel/p5-Term-Menus/Makefile Fri Oct 12 11:29:34 2012 (r305774) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Term-Menus -PORTVERSION= 2.18 +PORTVERSION= 2.19 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:REEDFISH Modified: head/devel/p5-Term-Menus/distinfo ============================================================================== --- head/devel/p5-Term-Menus/distinfo Fri Oct 12 11:10:30 2012 (r305773) +++ head/devel/p5-Term-Menus/distinfo Fri Oct 12 11:29:34 2012 (r305774) @@ -1,2 +1,2 @@ -SHA256 (Term-Menus-2.18.tar.gz) = 5ca6f3e9b3dcda9b00204e51fcd6a486f45efc6b36d00d6d7441f85c47ac34fe -SIZE (Term-Menus-2.18.tar.gz) = 96638 +SHA256 (Term-Menus-2.19.tar.gz) = 3c264f6bff708e0fe2b87371d2e9dd096394131f629d400ce2cf1f66300c2b10 +SIZE (Term-Menus-2.19.tar.gz) = 96682 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 12:15:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0DC41ED3; Fri, 12 Oct 2012 12:15:04 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EA8A38FC08; Fri, 12 Oct 2012 12:15:03 +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 q9CCF3I5000425; Fri, 12 Oct 2012 12:15:03 GMT (envelope-from adamw@svn.freebsd.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CCF3SR000423; Fri, 12 Oct 2012 12:15:03 GMT (envelope-from adamw@svn.freebsd.org) Message-Id: <201210121215.q9CCF3SR000423@svn.freebsd.org> From: Adam Weinberger Date: Fri, 12 Oct 2012 12:15:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305775 - head/games/secretmaryochronicles-music X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 12:15:04 -0000 Author: adamw Date: Fri Oct 12 12:15:03 2012 New Revision: 305775 URL: http://svn.freebsd.org/changeset/ports/305775 Log: Release MAINTAINERship. Feature safe: yes Modified: head/games/secretmaryochronicles-music/Makefile Modified: head/games/secretmaryochronicles-music/Makefile ============================================================================== --- head/games/secretmaryochronicles-music/Makefile Fri Oct 12 11:29:34 2012 (r305774) +++ head/games/secretmaryochronicles-music/Makefile Fri Oct 12 12:15:03 2012 (r305775) @@ -11,7 +11,7 @@ CATEGORIES= games MASTER_SITES= SF/smclone/Addon%20-%20Music/${PORTVERSION} DISTNAME= SMC_Music_${PORTVERSION}_high -MAINTAINER= adamw@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Background music for Secret Maryo Chronicles RUN_DEPENDS= smc:${PORTSDIR}/games/secretmaryochronicles From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 12:54:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E87E31F; Fri, 12 Oct 2012 12:54:02 +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 EB7408FC16; Fri, 12 Oct 2012 12:54: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 q9CCs1qU005865; Fri, 12 Oct 2012 12:54:01 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CCs1Qb005862; Fri, 12 Oct 2012 12:54:01 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210121254.q9CCs1Qb005862@svn.freebsd.org> From: Bryan Drewery Date: Fri, 12 Oct 2012 12:54:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305776 - head/sysutils/coreutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 12:54:02 -0000 Author: bdrewery Date: Fri Oct 12 12:54:01 2012 New Revision: 305776 URL: http://svn.freebsd.org/changeset/ports/305776 Log: - Fix plist referencing 2 nonexistent files with NLS [1] - Trim header PR: ports/172597 [1] Submitted by: bdrewery Approved by: Jason Harris (maintainer) [1] Approved by: portmgr (erwin) Feature safe: yes Modified: head/sysutils/coreutils/Makefile head/sysutils/coreutils/pkg-plist Modified: head/sysutils/coreutils/Makefile ============================================================================== --- head/sysutils/coreutils/Makefile Fri Oct 12 12:15:03 2012 (r305775) +++ head/sysutils/coreutils/Makefile Fri Oct 12 12:54:01 2012 (r305776) @@ -1,13 +1,9 @@ -# New ports collection makefile for: coreutils -# Date created: 18 November 2003 -# Whom: Jason Harris -# +# Created by: Jason Harris # $FreeBSD$ -# PORTNAME= coreutils PORTVERSION= 8.19 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils textproc MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} Modified: head/sysutils/coreutils/pkg-plist ============================================================================== --- head/sysutils/coreutils/pkg-plist Fri Oct 12 12:15:03 2012 (r305775) +++ head/sysutils/coreutils/pkg-plist Fri Oct 12 12:54:01 2012 (r305776) @@ -198,8 +198,6 @@ libexec/coreutils/glibstdbuf.so %%NLS%%@dirrmtry share/locale/sl/LC_MESSAGES %%NLS%%@dirrmtry share/locale/sk/LC_TIME %%NLS%%@dirrmtry share/locale/sk/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/rw/LC_TIME -%%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES %%NLS%%@dirrmtry share/locale/ru/LC_TIME %%NLS%%@dirrmtry share/locale/ru/LC_MESSAGES %%NLS%%@dirrmtry share/locale/ro/LC_TIME From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 13:22:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0CF65FD6; Fri, 12 Oct 2012 13:22:21 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E96C48FC0A; Fri, 12 Oct 2012 13:22:20 +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 q9CDMKaA010178; Fri, 12 Oct 2012 13:22:20 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CDMKNo010175; Fri, 12 Oct 2012 13:22:20 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210121322.q9CDMKNo010175@svn.freebsd.org> From: Alex Dupre Date: Fri, 12 Oct 2012 13:22:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305777 - head/databases/mysql51-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 13:22:21 -0000 Author: ale Date: Fri Oct 12 13:22:20 2012 New Revision: 305777 URL: http://svn.freebsd.org/changeset/ports/305777 Log: Update to 5.1.66 release. Feature safe: yes Modified: head/databases/mysql51-server/Makefile head/databases/mysql51-server/distinfo Modified: head/databases/mysql51-server/Makefile ============================================================================== --- head/databases/mysql51-server/Makefile Fri Oct 12 12:54:01 2012 (r305776) +++ head/databases/mysql51-server/Makefile Fri Oct 12 13:22:20 2012 (r305777) @@ -1,12 +1,8 @@ -# New ports collection makefile for: MySQL-server -# Date created: 28 Jan 2006 -# Whom: Alex Dupre -# +# Created by: Alex Dupre # $FreeBSD$ -# PORTNAME?= mysql -PORTVERSION= 5.1.65 +PORTVERSION= 5.1.66 PORTREVISION?= 0 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_MYSQL} Modified: head/databases/mysql51-server/distinfo ============================================================================== --- head/databases/mysql51-server/distinfo Fri Oct 12 12:54:01 2012 (r305776) +++ head/databases/mysql51-server/distinfo Fri Oct 12 13:22:20 2012 (r305777) @@ -1,2 +1,2 @@ -SHA256 (mysql-5.1.65.tar.gz) = 393c2933b27aeb5d80d4da628e2371d85fee8d4d7fa3e08aa181edb7385a4db9 -SIZE (mysql-5.1.65.tar.gz) = 24673939 +SHA256 (mysql-5.1.66.tar.gz) = eb85e3fa152949670f5b6f4379bd1d700a5f4726660ce18ff0ca628190cba907 +SIZE (mysql-5.1.66.tar.gz) = 24771341 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 13:45:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69B00862; Fri, 12 Oct 2012 13:45:00 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 516708FC12; Fri, 12 Oct 2012 13:45:00 +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 q9CDj0es013331; Fri, 12 Oct 2012 13:45:00 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CDj0Yl013327; Fri, 12 Oct 2012 13:45:00 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210121345.q9CDj0Yl013327@svn.freebsd.org> From: Alex Dupre Date: Fri, 12 Oct 2012 13:45:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305778 - in head/databases: mysql55-client/files mysql55-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 13:45:00 -0000 Author: ale Date: Fri Oct 12 13:44:59 2012 New Revision: 305778 URL: http://svn.freebsd.org/changeset/ports/305778 Log: Update to 5.5.28 release and switch to OptionsNG. Feature safe: yes Modified: head/databases/mysql55-client/files/patch-CMakeLists.txt head/databases/mysql55-server/Makefile head/databases/mysql55-server/distinfo Modified: head/databases/mysql55-client/files/patch-CMakeLists.txt ============================================================================== --- head/databases/mysql55-client/files/patch-CMakeLists.txt Fri Oct 12 13:22:20 2012 (r305777) +++ head/databases/mysql55-client/files/patch-CMakeLists.txt Fri Oct 12 13:44:59 2012 (r305778) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2010-12-03 18:58:24.000000000 +0100 -+++ CMakeLists.txt 2010-12-23 17:01:52.000000000 +0100 -@@ -292,27 +292,11 @@ +--- CMakeLists.txt.orig 2012-08-29 10:50:46.000000000 +0200 ++++ CMakeLists.txt 2012-10-12 15:29:18.000000000 +0200 +@@ -304,30 +304,11 @@ ENDIF() ADD_SUBDIRECTORY(extra) @@ -24,6 +24,9 @@ - IF(UNIX) - ADD_SUBDIRECTORY(man) - ENDIF() +- IF(EXISTS ${CMAKE_SOURCE_DIR}/internal/CMakeLists.txt) +- ADD_SUBDIRECTORY(internal) +- ENDIF() -ENDIF() +ADD_SUBDIRECTORY(client) +ADD_SUBDIRECTORY(libservices) @@ -33,7 +36,7 @@ INCLUDE(cmake/abi_check.cmake) INCLUDE(cmake/tags.cmake) -@@ -338,11 +322,11 @@ +@@ -371,11 +352,11 @@ INCLUDE(CPack) IF(UNIX) @@ -46,7 +49,7 @@ IF(NOT INSTALL_LAYOUT MATCHES "RPM") INSTALL(FILES COPYING LICENSE.mysql DESTINATION ${INSTALL_DOCREADMEDIR} -@@ -367,3 +351,4 @@ +@@ -401,3 +382,4 @@ PATTERN "sp-imp-spec.txt" EXCLUDE ) ENDIF() Modified: head/databases/mysql55-server/Makefile ============================================================================== --- head/databases/mysql55-server/Makefile Fri Oct 12 13:22:20 2012 (r305777) +++ head/databases/mysql55-server/Makefile Fri Oct 12 13:44:59 2012 (r305778) @@ -1,12 +1,8 @@ -# New ports collection makefile for: MySQL-server -# Date created: 28 Jan 2006 -# Whom: Alex Dupre -# +# Created by: Alex Dupre # $FreeBSD$ -# PORTNAME?= mysql -PORTVERSION= 5.5.27 +PORTVERSION= 5.5.28 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= ${MASTER_SITE_MYSQL} @@ -19,9 +15,12 @@ COMMENT?= Multithreaded SQL database (se SLAVEDIRS= databases/mysql55-client USE_CMAKE= yes MAKE_JOBS_SAFE= yes +NO_OPTIONS_SORT=yes -OPTIONS= OPENSSL "Enable SSL support" on \ - FASTMTX "Replace mutexes with spinlocks" off +OPTIONS_DEFINE= SSL FASTMTX +OPTIONS_DEFAULT=SSL + +FASTMTX_DESC= Replace mutexes with spinlocks CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc/mysql" \ -DINSTALL_DOCREADMEDIR="share/doc/mysql" \ @@ -47,10 +46,10 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc .include -.if !defined(WITHOUT_OPENSSL) +.if ${PORT_OPTIONS:MSSL} CMAKE_ARGS+= -DWITH_SSL=bundled .endif -.if defined(WITH_FASTMTX) +.if ${PORT_OPTIONS:MFASTMTX} CMAKE_ARGS+= -DWITH_FAST_MUTEXES=1 .endif Modified: head/databases/mysql55-server/distinfo ============================================================================== --- head/databases/mysql55-server/distinfo Fri Oct 12 13:22:20 2012 (r305777) +++ head/databases/mysql55-server/distinfo Fri Oct 12 13:44:59 2012 (r305778) @@ -1,2 +1,2 @@ -SHA256 (mysql-5.5.27.tar.gz) = 51ffafbd82039f8afbe5b3c26f15cc338ed6cd4f67e56d7dd33efaa28c9d99e4 -SIZE (mysql-5.5.27.tar.gz) = 24667156 +SHA256 (mysql-5.5.28.tar.gz) = f9b2491f1ddd99842a8e75c21958368bebe59c47e84bec778baa915e255cc78f +SIZE (mysql-5.5.28.tar.gz) = 24739429 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 13:57:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9ECEE2F6; Fri, 12 Oct 2012 13:57:27 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 875388FC14; Fri, 12 Oct 2012 13:57:27 +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 q9CDvRaT015130; Fri, 12 Oct 2012 13:57:27 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CDvRtm015127; Fri, 12 Oct 2012 13:57:27 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201210121357.q9CDvRtm015127@svn.freebsd.org> From: Alex Dupre Date: Fri, 12 Oct 2012 13:57:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305779 - head/mail/roundcube X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 13:57:27 -0000 Author: ale Date: Fri Oct 12 13:57:26 2012 New Revision: 305779 URL: http://svn.freebsd.org/changeset/ports/305779 Log: Update to 0.8.2 release. Feature safe: yes Modified: head/mail/roundcube/Makefile head/mail/roundcube/distinfo Modified: head/mail/roundcube/Makefile ============================================================================== --- head/mail/roundcube/Makefile Fri Oct 12 13:44:59 2012 (r305778) +++ head/mail/roundcube/Makefile Fri Oct 12 13:57:26 2012 (r305779) @@ -1,12 +1,8 @@ -# New ports collection makefile for: roundcube -# Date created: Oct 21 2005 -# Whom: Florent Thoumie -# +# Created by: Florent Thoumie # $FreeBSD$ -# PORTNAME= roundcube -DISTVERSION= 0.8.1 +DISTVERSION= 0.8.2 PORTEPOCH= 1 CATEGORIES?= mail www MASTER_SITES= SF/${PORTNAME}mail/${PORTNAME}mail/${DISTVERSION:U} Modified: head/mail/roundcube/distinfo ============================================================================== --- head/mail/roundcube/distinfo Fri Oct 12 13:44:59 2012 (r305778) +++ head/mail/roundcube/distinfo Fri Oct 12 13:57:26 2012 (r305779) @@ -1,2 +1,2 @@ -SHA256 (roundcubemail-0.8.1.tar.gz) = d0b35e10124e2b53ddb0d7eead2bca9a124c6b25f60288aeb485fb2715a3816c -SIZE (roundcubemail-0.8.1.tar.gz) = 3710731 +SHA256 (roundcubemail-0.8.2.tar.gz) = 43d2d7c86171eb317af7d165803aab76f01de5ad06564cbeb77eb07147f72a61 +SIZE (roundcubemail-0.8.2.tar.gz) = 3722844 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 14:01:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35D2857D; Fri, 12 Oct 2012 14:01:05 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 03FC48FC0C; Fri, 12 Oct 2012 14:01:05 +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 q9CE14Dt015764; Fri, 12 Oct 2012 14:01:04 GMT (envelope-from demon@svn.freebsd.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CE14XR015761; Fri, 12 Oct 2012 14:01:04 GMT (envelope-from demon@svn.freebsd.org) Message-Id: <201210121401.q9CE14XR015761@svn.freebsd.org> From: Dmitry Sivachenko Date: Fri, 12 Oct 2012 14:01:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305780 - in head/net: haproxy-devel/files haproxy/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 14:01:05 -0000 Author: demon Date: Fri Oct 12 14:01:04 2012 New Revision: 305780 URL: http://svn.freebsd.org/changeset/ports/305780 Log: Use 'configtest' command to test config file to be consistent with apache, nagios and others. Do not invent yet another wheel. Feature safe: yes Modified: head/net/haproxy-devel/files/haproxy.in (contents, props changed) head/net/haproxy/files/haproxy.in (contents, props changed) Modified: head/net/haproxy-devel/files/haproxy.in ============================================================================== --- head/net/haproxy-devel/files/haproxy.in Fri Oct 12 13:57:26 2012 (r305779) +++ head/net/haproxy-devel/files/haproxy.in Fri Oct 12 14:01:04 2012 (r305780) @@ -30,7 +30,7 @@ # reload - hot-reconfig using "-sf" option (active sessions kept) # forcereload - hot-reconfig using "-st" option (active sessions killed) # restart - equiv to "stop" then "start" -# checkconfig - checks configuration file defined in haproxy_config +# configtest - checks configuration file defined in haproxy_config # ####### @@ -51,10 +51,10 @@ load_rc_config $name pidfile=${haproxy_pidfile} required_files=${haproxy_config} -# Commands: start, stop, restart, reload, checkconfig -extra_commands="reload checkconfig" +# Commands: start, stop, restart, reload, configtest +extra_commands="reload configtest" -checkconfig_cmd="haproxy_checkconfig" +configtest_cmd="haproxy_checkconfig" reload_cmd="haproxy_reload" haproxy_reload() Modified: head/net/haproxy/files/haproxy.in ============================================================================== --- head/net/haproxy/files/haproxy.in Fri Oct 12 13:57:26 2012 (r305779) +++ head/net/haproxy/files/haproxy.in Fri Oct 12 14:01:04 2012 (r305780) @@ -30,7 +30,7 @@ # reload - hot-reconfig using "-sf" option (active sessions kept) # forcereload - hot-reconfig using "-st" option (active sessions killed) # restart - equiv to "stop" then "start" -# checkconfig - checks configuration file defined in haproxy_config +# configtest - checks configuration file defined in haproxy_config # ####### @@ -51,10 +51,10 @@ load_rc_config $name pidfile=${haproxy_pidfile} required_files=${haproxy_config} -# Commands: start, stop, restart, reload, checkconfig -extra_commands="reload checkconfig" +# Commands: start, stop, restart, reload, configtest +extra_commands="reload configtest" -checkconfig_cmd="haproxy_checkconfig" +configtest_cmd="haproxy_checkconfig" reload_cmd="haproxy_reload" haproxy_reload() From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 14:43:07 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A8192DC; Fri, 12 Oct 2012 14:43:07 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 414038FC08; Fri, 12 Oct 2012 14:43:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9CEh7qk020651; Fri, 12 Oct 2012 14:43:07 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9CEh7i0020650; Fri, 12 Oct 2012 14:43:07 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Fri, 12 Oct 2012 16:43:05 +0200 From: Baptiste Daroussin To: Alex Dupre Subject: Re: svn commit: r305779 - head/mail/roundcube Message-ID: <20121012144304.GA739@ithaqua.etoilebsd.net> References: <201210121357.q9CDvRtm015127@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Kj7319i9nmIyA2yE" Content-Disposition: inline In-Reply-To: <201210121357.q9CDvRtm015127@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 14:43:07 -0000 --Kj7319i9nmIyA2yE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 12, 2012 at 01:57:27PM +0000, Alex Dupre wrote: > Author: ale > Date: Fri Oct 12 13:57:26 2012 > New Revision: 305779 > URL: http://svn.freebsd.org/changeset/ports/305779 >=20 > Log: > Update to 0.8.2 release. > =20 > Feature safe: yes >=20 > Modified: > head/mail/roundcube/Makefile > head/mail/roundcube/distinfo >=20 > Modified: head/mail/roundcube/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/mail/roundcube/Makefile Fri Oct 12 13:44:59 2012 (r305778) > +++ head/mail/roundcube/Makefile Fri Oct 12 13:57:26 2012 (r305779) > @@ -1,12 +1,8 @@ > -# New ports collection makefile for: roundcube > -# Date created: Oct 21 2005 > -# Whom: Florent Thoumie > -# > +# Created by: Florent Thoumie > # $FreeBSD$ > -# > =20 > PORTNAME=3D roundcube > -DISTVERSION=3D 0.8.1 > +DISTVERSION=3D 0.8.2 > PORTEPOCH=3D 1 > CATEGORIES?=3D mail www > MASTER_SITES=3D SF/${PORTNAME}mail/${PORTNAME}mail/${DISTVERSION:U} >=20 > Modified: head/mail/roundcube/distinfo > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/mail/roundcube/distinfo Fri Oct 12 13:44:59 2012 (r305778) > +++ head/mail/roundcube/distinfo Fri Oct 12 13:57:26 2012 (r305779) > @@ -1,2 +1,2 @@ > -SHA256 (roundcubemail-0.8.1.tar.gz) =3D d0b35e10124e2b53ddb0d7eead2bca9a= 124c6b25f60288aeb485fb2715a3816c > -SIZE (roundcubemail-0.8.1.tar.gz) =3D 3710731 > +SHA256 (roundcubemail-0.8.2.tar.gz) =3D 43d2d7c86171eb317af7d165803aab76= f01de5ad06564cbeb77eb07147f72a61 > +SIZE (roundcubemail-0.8.2.tar.gz) =3D 3722844 Florent already expressed that he was not willing to keep his name in heade= rs, and he registred himself here (http://wiki.freebsd.org/Ports/MaintainerTrim= ming) about this. regards, Bapt --Kj7319i9nmIyA2yE Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB4LHgACgkQ8kTtMUmk6EyUDQCfTx/tDkLiW4x4OEwEThiGF2dL V8UAoKqED8v30VspoPluNVf9kOp5Z+/b =Zau8 -----END PGP SIGNATURE----- --Kj7319i9nmIyA2yE-- From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 14:49:34 2012 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 782226C8; Fri, 12 Oct 2012 14:49:34 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 560D48FC1B; Fri, 12 Oct 2012 14:49:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9CEnYmu020852; Fri, 12 Oct 2012 14:49:34 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9CEnYQk020851; Fri, 12 Oct 2012 14:49:34 GMT (envelope-from bapt@FreeBSD.org) X-Authentication-Warning: freefall.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f Date: Fri, 12 Oct 2012 16:49:32 +0200 From: Baptiste Daroussin To: Alex Dupre Subject: Re: svn commit: r305779 - head/mail/roundcube Message-ID: <20121012144932.GB739@ithaqua.etoilebsd.net> References: <201210121357.q9CDvRtm015127@svn.freebsd.org> <20121012144304.GA739@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ADZbWkCsHQ7r3kzd" Content-Disposition: inline In-Reply-To: <20121012144304.GA739@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@FreeBSD.org, svn-ports-all@FreeBSD.org, ports-committers@FreeBSD.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 14:49:34 -0000 --ADZbWkCsHQ7r3kzd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 12, 2012 at 04:43:05PM +0200, Baptiste Daroussin wrote: > On Fri, Oct 12, 2012 at 01:57:27PM +0000, Alex Dupre wrote: > > Author: ale > > Date: Fri Oct 12 13:57:26 2012 > > New Revision: 305779 > > URL: http://svn.freebsd.org/changeset/ports/305779 > >=20 > > Log: > > Update to 0.8.2 release. > > =20 > > Feature safe: yes > >=20 > > Modified: > > head/mail/roundcube/Makefile > > head/mail/roundcube/distinfo > >=20 > > Modified: head/mail/roundcube/Makefile > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/mail/roundcube/Makefile Fri Oct 12 13:44:59 2012 (r305778) > > +++ head/mail/roundcube/Makefile Fri Oct 12 13:57:26 2012 (r305779) > > @@ -1,12 +1,8 @@ > > -# New ports collection makefile for: roundcube > > -# Date created: Oct 21 2005 > > -# Whom: Florent Thoumie > > -# > > +# Created by: Florent Thoumie > > # $FreeBSD$ > > -# > > =20 > > PORTNAME=3D roundcube > > -DISTVERSION=3D 0.8.1 > > +DISTVERSION=3D 0.8.2 > > PORTEPOCH=3D 1 > > CATEGORIES?=3D mail www > > MASTER_SITES=3D SF/${PORTNAME}mail/${PORTNAME}mail/${DISTVERSION:U} > >=20 > > Modified: head/mail/roundcube/distinfo > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/mail/roundcube/distinfo Fri Oct 12 13:44:59 2012 (r305778) > > +++ head/mail/roundcube/distinfo Fri Oct 12 13:57:26 2012 (r305779) > > @@ -1,2 +1,2 @@ > > -SHA256 (roundcubemail-0.8.1.tar.gz) =3D d0b35e10124e2b53ddb0d7eead2bca= 9a124c6b25f60288aeb485fb2715a3816c > > -SIZE (roundcubemail-0.8.1.tar.gz) =3D 3710731 > > +SHA256 (roundcubemail-0.8.2.tar.gz) =3D 43d2d7c86171eb317af7d165803aab= 76f01de5ad06564cbeb77eb07147f72a61 > > +SIZE (roundcubemail-0.8.2.tar.gz) =3D 3722844 >=20 > Florent already expressed that he was not willing to keep his name in hea= ders, > and he registred himself here (http://wiki.freebsd.org/Ports/MaintainerTr= imming) > about this. >=20 > regards, > Bapt Oups sorry for the reply to all, was supposed to be a simple reply-to. regards, Bapt --ADZbWkCsHQ7r3kzd Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlB4LfwACgkQ8kTtMUmk6EzybQCdHXyy4YCb+v5FBY6+ASBeSTAV Kj4AnRGlg/aKJ3ROFDEs2lf4T3idfVQ5 =nIhS -----END PGP SIGNATURE----- --ADZbWkCsHQ7r3kzd-- From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 14:57:45 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C041FB37; Fri, 12 Oct 2012 14:57:45 +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 A86A98FC12; Fri, 12 Oct 2012 14:57:45 +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 q9CEvj0E023704; Fri, 12 Oct 2012 14:57:45 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CEvjIK023701; Fri, 12 Oct 2012 14:57:45 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210121457.q9CEvjIK023701@svn.freebsd.org> From: Bryan Drewery Date: Fri, 12 Oct 2012 14:57:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305781 - head/ports-mgmt/poudriere-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 14:57:45 -0000 Author: bdrewery Date: Fri Oct 12 14:57:45 2012 New Revision: 305781 URL: http://svn.freebsd.org/changeset/ports/305781 Log: - Update to checkin a71cb01551 Changes: * options: Show usage with no arguments * bulk: Support building entire tree with -a * testport/bulk -t: Enable PKGNG DEVELOPER_MODE to catch more plist errors * Show which PORTSDIR is being used during builds * queue: Fix syntax error with no arguments Feature safe: yes Modified: head/ports-mgmt/poudriere-devel/Makefile head/ports-mgmt/poudriere-devel/distinfo Modified: head/ports-mgmt/poudriere-devel/Makefile ============================================================================== --- head/ports-mgmt/poudriere-devel/Makefile Fri Oct 12 14:01:04 2012 (r305780) +++ head/ports-mgmt/poudriere-devel/Makefile Fri Oct 12 14:57:45 2012 (r305781) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 2.1.99.20121010 +PORTVERSION= 2.1.99.20121012 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ PKGNAMESUFFIX= -devel @@ -13,7 +13,7 @@ COMMENT= Port build and test system LICENSE= BSD -FSL_CHKIN= da583db283 +FSL_CHKIN= a71cb01551 NO_BUILD= yes MANCOMPRESSED= yes Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Fri Oct 12 14:01:04 2012 (r305780) +++ head/ports-mgmt/poudriere-devel/distinfo Fri Oct 12 14:57:45 2012 (r305781) @@ -1,2 +1,2 @@ -SHA256 (poudriere-2.1.99.20121010.tar.gz?uuid=da583db283) = 7cc5a7195f6aa31ab50425c742a842b6e8fafa33a9fc9f4e5f1c2d87422c37ca -SIZE (poudriere-2.1.99.20121010.tar.gz?uuid=da583db283) = 34260 +SHA256 (poudriere-2.1.99.20121012.tar.gz?uuid=a71cb01551) = 066a13e1dd4bec683bb82c19e0fdef0df4bf3c30ec2cd9ecd14d8fb4d8df334e +SIZE (poudriere-2.1.99.20121012.tar.gz?uuid=a71cb01551) = 34485 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 15:07:32 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E8C3EB8; Fri, 12 Oct 2012 15:07:32 +0000 (UTC) (envelope-from tabthorpe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 571DC8FC12; Fri, 12 Oct 2012 15:07:32 +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 q9CF7WB5025236; Fri, 12 Oct 2012 15:07:32 GMT (envelope-from tabthorpe@svn.freebsd.org) Received: (from tabthorpe@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CF7Wqw025234; Fri, 12 Oct 2012 15:07:32 GMT (envelope-from tabthorpe@svn.freebsd.org) Message-Id: <201210121507.q9CF7Wqw025234@svn.freebsd.org> From: Thomas Abthorpe Date: Fri, 12 Oct 2012 15:07:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305782 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 15:07:32 -0000 Author: tabthorpe Date: Fri Oct 12 15:07:31 2012 New Revision: 305782 URL: http://svn.freebsd.org/changeset/ports/305782 Log: - Add ZLIB license PR: ports/171611 Submitted by: Chris Petrik Approved by: portmgr (implicit) Feature safe: yes Modified: head/Mk/bsd.licenses.db.mk (contents, props changed) Modified: head/Mk/bsd.licenses.db.mk ============================================================================== --- head/Mk/bsd.licenses.db.mk Fri Oct 12 14:57:45 2012 (r305781) +++ head/Mk/bsd.licenses.db.mk Fri Oct 12 15:07:31 2012 (r305782) @@ -38,7 +38,7 @@ Licenses_db_Include_MAINTAINER= _LICENSE_LIST= AGPLv3 AL2 ART10 ART20 BSD BSL CDDL EPL GFDL GPLv1 GPLv2 \ GPLv3 ISCL LGPL20 LGPL21 LGPL3 LPPL10 LPPL11 LPPL12 LPPL13 LPPL13a \ - LPPL13b LPPL13c MIT MPL OWL PHP202 PHP30 PHP301 PSFL ZPL21 + LPPL13b LPPL13c MIT MPL OWL PHP202 PHP30 PHP301 PSFL ZLIB ZPL21 # List of groups (only names must be present) @@ -163,6 +163,9 @@ _LICENSE_GROUPS_PHP301= FSF OSI _LICENSE_NAME_PSFL= Python Software Foundation License _LICENSE_GROUPS_PSFL= FSF GPL OSI +_LICENSE_NAME_ZLIB= zlib License +_LICENSE_GROUPS_ZLIB= GPL FSF OSI + _LICENSE_NAME_ZPL21= Zope Public License version 2.1 _LICENSE_GROUPS_ZPL21= GPL OSI From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 15:18:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60EC74BA; Fri, 12 Oct 2012 15:18:03 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 301808FC08; Fri, 12 Oct 2012 15:18:03 +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 q9CFI3Vm026820; Fri, 12 Oct 2012 15:18:03 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CFI2ur026818; Fri, 12 Oct 2012 15:18:02 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201210121518.q9CFI2ur026818@svn.freebsd.org> From: Gerald Pfeifer Date: Fri, 12 Oct 2012 15:18:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305783 - head/lang/gcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 15:18:03 -0000 Author: gerald Date: Fri Oct 12 15:18:02 2012 New Revision: 305783 URL: http://svn.freebsd.org/changeset/ports/305783 Log: For releases, libquadmath.info is always installed, even on architectures where the library is not supported. [1] Revamp the handling of different languages (frontends, run-times) by GCC to allow for orthogonal setting them in the future. [2] Print the list of languages being built as part of pre-everything and shorten the output of operating system and version there. Reported by: linimon [1] Inspired by: jkim [2] Feature safe: yes Modified: head/lang/gcc/Makefile Modified: head/lang/gcc/Makefile ============================================================================== --- head/lang/gcc/Makefile Fri Oct 12 15:07:31 2012 (r305782) +++ head/lang/gcc/Makefile Fri Oct 12 15:18:02 2012 (r305783) @@ -1,3 +1,4 @@ +# Created by: Gerald Pfeifer # $FreeBSD$ PORTNAME= gcc @@ -51,6 +52,7 @@ CONFIGURE_TARGET= x86_64-portbld-freebsd CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} .endif +LANGUAGES:= c,c++,objc,fortran SRCDIR= ${WRKDIR}/gcc-${VERSIONSTRING} WRKSRC= ${WRKDIR}/build TARGLIB= ${PREFIX}/lib/gcc${SUFFIX} @@ -59,7 +61,6 @@ GNU_CONFIGURE= yes CFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS+=--disable-bootstrap \ --disable-nls \ - --enable-languages=c,c++,objc,fortran \ --libdir=${TARGLIB} \ --libexecdir=${LIBEXEC} \ --program-suffix=${SUFFIX} \ @@ -87,9 +88,10 @@ INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/gccint \ gcc${SUFFIX}/gfortran \ gcc${SUFFIX}/libgomp -.if ${ARCH} != "ia64" && ${ARCH} != "powerpc" && ${ARCH} != "sparc64" +# Release tarballs (as opposed to snapshots) always carry this. +#.if ${ARCH} != "ia64" && ${ARCH} != "powerpc" && ${ARCH} != "sparc64" INFO+= gcc${SUFFIX}/libquadmath -.endif +#.endif .if ${PORT_OPTIONS:MJAVA} ECJ_JAR= ecj-4.5.jar @@ -99,7 +101,7 @@ DISTFILES+= ${ECJ_JAR}:ecj EXTRACT_ONLY= ${DISTFILES:S|${ECJ_JAR}:ecj||} BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip EXTRA_PATCHES+= ${FILESDIR}/java-patch-hier -CONFIGURE_ARGS+=--enable-languages=c,c++,objc,fortran,java +LANGUAGES:= ${LANGUAGES},java MAN1+= aot-compile${SUFFIX}.1 \ gappletviewer${SUFFIX}.1 \ gc-analyze${SUFFIX}.1 \ @@ -136,9 +138,10 @@ post-patch:: CONFIGURE_ARGS+=--disable-libgcj PLIST_SUB+= JAVA="@comment " .endif +CONFIGURE_ARGS+=--enable-languages=${LANGUAGES} pre-everything:: - @${ECHO_MSG} "Making GCC ${PORTVERSION} for ${OPSYS} ${OSREL} target=${CONFIGURE_TARGET}" + @${ECHO_MSG} "Making GCC ${PORTVERSION} for ${CONFIGURE_TARGET} [${LANGUAGES}]" pre-configure: cd ${SRCDIR} ; contrib/gcc_update --touch From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 15:30:31 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 14750B45; Fri, 12 Oct 2012 15:30:31 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F1F0D8FC12; Fri, 12 Oct 2012 15:30: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 q9CFUUQp028632; Fri, 12 Oct 2012 15:30:30 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CFUUr4028628; Fri, 12 Oct 2012 15:30:30 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201210121530.q9CFUUr4028628@svn.freebsd.org> From: Glen Barber Date: Fri, 12 Oct 2012 15:30:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305784 - head/textproc/igor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 15:30:31 -0000 Author: gjb Date: Fri Oct 12 15:30:30 2012 New Revision: 305784 URL: http://svn.freebsd.org/changeset/ports/305784 Log: Fix fetch. Approved by: eadler (mentor, implicit) PR: ports/172617 Feature safe: yes Modified: head/textproc/igor/Makefile Modified: head/textproc/igor/Makefile ============================================================================== --- head/textproc/igor/Makefile Fri Oct 12 15:18:02 2012 (r305783) +++ head/textproc/igor/Makefile Fri Oct 12 15:30:30 2012 (r305784) @@ -3,7 +3,7 @@ PORTNAME= igor PORTVERSION= 1.330 CATEGORIES= textproc -MASTER_SITES= http://www.glenbarber.us/ports/${CATEGORIES}/${PORTNAME}/ +MASTER_SITES= https://www.glenbarber.us/ports/${CATEGORIES}/${PORTNAME}/ MAINTAINER= wblock@FreeBSD.org COMMENT= FreeBSD Documentation Project sanity check script From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 16:11:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33569C3D for ; Fri, 12 Oct 2012 16:11:44 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id CAD308FC14 for ; Fri, 12 Oct 2012 16:11:43 +0000 (UTC) Received: by mail-vc0-f182.google.com with SMTP id fw7so4737293vcb.13 for ; Fri, 12 Oct 2012 09:11:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=CWsDLTTsJY4lJnKxvEq3KSw544l456L7vIQ4ayZSH0A=; b=hr7xANaoi2OuKXKeuxzIcIR98pfurc3oFKq3FMViIUqo0pdPLrTSYTZzkvADB1IcLQ eNq6xDngsEIKgAEAoSDXFAIVeJhnoYVXmi4hDUFnLdpzenqBB7E5QkxtV8YxE8QIBGIG +y3iIhJA7M9qxtyibOCZvch+gURju75Pgo/QQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type :x-gm-message-state; bh=CWsDLTTsJY4lJnKxvEq3KSw544l456L7vIQ4ayZSH0A=; b=X8XVwecXHB9cGhqjY88YW/5X3u9LZVDWQ8i+d0cdrO24xHPQ0Bw6UMK7I16jom7TQt 6257RXRmSXhJWY0wXqxaRSv2BX2OBMWWm/K9EBeVd2ajNgJfeYu6aqnJboOB0VTIymOe rS+LyWL//4To1dbOqxSYoMndoEGiGLKxfp2meVy7M50V9I6YrrZCvHDe2zKgkaRxQD8l vSelWfbdbzevSVoxg0kJnUzn5fN1kn6kOdv1nXDEIJEvNf1LkcjghiLeFD4SaAVkRTrz XCKiiHWDNfdZAFPMalszHpYYN69BxKibgQgA2qMiQdBIN8X3Z/FvgQTwAN5+HEdj8dU1 pmtg== Received: by 10.58.190.161 with SMTP id gr1mr2942778vec.3.1350058301875; Fri, 12 Oct 2012 09:11:41 -0700 (PDT) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.58.253.3 with HTTP; Fri, 12 Oct 2012 09:11:11 -0700 (PDT) In-Reply-To: <201210121530.q9CFUUr4028628@svn.freebsd.org> References: <201210121530.q9CFUUr4028628@svn.freebsd.org> From: Eitan Adler Date: Fri, 12 Oct 2012 12:11:11 -0400 X-Google-Sender-Auth: quuL2K5wwbqK4gz2TPcWPv_DytY Message-ID: Subject: Re: svn commit: r305784 - head/textproc/igor To: Glen Barber Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQmGcDfjG6GL8XoZ9/xewuOOQDhZiBeuCrAnJA37sX7A1s+26jHcelU8fM9TnBubp00PcY3+ Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 16:11:44 -0000 On 12 October 2012 11:30, Glen Barber wrote: > Author: gjb > Date: Fri Oct 12 15:30:30 2012 > New Revision: 305784 > URL: http://svn.freebsd.org/changeset/ports/305784 > > Log: > Fix fetch. > > Approved by: eadler (mentor, implicit) > PR: ports/172617 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=172617 > Feature safe: yes > > Modified: > head/textproc/igor/Makefile > > Modified: head/textproc/igor/Makefile > ============================================================================== > --- head/textproc/igor/Makefile Fri Oct 12 15:18:02 2012 (r305783) > +++ head/textproc/igor/Makefile Fri Oct 12 15:30:30 2012 (r305784) > @@ -3,7 +3,7 @@ > PORTNAME= igor > PORTVERSION= 1.330 > CATEGORIES= textproc > -MASTER_SITES= http://www.glenbarber.us/ports/${CATEGORIES}/${PORTNAME}/ > +MASTER_SITES= https://www.glenbarber.us/ports/${CATEGORIES}/${PORTNAME}/ o.O this was run through tinderbox. I'm guessing it caches distfiles or something? -- Eitan Adler Source & Ports committer X11, Bugmeister, Ports Security teams From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 16:17:47 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6806CE84; Fri, 12 Oct 2012 16:17:47 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from onyx.glenbarber.us (onyx.glenbarber.us [IPv6:2607:fc50:1000:c200::face]) by mx1.freebsd.org (Postfix) with ESMTP id 375048FC08; Fri, 12 Oct 2012 16:17:47 +0000 (UTC) Received: from glenbarber.us (75-146-225-65-Philadelphia.hfc.comcastbusiness.net [75.146.225.65]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: gjb) by onyx.glenbarber.us (Postfix) with ESMTPSA id 7A86F23F645; Fri, 12 Oct 2012 12:17:46 -0400 (EDT) Date: Fri, 12 Oct 2012 12:17:44 -0400 From: Glen Barber To: Eitan Adler Subject: Re: svn commit: r305784 - head/textproc/igor Message-ID: <20121012161744.GC1335@glenbarber.us> References: <201210121530.q9CFUUr4028628@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="JgQwtEuHJzHdouWu" Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD 10.0-CURRENT amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 16:17:47 -0000 --JgQwtEuHJzHdouWu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 12, 2012 at 12:11:11PM -0400, Eitan Adler wrote: > > Log: > > Fix fetch. > > [...] >=20 > o.O this was run through tinderbox. I'm guessing it caches distfiles > or something? >=20 Tinderbox does have distfile cachine, but I think it is disabled by default. Glen --JgQwtEuHJzHdouWu Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQEcBAEBCAAGBQJQeEKoAAoJEFJPDDeguUajaEYH+gOPKpy4a4WjlfNeg644RXZv WkuXjZ81RAobXfah53RWcQz3iROdYnIOuRhfUJuagqpKpeM39NyYal3IlxfJc9B1 PVJEO2IMmYrjJ9ObN2VApPQCInF3UQH6Rupon/tXvo4reuCtt5tECl9YNJMEeq29 kMQPL4TJGSeRPPQCi28LsALfmKxfTqv2ZoEn4+mjFeH1NjO5yXaOSnwo308x+xcH HJN/TMAVBgpGJ5zuuv/2zi1C9A7JzHB0i4UKrJgFBsJsh0DEIKRmOYh51idYtWMr g1jtntR9MVHfa7xB9FrMXWtCkSnNOlA3oKRBb87+heFDJG5DcTbg9bIQXrxyEjA= =Lemp -----END PGP SIGNATURE----- --JgQwtEuHJzHdouWu-- From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 16:39:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1E5477B; Fri, 12 Oct 2012 16:39:23 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BA86D8FC14; Fri, 12 Oct 2012 16:39: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 q9CGdNiB038258; Fri, 12 Oct 2012 16:39:23 GMT (envelope-from mi@svn.freebsd.org) Received: (from mi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CGdN36038257; Fri, 12 Oct 2012 16:39:23 GMT (envelope-from mi@svn.freebsd.org) Message-Id: <201210121639.q9CGdN36038257@svn.freebsd.org> From: Mikhail Teterin Date: Fri, 12 Oct 2012 16:39:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305785 - head/graphics/libfpx/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 16:39:23 -0000 Author: mi Date: Fri Oct 12 16:39:23 2012 New Revision: 305785 URL: http://svn.freebsd.org/changeset/ports/305785 Log: Add a patch removing two unused private fields from an internal class. The dead fields must've been there for years, but only clang-3.2 complains about it... The class' composition is not exported outside the library anyway, so there are no concerns about a known structure changing size -- hence, no shlib number bumps or anything. PR: ports/172637 Submitted by: Oliver Hartmann Feature safe: yes Added: head/graphics/libfpx/files/patch-unused-privates (contents, props changed) Added: head/graphics/libfpx/files/patch-unused-privates ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libfpx/files/patch-unused-privates Fri Oct 12 16:39:23 2012 (r305785) @@ -0,0 +1,14 @@ +These fields have been unused for many years, but it is only now, +that some compilers (clang-3.2) complain about it... + + -mi + +--- fpx/fpximgvw.h 2007-11-02 03:10:05.000000000 -0400 ++++ fpx/fpximgvw.h 2012-10-12 12:28:39.000000000 -0400 +@@ -300,6 +300,4 @@ + + PFileFlashPixView* filePtr; // The image file descriptor +- OLEStorage* sourceStorage; // Source FPX Image storage +- OLEStorage* resultStorage; // Result FPX Image storage + + // Geometric parameters From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 16:50:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E042D43; Fri, 12 Oct 2012 16:50:41 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 576728FC12; Fri, 12 Oct 2012 16:50:41 +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 q9CGofKk039965; Fri, 12 Oct 2012 16:50:41 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CGofto039963; Fri, 12 Oct 2012 16:50:41 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201210121650.q9CGofto039963@svn.freebsd.org> From: Wesley Shields Date: Fri, 12 Oct 2012 16:50:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305786 - head/lang/tcl84 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 16:50:41 -0000 Author: wxs Date: Fri Oct 12 16:50:40 2012 New Revision: 305786 URL: http://svn.freebsd.org/changeset/ports/305786 Log: Convert to new options. PR: ports/172419 Submitted by: Chris Petrik (maintainer) Feature safe: yes Modified: head/lang/tcl84/Makefile (contents, props changed) Modified: head/lang/tcl84/Makefile ============================================================================== --- head/lang/tcl84/Makefile Fri Oct 12 16:39:23 2012 (r305785) +++ head/lang/tcl84/Makefile Fri Oct 12 16:50:40 2012 (r305786) @@ -31,7 +31,8 @@ PLIST_SUB= TCL_VER="${TCL_VER}" SHORT_TC EXTRACT_AFTER_ARGS=|${TAR} -xpf - --exclude compat/ .if !defined(BUILDING_TCL_THREADS) -OPTIONS= TCL84_MAN "Install tcl 8.4 function manpages" off +OPTIONS_DEFINE= TCL84_MAN +TCL84_MAN_DESC= Install tcl 8.4 function manpages .else USE_TCL= ${SHORT_TCL_VER} PLIST= ${PKGDIR}/pkg-plist.threads @@ -53,7 +54,7 @@ CONFIGURE_ENV+= PTHREAD_LIBS="${PTHREAD .else CONFIGURE_ARGS+= --disable-threads -.if !defined(NO_INSTALL_MANPAGES) && defined(WITH_TCL84_MAN) +.if !defined(NO_INSTALL_MANPAGES) && ${PORT_OPTIONS:MTCL84_MAN} MAN3= Access.3 AddErrInfo.3 Alloc.3 AllowExc.3 AppInit.3 AssocData.3 \ Async.3 BackgdErr.3 Backslash.3 BoolObj.3 ByteArrObj.3 CallDel.3 \ @@ -661,14 +662,14 @@ post-install: .if !defined(NO_INSTALL_MANPAGES) ${MKDIR} ${MANPREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/../doc/tclsh.1 ${MANPREFIX}/man/man1/tclsh${TCL_VER}${THREADS_SUFFIX}.1 -.if !defined(BUILDING_TCL_THREADS) && defined(WITH_TCL84_MAN) +.if !defined(BUILDING_TCL_THREADS) && ${PORT_OPTIONS:MTCL84_MAN} . for mp in ${MAN3} ${MANN} @${REINPLACE_CMD} -e 's|^.so man.macros|.so ${DATADIR}/man.macros|' \ ${WRKSRC}/../doc/${mp} . endfor @cd ${WRKSRC} && ${MAKE} -f Makefile install-doc ${MAKE_ENV} -.endif # !defined(BUILDING_TCL_THREADS) && defined(WITH_TCL84_MAN) +.endif # !defined(BUILDING_TCL_THREADS) && ${PORT_OPTIONS:MTCL84_MAN} .endif # !defined(NO_INSTALL_MANPAGES) From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 17:14:53 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B80C5418; Fri, 12 Oct 2012 17:14:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A025C8FC12; Fri, 12 Oct 2012 17:14:53 +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 q9CHErEa043441; Fri, 12 Oct 2012 17:14:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CHEr1K043438; Fri, 12 Oct 2012 17:14:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210121714.q9CHEr1K043438@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 12 Oct 2012 17:14:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305787 - head/german/mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 17:14:53 -0000 Author: sunpoet Date: Fri Oct 12 17:14:53 2012 New Revision: 305787 URL: http://svn.freebsd.org/changeset/ports/305787 Log: - Update to 2012.10.07 Reported by: Thomas Mueller Feature safe: yes Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Fri Oct 12 16:50:40 2012 (r305786) +++ head/german/mythes/Makefile Fri Oct 12 17:14:53 2012 (r305787) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.07 +PORTVERSION= 2012.10.07 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Fri Oct 12 16:50:40 2012 (r305786) +++ head/german/mythes/distinfo Fri Oct 12 17:14:53 2012 (r305787) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20120907.oxt) = d62a7b9f4257916c20bee702e016b59e565a8793fec39af48a2a01d8ffd2a2ea -SIZE (mythes/Deutscher-Thesaurus-20120907.oxt) = 3953926 +SHA256 (mythes/Deutscher-Thesaurus-20121007.oxt) = dee8a0556f6c794973ce9a587da84e35a33bb8b3fdf42708402838d61c2046c3 +SIZE (mythes/Deutscher-Thesaurus-20121007.oxt) = 4122702 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 17:16:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5DA61511; Fri, 12 Oct 2012 17:16:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 45DF68FC08; Fri, 12 Oct 2012 17:16:00 +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 q9CHG0aL043681; Fri, 12 Oct 2012 17:16:00 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CHG0Nw043675; Fri, 12 Oct 2012 17:16:00 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210121716.q9CHG0Nw043675@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 12 Oct 2012 17:16:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305788 - head/textproc/sk-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 17:16:00 -0000 Author: sunpoet Date: Fri Oct 12 17:15:59 2012 New Revision: 305788 URL: http://svn.freebsd.org/changeset/ports/305788 Log: - Update to 2012.10.07 Feature safe: yes Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo head/textproc/sk-mythes/pkg-descr (contents, props changed) Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Fri Oct 12 17:14:53 2012 (r305787) +++ head/textproc/sk-mythes/Makefile Fri Oct 12 17:15:59 2012 (r305788) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.07 +PORTVERSION= 2012.10.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Fri Oct 12 17:14:53 2012 (r305787) +++ head/textproc/sk-mythes/distinfo Fri Oct 12 17:15:59 2012 (r305788) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = e5c5db882aa31eee0b81e36c432e089ef1529cc29707c911781a668e66a42f1d -SIZE (mythes/OOo-Thesaurus2-sk_SK-20120907.zip) = 331575 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20121007.zip) = 56ea2a8371595c720bdafa60e6607197be8ada8627d24efe55490daebbecea6b +SIZE (mythes/OOo-Thesaurus2-sk_SK-20121007.zip) = 331774 Modified: head/textproc/sk-mythes/pkg-descr ============================================================================== --- head/textproc/sk-mythes/pkg-descr Fri Oct 12 17:14:53 2012 (r305787) +++ head/textproc/sk-mythes/pkg-descr Fri Oct 12 17:15:59 2012 (r305788) @@ -1,3 +1,3 @@ Slovak thesaurus -WWW: http://www.sk-spell.sk.cx/thesaurus/ +WWW: http://www.sk-spell.sk.cx/thesaurus/ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 17:16:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 536FF5F0; Fri, 12 Oct 2012 17:16:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3C16E8FC12; Fri, 12 Oct 2012 17:16:15 +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 q9CHGF8q043805; Fri, 12 Oct 2012 17:16:15 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CHGFNi043800; Fri, 12 Oct 2012 17:16:15 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201210121716.q9CHGFNi043800@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 12 Oct 2012 17:16:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305789 - head/textproc/nl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 17:16:15 -0000 Author: sunpoet Date: Fri Oct 12 17:16:14 2012 New Revision: 305789 URL: http://svn.freebsd.org/changeset/ports/305789 Log: - Update to 2012.10.07 Feature safe: yes Modified: head/textproc/nl-mythes/Makefile head/textproc/nl-mythes/distinfo head/textproc/nl-mythes/pkg-descr (contents, props changed) Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Fri Oct 12 17:15:59 2012 (r305788) +++ head/textproc/nl-mythes/Makefile Fri Oct 12 17:16:14 2012 (r305789) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2012.09.07 +PORTVERSION= 2012.10.07 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= nl- Modified: head/textproc/nl-mythes/distinfo ============================================================================== --- head/textproc/nl-mythes/distinfo Fri Oct 12 17:15:59 2012 (r305788) +++ head/textproc/nl-mythes/distinfo Fri Oct 12 17:16:14 2012 (r305789) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_nl-20120907.oxt) = dd8b5074581afe76e1ef50fa9187ec47ba3f15d647910d58b3837e49092949ae -SIZE (mythes/thes_nl-20120907.oxt) = 1956026 +SHA256 (mythes/thes_nl-20121007.oxt) = 8ea32949ce670ba00459496596b460553316b613a2817dfcd0a36b97024c1ab9 +SIZE (mythes/thes_nl-20121007.oxt) = 1956026 Modified: head/textproc/nl-mythes/pkg-descr ============================================================================== --- head/textproc/nl-mythes/pkg-descr Fri Oct 12 17:15:59 2012 (r305788) +++ head/textproc/nl-mythes/pkg-descr Fri Oct 12 17:16:14 2012 (r305789) @@ -1,3 +1,3 @@ Dutch thesaurus -WWW: http://data.opentaal.org/opentaalbank/thesaurus/ +WWW: http://data.opentaal.org/opentaalbank/thesaurus/ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 17:26:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2FEBD908; Fri, 12 Oct 2012 17:26:27 +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 16C7F8FC08; Fri, 12 Oct 2012 17:26:27 +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 q9CHQQH2045353; Fri, 12 Oct 2012 17:26:26 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CHQQhh045347; Fri, 12 Oct 2012 17:26:26 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210121726.q9CHQQhh045347@svn.freebsd.org> From: Pawel Pekala Date: Fri, 12 Oct 2012 17:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305790 - in head/games: . rescue rescue/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 17:26:27 -0000 Author: pawel Date: Fri Oct 12 17:26:26 2012 New Revision: 305790 URL: http://svn.freebsd.org/changeset/ports/305790 Log: Rescue Max is a Action Adventure in Space written in java. It is based on a old mac game called Rescue! by Tom Spreen. A 2D space real-time, action/strategy game. You are in control of a ship that you fly around space fighting enemies and making friends on your way. The main objective is to rescue people from planets and take them to star bases. WWW: http://rescue.sourceforge.net/ PR: ports/172123 Submitted by: nemysis@gmx.ch Feature safe: yes Added: head/games/rescue/ head/games/rescue/Makefile (contents, props changed) head/games/rescue/distinfo (contents, props changed) head/games/rescue/files/ head/games/rescue/files/rescue.in (contents, props changed) head/games/rescue/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Fri Oct 12 17:16:14 2012 (r305789) +++ head/games/Makefile Fri Oct 12 17:26:26 2012 (r305790) @@ -791,6 +791,7 @@ SUBDIR += railroad-rampage SUBDIR += redeclipse SUBDIR += reminiscence + SUBDIR += rescue SUBDIR += rezerwar SUBDIR += rfksay SUBDIR += rftg Added: head/games/rescue/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/rescue/Makefile Fri Oct 12 17:26:26 2012 (r305790) @@ -0,0 +1,51 @@ +# Created by: nemysis@gmx.ch +# $FreeBSD$ + +PORTNAME= rescue +PORTVERSION= 1.0.0.2 +CATEGORIES= games java +MASTER_SITES= SF/${PORTNAME}/${PORTNAME:S/r/R/}%21%20Max/${PORTVERSION}/ +DISTNAME= ${PORTNAME:S/r/R/}_${PORTVERSION} +DIST_SUBDIR= java + +MAINTAINER= nemysis@gmx.ch +COMMENT= Action Adventure in Space + +LICENSE= GPLv2 + +USE_ZIP= yes +USE_JAVA= yes +JAVA_VERSION= 1.5+ +NO_BUILD= yes + +WRKSRC= ${WRKDIR}/${PORTNAME:S/r/R/} + +PLIST_FILES= bin/${PORTNAME} \ + share/pixmaps/${PORTNAME}.png + +PORTDATA= * +PORTDOCS= ChangeLog.txt bugs.txt +DATADIR= ${JAVASHAREDIR}/${PORTNAME} + +SUB_FILES= ${PORTNAME} + +DESKTOP_ENTRIES="Rescue! Max" "${COMMENT}" "${PORTNAME}" \ + "${PORTNAME}" "Game;StrategyGame;" "false" + +.include + +post-extract: + @(cd ${WRKSRC} && ${UNZIP_CMD} -j Rescue.jar rescue/gui/logo.png) + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin + ${MKDIR} ${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "help missions *.jar" ${DATADIR}) + ${INSTALL_DATA} ${WRKSRC}/logo.png ${PREFIX}/share/pixmaps/${PORTNAME}.png + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} +.endif + +.include Added: head/games/rescue/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/rescue/distinfo Fri Oct 12 17:26:26 2012 (r305790) @@ -0,0 +1,2 @@ +SHA256 (java/Rescue_1.0.0.2.zip) = 38cb6f68f2dafcc44a4b34b65a2ab36136d37029c60136646068da4634e8f5b3 +SIZE (java/Rescue_1.0.0.2.zip) = 3907836 Added: head/games/rescue/files/rescue.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/rescue/files/rescue.in Fri Oct 12 17:26:26 2012 (r305790) @@ -0,0 +1,9 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +export JAVA_VERSION="%%JAVA_VERSION%%" + +cd "%%DATADIR%%" && exec "%%LOCALBASE%%/bin/java" \ +-Djava.ext.dirs="%%DATADIR%%" -jar "%%DATADIR%%/Rescue.jar" "${@}" Added: head/games/rescue/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/rescue/pkg-descr Fri Oct 12 17:26:26 2012 (r305790) @@ -0,0 +1,8 @@ +Rescue Max is a Action Adventure in Space written in java. +It is based on a old mac game called Rescue! by Tom Spreen. + +A 2D space real-time, action/strategy game. You are in control of a ship that +you fly around space fighting enemies and making friends on your way. +The main objective is to rescue people from planets and take them to star bases. + +WWW: http://rescue.sourceforge.net/ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 18:12:01 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35FF9E79; Fri, 12 Oct 2012 18:12:01 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1DBCB8FC17; Fri, 12 Oct 2012 18:12: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 q9CIC0Wv051775; Fri, 12 Oct 2012 18:12:00 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CIC0pV051769; Fri, 12 Oct 2012 18:12:00 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201210121812.q9CIC0pV051769@svn.freebsd.org> From: Andrej Zverev Date: Fri, 12 Oct 2012 18:12:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305791 - head/devel/p5-Moose X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 18:12:01 -0000 Author: az Date: Fri Oct 12 18:12:00 2012 New Revision: 305791 URL: http://svn.freebsd.org/changeset/ports/305791 Log: - Update to 2.0604 Changes: http://search.cpan.org/dist/Moose/Changes Feature safe: yes Modified: head/devel/p5-Moose/Makefile head/devel/p5-Moose/distinfo Modified: head/devel/p5-Moose/Makefile ============================================================================== --- head/devel/p5-Moose/Makefile Fri Oct 12 17:26:26 2012 (r305790) +++ head/devel/p5-Moose/Makefile Fri Oct 12 18:12:00 2012 (r305791) @@ -6,7 +6,7 @@ # PORTNAME= Moose -PORTVERSION= 2.0603 +PORTVERSION= 2.0604 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DOY Modified: head/devel/p5-Moose/distinfo ============================================================================== --- head/devel/p5-Moose/distinfo Fri Oct 12 17:26:26 2012 (r305790) +++ head/devel/p5-Moose/distinfo Fri Oct 12 18:12:00 2012 (r305791) @@ -1,2 +1,2 @@ -SHA256 (Moose-2.0603.tar.gz) = 279738dc91407ccb8c02cb444c3ed0feb4d4525549bece4fdde6c2bae371c356 -SIZE (Moose-2.0603.tar.gz) = 696979 +SHA256 (Moose-2.0604.tar.gz) = 121fa0032e3838faddfea63028458ff963fd527c63c6cea7a6c8f186169d9b5b +SIZE (Moose-2.0604.tar.gz) = 696388 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 18:37:34 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C289D992; Fri, 12 Oct 2012 18:37:34 +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 CD29D8FC0A; Fri, 12 Oct 2012 18:37:32 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1656498bkc.13 for ; Fri, 12 Oct 2012 11:37:31 -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=mp6xAKdebLrqekbJYDmF7S2QH0I68vZYxBy12a0pQpY=; b=rT1/wLDhH0AarBlO7vZFTlcDvQ/vy89R40jRKaymqUoFVLbJUHI4p/yZtGu+XYo+xL muxUpm4+bilwdTorcP/AgTqg7T3jd+WohRLT5qK5lYnNE15dnUoSuY4DluN9OLAj3fWu fgbsPTwVVJbL41wnJFbDFPxLnK/B0HqbN5YokK+HIN3iLAYUf1gqKEzptHFwHdd1zqGA EXR/lT6qRySNQW0b2ZjBJ/a1PsGZAOcuK1xuuoi0O6Y1sS7wYGlV+U9/FfmMaW7PRL9g +bArFgRAlafgnEvseswSlEuaHtMk0IPexSfAzbG/EWEPRnzIy/HC366RI0o6cWCmOfkz WOYw== Received: by 10.204.156.74 with SMTP id v10mr1615573bkw.39.1350067051305; Fri, 12 Oct 2012 11:37:31 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Fri, 12 Oct 2012 11:37:01 -0700 (PDT) In-Reply-To: <201210110533.q9B5X4iW065476@svn.freebsd.org> References: <201210110533.q9B5X4iW065476@svn.freebsd.org> From: Chris Rees Date: Fri, 12 Oct 2012 19:37:01 +0100 X-Google-Sender-Auth: zUJfTFv5vnjXt3vo-1Sb-4tE9dI Message-ID: Subject: Re: svn commit: r305698 - in head/games: . smashbattle smashbattle/files To: Jason Helfman 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 18:37:34 -0000 On 11 October 2012 06:33, Jason Helfman wrote: > XXX Ports RC script present > Author: jgh > Date: Thu Oct 11 05:33:04 2012 > New Revision: 305698 > URL: http://svn.freebsd.org/changeset/ports/305698 > > Log: > add new port: games/smashbattle > > Smash Battle is a cross platform, 8-bit style game where two, > three or four player face off against each other. > The game was inspired by the mario battle minigame from mario 3 > when we started developing, but changed a lot over time. > > WWW: http://smashbattle.condor.tv/ > > PR: 167855 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=167855 > Submitted by: nemysis@gmx.ch > Feature safe: yes > > Added: > head/games/smashbattle/ > head/games/smashbattle/Makefile (contents, props changed) > head/games/smashbattle/distinfo (contents, props changed) > head/games/smashbattle/files/ > head/games/smashbattle/files/patch-Makefile (contents, props changed) > head/games/smashbattle/files/smashbattle.in (contents, props changed) > head/games/smashbattle/pkg-descr (contents, props changed) > Modified: > head/games/Makefile > > Modified: head/games/Makefile > ============================================================================== > --- head/games/Makefile Thu Oct 11 01:40:59 2012 (r305697) > +++ head/games/Makefile Thu Oct 11 05:33:04 2012 (r305698) > @@ -847,6 +847,7 @@ > SUBDIR += slashem-tty > SUBDIR += slump > SUBDIR += slune > + SUBDIR += smashbattle > SUBDIR += smiley > SUBDIR += sokoban > SUBDIR += sol > > Added: head/games/smashbattle/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/games/smashbattle/Makefile Thu Oct 11 05:33:04 2012 (r305698) > @@ -0,0 +1,54 @@ > +# Created by: nemysis@gmx.ch > +# > +# $FreeBSD$ > + > +PORTNAME= smashbattle > +PORTVERSION= 110224 > +CATEGORIES= games > +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/beta-${PORTVERSION} > +DISTNAME= ${PORTNAME}-${DISTVERSION}-src > + > +MAINTAINER= nemysis@gmx.ch > +COMMENT= 8-bit style platform battle game > + > +WRKSRC= ${WRKDIR}/${DISTNAME}/battle/Battle > + > +USE_ZIP= yes > +EXTRACT_AFTER_ARGS= -d ${WRKDIR}/${DISTNAME} > +USE_GMAKE= yes > +USE_DOS2UNIX= *.cpp *.h *.ini Makefile > +ALL_TARGET= battle > +USE_SDL= sdl image mixer > +MAKE_JOBS_SAFE= yes > + > +pre-extract: > + @${MKDIR} ${WRKDIR}/${DISTNAME} > + > +PLIST_FILES= bin/${PORTNAME} \ > + share/applications/${PORTNAME}.desktop \ > + share/applications/${PORTNAME}fs.desktop \ > + share/pixmaps/${PORTNAME}.png > +PLIST_DIRSTRY= share/applications > + > +PORTDATA= * > + > +SUB_FILES= ${PORTNAME} > + > +.include > + > +post-patch: > + @${REINPLACE_CMD} -e 's|/usr/share/games/smashbattle/gfx/SB.png|${PORTNAME}|' \ > + -e 's|/usr/local/bin/smashbattle|${PORTNAME}|' \ > + ${WRKSRC}/linux/${PORTNAME}.desktop ${WRKSRC}/linux/${PORTNAME}fs.desktop > + > +do-install: > + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin > + ${MKDIR} ${DATADIR} > + ${INSTALL_PROGRAM} ${WRKSRC}/battle ${DATADIR}/${PORTNAME} > + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "gfx music sfx stage" ${DATADIR}) > + ${INSTALL_DATA} ${WRKSRC}/gfx/SB.png ${PREFIX}/share/pixmaps/${PORTNAME}.png > + ${MKDIR} ${PREFIX}/share/applications > + ${INSTALL_DATA} ${WRKSRC}/linux/${PORTNAME}.desktop ${PREFIX}/share/applications/ > + ${INSTALL_DATA} ${WRKSRC}/linux/${PORTNAME}fs.desktop ${PREFIX}/share/applications/ > + > +.include > > Added: head/games/smashbattle/distinfo > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/games/smashbattle/distinfo Thu Oct 11 05:33:04 2012 (r305698) > @@ -0,0 +1,2 @@ > +SHA256 (smashbattle-110224-src.zip) = 3856d97bf09e63b203c997190299e0aacfb9f947e9529e634046e7596e1e8ad1 > +SIZE (smashbattle-110224-src.zip) = 12238568 > > Added: head/games/smashbattle/files/patch-Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/games/smashbattle/files/patch-Makefile Thu Oct 11 05:33:04 2012 (r305698) > @@ -0,0 +1,11 @@ > +--- Makefile.orig 2012-05-11 15:51:06.000000000 +0200 > ++++ Makefile 2012-05-11 16:34:16.000000000 +0200 > +@@ -1,6 +1,6 @@ > + CC=g++ > +-CFLAGS=-c -Wall > +-LDFLAGS=-lSDL -lSDL_mixer -lz -lstdc++ > ++CFLAGS += $(shell sdl-config --cflags) -c -Wall > ++LDFLAGS += $(shell sdl-config --libs) -lSDL -lSDL_mixer -lz -lstdc++ -lm > + SRCS=Airstrike.cpp\ > + AirstrikePowerUp.cpp\ > + AmmoPowerUp.cpp\ > > Added: head/games/smashbattle/files/smashbattle.in > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/games/smashbattle/files/smashbattle.in Thu Oct 11 05:33:04 2012 (r305698) > @@ -0,0 +1,6 @@ > +#!/bin/sh > +# > +# $FreeBSD$ > + > +cd "%%DATADIR%%" > +exec ./smashbattle "${@}" The idiomatic way to do this is ${1+"$@"}. Otherwise with no arguments you end up with "", which is probably not desirable. Chris From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 19:01:51 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id B1D334A8; Fri, 12 Oct 2012 19:01:51 +0000 (UTC) Date: Fri, 12 Oct 2012 19:01:51 +0000 From: Alexey Dokuchaev To: Alex Kozlov Subject: Re: svn commit: r305727 - head/games/sdl_scavenger Message-ID: <20121012190151.GA7216@FreeBSD.org> References: <201210111419.q9BEJ8eh035933@svn.freebsd.org> <5076E63D.6070701@passap.ru> <20121011155410.GA36681@ravenloft.kiev.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20121011155410.GA36681@ravenloft.kiev.ua> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, =?koi8-r?B?4s/SydMg88HNz9LPxM/X?= , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 19:01:51 -0000 On Thu, Oct 11, 2012 at 06:54:10PM +0300, Alex Kozlov wrote: > This batch of updates was submitted via irc, email, via pastebin. > Is exact method need to be explicitly mentioned in commit log? No, it's OK to omit it; in this case direct communication between submitter and committer is assumed (which is indeed correct most of the time). ./danfe From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 19:45:39 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A521286; Fri, 12 Oct 2012 19:45:39 +0000 (UTC) (envelope-from tj@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2280B8FC14; Fri, 12 Oct 2012 19:45: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 q9CJjciv064894; Fri, 12 Oct 2012 19:45:38 GMT (envelope-from tj@svn.freebsd.org) Received: (from tj@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CJjc89064888; Fri, 12 Oct 2012 19:45:38 GMT (envelope-from tj@svn.freebsd.org) Message-Id: <201210121945.q9CJjc89064888@svn.freebsd.org> From: Tom Judge Date: Fri, 12 Oct 2012 19:45:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305792 - in head/devel: . p5-MooseX-Types-PortNumber X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 19:45:39 -0000 Author: tj Date: Fri Oct 12 19:45:38 2012 New Revision: 305792 URL: http://svn.freebsd.org/changeset/ports/305792 Log: Port number type for moose classes by The Internet Assigned Numbers Authority (IANA). WWW: http://search.cpan.org/dist/MooseX-Types-PortNumber/ Feature safe: yes Approved by: eadler (mentor) Added: head/devel/p5-MooseX-Types-PortNumber/ head/devel/p5-MooseX-Types-PortNumber/Makefile (contents, props changed) head/devel/p5-MooseX-Types-PortNumber/distinfo (contents, props changed) head/devel/p5-MooseX-Types-PortNumber/pkg-descr (contents, props changed) head/devel/p5-MooseX-Types-PortNumber/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 12 18:12:00 2012 (r305791) +++ head/devel/Makefile Fri Oct 12 19:45:38 2012 (r305792) @@ -2274,6 +2274,7 @@ SUBDIR += p5-MooseX-Types-LoadableClass SUBDIR += p5-MooseX-Types-Path-Class SUBDIR += p5-MooseX-Types-Perl + SUBDIR += p5-MooseX-Types-PortNumber SUBDIR += p5-MooseX-Types-Set-Object SUBDIR += p5-MooseX-Types-Signal SUBDIR += p5-MooseX-Types-Structured Added: head/devel/p5-MooseX-Types-PortNumber/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-MooseX-Types-PortNumber/Makefile Fri Oct 12 19:45:38 2012 (r305792) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= MooseX-Types-PortNumber +PORTVERSION= 0.02 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= tj@FreeBSD.org +COMMENT= Port number type for moose classes by The Internet Assigned Numbers Authority (IANA) + +BUILD_DEPENDS= p5-Moose>=0.41:${PORTSDIR}/devel/p5-Moose \ + p5-MooseX-Types>=0.30:${PORTSDIR}/devel/p5-MooseX-Types \ + p5-namespace-autoclean>=0.13:${PORTSDIR}/devel/p5-namespace-autoclean \ + p5-Test-Exception>=0.31:${PORTSDIR}/devel/p5-Test-Exception +RUN_DEPENDS= p5-Moose>=0.41:${PORTSDIR}/devel/p5-Moose \ + p5-MooseX-Types>=0.30:${PORTSDIR}/devel/p5-MooseX-Types \ + p5-namespace-autoclean>=0.13:${PORTSDIR}/devel/p5-namespace-autoclean \ + p5-Test-Exception>=0.31:${PORTSDIR}/devel/p5-Test-Exception + +PERL_CONFIGURE= yes + +MAN3= MooseX::Types::PortNumber.3 + +.include Added: head/devel/p5-MooseX-Types-PortNumber/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-MooseX-Types-PortNumber/distinfo Fri Oct 12 19:45:38 2012 (r305792) @@ -0,0 +1,2 @@ +SHA256 (MooseX-Types-PortNumber-0.02.tar.gz) = 0d52e651a33aa6be8e7c3a56a86a80d4021f18a88d730fa7a8579a2efac038ab +SIZE (MooseX-Types-PortNumber-0.02.tar.gz) = 12792 Added: head/devel/p5-MooseX-Types-PortNumber/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-MooseX-Types-PortNumber/pkg-descr Fri Oct 12 19:45:38 2012 (r305792) @@ -0,0 +1,3 @@ +Port number type for moose classes by The Internet Assigned Numbers Authority (IANA). + +WWW: http://search.cpan.org/dist/MooseX-Types-PortNumber/ Added: head/devel/p5-MooseX-Types-PortNumber/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-MooseX-Types-PortNumber/pkg-plist Fri Oct 12 19:45:38 2012 (r305792) @@ -0,0 +1,7 @@ +%%SITE_PERL%%/MooseX/Types/PortNumber.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types/PortNumber/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types/PortNumber +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX +@dirrmtry %%SITE_PERL%%/MooseX/Types +@dirrmtry %%SITE_PERL%%/MooseX From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 21:56:10 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 646F8656; Fri, 12 Oct 2012 21:56:10 +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 4B3918FC08; Fri, 12 Oct 2012 21:56: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 q9CLuAO9082817; Fri, 12 Oct 2012 21:56:10 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CLuA9X082810; Fri, 12 Oct 2012 21:56:10 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210122156.q9CLuA9X082810@svn.freebsd.org> From: Pawel Pekala Date: Fri, 12 Oct 2012 21:56:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305793 - in head/emulators: . swine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 21:56:10 -0000 Author: pawel Date: Fri Oct 12 21:56:09 2012 New Revision: 305793 URL: http://svn.freebsd.org/changeset/ports/305793 Log: Swine is a graphical wine frontend, that makes it easy to install and run Windows software on Linux systems. Swine uses a modern QT4 interface to offer most of the Wine command-line tools to users. WWW: http://www.swine-tool.de/ PR: ports/172142 Submitted by: nemysis@gmx.ch Feature safe: yes Added: head/emulators/swine/ head/emulators/swine/Makefile (contents, props changed) head/emulators/swine/distinfo (contents, props changed) head/emulators/swine/pkg-descr (contents, props changed) head/emulators/swine/pkg-message (contents, props changed) head/emulators/swine/pkg-plist (contents, props changed) Modified: head/emulators/Makefile Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Fri Oct 12 19:45:38 2012 (r305792) +++ head/emulators/Makefile Fri Oct 12 21:56:09 2012 (r305793) @@ -157,6 +157,7 @@ SUBDIR += stella SUBDIR += stonx SUBDIR += svr4_base + SUBDIR += swine SUBDIR += tiemu2 SUBDIR += tiemu3 SUBDIR += tilem Added: head/emulators/swine/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/swine/Makefile Fri Oct 12 21:56:09 2012 (r305793) @@ -0,0 +1,83 @@ +# Created by: nemysis@gmx.ch +# $FreeBSD$ + +PORTNAME= swine +PORTVERSION= 1.0.2 +CATEGORIES= emulators deskutils python +MASTER_SITES= GH + +MAINTAINER= nemysis@gmx.ch +COMMENT= QT4 Graphical Wine frontend + +LICENSE= GPLv2 + +BUILD_DEPENDS= pyrcc4:${PORTSDIR}/textproc/py-qt4-xml +RUN_DEPENDS= wine:${PORTSDIR}/emulators/wine-devel \ + xterm:${PORTSDIR}/x11/xterm \ + cabextract:${PORTSDIR}/archivers/cabextract \ + icotool:${PORTSDIR}/graphics/icoutils \ + ${PYTHON_PKGNAMEPREFIX}qt4-core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core \ + ${PYTHON_PKGNAMEPREFIX}qt4-gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui + +DATADIRLIB= ${PREFIX}/lib/${PORTNAME} + +USE_GITHUB= yes +GH_ACCOUNT= dswd +GH_PROJECT= Swine +GH_TAGNAME= master +GH_COMMIT= d14b9f0 + +USE_PYTHON= yes +USE_GMAKE= yes +USE_QT4= linguist_build + +PORTDOCS= README + +.include "../../devel/py-sip/files/bsd.pyqt.mk" +.include + +post-patch: + @${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/version.sh + +pre-build: +.if !exists(${LOCALBASE}/bin/wine) && ${ARCH} != "i386" + @${ECHO_MSG} + @${ECHO_MSG} "Depends on Wine Port which is only available for i386" + @${ECHO_MSG} + @${ECHO_MSG} " http://wiki.freebsd.org/Wine" + @${ECHO_MSG} + @${ECHO_MSG} "FreeBSD/amd64 works with Wine 32bit binary from" + @${ECHO_MSG} + @${ECHO_MSG} " http://www.mediafire.com/wine_fbsd64" + @${ECHO_MSG} + exit 1 +.endif + +do-build: + @(cd ${WRKSRC} ; ${GMAKE}) + +do-install: + ${MKDIR} ${DATADIRLIB} + ${INSTALL_DATA} ${WRKSRC}/resources.qrc ${DATADIRLIB} + ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIRLIB} + ${LN} -sf ${DATADIRLIB}/${PORTNAME}.py ${PREFIX}/bin/${PORTNAME} + ${LN} -sf ${DATADIRLIB}/${PORTNAME}cli.py ${PREFIX}/bin/${PORTNAME}cli + ${LN} -sf ${DATADIRLIB}/${PORTNAME}run.py ${PREFIX}/bin/${PORTNAME}run + ${MKDIR} ${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "translations images" ${DATADIR}) + + ${LN} -sf ${DATADIR}/images/swine32.png ${PREFIX}/share/pixmaps/${PORTNAME}.png + ${MKDIR} ${PREFIX}/share/applications + ${INSTALL_DATA} ${WRKSRC}/resources/*.desktop ${PREFIX}/share/applications/ + +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} +.endif + + @${ECHO_CMD} + @${CAT} ${PKGMESSAGE} + @${ECHO_CMD} + +.include Added: head/emulators/swine/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/swine/distinfo Fri Oct 12 21:56:09 2012 (r305793) @@ -0,0 +1,2 @@ +SHA256 (swine-1.0.2.tar.gz) = 938aa8f261d6f566da2fd5a75c19685a853d8dec3f1c258746cb4f2ca0b564fc +SIZE (swine-1.0.2.tar.gz) = 203558 Added: head/emulators/swine/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/swine/pkg-descr Fri Oct 12 21:56:09 2012 (r305793) @@ -0,0 +1,5 @@ +Swine is a graphical wine frontend, that makes it easy to install and run +Windows software on Linux systems. Swine uses a modern QT4 interface to offer +most of the Wine command-line tools to users. + +WWW: http://www.swine-tool.de/ Added: head/emulators/swine/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/swine/pkg-message Fri Oct 12 21:56:09 2012 (r305793) @@ -0,0 +1,14 @@ +################################################################################ + +This programm will attempt to obtain some system information by accessing files +in procfs. You must mount procfs filesystem for this to work correctly. +This can be accomplished by adding the following line to your /etc/fstab file: + +# Device Mountpoint FStype Options Dump Pass# +proc /proc procfs rw 0 0 + +and then, as root, executing the command: + +mount /proc + +################################################################################ Added: head/emulators/swine/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/swine/pkg-plist Fri Oct 12 21:56:09 2012 (r305793) @@ -0,0 +1,84 @@ +bin/swine +bin/swinecli +bin/swinerun +lib/swine/AboutDialog.py +lib/swine/IconDialog.py +lib/swine/MainWindow.py +lib/swine/ProgramDialog.py +lib/swine/RunnerDialog.py +lib/swine/Settings.py +lib/swine/ShortcutImport.py +lib/swine/SlotSettings.py +lib/swine/config.py +lib/swine/icolib.py +lib/swine/resources.qrc +lib/swine/resources_rc.py +lib/swine/shortcutlib.py +lib/swine/swine.py +lib/swine/swinecli.py +lib/swine/swinelib.py +lib/swine/swinerun.py +lib/swine/winetricks.py +share/applications/swine-extensions.desktop +share/applications/swine.desktop +share/pixmaps/swine.png +%%DATADIR%%/images/add.png +%%DATADIR%%/images/application.png +%%DATADIR%%/images/application_add.png +%%DATADIR%%/images/application_delete.png +%%DATADIR%%/images/application_edit.png +%%DATADIR%%/images/application_form_magnify.png +%%DATADIR%%/images/application_lightning.png +%%DATADIR%%/images/application_xp_terminal.png +%%DATADIR%%/images/arrow_divide.png +%%DATADIR%%/images/arrow_refresh.png +%%DATADIR%%/images/cog.png +%%DATADIR%%/images/computer.png +%%DATADIR%%/images/computer_edit.png +%%DATADIR%%/images/cross.png +%%DATADIR%%/images/document-open-folder.png +%%DATADIR%%/images/document-open.png +%%DATADIR%%/images/drive_add.png +%%DATADIR%%/images/drive_cd.png +%%DATADIR%%/images/drive_delete.png +%%DATADIR%%/images/drive_magnify.png +%%DATADIR%%/images/drive_rename.png +%%DATADIR%%/images/film.png +%%DATADIR%%/images/film_add.png +%%DATADIR%%/images/find.png +%%DATADIR%%/images/folder.png +%%DATADIR%%/images/folder_explore.png +%%DATADIR%%/images/folder_grey.png +%%DATADIR%%/images/font.png +%%DATADIR%%/images/font_add.png +%%DATADIR%%/images/information.png +%%DATADIR%%/images/lightning_add.png +%%DATADIR%%/images/lightning_delete.png +%%DATADIR%%/images/package_add.png +%%DATADIR%%/images/package_go.png +%%DATADIR%%/images/pencil.png +%%DATADIR%%/images/pencil_add.png +%%DATADIR%%/images/plugin.png +%%DATADIR%%/images/plugin_add.png +%%DATADIR%%/images/script_gear.png +%%DATADIR%%/images/script_save.png +%%DATADIR%%/images/shape_flip_vertical.png +%%DATADIR%%/images/swine32.png +%%DATADIR%%/images/textfield_rename.png +%%DATADIR%%/images/wabi.png +%%DATADIR%%/images/wine.png +%%DATADIR%%/images/world.png +%%DATADIR%%/images/world_add.png +%%DATADIR%%/images/world_go.png +%%DATADIR%%/images/wrench.png +%%DATADIR%%/images/wrench_orange.png +%%DATADIR%%/translations/de.qm +%%DATADIR%%/translations/en.qm +%%DATADIR%%/translations/es.qm +%%DATADIR%%/translations/fr.qm +%%DATADIR%%/translations/he.qm +@dirrm %%DATADIR%%/translations +@dirrm %%DATADIR%%/images +@dirrm %%DATADIR%% +@dirrmtry share/applications +@dirrm lib/swine From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 22:00:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C243986; Fri, 12 Oct 2012 22:00:44 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 838F08FC0C; Fri, 12 Oct 2012 22:00: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 q9CM0ikl083549; Fri, 12 Oct 2012 22:00:44 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CM0ijw083547; Fri, 12 Oct 2012 22:00:44 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210122200.q9CM0ijw083547@svn.freebsd.org> From: Raphael Kubo da Costa Date: Fri, 12 Oct 2012 22:00:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305794 - head/x11-wm/blackbox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 22:00:44 -0000 Author: rakuco Date: Fri Oct 12 22:00:44 2012 New Revision: 305794 URL: http://svn.freebsd.org/changeset/ports/305794 Log: Follow-up to r305690: convert the OPTIONS line to OptionsNG as well. Thanks to kwm@ for the heads-up. PR: ports/172561 Feature safe: yes Modified: head/x11-wm/blackbox/Makefile Modified: head/x11-wm/blackbox/Makefile ============================================================================== --- head/x11-wm/blackbox/Makefile Fri Oct 12 21:56:09 2012 (r305793) +++ head/x11-wm/blackbox/Makefile Fri Oct 12 22:00:44 2012 (r305794) @@ -24,7 +24,8 @@ USE_XORG= x11 xft MAN1= bsetbg.1 bsetroot.1 PORTDOCS= README.bbtools README.bsetbg -OPTIONS= TOOLS_ONLY "Do not install window manager, only tools" off +OPTIONS_DEFINE= TOOLS_ONLY +TOOLS_ONLY_DESC= Do not install window manager, only tools .include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 22:44:12 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49CE673B; Fri, 12 Oct 2012 22:44:12 +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 321938FC14; Fri, 12 Oct 2012 22:44: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 q9CMiCtb089508; Fri, 12 Oct 2012 22:44:12 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CMiBK7089505; Fri, 12 Oct 2012 22:44:11 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210122244.q9CMiBK7089505@svn.freebsd.org> From: Pawel Pekala Date: Fri, 12 Oct 2012 22:44:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305795 - in head: emulators/swine games/rescue X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 22:44:12 -0000 Author: pawel Date: Fri Oct 12 22:44:11 2012 New Revision: 305795 URL: http://svn.freebsd.org/changeset/ports/305795 Log: Fix silly COMMENTs caps Feature safe: yes Modified: head/emulators/swine/Makefile head/games/rescue/Makefile Modified: head/emulators/swine/Makefile ============================================================================== --- head/emulators/swine/Makefile Fri Oct 12 22:00:44 2012 (r305794) +++ head/emulators/swine/Makefile Fri Oct 12 22:44:11 2012 (r305795) @@ -7,7 +7,7 @@ CATEGORIES= emulators deskutils python MASTER_SITES= GH MAINTAINER= nemysis@gmx.ch -COMMENT= QT4 Graphical Wine frontend +COMMENT= Qt4 graphical Wine frontend LICENSE= GPLv2 Modified: head/games/rescue/Makefile ============================================================================== --- head/games/rescue/Makefile Fri Oct 12 22:00:44 2012 (r305794) +++ head/games/rescue/Makefile Fri Oct 12 22:44:11 2012 (r305795) @@ -9,7 +9,7 @@ DISTNAME= ${PORTNAME:S/r/R/}_${PORTVERSI DIST_SUBDIR= java MAINTAINER= nemysis@gmx.ch -COMMENT= Action Adventure in Space +COMMENT= Action adventure in space LICENSE= GPLv2 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 23:15:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7921E20B; Fri, 12 Oct 2012 23:15:36 +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 6230D8FC16; Fri, 12 Oct 2012 23:15:36 +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 q9CNFatO093846; Fri, 12 Oct 2012 23:15:36 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CNFaES093841; Fri, 12 Oct 2012 23:15:36 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210122315.q9CNFaES093841@svn.freebsd.org> From: Guido Falsi Date: Fri, 12 Oct 2012 23:15:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305796 - in head/multimedia/libva: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 23:15:36 -0000 Author: madpilot Date: Fri Oct 12 23:15:35 2012 New Revision: 305796 URL: http://svn.freebsd.org/changeset/ports/305796 Log: - Add patch to fix compilation with gcc46. Submitted by: Andriy Gapon Feature safe: yes Modified: head/multimedia/libva/Makefile head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp Modified: head/multimedia/libva/Makefile ============================================================================== --- head/multimedia/libva/Makefile Fri Oct 12 22:44:11 2012 (r305795) +++ head/multimedia/libva/Makefile Fri Oct 12 23:15:35 2012 (r305796) @@ -2,6 +2,7 @@ PORTNAME= libva PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://cgit.freedesktop.org/${PORTNAME}/snapshot/ Modified: head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp ============================================================================== --- head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp Fri Oct 12 22:44:11 2012 (r305795) +++ head/multimedia/libva/files/patch-test-v4l_h264-encode-capture.cpp Fri Oct 12 23:15:35 2012 (r305796) @@ -1,6 +1,14 @@ --- test/v4l_h264/encode/capture.cpp.orig 2012-10-04 15:30:51.000000000 +0200 -+++ test/v4l_h264/encode/capture.cpp 2012-10-08 22:31:01.067189237 +0200 -@@ -37,7 +37,11 @@ ++++ test/v4l_h264/encode/capture.cpp 2012-10-11 17:57:55.361081933 +0200 +@@ -30,6 +30,7 @@ + */ + + #include /* EXIT_FAILURE, EXIT_SUCCESS */ ++#include /* printf */ + #include + #include /* strerror() */ + #include +@@ -37,7 +38,11 @@ #include /* low-level i/o */ #include #include @@ -12,7 +20,7 @@ #include #include #include -@@ -451,10 +455,15 @@ +@@ -451,10 +456,15 @@ } for (n_buffers = 0; n_buffers < 4; ++n_buffers) { buffers[n_buffers].length = buffer_size; From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 23:53:13 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90EA2AC7; Fri, 12 Oct 2012 23:53:13 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 60C668FC0A; Fri, 12 Oct 2012 23:53: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 q9CNrDT7098999; Fri, 12 Oct 2012 23:53:13 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CNrDs8098994; Fri, 12 Oct 2012 23:53:13 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210122353.q9CNrDs8098994@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 23:53:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305797 - head/www/p5-HTML-Lint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 23:53:13 -0000 Author: jhale Date: Fri Oct 12 23:53:12 2012 New Revision: 305797 URL: http://svn.freebsd.org/changeset/ports/305797 Log: - Update to 2.20 [1] - Trim Makefile header PR: ports/168134 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: tobez (maintainer timeout, 5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/www/p5-HTML-Lint/Makefile (contents, props changed) head/www/p5-HTML-Lint/distinfo (contents, props changed) head/www/p5-HTML-Lint/pkg-plist (contents, props changed) Modified: head/www/p5-HTML-Lint/Makefile ============================================================================== --- head/www/p5-HTML-Lint/Makefile Fri Oct 12 23:15:35 2012 (r305796) +++ head/www/p5-HTML-Lint/Makefile Fri Oct 12 23:53:12 2012 (r305797) @@ -1,12 +1,8 @@ -# New ports collection makefile for: www/p5-HTML-Lint -# Date created: 27 December 2005 -# Whom: Anton Berezin -# +# Created by: Anton Berezin # $FreeBSD$ -# PORTNAME= HTML-Lint -PORTVERSION= 2.10 +PORTVERSION= 2.20 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PETDANCE @@ -25,6 +21,7 @@ PERL_CONFIGURE= yes MAN3= HTML::Lint.3 \ HTML::Lint::Error.3 \ HTML::Lint::HTML4.3 \ + HTML::Lint::Parser.3 \ Test::HTML::Lint.3 .include Modified: head/www/p5-HTML-Lint/distinfo ============================================================================== --- head/www/p5-HTML-Lint/distinfo Fri Oct 12 23:15:35 2012 (r305796) +++ head/www/p5-HTML-Lint/distinfo Fri Oct 12 23:53:12 2012 (r305797) @@ -1,2 +1,2 @@ -SHA256 (HTML-Lint-2.10.tar.gz) = 45311f5a14071e44fa998dceeae3285ea0c4ac755ab1e89595dd354864a2b2d4 -SIZE (HTML-Lint-2.10.tar.gz) = 23505 +SHA256 (HTML-Lint-2.20.tar.gz) = 934b47cf05a5b4375758c77304e018d1784c7524aee11956ccc88145adc47997 +SIZE (HTML-Lint-2.20.tar.gz) = 25974 Modified: head/www/p5-HTML-Lint/pkg-plist ============================================================================== --- head/www/p5-HTML-Lint/pkg-plist Fri Oct 12 23:15:35 2012 (r305796) +++ head/www/p5-HTML-Lint/pkg-plist Fri Oct 12 23:53:12 2012 (r305797) @@ -2,6 +2,7 @@ bin/weblint %%SITE_PERL%%/HTML/Lint.pm %%SITE_PERL%%/HTML/Lint/Error.pm %%SITE_PERL%%/HTML/Lint/HTML4.pm +%%SITE_PERL%%/HTML/Lint/Parser.pm %%SITE_PERL%%/Test/HTML/Lint.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Lint/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Lint From owner-svn-ports-head@FreeBSD.ORG Fri Oct 12 23:56:17 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98F4CD35; Fri, 12 Oct 2012 23:56:17 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 68C0D8FC0C; Fri, 12 Oct 2012 23:56:17 +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 q9CNuH6T099483; Fri, 12 Oct 2012 23:56:17 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9CNuHAR099479; Fri, 12 Oct 2012 23:56:17 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210122356.q9CNuHAR099479@svn.freebsd.org> From: "Jason E. Hale" Date: Fri, 12 Oct 2012 23:56:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305798 - head/x11/p5-Clipboard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 23:56:17 -0000 Author: jhale Date: Fri Oct 12 23:56:16 2012 New Revision: 305798 URL: http://svn.freebsd.org/changeset/ports/305798 Log: - Update to 0.13 [1] - Trim Makefile header PR: ports/168194 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: tobez (maintainer timeout, 5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/x11/p5-Clipboard/Makefile (contents, props changed) head/x11/p5-Clipboard/distinfo (contents, props changed) head/x11/p5-Clipboard/pkg-plist (contents, props changed) Modified: head/x11/p5-Clipboard/Makefile ============================================================================== --- head/x11/p5-Clipboard/Makefile Fri Oct 12 23:53:12 2012 (r305797) +++ head/x11/p5-Clipboard/Makefile Fri Oct 12 23:56:16 2012 (r305798) @@ -1,13 +1,8 @@ -# New ports collection makefile for: x11/p5-Clipboard -# Date created: 14 October 2005 -# Whom: Anton Berezin -# +# Created by: Anton Berezin # $FreeBSD$ -# PORTNAME= Clipboard -PORTVERSION= 0.09 -PORTREVISION= 1 +PORTVERSION= 0.13 CATEGORIES= x11 perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:KING Modified: head/x11/p5-Clipboard/distinfo ============================================================================== --- head/x11/p5-Clipboard/distinfo Fri Oct 12 23:53:12 2012 (r305797) +++ head/x11/p5-Clipboard/distinfo Fri Oct 12 23:56:16 2012 (r305798) @@ -1,2 +1,2 @@ -SHA256 (Clipboard-0.09.tar.gz) = ece559ce20c08f152c47e5fa51c3530ea3b7fdad459a024d36f3da829540bcc1 -SIZE (Clipboard-0.09.tar.gz) = 15111 +SHA256 (Clipboard-0.13.tar.gz) = eebf1c9cb2484be850abdae017147967cf47f8ccd99293771517674b0046ec8a +SIZE (Clipboard-0.13.tar.gz) = 21616 Modified: head/x11/p5-Clipboard/pkg-plist ============================================================================== --- head/x11/p5-Clipboard/pkg-plist Fri Oct 12 23:53:12 2012 (r305797) +++ head/x11/p5-Clipboard/pkg-plist Fri Oct 12 23:56:16 2012 (r305798) @@ -4,7 +4,7 @@ bin/clipedit bin/clipfilter bin/clipjoin %%SITE_PERL%%/Clipboard.pm -%%SITE_PERL%%/Clipboard/Pb.pm +%%SITE_PERL%%/Clipboard/MacPasteboard.pm %%SITE_PERL%%/Clipboard/Win32.pm %%SITE_PERL%%/Clipboard/Xclip.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Clipboard/.packlist From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 00:02:08 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EBF54FF6; Sat, 13 Oct 2012 00:02:08 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D51718FC0C; Sat, 13 Oct 2012 00:02:08 +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 q9D028Uo000638; Sat, 13 Oct 2012 00:02:08 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D028Nc000635; Sat, 13 Oct 2012 00:02:08 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210130002.q9D028Nc000635@svn.freebsd.org> From: "Jason E. Hale" Date: Sat, 13 Oct 2012 00:02:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305799 - head/textproc/p5-YAML-Syck X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 00:02:09 -0000 Author: jhale Date: Sat Oct 13 00:02:08 2012 New Revision: 305799 URL: http://svn.freebsd.org/changeset/ports/305799 Log: - Update to 1.21 [1] - Trim Makefile header PR: ports/168130 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: tobez (maintainer timeout, 5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/textproc/p5-YAML-Syck/Makefile (contents, props changed) head/textproc/p5-YAML-Syck/distinfo (contents, props changed) Modified: head/textproc/p5-YAML-Syck/Makefile ============================================================================== --- head/textproc/p5-YAML-Syck/Makefile Fri Oct 12 23:56:16 2012 (r305798) +++ head/textproc/p5-YAML-Syck/Makefile Sat Oct 13 00:02:08 2012 (r305799) @@ -1,12 +1,8 @@ -# New ports collection makefile for: textproc/p5-YAML-Syck -# Date created: 28 December 2005 -# Whom: Anton Berezin -# +# Created by: Anton Berezin # $FreeBSD$ -# PORTNAME= YAML-Syck -PORTVERSION= 1.19 +PORTVERSION= 1.21 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/textproc/p5-YAML-Syck/distinfo ============================================================================== --- head/textproc/p5-YAML-Syck/distinfo Fri Oct 12 23:56:16 2012 (r305798) +++ head/textproc/p5-YAML-Syck/distinfo Sat Oct 13 00:02:08 2012 (r305799) @@ -1,2 +1,2 @@ -SHA256 (YAML-Syck-1.19.tar.gz) = 15b2a1e15a652e2fe8c9f299f2311c6471f0f03227fe2c8b56dcfd4de2e57b5a -SIZE (YAML-Syck-1.19.tar.gz) = 163004 +SHA256 (YAML-Syck-1.21.tar.gz) = f43f39bc4cc4fa1e8aacd398b1c7f1bae39c0b44074b164c9da0be4f5ffebd15 +SIZE (YAML-Syck-1.21.tar.gz) = 168765 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 00:07:46 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D82A14A8; Sat, 13 Oct 2012 00:07:46 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A84948FC0C; Sat, 13 Oct 2012 00:07:46 +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 q9D07kXL001943; Sat, 13 Oct 2012 00:07:46 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D07knm001940; Sat, 13 Oct 2012 00:07:46 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210130007.q9D07knm001940@svn.freebsd.org> From: "Jason E. Hale" Date: Sat, 13 Oct 2012 00:07:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305800 - head/textproc/p5-XML-DT X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 00:07:46 -0000 Author: jhale Date: Sat Oct 13 00:07:46 2012 New Revision: 305800 URL: http://svn.freebsd.org/changeset/ports/305800 Log: - Update to 0.62 [1] - Fix portlint(1) warnings about BUILD/RUN_DEPENDS [1] - Trim Makefile header PR: ports/168116 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: tobez (maintainer timeout, 5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/textproc/p5-XML-DT/Makefile (contents, props changed) head/textproc/p5-XML-DT/distinfo (contents, props changed) Modified: head/textproc/p5-XML-DT/Makefile ============================================================================== --- head/textproc/p5-XML-DT/Makefile Sat Oct 13 00:02:08 2012 (r305799) +++ head/textproc/p5-XML-DT/Makefile Sat Oct 13 00:07:46 2012 (r305800) @@ -1,12 +1,8 @@ -# New ports collection makefile for: textproc/p5-XML-DT -# Date created: 01 January 2001 -# Whom: Anton Berezin -# +# Created by: Anton Berezin # $FreeBSD$ -# PORTNAME= XML-DT -PORTVERSION= 0.56 +PORTVERSION= 0.62 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,11 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Perl module for down translation of XML to strings -COMMON_DEPENDS= p5-XML-LibXML>=1.54:${PORTSDIR}/textproc/p5-XML-LibXML \ +BUILD_DEPENDS= p5-XML-LibXML>=1.54:${PORTSDIR}/textproc/p5-XML-LibXML \ p5-libwww>=1.35:${PORTSDIR}/www/p5-libwww \ p5-XML-DTDParser>=2.00:${PORTSDIR}/textproc/p5-XML-DTDParser -BUILD_DEPENDS= ${COMMON_DEPENDS} -RUN_DEPENDS= ${COMMON_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes Modified: head/textproc/p5-XML-DT/distinfo ============================================================================== --- head/textproc/p5-XML-DT/distinfo Sat Oct 13 00:02:08 2012 (r305799) +++ head/textproc/p5-XML-DT/distinfo Sat Oct 13 00:07:46 2012 (r305800) @@ -1,2 +1,2 @@ -SHA256 (XML-DT-0.56.tar.gz) = aa2060fffd4505dd87fd028b59af147cc75394a899c3c01ca077945fd327bb09 -SIZE (XML-DT-0.56.tar.gz) = 29322 +SHA256 (XML-DT-0.62.tar.gz) = 609cc817ba97e4481282705a350228c6fafe70260c327858202d5eb1c37e7864 +SIZE (XML-DT-0.62.tar.gz) = 30553 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 00:21:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7CF8296C; Sat, 13 Oct 2012 00:21:03 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 59C918FC0C; Sat, 13 Oct 2012 00:21:03 +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 q9D0L3Tl003815; Sat, 13 Oct 2012 00:21:03 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D0L3CT003812; Sat, 13 Oct 2012 00:21:03 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210130021.q9D0L3CT003812@svn.freebsd.org> From: "Jason E. Hale" Date: Sat, 13 Oct 2012 00:21:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305801 - head/textproc/p5-Text-Xslate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 00:21:03 -0000 Author: jhale Date: Sat Oct 13 00:21:02 2012 New Revision: 305801 URL: http://svn.freebsd.org/changeset/ports/305801 Log: - Update to 1.5019 [1] - Fix portlint(1) warnings about BUILD/RUN_DEPENDS [1] - Add regression-test target since TEST_DEPENDS were already there - Trim Makefile header PR: ports/168112 [1] Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> [1] Approved by: tobez (maintainer timeout, 5 months) [1] makc, avilla (mentors, implicit) Feature safe: yes Modified: head/textproc/p5-Text-Xslate/Makefile (contents, props changed) head/textproc/p5-Text-Xslate/distinfo (contents, props changed) Modified: head/textproc/p5-Text-Xslate/Makefile ============================================================================== --- head/textproc/p5-Text-Xslate/Makefile Sat Oct 13 00:07:46 2012 (r305800) +++ head/textproc/p5-Text-Xslate/Makefile Sat Oct 13 00:21:02 2012 (r305801) @@ -1,12 +1,8 @@ -# New ports collection makefile for: textproc/p5-Text-Xslate -# Date created: 10 June 2010 -# Whom: Anton Berezin -# +# Whom: Anton Berezin # $FreeBSD$ -# PORTNAME= Text-Xslate -PORTVERSION= 1.5009 +PORTVERSION= 1.5019 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:GFUJI @@ -18,13 +14,14 @@ COMMENT= High performance template engin LICENSE= ART10 GPLv1 LICENSE_COMB= dual -COMMON_DEPENDS= p5-parent>=0.221:${PORTSDIR}/devel/p5-parent \ +BUILD_DEPENDS= p5-parent>=0.221:${PORTSDIR}/devel/p5-parent \ p5-Mouse>=0.61:${PORTSDIR}/devel/p5-Mouse \ p5-Any-Moose>=0.13:${PORTSDIR}/devel/p5-Any-Moose \ - p5-Data-MessagePack>=0.38:${PORTSDIR}/devel/p5-Data-MessagePack -BUILD_DEPENDS= ${COMMON_DEPENDS} -RUN_DEPENDS= ${COMMON_DEPENDS} -TEST_DEPENDS= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple \ + p5-Data-MessagePack>=0.38:${PORTSDIR}/devel/p5-Data-MessagePack \ + p5-MRO-Compat>=0:${PORTSDIR}/devel/p5-MRO-Compat +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-File-Copy-Recursive>=0:${PORTSDIR}/devel/p5-File-Copy-Recursive \ + p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple \ p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires MAKE_JOBS_UNSAFE= yes @@ -59,4 +56,13 @@ MAN3= Text::Xslate.3 \ Text::Xslate::Type::Raw.3 \ Text::Xslate::Util.3 -.include +.include + +.if ${PERL_LEVEL} < 501600 +BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.59:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker +.endif + +regression-test: build + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} test + +.include Modified: head/textproc/p5-Text-Xslate/distinfo ============================================================================== --- head/textproc/p5-Text-Xslate/distinfo Sat Oct 13 00:07:46 2012 (r305800) +++ head/textproc/p5-Text-Xslate/distinfo Sat Oct 13 00:21:02 2012 (r305801) @@ -1,2 +1,2 @@ -SHA256 (Text-Xslate-1.5009.tar.gz) = 17441381291968eafc7c15f84737c589556289ed4e60b4ed7c76320ddee54ce8 -SIZE (Text-Xslate-1.5009.tar.gz) = 208643 +SHA256 (Text-Xslate-1.5019.tar.gz) = 30b3c48e39102e6ffc26499a0aca76ed0e835a7e6553533b5c1cc296da24ba0d +SIZE (Text-Xslate-1.5019.tar.gz) = 211521 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 00:57:05 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5814077; Sat, 13 Oct 2012 00:57:05 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 26BC68FC08; Sat, 13 Oct 2012 00:57:05 +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 q9D0v5pa008754; Sat, 13 Oct 2012 00:57:05 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D0v4ep008750; Sat, 13 Oct 2012 00:57:04 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201210130057.q9D0v4ep008750@svn.freebsd.org> From: Xin LI Date: Sat, 13 Oct 2012 00:57:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305802 - in head/net/openldap24-server: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 00:57:05 -0000 Author: delphij Date: Sat Oct 13 00:57:04 2012 New Revision: 305802 URL: http://svn.freebsd.org/changeset/ports/305802 Log: Update to 2.4.33. Feature safe: yes Deleted: head/net/openldap24-server/files/patch-ITS-7363 Modified: head/net/openldap24-server/Makefile head/net/openldap24-server/distinfo head/net/openldap24-server/files/patch-shlib-version Modified: head/net/openldap24-server/Makefile ============================================================================== --- head/net/openldap24-server/Makefile Sat Oct 13 00:21:02 2012 (r305801) +++ head/net/openldap24-server/Makefile Sat Oct 13 00:57:04 2012 (r305802) @@ -6,7 +6,7 @@ # PORTNAME= openldap -DISTVERSION= 2.4.32 +DISTVERSION= 2.4.33 PORTREVISION= ${OPENLDAP_PORTREVISION} CATEGORIES= net databases MASTER_SITES= ftp://ftp.OpenLDAP.org/pub/OpenLDAP/%SUBDIR%/ \ @@ -42,8 +42,8 @@ WANT_OPENLDAP_VER?= 24 BROKEN= incompatible OpenLDAP version: ${WANT_OPENLDAP_VER} .endif -PORTREVISION_CLIENT= 1 -PORTREVISION_SERVER= 2 +PORTREVISION_CLIENT= 0 +PORTREVISION_SERVER= 0 OPENLDAP_SHLIB_MAJOR= 8 OPTIONS_DEFINE= SASL FETCH Modified: head/net/openldap24-server/distinfo ============================================================================== --- head/net/openldap24-server/distinfo Sat Oct 13 00:21:02 2012 (r305801) +++ head/net/openldap24-server/distinfo Sat Oct 13 00:57:04 2012 (r305802) @@ -1,2 +1,2 @@ -SHA256 (openldap-2.4.32.tgz) = 9ee413c6a816cb41f71826759b78001d04e747ede9dde302d6ba94ab16f0b82e -SIZE (openldap-2.4.32.tgz) = 5450134 +SHA256 (openldap-2.4.33.tgz) = 81e9eca20f17a69a5d15ebc4c66a323106da4f4f80a32105bc7cdea333aca14c +SIZE (openldap-2.4.33.tgz) = 5463850 Modified: head/net/openldap24-server/files/patch-shlib-version ============================================================================== --- head/net/openldap24-server/files/patch-shlib-version Sat Oct 13 00:21:02 2012 (r305801) +++ head/net/openldap24-server/files/patch-shlib-version Sat Oct 13 00:57:04 2012 (r305802) @@ -1,14 +1,14 @@ # I have checked all headers and don't think the shared library # bump is a needed one. We patch it back to prevent large # rebuild need. ---- build/version.var.orig 2012-07-31 09:39:26.000000000 -0700 -+++ build/version.var 2012-07-31 12:03:12.618025612 -0700 +--- build/version.var.orig 2012-10-08 14:35:43.000000000 -0700 ++++ build/version.var 2012-10-08 14:40:08.046064513 -0700 @@ -17,7 +17,7 @@ ol_minor=4 - ol_patch=32 - ol_api_inc=20432 + ol_patch=33 + ol_api_inc=20433 -ol_api_current=10 +ol_api_current=8 - ol_api_revision=4 + ol_api_revision=5 ol_api_age=8 - ol_release_date="2012/07/31" + ol_release_date="2012/10/13" From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 01:07:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F27A320; Sat, 13 Oct 2012 01:07:33 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 571968FC14; Sat, 13 Oct 2012 01:07:33 +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 q9D17XXn010673; Sat, 13 Oct 2012 01:07:33 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D17Xje010666; Sat, 13 Oct 2012 01:07:33 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210130107.q9D17Xje010666@svn.freebsd.org> From: Ryan Steinmetz Date: Sat, 13 Oct 2012 01:07:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305803 - in head/net-mgmt/net-snmp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 01:07:33 -0000 Author: zi Date: Sat Oct 13 01:07:32 2012 New Revision: 305803 URL: http://svn.freebsd.org/changeset/ports/305803 Log: - Update to 5.7.2 - Convert to OptionsNG Feature safe: yes Added: head/net-mgmt/net-snmp/files/pkg-message.in - copied, changed from r301561, head/net-mgmt/net-snmp/pkg-message Deleted: head/net-mgmt/net-snmp/files/patch-Makefile.in head/net-mgmt/net-snmp/files/patch-agent-mibgroup-hardware-fsys-fsys_getfsstats.c head/net-mgmt/net-snmp/files/patch-agent__Makefile.in head/net-mgmt/net-snmp/files/patch-agent__helpers__old_api.c head/net-mgmt/net-snmp/files/patch-agent__mibgroup__agent__extend.c head/net-mgmt/net-snmp/files/patch-agent__mibgroup__hardware__fsys__hw_fsys.c head/net-mgmt/net-snmp/files/patch-agent__mibgroup__host__data_access__swinst_apt.c head/net-mgmt/net-snmp/files/patch-agent__mibgroup__host__data_access__swrun_kinfo.c head/net-mgmt/net-snmp/files/patch-agent__mibgroup__sctp-mib__sctpTables_freebsd.c head/net-mgmt/net-snmp/files/patch-agent__mibgroup__ucd-snmp__disk_hw.c head/net-mgmt/net-snmp/files/patch-agent_mibgroup_hardware_cpu_cpu__sysctl.c head/net-mgmt/net-snmp/files/patch-auto_nlist.c head/net-mgmt/net-snmp/files/patch-configure head/net-mgmt/net-snmp/files/patch-freebsd10.h head/net-mgmt/net-snmp/files/patch-freebsd8.h head/net-mgmt/net-snmp/files/patch-freebsd9.h head/net-mgmt/net-snmp/files/patch-generic.h head/net-mgmt/net-snmp/files/patch-hr_storage.h head/net-mgmt/net-snmp/files/patch-hr_system.c head/net-mgmt/net-snmp/files/patch-include-net-snmp_net-snmp-config.h.in head/net-mgmt/net-snmp/files/patch-local:fixproc head/net-mgmt/net-snmp/files/patch-local:ipf-mod.pl head/net-mgmt/net-snmp/files/patch-local:mib2c head/net-mgmt/net-snmp/files/patch-local:snmpcheck.def head/net-mgmt/net-snmp/files/patch-local:snmpconf head/net-mgmt/net-snmp/files/patch-local:tkmib head/net-mgmt/net-snmp/files/patch-local:traptoemail head/net-mgmt/net-snmp/files/patch-ltmain.sh head/net-mgmt/net-snmp/files/patch-net-snmp-includes.h head/net-mgmt/net-snmp/files/patch-sctpScalars.h head/net-mgmt/net-snmp/files/patch-sctpTables.h head/net-mgmt/net-snmp/files/patch-sctpTables_common.h head/net-mgmt/net-snmp/files/patch-snmplib__snmp_api.c head/net-mgmt/net-snmp/files/patch-snmplib__system.c head/net-mgmt/net-snmp/pkg-message Modified: head/net-mgmt/net-snmp/Makefile head/net-mgmt/net-snmp/distinfo head/net-mgmt/net-snmp/files/extra-patch-local:Makefile.in head/net-mgmt/net-snmp/pkg-descr head/net-mgmt/net-snmp/pkg-plist Modified: head/net-mgmt/net-snmp/Makefile ============================================================================== --- head/net-mgmt/net-snmp/Makefile Sat Oct 13 00:57:04 2012 (r305802) +++ head/net-mgmt/net-snmp/Makefile Sat Oct 13 01:07:32 2012 (r305803) @@ -6,8 +6,7 @@ # PORTNAME= snmp -PORTVERSION= 5.7.1 -PORTREVISION= 7 +PORTVERSION= 5.7.2 CATEGORIES= net-mgmt ipv6 MASTER_SITES= SF/net-${PORTNAME}/net-${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= net- @@ -17,18 +16,19 @@ MAINTAINER= zi@FreeBSD.org COMMENT= An extendable SNMP implementation LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/COPYING -OPTIONS= IPV6 "Build with IPv6 support" on \ - MFD_REWRITES "Build with 64-bit Interface Counters" off \ - PERL "Install additional perl modules" on \ - PERL_EMBEDDED "Build embedded perl" on \ - PYTHON "Install additional python modules" off \ - DUMMY "Enable dummy values as placeholders" on \ - TKMIB "Install graphical MIB browser" off \ - DMALLOC "Enable dmalloc debug memory allocator" off \ - MYSQL "Enable logging of traps to MySQL" off \ - AX_SOCKONLY "Disable UDP/TCP transports for agentx" off \ - UNPRIVILEGED "Allow unprivileged users to execute net-snmp" off +OPTIONS_DEFINE= IPV6 MFD_REWRITES PERL PERL_EMBEDDED PYTHON DUMMY TKMIB \ + DMALLOC MYSQL AX_SOCKONLY UNPRIVILEGED +OPTIONS_DEFAULT=IPV6 PERL PERL_EMBEDDED DUMMY + +MFD_REWRITES_DESC= Build with 64-bit Interface Counters +PERL_EMBEDDED_DESC= Build embedded perl +DUMMY_DESC= Enable dummy values as placeholders +TKMIB_DESC= Install graphical MIB browser +DMALLOC_DESC= Enable dmalloc debug memory allocator +AX_SOCKONLY_DESC= Disable UDP/TCP transports for agentx +UNPRIVILEGED_DESC= Allow unprivileged users to execute net-snmp .include @@ -48,12 +48,13 @@ CONFIGURE_ARGS+=--enable-shared --enable --with-logfile="${NET_SNMP_LOGFILE}" \ --with-persistent-directory="${NET_SNMP_PERSISTENTDIR}" \ --with-gnu-ld --with-libwrap --with-ldflags="-lm -lkvm -ldevstat" +SUB_FILES= pkg-message .if defined(BATCH) CONFIGURE_ARGS+=--with-defaults .endif -.if defined(WITH_PYTHON) +.if ${PORT_OPTIONS:MPYTHON} # borrowed from bsd.python.mk and adapted for our needs PYEASYINSTALL_CMD?= ${LOCALBASE}/bin/easy_install-${PYTHON_VER} PYEASYINSTALL_BINDIR?= ${PREFIX}/bin @@ -83,11 +84,11 @@ PLIST_SUB+= WITH_PYTHON="@comment " .include CONFIGURE_ARGS+= --with-openssl="${OPENSSLBASE}" -.if defined(WITH_DUMMY) +.if ${PORT_OPTIONS:MDUMMY} CONFIGURE_ARGS+=--with-dummy-values .endif -.if !defined(WITH_TKMIB) +.if empty(${PORT_OPTIONS:MTKMIB}) EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-local:Makefile.in PLIST_SUB+= WITH_TKMIB="@comment " .else @@ -95,10 +96,10 @@ RUN_DEPENDS+= p5-Tk>=0:${PORTSDIR}/x11-t PLIST_SUB+= WITH_TKMIB="" .endif -.if defined(WITH_PERL) +.if ${PORT_OPTIONS:MPERL} USE_PERL5= yes CONFIGURE_ARGS+=--with-perl-modules -.if defined(WITHOUT_PERL_EMBEDDED) +.if empty(${PORT_OPTIONS:MPERL_EMBEDDED}) CONFIGURE_ARGS+=--disable-embedded-perl PLIST_SUB+= WITH_PERL_EMBEDDED="@comment " .else @@ -113,23 +114,23 @@ PLIST_SUB+= WITH_PERL_EMBEDDED="@comment PLIST_SUB+= WITH_PERL="@comment " .endif -.if defined(WITH_DMALLOC) +.if ${PORT_OPTIONS:MDMALLOC} LIB_DEPENDS+= dmalloc:${PORTSDIR}/devel/dmalloc CONFIGURE_ARGS+=--with-dmalloc=${LOCALBASE} .endif -.if defined(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= yes CFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS+=--with-mysql CONFIGURE_ENV+= MYSQLCONFIG=${LOCALBASE}/bin/mysql_config .endif -.if defined(WITH_AX_SOCKONLY) +.if ${PORT_OPTIONS:MAX_SOCKONLY} CONFIGURE_ARGS+=--enable-agentx-dom-sock-only .endif -.if defined(WITH_IPV6) +.if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+=--enable-ipv6 # --with-transport="UDPIPv6 TCPIPv6" --with-modules=mibII/ipv6" PLIST_SUB+= WITH_IPV6="" @@ -137,7 +138,7 @@ PLIST_SUB+= WITH_IPV6="" PLIST_SUB+= WITH_IPV6="@comment " .endif -.if defined(WITH_UNPRIVILEGED) +.if ${PORT_OPTIONS:MUNPRIVILEGED} CONFIGURE_ARGS+=--without-root-access .endif @@ -160,7 +161,7 @@ NET_SNMP_WITH_MIB_MODULE_LIST+= sctp-mib CONFIGURE_ARGS+= --with-libs="-lssp_nonshared" .endif -.if defined(WITH_MFD_REWRITES) +.if ${PORT_OPTIONS:MMFD_REWRITES} CONFIGURE_ARGS+=--enable-mfd-rewrites NET_SNMP_WITH_MIB_MODULE_LIST+= if-mib .endif @@ -189,17 +190,15 @@ MAN3= add_mibdir.3 add_module_replaceme get_module_node.3 \ netsnmp_agent_api.3 netsnmp_config_api.3 netsnmp_init_mib.3 \ netsnmp_mib_api.3 netsnmp_pdu_api.3 netsnmp_read_module.3 \ - netsnmp_sess_api.3 netsnmp_session_api.3 netsnmp_trap_api.3 netsnmp_varbind_api.3 \ - print_description.3 print_mib.3 print_objid.3 print_value.3 \ - print_variable.3 read_all_mibs.3 \ + netsnmp_sess_api.3 netsnmp_session_api.3 netsnmp_trap_api.3 \ + netsnmp_varbind_api.3 print_description.3 print_mib.3 \ + print_objid.3 print_value.3 print_variable.3 read_all_mibs.3 \ read_configs.3 read_config_print_usage.3 \ - read_mib.3 read_objid.3 \ - read_premib_configs.3 \ + read_mib.3 read_objid.3 read_premib_configs.3 \ register_app_config_handler.3 \ register_config_handler.3 register_mib_handlers.3 \ send_easy_trap.3 send_trap_vars.3 send_v2trap.3 \ - shutdown_mib.3 \ - snmp_alarm.3 snmp_alarm_register.3 \ + shutdown_mib.3 snmp_alarm.3 snmp_alarm_register.3 \ snmp_alarm_register_hr.3 snmp_alarm_unregister.3 \ snmp_api_errstring.3 snmp_close.3 \ snmp_error.3 snmp_free_pdu.3 snmp_open.3 snmp_perror.3 \ @@ -210,22 +209,25 @@ MAN3= add_mibdir.3 add_module_replaceme snmp_sess_read.3 snmp_sess_select_info.3 \ snmp_sess_send.3 snmp_sess_session.3 snmp_sess_timeout.3 \ snmp_set_mib_warnings.3 snmp_set_save_descriptions.3 \ - snmp_timeout.3 \ - snprint_objid.3 snprint_value.3 snprint_variable.3 \ - unregister_app_config_handler.3 \ + snmp_timeout.3 snprint_objid.3 snprint_value.3 \ + snprint_variable.3 unregister_app_config_handler.3 \ unregister_config_handler.3 \ unregister_all_config_handlers.3 \ - register_prenetsnmp_mib_handler.3 register_const_config_handler.3 register_app_prenetsnmp_mib_handler.3 \ + register_prenetsnmp_mib_handler.3 \ + register_const_config_handler.3 \ + register_app_prenetsnmp_mib_handler.3 \ snprint_description.3 \ snmp_varlist_add_variable.3 \ snmp_set_var_value.3 \ snmp_set_var_typed_value.3 \ snmp_set_var_typed_integer.3 \ snmp_set_var_objid.3 \ - snmp_set_mib_errors.3 snmp_pdu_create.3 snmp_pdu_add_variable.3 snmp_parse_oid.3 snmp_free_varbind.3 \ - snmp_free_var.3 snmp_fix_pdu.3 snmp_clone_varbind.3 snmp_clone_pdu.3 snmp_add_null_var.3 + snmp_set_mib_errors.3 snmp_pdu_create.3 \ + snmp_pdu_add_variable.3 snmp_parse_oid.3 snmp_free_varbind.3 \ + snmp_free_var.3 snmp_fix_pdu.3 snmp_clone_varbind.3 \ + snmp_clone_pdu.3 snmp_add_null_var.3 -.if defined(WITH_PERL) +.if ${PORT_OPTIONS:MPERL} MAN3PERL= NetSNMP::ASN.3 NetSNMP::OID.3 NetSNMP::agent.3 \ NetSNMP::TrapReceiver.3 \ NetSNMP::agent::default_store.3 \ @@ -246,7 +248,7 @@ SBIN_FILES= snmpd snmptrapd STARTUP_DIR= ${PREFIX}/etc/rc.d SCRIPT_FILES= snmpcheck.def mib2c fixproc ipf-mod.pl snmpconf \ traptoemail -.if defined(WITH_TKMIB) +.if ${PORT_OPTIONS:MTKMIB} SCRIPT_FILES+= tkmib .endif DOC_FILES= AGENT.txt COPYING FAQ NEWS README \ @@ -277,11 +279,11 @@ pre-everything:: post-patch: .for filename in ${SCRIPT_FILES} - ${REINPLACE_CMD} ${SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ - ${WRKSRC}/local/${filename} + ${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' ${WRKSRC}/local/${filename} .endfor .if ${OSVERSION} >= 900007 - @${REINPLACE_CMD} -e 's!utmp_p->ut_name!utmp_p->ut_user!' ${WRKSRC}/agent/mibgroup/host/hr_system.c + @${REINPLACE_CMD} -e 's!utmp_p->ut_name!utmp_p->ut_user!' \ + ${WRKSRC}/agent/mibgroup/host/hr_system.c .endif post-configure: @@ -292,7 +294,7 @@ post-configure: s!^.*#undef.*(HAVE_${hdr:U:S/./_/g:S/\//_/g}).*$$!#define \1 1!g' \ ${WRKSRC}/include/net-snmp/net-snmp-config.h .endfor -.if defined(WITH_PYTHON) +.if ${PORT_OPTIONS:MPYTHON} @(cd ${WRKSRC}/python; \ ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYSETUP} setopt -c bdist_egg \ -o plat-name -s "" --basedir=${WRKSRC}; \ @@ -301,7 +303,7 @@ post-configure: .endif post-build: -.if defined(WITH_PERL) +.if ${PORT_OPTIONS:MPERL} ${FIND} ${WRKSRC}/perl -name Makefile | \ ${XARGS} ${REINPLACE_CMD} -E -e '\ s!^(PREFIX) = .*!\1 = ${PREFIX}!; \ @@ -314,7 +316,7 @@ post-build: .endif post-install: strip-files install-config-files install-doc-files display-message - ${MKDIR} /var/agentx ${PREFIX}/etc/snmp + ${MKDIR} /var/agentx strip-files: cd ${PREFIX}/bin; ${STRIP_CMD} ${BIN_FILES} Modified: head/net-mgmt/net-snmp/distinfo ============================================================================== --- head/net-mgmt/net-snmp/distinfo Sat Oct 13 00:57:04 2012 (r305802) +++ head/net-mgmt/net-snmp/distinfo Sat Oct 13 01:07:32 2012 (r305803) @@ -1,2 +1,2 @@ -SHA256 (net-snmp-5.7.1.tar.gz) = 7c71c9650c65b715356547e20ca2dbe6313944278af8cc19c32a5337f46b181f -SIZE (net-snmp-5.7.1.tar.gz) = 6110619 +SHA256 (net-snmp-5.7.2.tar.gz) = 09ed31b4cc1f3c0411ef9a16eff79ef3b30d89c32ca46d5a01a41826c4ceb816 +SIZE (net-snmp-5.7.2.tar.gz) = 6281352 Modified: head/net-mgmt/net-snmp/files/extra-patch-local:Makefile.in ============================================================================== --- head/net-mgmt/net-snmp/files/extra-patch-local:Makefile.in Sat Oct 13 00:57:04 2012 (r305802) +++ head/net-mgmt/net-snmp/files/extra-patch-local:Makefile.in Sat Oct 13 01:07:32 2012 (r305803) @@ -1,5 +1,5 @@ ---- ./local/Makefile.in.orig 2011-11-24 11:55:41.000000000 -0500 -+++ ./local/Makefile.in 2011-11-24 11:55:48.000000000 -0500 +--- ./local/Makefile.in.orig 2012-06-12 10:48:43.000000000 -0400 ++++ ./local/Makefile.in 2012-06-12 10:48:50.000000000 -0400 @@ -16,7 +16,7 @@ # SNMPCONFPATH=@SNMPCONFPATH@ Copied and modified: head/net-mgmt/net-snmp/files/pkg-message.in (from r301561, head/net-mgmt/net-snmp/pkg-message) ============================================================================== --- head/net-mgmt/net-snmp/pkg-message Thu Jul 26 13:28:58 2012 (r301561, copy source) +++ head/net-mgmt/net-snmp/files/pkg-message.in Sat Oct 13 01:07:32 2012 (r305803) @@ -5,14 +5,14 @@ snmpd_enable="YES" snmpd_flags="-a" - snmpd_conffile="/usr/local/share/snmp/snmpd.conf /etc/snmpd.conf" + snmpd_conffile="%%PREFIX%%/share/snmp/snmpd.conf /etc/snmpd.conf" snmptrapd_enable="YES" snmptrapd_flags="-a -p /var/run/snmptrapd.pid" **** You may specify the following make variables: - NET_SNMP_SYS_CONTACT="sylvio@FreeBSD.org" - NET_SNMP_SYS_LOCATION="Brasilia, BRA" + NET_SNMP_SYS_CONTACT="zi@FreeBSD.org" + NET_SNMP_SYS_LOCATION="USA" DEFAULT_SNMP_VERSION=3 NET_SNMP_MIB_MODULES="host smux mibII/mta_sendmail ucd-snmp/diskio" NET_SNMP_LOGFILE=/var/log/snmpd.log Modified: head/net-mgmt/net-snmp/pkg-descr ============================================================================== --- head/net-mgmt/net-snmp/pkg-descr Sat Oct 13 00:57:04 2012 (r305802) +++ head/net-mgmt/net-snmp/pkg-descr Sat Oct 13 01:07:32 2012 (r305803) @@ -1,12 +1,12 @@ This is Net-SNMP (previously known as "ucd-snmp"). -Various tools relating to the Simple Network Management Protocol including: +Various tools relating to the Simple Network Management Protocol including: - An extensible agent - An SNMP library - tools to request or set information from SNMP agents - tools to generate and handle SNMP traps - a version of the unix 'netstat' command using SNMP + An extensible agent + An SNMP library + tools to request or set information from SNMP agents + tools to generate and handle SNMP traps + a version of the unix 'netstat' command using SNMP a graphical Perl/Tk/SNMP based mib browser WWW: http://net-snmp.sourceforge.net/ Modified: head/net-mgmt/net-snmp/pkg-plist ============================================================================== --- head/net-mgmt/net-snmp/pkg-plist Sat Oct 13 00:57:04 2012 (r305802) +++ head/net-mgmt/net-snmp/pkg-plist Sat Oct 13 01:07:32 2012 (r305803) @@ -66,6 +66,7 @@ include/net-snmp/agent/snmp_get_statisti include/net-snmp/agent/snmp_vars.h include/net-snmp/agent/stash_cache.h include/net-snmp/agent/stash_to_next.h +include/net-snmp/agent/struct.h include/net-snmp/agent/sysORTable.h include/net-snmp/agent/table.h include/net-snmp/agent/table_array.h @@ -75,6 +76,10 @@ include/net-snmp/agent/table_dataset.h include/net-snmp/agent/table_iterator.h include/net-snmp/agent/table_tdata.h include/net-snmp/agent/util_funcs.h +include/net-snmp/agent/util_funcs/header_generic.h +include/net-snmp/agent/util_funcs/header_simple_table.h +include/net-snmp/agent/util_funcs/MIB_STATS_CACHE_TIMEOUT.h +@dirrmtry include/net-snmp/agent/util_funcs include/net-snmp/agent/var_struct.h include/net-snmp/agent/watcher.h include/net-snmp/config_api.h From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 01:17:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 052BD58A; Sat, 13 Oct 2012 01:17:38 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E20C78FC08; Sat, 13 Oct 2012 01:17: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 q9D1Hb68012117; Sat, 13 Oct 2012 01:17:37 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D1Hb8q012114; Sat, 13 Oct 2012 01:17:37 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201210130117.q9D1Hb8q012114@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Sat, 13 Oct 2012 01:17:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305804 - head/math/octave-forge-generate_html X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 01:17:38 -0000 Author: stephen Date: Sat Oct 13 01:17:37 2012 New Revision: 305804 URL: http://svn.freebsd.org/changeset/ports/305804 Log: - Update to 0.1.5. Feature safe: yes Modified: head/math/octave-forge-generate_html/Makefile head/math/octave-forge-generate_html/distinfo Modified: head/math/octave-forge-generate_html/Makefile ============================================================================== --- head/math/octave-forge-generate_html/Makefile Sat Oct 13 01:07:32 2012 (r305803) +++ head/math/octave-forge-generate_html/Makefile Sat Oct 13 01:17:37 2012 (r305804) @@ -6,8 +6,7 @@ # PORTNAME= octave-forge-generate_html -PORTVERSION= 0.1.4 -PORTREVISION= 1 +PORTVERSION= 0.1.5 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-generate_html/distinfo ============================================================================== --- head/math/octave-forge-generate_html/distinfo Sat Oct 13 01:07:32 2012 (r305803) +++ head/math/octave-forge-generate_html/distinfo Sat Oct 13 01:17:37 2012 (r305804) @@ -1,2 +1,2 @@ -SHA256 (octave-forge/generate_html-0.1.4.tar.gz) = 153f4e261c89770815ff9ac7fdf846a44a46947a254ee58664e859f2077431be -SIZE (octave-forge/generate_html-0.1.4.tar.gz) = 27733 +SHA256 (octave-forge/generate_html-0.1.5.tar.gz) = 999991e4d6fb4068f6e822f6065edb7c572c02860a586cd77e8d26334d43c2ca +SIZE (octave-forge/generate_html-0.1.5.tar.gz) = 27797 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 01:18:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E0169666; Sat, 13 Oct 2012 01:18:27 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C6E618FC08; Sat, 13 Oct 2012 01:18:27 +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 q9D1IR0S012377; Sat, 13 Oct 2012 01:18:27 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D1IRZf012371; Sat, 13 Oct 2012 01:18:27 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210130118.q9D1IRZf012371@svn.freebsd.org> From: Ryan Steinmetz Date: Sat, 13 Oct 2012 01:18:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305805 - in head/net/freeradius2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 01:18:28 -0000 Author: zi Date: Sat Oct 13 01:18:27 2012 New Revision: 305805 URL: http://svn.freebsd.org/changeset/ports/305805 Log: - Update to 2.2.0 - Convert to OptionsNG Feature safe: yes Added: head/net/freeradius2/files/patch-configure.in (contents, props changed) head/net/freeradius2/files/patch-src__modules__rlm_perl__configure.in (contents, props changed) Deleted: head/net/freeradius2/files/patch-CVE-2012-3547 head/net/freeradius2/files/patch-perl head/net/freeradius2/files/patch-pthread head/net/freeradius2/files/patch-src__include__sysutmp.h Modified: head/net/freeradius2/Makefile head/net/freeradius2/distinfo head/net/freeradius2/pkg-plist Modified: head/net/freeradius2/Makefile ============================================================================== --- head/net/freeradius2/Makefile Sat Oct 13 01:17:37 2012 (r305804) +++ head/net/freeradius2/Makefile Sat Oct 13 01:18:27 2012 (r305805) @@ -8,8 +8,7 @@ # PORTNAME= freeradius -DISTVERSION= 2.1.12 -PORTREVISION= 2 +DISTVERSION= 2.2.0 CATEGORIES= net MASTER_SITES= ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \ ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \ @@ -44,30 +43,29 @@ MAKE_JOBS_UNSAFE= yes PLIST_SUB= PORTVERSION=${DISTVERSION} -OPTIONS= USER "Run as user freeradius, group freeradius" on \ - KERBEROS "With Kerberos support" off \ - HEIMDAL "With Heimdal Kerberos support" off \ - HEIMDAL_PORT "Use Heimdal Kerberos from ports" off \ - HEIMDAL_PATCH "Enhanced Heimdal support (specify SPN/keytab)" off \ - LDAP "With LDAP database support" off \ - MYSQL "With MySQL database support" off \ - PGSQL "With PostgreSQL database support" off \ - UNIXODBC "With unixODBC database support" off \ - FIREBIRD "With Firebird database support (EXPERIMENTAL)" off \ - PERL "With Perl support" on \ - PYTHON "With Python support" on \ - OCI8 "With Oracle support (currently experimental)" off \ - RUBY "With Ruby support (EXPERIMENTAL)" off \ - DHCP "With DHCP support (EXPERIMENTAL)" off \ - EXPERIMENTAL "Build experimental modules" off \ - UDPFROMTO "Compile in UDPFROMTO support" off +OPTIONS_DEFINE= USER KERBEROS HEIMDAL HEIMDAL_PORT HEIMDAL_PATCH LDAP MYSQL \ + PGSQL UNIXODBC FIREBIRD PERL PYTHON OCI8 RUBY DHCP \ + EXPERIMENTAL UDPFROMTO DEVELOPER +OPTIONS_DEFAULT=USER PERL PYTHON + +DHCP_DESC= With DHCP support (EXPERIMENTAL) +USER_DESC= Run as user freeradius, group freeradius +HEIMDAL_DESC= With Heimdal Kerberos support +HEIMDAL_PORT_DESC= With Heimdal Kerberos from ports +HEIMDAL_PATCH_DESC= Enhanced Heimdal support (specify SPN/keytab) +UNIXODBC_DESC= With unixODBC database support +FIREBIRD_DESC= With Firebird database support (EXPERIMENTAL) +OCI8_DESC= With Oracle support (currently experimental) +EXPERIMENTAL_DESC= Build experimental modules +UDPFROMTO_DESC= Compile in UDPFROMTO support +DEVELOPER_DESC= Enable developer options .include # Default requirements for rc script _REQUIRE= NETWORKING SERVERS -.ifdef(WITH_USER) +.if ${PORT_OPTIONS:MUSER} SUB_LIST+= RUN_AS_USER="yes" .else SUB_LIST+= RUN_AS_USER="no" @@ -80,15 +78,16 @@ RADIUS_GROUP= freeradius USERS= ${RADIUS_USER} GROUPS= ${RADIUS_GROUP} -CONFIGURE_ARGS+= --with-system-libtool --with-system-libltdl --disable-ltdl-install +CONFIGURE_ARGS+=--with-system-libtool --with-system-libltdl \ + --disable-ltdl-install -.if defined(WITH_HEIMDAL) && !defined(WITH_KERBEROS) -WITH_KERBEROS= yes +.if ${PORT_OPTIONS:MHEIMDAL} && empty(${PORT_OPTIONS:MKERBEROS}) +${UNIQUENAME}_SET+= KERBEROS .endif -.ifdef(WITH_KERBEROS) -.ifdef(WITH_HEIMDAL) -.ifdef(WITH_HEIMDAL_PORT) +.if ${PORT_OPTIONS:MKERBEROS} +.if ${PORT_OPTIONS:MHEIMDAL} +.if ${PORT_OPTIONS:MHEIMDAL_PORT} LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal .endif CONFIGURE_ARGS+=--enable-heimdal-krb5 @@ -96,7 +95,7 @@ CONFIGURE_ARGS+=--enable-heimdal-krb5 LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 .endif CONFIGURE_ARGS+=--with-rlm_krb5 -.if defined (WITH_HEIMDAL) && !defined(WITH_HEIMDAL_PORT) +.if ${PORT_OPTIONS:MHEIMDAL} && empty(${PORT_OPTIONS:MHEIMDAL_PORT}) CONFIGURE_ARGS+=--with-rlm-krb5-lib-dir=/usr/lib CONFIGURE_ARGS+=--with-rlm-krb5-include-dir=/usr/include CONFIGURE_ENV+= KRB5LIBS="$$(${KRB5_CONFIG})" @@ -111,11 +110,11 @@ PLIST_SUB+= KRB5="@comment " .endif # Patch rlm_krb5.c to add Heimdal support for specifying keytab+SPN -.ifdef(WITH_HEIMDAL_PATCH) +.if ${PORT_OPTIONS:MHEIMDAL_PATCH} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src__modules__rlm_krb5__rlm_krb5.c .endif -.ifdef(WITH_LDAP) +.if ${PORT_OPTIONS:MLDAP} USE_OPENLDAP= YES CONFIGURE_ARGS+=--with-rlm_ldap PLIST_SUB+= LDAP="" @@ -125,7 +124,7 @@ CONFIGURE_ARGS+=--without-rlm_ldap PLIST_SUB+= LDAP="@comment " .endif -.ifdef(WITH_MYSQL) +.if ${PORT_OPTIONS:MMYSQL} USE_MYSQL= YES CONFIGURE_ARGS+=--with-rlm_sql_mysql PLIST_SUB+= MYSQL="" @@ -135,7 +134,7 @@ CONFIGURE_ARGS+=--without-rlm_sql_mysql PLIST_SUB+= MYSQL="@comment " .endif -.ifdef(WITH_PGSQL) +.if ${PORT_OPTIONS:MPGSQL} USE_PGSQL= YES CONFIGURE_ARGS+=--with-rlm_sql_postgresql PLIST_SUB+= PGSQL="" @@ -145,7 +144,7 @@ CONFIGURE_ARGS+=--without-rlm_sql_postgr PLIST_SUB+= PGSQL="@comment " .endif -.ifdef(WITH_UNIXODBC) +.if ${PORT_OPTIONS:MUNIXODBC} CONFIGURE_ARGS+=--with-rlm_sql_unixodbc PLIST_SUB+= UNIXODBC="" LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC @@ -154,7 +153,7 @@ CONFIGURE_ARGS+=--without-rlm_sql_unixod PLIST_SUB+= UNIXODBC="@comment " .endif -.ifdef(WITH_FIREBIRD) +.if ${PORT_OPTIONS:MFIREBIRD} USE_FIREBIRD= YES CONFIGURE_ARGS+=--with-rlm_sql_firebird PLIST_SUB+= FIREBIRD="" @@ -164,11 +163,11 @@ PLIST_SUB+= FIREBIRD="@comment " .endif # Firebird module is still experimental -.if defined(WITH_FIREBIRD) && !defined(WITH_EXPERIMENTAL) +.if ${PORT_OPTIONS:MFIREBIRD} && empty(${PORT_OPTIONS:MEXPERIMENTAL} EXPM= yes .endif -.ifdef(WITH_PERL) +.if ${PORT_OPTIONS:MPERL} USE_PERL5= yes CONFIGURE_ARGS+=--with-rlm_perl PLIST_SUB+= RLMPERL="" @@ -177,7 +176,7 @@ CONFIGURE_ARGS+=--without-perl --without PLIST_SUB+= RLMPERL="@comment " .endif -.ifdef(WITH_PYTHON) +.if ${PORT_OPTIONS:MPYTHON} USE_PYTHON= yes CONFIGURE_ARGS+=--with-rlm_python \ --with-rlm-python-lib-dir=${PYTHON_LIBDIR} \ @@ -188,7 +187,7 @@ CONFIGURE_ARGS+=--without-rlm_python PLIST_SUB+= RLMPYTHON="@comment " .endif -.ifdef(WITH_RUBY) +.if ${PORT_OPTIONS:MRUBY} USE_RUBY= yes CONFIGURE_ARGS+=--with-rlm_ruby PLIST_SUB+= RLMRUBY="" @@ -198,23 +197,23 @@ PLIST_SUB+= RLMRUBY="@comment " .endif # rlm_ruby module is still experimental -.if defined(WITH_RUBY) && !defined(WITH_EXPERIMENTAL) +.if ${PORT_OPTIONS:MRUBY} && empty(${PORT_OPTIONS:MEXPERIMENTAL}) EXPM= yes .endif -.ifdef(WITH_DHCP) +.if ${PORT_OPTIONS:MDHCP} CONFIGURE_ARGS+=--with-dhcp .else CONFIGURE_ARGS+=--without-dhcp .endif # DHCP is still experimental -.if defined(WITH_DHCP) && !defined(WITH_EXPERIMENTAL) +.if ${PORT_OPTIONS:MDHCP} && empty(${PORT_OPTIONS:MEXPERIMENTAL}) EXPM= yes .endif # No SMB option yet; rlm_smb is still unbuildable -.ifdef(WITH_SMB) +.if ${PORT_OPTIONS:MSMB} LIB_DEPENDS= smbclient:${PORTSDIR}/net/samba-libsmbclient CONFIGURE_ARGS+=--with-rlm_smb CONFIGURE_ARGS+=--with-rlm-smb-lib-dir=${LOCALBASE}/lib @@ -226,12 +225,12 @@ PLIST_SUB+= SMB="@comment " .endif # SMB module is still experimental -.if defined(WITH_SMB) && !defined(WITH_EXPERIMENTAL) +.if ${PORT_OPTIONS:MSMB} && empty(${PORT_OPTIONS:MSMB}) EXPM= yes .endif # Oracle support is experimental under FreeBSD -.ifdef(WITH_OCI8) +.if ${PORT_OPTIONS:MOCI8} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-exec.c CONFIGURE_ENV= ORACLE_HOME="${ORACLE_HOME}" ORACLE_HOME?= ${LOCALBASE}/oracle8-client @@ -243,21 +242,21 @@ CONFIGURE_ARGS+=--without-rlm_sql_oracle PLIST_SUB+= OCI8="@comment " .endif -.if defined(EXPM) || defined(WITH_EXPERIMENTAL) +.if ${PORT_OPTIONS:MEXPERIMENTAL} || defined(EXPM) CONFIGURE_ARGS+=--with-experimental-modules PLIST_SUB+= EXPM="" .else PLIST_SUB+= EXPM="@comment " .endif -.ifdef(WITH_DEVELOPER) +.if ${PORT_OPTIONS:MDEVELOPER} CONFIGURE_ARGS+=--enable-developer # Turn off compiler optimisations CFLAGS!= ${ECHO} ${CFLAGS} | ${SED} -Ee 's:-O[0-9]?[[:space:]]*::g' .endif # Compile in UDPFROMTO support -.ifdef(WITH_UDPFROMTO) +.if ${PORT_OPTIONS:MUDPFROMTO} CONFIGURE_ARGS+=--with-udpfromto .endif @@ -324,7 +323,7 @@ MAN5= acct_users.5 clients.conf.5 dicti rlm_sql_log.5 rlm_unix.5 unlang.5 users.5 checkrad.5 MAN8= radiusd.8 radmin.8 raddebug.8 radrelay.8 radsqlrelay.8 \ radwatch.8 rlm_ippool_tool.8 radconf2xml.8 radcrypt.8 \ - radsniff.8 rlm_dbm_cat.8 rlm_dbm_parse.8 + radsniff.8 rlm_dbm_cat.8 rlm_dbm_parser.8 SUB_LIST+= REQUIRE="${_REQUIRE}" @@ -349,13 +348,13 @@ post-patch: -regex '.*/(bootstrap|Makefile)\.(orig|bak)$$' \ -delete # If we're using Heimdal from base, alter the LIBS variable -.if defined(WITH_HEIMDAL) && !defined(WITH_HEIMDAL_PORT) +.if ${PORT_OPTIONS:MHEIMDAL} && empty(${PORT_OPTIONS:MHEIMDAL_PORT}) @${REINPLACE_CMD} -e 's|LIBS|KRB5LIBS|g' ${WRKSRC}/src/modules/rlm_krb5/configure @${REINPLACE_CMD} -e 's|-lkrb5|$$(${KRB5_CONFIG})|g' \ ${WRKSRC}/src/modules/rlm_krb5/configure .endif -# If DHCPis enabled, enable the DHCP dictionary -.ifdef(WITH_DHCP) +# If DHCP is enabled, enable the DHCP dictionary +.if ${PORT_OPTIONS:MDHCP} @${REINPLACE_CMD} -Ee 's:^#(.+ dictionary\.dhcp)$$:\1:g' \ ${WRKSRC}/share/dictionary # Clean up (so as not to get an unwanted file in share) Modified: head/net/freeradius2/distinfo ============================================================================== --- head/net/freeradius2/distinfo Sat Oct 13 01:17:37 2012 (r305804) +++ head/net/freeradius2/distinfo Sat Oct 13 01:18:27 2012 (r305805) @@ -1,2 +1,2 @@ -SHA256 (freeradius-server-2.1.12.tar.bz2) = b66bb2935b656e19f2b725df1162e7ac160537e8ef8266c2447779bb7d113172 -SIZE (freeradius-server-2.1.12.tar.bz2) = 2670611 +SHA256 (freeradius-server-2.2.0.tar.bz2) = ad3e58fe2a723cbaafb8ca87677382a84bfb16e81b24f0d9ded71355a0218d35 +SIZE (freeradius-server-2.2.0.tar.bz2) = 2703349 Added: head/net/freeradius2/files/patch-configure.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/freeradius2/files/patch-configure.in Sat Oct 13 01:18:27 2012 (r305805) @@ -0,0 +1,39 @@ +--- ./configure.in.orig 2012-09-10 18:53:25.000000000 -0400 ++++ ./configure.in 2012-09-10 18:55:15.000000000 -0400 +@@ -443,6 +443,21 @@ + AC_DEFINE(WITH_UDPFROMTO, [], [define if you want udpfromto]) + fi + ++dnl extra argument: --with-perl ++WITH_PERL=yes ++AC_ARG_WITH(perl, ++ [ --with-perl Enable Perl support. (default=yes)], ++ [ case "$withval" in ++ yes) ++ ;; ++ *) ++ WITH_PERL=no ++ esac ] ++ ) ++if test "x$WITH_PERL" = "xno"; then ++ with_rlm_perl=no ++fi ++ + dnl ############################################################# + dnl # + dnl # 1. Checks for programs +@@ -450,10 +465,14 @@ + dnl ############################################################# + + CHECKRAD=checkrad.pl ++if test "x$WITH_PERL" = "xyes"; then + AC_PATH_PROG(PERL, perl, /usr/local/bin/perl) + if test "x$ac_cv_path_PERL" = "x"; then + AC_MSG_WARN(perl not found - Simultaneous-Use and checkrad.pl may not work) + fi ++else ++ AC_MSG_WARN(perl disabled - Simultaneous-Use and checkrad.pl may not work) ++fi + AC_PATH_PROG(SNMPGET, snmpget) + if test "x$ac_cv_path_SNMPGET" = "x"; then + AC_MSG_WARN(snmpget not found - Simultaneous-Use and checkrad.pl may not work) Added: head/net/freeradius2/files/patch-src__modules__rlm_perl__configure.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/freeradius2/files/patch-src__modules__rlm_perl__configure.in Sat Oct 13 01:18:27 2012 (r305805) @@ -0,0 +1,22 @@ +--- ./src/modules/rlm_perl/configure.in.orig 2012-09-10 18:55:42.000000000 -0400 ++++ ./src/modules/rlm_perl/configure.in 2012-09-10 18:56:32.000000000 -0400 +@@ -3,7 +3,18 @@ + AC_REVISION($Revision$) + AC_DEFUN(modname,[rlm_perl]) + +-if test x$with_[]modname != xno; then ++dnl extra argument: --with-perl ++WITH_PERL=yes ++AC_ARG_WITH(perl, ++ [ --with-perl Enable Perl support. (default=yes)], ++ [ case "$withval" in ++ yes) ++ ;; ++ *) ++ WITH_PERL=no ++ esac ] ++ ) ++if test x$with_[]modname != xno && test x$WITH_PERL != xno; then + + AC_PROG_CC + AC_PROG_CPP Modified: head/net/freeradius2/pkg-plist ============================================================================== --- head/net/freeradius2/pkg-plist Sat Oct 13 01:17:37 2012 (r305804) +++ head/net/freeradius2/pkg-plist Sat Oct 13 01:18:27 2012 (r305805) @@ -9,6 +9,7 @@ bin/radsqlrelay bin/radtest bin/radwho bin/radzap +bin/rad_counter bin/rlm_dbm_cat bin/rlm_dbm_parser bin/rlm_ippool_tool @@ -39,6 +40,7 @@ bin/smbencrypt %%EXAMPLESDIR%%/raddb/modules/always %%EXAMPLESDIR%%/raddb/modules/attr_filter %%EXAMPLESDIR%%/raddb/modules/attr_rewrite +%%EXAMPLESDIR%%/raddb/modules/cache %%EXAMPLESDIR%%/raddb/modules/chap %%EXAMPLESDIR%%/raddb/modules/checkval %%EXAMPLESDIR%%/raddb/modules/counter @@ -46,6 +48,7 @@ bin/smbencrypt %%EXAMPLESDIR%%/raddb/modules/detail %%EXAMPLESDIR%%/raddb/modules/detail.example.com %%EXAMPLESDIR%%/raddb/modules/detail.log +%%EXAMPLESDIR%%/raddb/modules/dhcp_sqlippool %%EXAMPLESDIR%%/raddb/modules/digest %%EXAMPLESDIR%%/raddb/modules/dynamic_clients %%EXAMPLESDIR%%/raddb/modules/echo @@ -72,6 +75,7 @@ bin/smbencrypt %%EXAMPLESDIR%%/raddb/modules/perl %%EXAMPLESDIR%%/raddb/modules/policy %%EXAMPLESDIR%%/raddb/modules/preprocess +%%EXAMPLESDIR%%/raddb/modules/radrelay %%EXAMPLESDIR%%/raddb/modules/radutmp %%EXAMPLESDIR%%/raddb/modules/realm %%EXAMPLESDIR%%/raddb/modules/redis @@ -98,6 +102,7 @@ bin/smbencrypt %%EXAMPLESDIR%%/raddb/sites-available/decoupled-accounting %%EXAMPLESDIR%%/raddb/sites-available/default %%EXAMPLESDIR%%/raddb/sites-available/dhcp +%%EXAMPLESDIR%%/raddb/sites-available/dhcp.relay %%EXAMPLESDIR%%/raddb/sites-available/dynamic-clients %%EXAMPLESDIR%%/raddb/sites-available/example %%EXAMPLESDIR%%/raddb/sites-available/inner-tunnel @@ -123,6 +128,7 @@ bin/smbencrypt %%EXAMPLESDIR%%/raddb/sql/mysql/cui.sql %%EXAMPLESDIR%%/raddb/sql/mysql/dialup.conf %%EXAMPLESDIR%%/raddb/sql/mysql/ippool.conf +%%EXAMPLESDIR%%/raddb/sql/mysql/ippool-dhcp.conf %%EXAMPLESDIR%%/raddb/sql/mysql/ippool.sql %%EXAMPLESDIR%%/raddb/sql/mysql/nas.sql %%EXAMPLESDIR%%/raddb/sql/mysql/schema.sql @@ -197,6 +203,11 @@ bin/smbencrypt %%LIBDIR%%/rlm_attr_rewrite.a %%LIBDIR%%/rlm_attr_rewrite.la %%LIBDIR%%/rlm_attr_rewrite.so +%%LIBDIR%%/rlm_cache-%%PORTVERSION%%.la +%%LIBDIR%%/rlm_cache-%%PORTVERSION%%.so +%%LIBDIR%%/rlm_cache.a +%%LIBDIR%%/rlm_cache.la +%%LIBDIR%%/rlm_cache.so %%EXPM%%%%LIBDIR%%/rlm_caching-%%PORTVERSION%%.la %%EXPM%%%%LIBDIR%%/rlm_caching-%%PORTVERSION%%.so %%EXPM%%%%LIBDIR%%/rlm_caching.a @@ -497,11 +508,11 @@ bin/smbencrypt %%LIBDIR%%/rlm_unix.a %%LIBDIR%%/rlm_unix.la %%LIBDIR%%/rlm_unix.so -%%EXPM%%%%LIBDIR%%/rlm_wimax-%%PORTVERSION%%.la -%%EXPM%%%%LIBDIR%%/rlm_wimax-%%PORTVERSION%%.so -%%EXPM%%%%LIBDIR%%/rlm_wimax.a -%%EXPM%%%%LIBDIR%%/rlm_wimax.la -%%EXPM%%%%LIBDIR%%/rlm_wimax.so +%%LIBDIR%%/rlm_wimax-%%PORTVERSION%%.la +%%LIBDIR%%/rlm_wimax-%%PORTVERSION%%.so +%%LIBDIR%%/rlm_wimax.a +%%LIBDIR%%/rlm_wimax.la +%%LIBDIR%%/rlm_wimax.so @dirrm %%LIBDIR%% sbin/checkrad sbin/raddebug @@ -584,7 +595,6 @@ include/freeradius/vqp.h %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc2867.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc2868.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc2869.txt -%%PORTDOCS%%%%DOCSDIR%%/rfc/rfc2882.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc2924.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc3079.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc3162.txt @@ -593,6 +603,7 @@ include/freeradius/vqp.h %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc3579.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc3580.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc3748.txt +%%PORTDOCS%%%%DOCSDIR%%/rfc/rfc4282.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc4372.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc4590.txt %%PORTDOCS%%%%DOCSDIR%%/rfc/rfc4668.txt @@ -679,8 +690,10 @@ include/freeradius/vqp.h %%DATADIR%%/dictionary.bay %%DATADIR%%/dictionary.bintec %%DATADIR%%/dictionary.bristol +%%DATADIR%%/dictionary.bt %%DATADIR%%/dictionary.cablelabs %%DATADIR%%/dictionary.cabletron +%%DATADIR%%/dictionary.camiant %%DATADIR%%/dictionary.chillispot %%DATADIR%%/dictionary.cisco %%DATADIR%%/dictionary.cisco.bbsm @@ -698,6 +711,7 @@ include/freeradius/vqp.h %%DATADIR%%/dictionary.ericsson %%DATADIR%%/dictionary.erx %%DATADIR%%/dictionary.extreme +%%DATADIR%%/dictionary.f5 %%DATADIR%%/dictionary.fortinet %%DATADIR%%/dictionary.foundry %%DATADIR%%/dictionary.freeradius @@ -739,9 +753,11 @@ include/freeradius/vqp.h %%DATADIR%%/dictionary.ntua %%DATADIR%%/dictionary.openser %%DATADIR%%/dictionary.packeteer +%%DATADIR%%/dictionary.paloalto %%DATADIR%%/dictionary.patton %%DATADIR%%/dictionary.propel %%DATADIR%%/dictionary.prosoft +%%DATADIR%%/dictionary.purewave %%DATADIR%%/dictionary.quiconnect %%DATADIR%%/dictionary.quintum %%DATADIR%%/dictionary.redback @@ -763,6 +779,7 @@ include/freeradius/vqp.h %%DATADIR%%/dictionary.rfc4849 %%DATADIR%%/dictionary.rfc5090 %%DATADIR%%/dictionary.rfc5176 +%%DATADIR%%/dictionary.rfc5447 %%DATADIR%%/dictionary.rfc5580 %%DATADIR%%/dictionary.rfc5607 %%DATADIR%%/dictionary.rfc5904 @@ -781,6 +798,7 @@ include/freeradius/vqp.h %%DATADIR%%/dictionary.t_systems_nova %%DATADIR%%/dictionary.telebit %%DATADIR%%/dictionary.telkom +%%DATADIR%%/dictionary.terena %%DATADIR%%/dictionary.trapeze %%DATADIR%%/dictionary.tropos %%DATADIR%%/dictionary.ukerna From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 01:20:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A8E80748; Sat, 13 Oct 2012 01:20:21 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 783898FC12; Sat, 13 Oct 2012 01:20: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 q9D1KLt5012705; Sat, 13 Oct 2012 01:20:21 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D1KLSu012702; Sat, 13 Oct 2012 01:20:21 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201210130120.q9D1KLSu012702@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Sat, 13 Oct 2012 01:20:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305806 - head/math/octave-forge-geometry X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 01:20:21 -0000 Author: stephen Date: Sat Oct 13 01:20:20 2012 New Revision: 305806 URL: http://svn.freebsd.org/changeset/ports/305806 Log: - Update to 1.6.0. Feature safe: yes Modified: head/math/octave-forge-geometry/Makefile head/math/octave-forge-geometry/distinfo Modified: head/math/octave-forge-geometry/Makefile ============================================================================== --- head/math/octave-forge-geometry/Makefile Sat Oct 13 01:18:27 2012 (r305805) +++ head/math/octave-forge-geometry/Makefile Sat Oct 13 01:20:20 2012 (r305806) @@ -1,12 +1,8 @@ -# New ports collection makefile for: octave-forge-geometry -# Date created: 27 September 2011 -# Whom: Stephen Montgomery-Smith -# +# Created by: Stephen Montgomery-Smith # $FreeBSD$ -# PORTNAME= octave-forge-geometry -PORTVERSION= 1.5.0 +PORTVERSION= 1.6.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -16,14 +12,13 @@ COMMENT= Octave-forge package ${OCTAVE_P # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. OCTSRC= ${OCTAVE_PKGNAME} +WRKSRC= ${WRKDIR}/${OCTSRC}/src + RUN_DEPENDS+= py*-lxml>=0:${PORTSDIR}/devel/py-lxml RUN_DEPENDS+= ${TARBALLS_DIR}/general.tar.gz:${PORTSDIR}/math/octave-forge-general .include .include "${PORTSDIR}/Mk/bsd.octave.mk" -do-build: - @${DO_NADA} - post-build: ${RM} -f ${WRKSRC}/Makefile ${WRKSRC}/configure cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC} Modified: head/math/octave-forge-geometry/distinfo ============================================================================== --- head/math/octave-forge-geometry/distinfo Sat Oct 13 01:18:27 2012 (r305805) +++ head/math/octave-forge-geometry/distinfo Sat Oct 13 01:20:20 2012 (r305806) @@ -1,2 +1,2 @@ -SHA256 (octave-forge/geometry-1.5.0.tar.gz) = 387ba84a63e0a0a6397783da401ef88cb12f58573fb0aadf733bf626d24e506e -SIZE (octave-forge/geometry-1.5.0.tar.gz) = 201940 +SHA256 (octave-forge/geometry-1.6.0.tar.gz) = 1d1b9fe0979252db8318953d8985b1ef0d6ab0998ac2abb8b612831a720906b3 +SIZE (octave-forge/geometry-1.6.0.tar.gz) = 750275 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 01:21:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 793EF824; Sat, 13 Oct 2012 01:21:50 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 61F9B8FC08; Sat, 13 Oct 2012 01:21: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 q9D1LoNA012943; Sat, 13 Oct 2012 01:21:50 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D1Lo2p012941; Sat, 13 Oct 2012 01:21:50 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201210130121.q9D1Lo2p012941@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Sat, 13 Oct 2012 01:21:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305807 - head/math/octave-forge-generate_html X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 01:21:50 -0000 Author: stephen Date: Sat Oct 13 01:21:49 2012 New Revision: 305807 URL: http://svn.freebsd.org/changeset/ports/305807 Log: - Forgot to trim header in Makefile in last commit. Feature safe: yes Modified: head/math/octave-forge-generate_html/Makefile Modified: head/math/octave-forge-generate_html/Makefile ============================================================================== --- head/math/octave-forge-generate_html/Makefile Sat Oct 13 01:20:20 2012 (r305806) +++ head/math/octave-forge-generate_html/Makefile Sat Oct 13 01:21:49 2012 (r305807) @@ -1,9 +1,5 @@ -# New ports collection makefile for: octave-forge-generate_html -# Date created: 7 June 2009 -# Whom: Stephen Montgomery-Smith -# +# Created by: Stephen Montgomery-Smith # $FreeBSD$ -# PORTNAME= octave-forge-generate_html PORTVERSION= 0.1.5 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 01:42:16 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 881ABC7C; Sat, 13 Oct 2012 01:42:16 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 70C418FC08; Sat, 13 Oct 2012 01:42:16 +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 q9D1gGWd015773; Sat, 13 Oct 2012 01:42:16 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D1gGKT015770; Sat, 13 Oct 2012 01:42:16 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210130142.q9D1gGKT015770@svn.freebsd.org> From: Ryan Steinmetz Date: Sat, 13 Oct 2012 01:42:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305808 - head/www/rubygem-nanoc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 01:42:16 -0000 Author: zi Date: Sat Oct 13 01:42:15 2012 New Revision: 305808 URL: http://svn.freebsd.org/changeset/ports/305808 Log: - Update to 3.4.1 Feature safe: yes Modified: head/www/rubygem-nanoc/Makefile head/www/rubygem-nanoc/distinfo Modified: head/www/rubygem-nanoc/Makefile ============================================================================== --- head/www/rubygem-nanoc/Makefile Sat Oct 13 01:21:49 2012 (r305807) +++ head/www/rubygem-nanoc/Makefile Sat Oct 13 01:42:15 2012 (r305808) @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= nanoc -PORTVERSION= 3.4.0 +PORTVERSION= 3.4.1 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-nanoc/distinfo ============================================================================== --- head/www/rubygem-nanoc/distinfo Sat Oct 13 01:21:49 2012 (r305807) +++ head/www/rubygem-nanoc/distinfo Sat Oct 13 01:42:15 2012 (r305808) @@ -1,2 +1,2 @@ -SHA256 (rubygem/nanoc-3.4.0.gem) = c4f62dd5d7a172505b4461589f25c47778fe97cf3db50b50e775a22c40b9db32 -SIZE (rubygem/nanoc-3.4.0.gem) = 155648 +SHA256 (rubygem/nanoc-3.4.1.gem) = ad0cbeb102442a921d51a824e99819e714f5b44c1ac29e5b432860ce2ec0f99c +SIZE (rubygem/nanoc-3.4.1.gem) = 157184 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 02:05:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABAD2F4D; Sat, 13 Oct 2012 02:05:14 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 94C838FC1A; Sat, 13 Oct 2012 02:05: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 q9D25EDs018943; Sat, 13 Oct 2012 02:05:14 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D25ECl018941; Sat, 13 Oct 2012 02:05:14 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210130205.q9D25ECl018941@svn.freebsd.org> From: Ryan Steinmetz Date: Sat, 13 Oct 2012 02:05:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305809 - head/security/snort X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 02:05:14 -0000 Author: zi Date: Sat Oct 13 02:05:14 2012 New Revision: 305809 URL: http://svn.freebsd.org/changeset/ports/305809 Log: - As pulledpork/barnyard are required for most installations, depend on these by default Feature safe: yes Modified: head/security/snort/Makefile Modified: head/security/snort/Makefile ============================================================================== --- head/security/snort/Makefile Sat Oct 13 01:42:15 2012 (r305808) +++ head/security/snort/Makefile Sat Oct 13 02:05:14 2012 (r305809) @@ -27,9 +27,10 @@ RUN_DEPENDS= daq>=1.1.1:${PORTSDIR}/net/ OPTIONS_DEFINE= IPV6 MPLS GRE TARGETBASED ZLIB NORMALIZER REACT \ PERFPROFILE FLEXRESP3 LRGPCAP SNORTSAM SOURCEFIRE \ - DBGSNORT + DBGSNORT BARNYARD PULLEDPORK OPTIONS_DEFAULT=IPV6 MPLS GRE ZLIB NORMALIZER REACT PERFPROFILE \ - FLEXRESP3 SOURCEFIRE TARGETBASED + FLEXRESP3 SOURCEFIRE TARGETBASED PULLEDPORK \ + BARNYARD GRE_DESC= Enable GRE support TARGETBASED_DESC= Enable targetbased support @@ -42,6 +43,8 @@ LRGPCAP_DESC= Enable pcaps larger than SNORTSAM_DESC= Enable unofficial Snortsam patch SOURCEFIRE_DESC= Enable Sourcefire-specific build options DBGSNORT_DESC= Enable debugging symbols+core dumps +BARNYARD_DESC= Depend on Barnyard2 +PULLEDPORK_DESC= Depend on pulledpork .include @@ -142,6 +145,14 @@ PATCH_SITES+= http://www.snortsam.net/fi PATCHFILES+= snortsam-2.9.2.2.diff.gz:snortsam .endif +.if ${PORT_OPTIONS:MBARNYARD} +RUN_DEPENDS+= barnyard2:${PORTSDIR}/security/barnyard2 +.endif + +.if ${PORT_OPTIONS:MPULLEDPORK} +RUN_DEPENDS+= pulledpork.pl:${PORTSDIR}/security/pulledpork +.endif + post-patch: @${FIND} ${WRKSRC} -name 'Makefile.in' | ${XARGS} ${REINPLACE_CMD} -e 's|lib/snort_|lib/snort/|g' @${REINPLACE_CMD} "s,/etc/snort.conf,${CONFIG_DIR}/snort.conf," ${WRKSRC}/src/snort.c ${WRKSRC}/snort.8 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 03:53:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EB0A74FA; Sat, 13 Oct 2012 03:53:04 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D383B8FC08; Sat, 13 Oct 2012 03:53: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 q9D3r4Rt033345; Sat, 13 Oct 2012 03:53:04 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D3r4De033341; Sat, 13 Oct 2012 03:53:04 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210130353.q9D3r4De033341@svn.freebsd.org> From: TAKATSU Tomonari Date: Sat, 13 Oct 2012 03:53:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305810 - head/japanese/mecab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 03:53:05 -0000 Author: tota Date: Sat Oct 13 03:53:04 2012 New Revision: 305810 URL: http://svn.freebsd.org/changeset/ports/305810 Log: - Update to 0.994 PR: ports/171413 Submitted by: Yasuhiro KIMURA Approved by: maintainer timeout (clsung, >5 weeks) Feature safe: yes Modified: head/japanese/mecab/Makefile head/japanese/mecab/distinfo head/japanese/mecab/pkg-plist Modified: head/japanese/mecab/Makefile ============================================================================== --- head/japanese/mecab/Makefile Sat Oct 13 02:05:14 2012 (r305809) +++ head/japanese/mecab/Makefile Sat Oct 13 03:53:04 2012 (r305810) @@ -6,9 +6,9 @@ # PORTNAME= mecab -PORTVERSION= 0.98 +PORTVERSION= 0.994 CATEGORIES= japanese textproc -MASTER_SITES= SF +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} MAINTAINER= clsung@FreeBSD.org COMMENT= Yet Another Part-of-Speech and Morphological Analyzer Modified: head/japanese/mecab/distinfo ============================================================================== --- head/japanese/mecab/distinfo Sat Oct 13 02:05:14 2012 (r305809) +++ head/japanese/mecab/distinfo Sat Oct 13 03:53:04 2012 (r305810) @@ -1,2 +1,2 @@ -SHA256 (mecab-0.98.tar.gz) = 751d431422539d714a812eba9fbb8468db412221ab03feeb5e4ebd3bbb4e34a2 -SIZE (mecab-0.98.tar.gz) = 1424588 +SHA256 (mecab-0.994.tar.gz) = d271a0b91e0cda09f13f62a6b28367648afb9b4dcb68178ea1fb0af4c0c866bc +SIZE (mecab-0.994.tar.gz) = 1387966 Modified: head/japanese/mecab/pkg-plist ============================================================================== --- head/japanese/mecab/pkg-plist Sat Oct 13 02:05:14 2012 (r305809) +++ head/japanese/mecab/pkg-plist Sat Oct 13 03:53:04 2012 (r305810) @@ -4,7 +4,7 @@ include/mecab.h lib/libmecab.a lib/libmecab.la lib/libmecab.so -lib/libmecab.so.1 +lib/libmecab.so.2 libexec/mecab/mecab-cost-train libexec/mecab/mecab-dict-gen libexec/mecab/mecab-dict-index From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 03:56:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7716A75A; Sat, 13 Oct 2012 03:56:49 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 479798FC14; Sat, 13 Oct 2012 03:56:49 +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 q9D3unRt033935; Sat, 13 Oct 2012 03:56:49 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D3unJg033931; Sat, 13 Oct 2012 03:56:49 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210130356.q9D3unJg033931@svn.freebsd.org> From: TAKATSU Tomonari Date: Sat, 13 Oct 2012 03:56:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305811 - head/japanese/p5-MeCab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 03:56:49 -0000 Author: tota Date: Sat Oct 13 03:56:48 2012 New Revision: 305811 URL: http://svn.freebsd.org/changeset/ports/305811 Log: - Update to 0.994 - Pet portlint * Don't mix PORTDOCS with EXAMPLESDIR * Remove specific ABI version numbers from LIB_DEPENDS PR: ports/171413 (based on) Feature safe: yes Modified: head/japanese/p5-MeCab/Makefile head/japanese/p5-MeCab/distinfo head/japanese/p5-MeCab/pkg-plist Modified: head/japanese/p5-MeCab/Makefile ============================================================================== --- head/japanese/p5-MeCab/Makefile Sat Oct 13 03:53:04 2012 (r305810) +++ head/japanese/p5-MeCab/Makefile Sat Oct 13 03:56:48 2012 (r305811) @@ -6,15 +6,16 @@ # PORTNAME= MeCab -PORTVERSION= 0.98 +PORTVERSION= 0.994 CATEGORIES= japanese textproc perl5 -MASTER_SITES= SF/${PORTNAME:L}/${PORTNAME:L}-perl/${PORTVERSION} -DISTNAME= ${PORTNAME:L}-perl-${PORTVERSION} +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} +PROJECTHOST= ${PORTNAME:L} +DISTNAME= ${PORTNAME:L}-perl-${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= MeCab library module for Perl5 -LIB_DEPENDS= mecab.1:${PORTSDIR}/japanese/mecab +LIB_DEPENDS= mecab:${PORTSDIR}/japanese/mecab PERL_CONFIGURE= yes @@ -22,8 +23,8 @@ PERL_CONFIGURE= yes PKGNAMEPREFIX:= ${PKGNAMEPREFIX}p5- +.if !defined(NOPORTEXAMPLES) post-install: -.if !defined(NOPORTDOCS) @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/test.pl ${EXAMPLESDIR} .endif Modified: head/japanese/p5-MeCab/distinfo ============================================================================== --- head/japanese/p5-MeCab/distinfo Sat Oct 13 03:53:04 2012 (r305810) +++ head/japanese/p5-MeCab/distinfo Sat Oct 13 03:56:48 2012 (r305811) @@ -1,2 +1,2 @@ -SHA256 (mecab-perl-0.98.tar.gz) = 951997b31977df3ca2421baf2c5e77bb6207a19588cde9683900f063c4a3135a -SIZE (mecab-perl-0.98.tar.gz) = 41246 +SHA256 (mecab-perl-0.994.tar.gz) = 244c479a4603f779ce499592938e76618899fe0f2741ad9ab58f55a63b8ce319 +SIZE (mecab-perl-0.994.tar.gz) = 44660 Modified: head/japanese/p5-MeCab/pkg-plist ============================================================================== --- head/japanese/p5-MeCab/pkg-plist Sat Oct 13 03:53:04 2012 (r305810) +++ head/japanese/p5-MeCab/pkg-plist Sat Oct 13 03:56:48 2012 (r305811) @@ -3,5 +3,5 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/MeCab/MeCab.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/MeCab/MeCab.so @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MeCab -%%PORTDOCS%%%%EXAMPLESDIR%%/test.pl -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test.pl +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 03:58:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C655B899; Sat, 13 Oct 2012 03:58:43 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AF6888FC08; Sat, 13 Oct 2012 03:58: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 q9D3whm7034240; Sat, 13 Oct 2012 03:58:43 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D3whk7034237; Sat, 13 Oct 2012 03:58:43 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210130358.q9D3whk7034237@svn.freebsd.org> From: TAKATSU Tomonari Date: Sat, 13 Oct 2012 03:58:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305812 - head/japanese/py-mecab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 03:58:43 -0000 Author: tota Date: Sat Oct 13 03:58:43 2012 New Revision: 305812 URL: http://svn.freebsd.org/changeset/ports/305812 Log: - Update to 0.994 - Pet portlint: remove specific ABI version numbers from LIB_DEPENDS PR: ports/171413 (based on) Submitted by: Yasuhiro KIMURA Approved by: maintainer (via twitter) Feature safe: yes Modified: head/japanese/py-mecab/Makefile head/japanese/py-mecab/distinfo Modified: head/japanese/py-mecab/Makefile ============================================================================== --- head/japanese/py-mecab/Makefile Sat Oct 13 03:56:48 2012 (r305811) +++ head/japanese/py-mecab/Makefile Sat Oct 13 03:58:43 2012 (r305812) @@ -5,16 +5,16 @@ # $FreeBSD$ PORTNAME= mecab -PORTVERSION= 0.98 +PORTVERSION= 0.994 CATEGORIES= japanese python textproc -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-python/${PORTVERSION} +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= ${PORTNAME}-python-${PORTVERSION} MAINTAINER= jun-g@daemonfreaks.com COMMENT= Python bindings for MeCab BUILD_DEPENDS= swig>=1.3:${PORTSDIR}/devel/swig13 -LIB_DEPENDS= mecab.1:${PORTSDIR}/japanese/mecab +LIB_DEPENDS= mecab:${PORTSDIR}/japanese/mecab USE_PYTHON= yes USE_PYDISTUTILS=yes Modified: head/japanese/py-mecab/distinfo ============================================================================== --- head/japanese/py-mecab/distinfo Sat Oct 13 03:56:48 2012 (r305811) +++ head/japanese/py-mecab/distinfo Sat Oct 13 03:58:43 2012 (r305812) @@ -1,2 +1,2 @@ -SHA256 (mecab-python-0.98.tar.gz) = d3a4b2c602b7e6baae8465c859fe8b1e2d5ceb04b619a07a35bd68daef275014 -SIZE (mecab-python-0.98.tar.gz) = 51651 +SHA256 (mecab-python-0.994.tar.gz) = 30d828c73f95492f91fc5f7770b3a40765e9e931afb8295f419109b32652f7ce +SIZE (mecab-python-0.994.tar.gz) = 61978 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 04:00:50 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A1D6C9B5; Sat, 13 Oct 2012 04:00:50 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6DFDB8FC08; Sat, 13 Oct 2012 04:00: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 q9D40oB4034643; Sat, 13 Oct 2012 04:00:50 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D40ojd034638; Sat, 13 Oct 2012 04:00:50 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210130400.q9D40ojd034638@svn.freebsd.org> From: TAKATSU Tomonari Date: Sat, 13 Oct 2012 04:00:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305813 - head/japanese/ruby-mecab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 04:00:50 -0000 Author: tota Date: Sat Oct 13 04:00:49 2012 New Revision: 305813 URL: http://svn.freebsd.org/changeset/ports/305813 Log: - Update to 0.994 - Respect NOPORTDOCS - Pet portlint * Don't mix PORTDOCS with EXAMPLESDIR * Remove specific ABI version numbers from LIB_DEPENDS PR: ports/171413 (based on) Submitted by: Yasuhiro KIMURA Feature safe: yes Modified: head/japanese/ruby-mecab/Makefile head/japanese/ruby-mecab/distinfo head/japanese/ruby-mecab/pkg-plist Modified: head/japanese/ruby-mecab/Makefile ============================================================================== --- head/japanese/ruby-mecab/Makefile Sat Oct 13 03:58:43 2012 (r305812) +++ head/japanese/ruby-mecab/Makefile Sat Oct 13 04:00:49 2012 (r305813) @@ -6,15 +6,15 @@ # PORTNAME= mecab -PORTVERSION= 0.98 +PORTVERSION= 0.994 CATEGORIES= japanese textproc ruby -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-ruby/${PORTVERSION} +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= ${PORTNAME}-ruby-${PORTVERSION} MAINTAINER= ruby@FreeBSD.org COMMENT= MeCab library module for Ruby -LIB_DEPENDS= mecab.1:${PORTSDIR}/japanese/mecab +LIB_DEPENDS= mecab:${PORTSDIR}/japanese/mecab USE_RUBY= yes USE_RUBY_EXTCONF= yes @@ -27,10 +27,12 @@ PKGNAMEPREFIX:= ${PKGNAMEPREFIX}${RUBY_P post-install: .if !defined(NOPORTDOCS) + @${MKDIR} ${RUBY_MODDOCDIR} + ${INSTALL_DATA} ${WRKSRC}/bindings.html ${RUBY_MODDOCDIR}/ +.endif +.if !defined(NOPORTEXAMPLES) @${MKDIR} ${RUBY_MODEXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/test.rb ${RUBY_MODEXAMPLESDIR}/ - ${MKDIR} ${RUBY_MODDOCDIR} - ${INSTALL_DATA} ${WRKSRC}/bindings.html ${RUBY_MODDOCDIR}/ .endif .include Modified: head/japanese/ruby-mecab/distinfo ============================================================================== --- head/japanese/ruby-mecab/distinfo Sat Oct 13 03:58:43 2012 (r305812) +++ head/japanese/ruby-mecab/distinfo Sat Oct 13 04:00:49 2012 (r305813) @@ -1,2 +1,2 @@ -SHA256 (mecab-ruby-0.98.tar.gz) = fcbfc01944df501d141a68e266d0ef249c0f5bb6c983bf205729e23e34f2422b -SIZE (mecab-ruby-0.98.tar.gz) = 41674 +SHA256 (mecab-ruby-0.994.tar.gz) = 16f9c6de6a90fb11d07f191ea646217e9006a6aec3f90f386b476ce51e611269 +SIZE (mecab-ruby-0.994.tar.gz) = 44483 Modified: head/japanese/ruby-mecab/pkg-plist ============================================================================== --- head/japanese/ruby-mecab/pkg-plist Sat Oct 13 03:58:43 2012 (r305812) +++ head/japanese/ruby-mecab/pkg-plist Sat Oct 13 04:00:49 2012 (r305813) @@ -1,5 +1,5 @@ %%RUBY_SITEARCHLIBDIR%%/MeCab.so -%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/test.rb -%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%% %%PORTDOCS%%%%RUBY_MODDOCDIR%%/bindings.html %%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% +%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/test.rb +%%PORTEXAMPLES%%@dirrm %%RUBY_MODEXAMPLESDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 06:09:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBB4E955; Sat, 13 Oct 2012 06:09:44 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B2F838FC08; Sat, 13 Oct 2012 06:09: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 q9D69iUV052104; Sat, 13 Oct 2012 06:09:44 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D69iBo052102; Sat, 13 Oct 2012 06:09:44 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201210130609.q9D69iBo052102@svn.freebsd.org> From: Dirk Meyer Date: Sat, 13 Oct 2012 06:09:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305814 - head/www/opera X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 06:09:44 -0000 Author: dinoex Date: Sat Oct 13 06:09:44 2012 New Revision: 305814 URL: http://svn.freebsd.org/changeset/ports/305814 Log: - fix plist for INSTALLS_ICONS Feature safe: yes Modified: head/www/opera/pkg-plist Modified: head/www/opera/pkg-plist ============================================================================== --- head/www/opera/pkg-plist Sat Oct 13 04:00:49 2012 (r305813) +++ head/www/opera/pkg-plist Sat Oct 13 06:09:44 2012 (r305814) @@ -25,7 +25,6 @@ share/icons/hicolor/32x32/apps/opera-bro share/icons/hicolor/32x32/mimetypes/opera-extension.png share/icons/hicolor/48x48/apps/opera-browser.png share/icons/hicolor/48x48/mimetypes/opera-extension.png -share/icons/hicolor/icon-theme.cache share/icons/hicolor/scalable/mimetypes/opera-extension.svg share/mime/application/x-opera-extension.xml share/mime/packages/opera-extension.xml From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 06:38:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A7DBEA2; Sat, 13 Oct 2012 06:38:04 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 10FA88FC0C; Sat, 13 Oct 2012 06:38: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 q9D6c3d9056108; Sat, 13 Oct 2012 06:38:03 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D6c3he056106; Sat, 13 Oct 2012 06:38:03 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201210130638.q9D6c3he056106@svn.freebsd.org> From: Carlo Strub Date: Sat, 13 Oct 2012 06:38:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305815 - head/mail/mixmaster X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 06:38:04 -0000 Author: cs Date: Sat Oct 13 06:38:03 2012 New Revision: 305815 URL: http://svn.freebsd.org/changeset/ports/305815 Log: Take maintainership Feature safe: yes Modified: head/mail/mixmaster/Makefile Modified: head/mail/mixmaster/Makefile ============================================================================== --- head/mail/mixmaster/Makefile Sat Oct 13 06:09:44 2012 (r305814) +++ head/mail/mixmaster/Makefile Sat Oct 13 06:38:03 2012 (r305815) @@ -15,7 +15,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ mixmaster-update.pl.gz allpingers.txt.gz EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= cs@FreeBSD.org COMMENT= A cryptographically secure anonymous remailer LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 06:56:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7898A4C9; Sat, 13 Oct 2012 06:56:26 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 61E688FC08; Sat, 13 Oct 2012 06:56:26 +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 q9D6uQQ9058776; Sat, 13 Oct 2012 06:56:26 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D6uQqd058774; Sat, 13 Oct 2012 06:56:26 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201210130656.q9D6uQqd058774@svn.freebsd.org> From: Dirk Meyer Date: Sat, 13 Oct 2012 06:56:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305816 - head/print/cups-base X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 06:56:26 -0000 Author: dinoex Date: Sat Oct 13 06:56:25 2012 New Revision: 305816 URL: http://svn.freebsd.org/changeset/ports/305816 Log: - fix option XPDF PR: 172579 Submitted by: Kris Moore Feature safe: yes - cleanup comments Modified: head/print/cups-base/Makefile Modified: head/print/cups-base/Makefile ============================================================================== --- head/print/cups-base/Makefile Sat Oct 13 06:38:03 2012 (r305815) +++ head/print/cups-base/Makefile Sat Oct 13 06:56:25 2012 (r305816) @@ -1,9 +1,5 @@ -# New ports collection makefile for: cups -# Date created: 2003-01-22 -# Whom: Alan Eldridge -# +# created by: Alan Eldridge # $FreeBSD$ -# PORTNAME= cups PORTVERSION= 1.5.2 @@ -45,6 +41,7 @@ CUPS_ETCDIR= ${PREFIX}/etc/cups CUPS_CACHEDIR?= /var/db/cups CUPS_SPOOLDIR= /var/spool/cups CUPS_SOCKET?= /var/run/cups.sock +CUPS_PDFTOPS?= ${LOCALBASE}/libexec/xpdf/pdftops WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} # file, dir ownership @@ -155,9 +152,9 @@ USE_GHOSTSCRIPT= yes CONFIGURE_ARGS+= --enable-pdftops --with-pdftops=${LOCALBASE}/bin/gs PLIST_SUB+= WITH_PDFTOPS="" .elif !defined(CUPS_CLIENT) && !defined(CUPS_IMAGE) && ${PORT_OPTIONS:MXPDF} -BUILD_DEPENDS+= pdftops:${PORTSDIR}/graphics/xpdf -RUN_DEPENDS+= pdftops:${PORTSDIR}/graphics/xpdf -CONFIGURE_ARGS+= --enable-pdftops --with-pdftops=${LOCALBASE}/libexec/xpdf/pdftops +BUILD_DEPENDS+= ${CUPS_PDFTOPS}:${PORTSDIR}/graphics/xpdf +RUN_DEPENDS+= ${CUPS_PDFTOPS}:${PORTSDIR}/graphics/xpdf +CONFIGURE_ARGS+= --enable-pdftops --with-pdftops=${CUPS_PDFTOPS} PLIST_SUB+= WITH_PDFTOPS="" .else PLIST_SUB+= WITH_PDFTOPS="@comment " From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 07:27:46 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39F7E93A; Sat, 13 Oct 2012 07:27:46 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 091DD8FC08; Sat, 13 Oct 2012 07:27:46 +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 q9D7Rjaf063513; Sat, 13 Oct 2012 07:27:45 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D7RjwW063510; Sat, 13 Oct 2012 07:27:45 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210130727.q9D7RjwW063510@svn.freebsd.org> From: Frederic Culot Date: Sat, 13 Oct 2012 07:27:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305817 - head/databases/sqlite3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 07:27:46 -0000 Author: culot Date: Sat Oct 13 07:27:45 2012 New Revision: 305817 URL: http://svn.freebsd.org/changeset/ports/305817 Log: - Update to 3.7.14.1 - Enable URI filename option by default - Update maintainer's address Changes: http://www.sqlite.org/releaselog/3_7_14_1.html PR: ports/172400 Submitted by: Pavel I Volkov (maintainer) Feature safe: yes Modified: head/databases/sqlite3/Makefile head/databases/sqlite3/distinfo Modified: head/databases/sqlite3/Makefile ============================================================================== --- head/databases/sqlite3/Makefile Sat Oct 13 06:56:25 2012 (r305816) +++ head/databases/sqlite3/Makefile Sat Oct 13 07:27:45 2012 (r305817) @@ -1,17 +1,13 @@ -# New ports collection makefile for: sqlite3 -# Date created: Feb 21, 2001 -# Whom: Ying-Chieh Liao -# +# Created by: Ying-Chieh Liao # $FreeBSD$ -# PORTNAME= sqlite3 -PORTVERSION= 3.7.14 +PORTVERSION= 3.7.14.1 CATEGORIES= databases MASTER_SITES= http://www.sqlite.org/ http://www2.sqlite.org/ http://www3.sqlite.org/ -DISTNAME= sqlite-autoconf-3071400 +DISTNAME= sqlite-autoconf-3071401 -MAINTAINER= pavelivolkov@googlemail.com +MAINTAINER= pavelivolkov@gmail.com COMMENT= An SQL database engine in a C library LICENSE= public @@ -34,7 +30,7 @@ OPTIONS= \ RTREE "Enable R*Tree module (${RTREE_INT})" off \ RAMTABLE "Store temporary tables in RAM = ${TEMP_STORE}" off \ UPD_DEL_LIMIT "ORDER BY and LIMIT on UPDATE and DELETE" off \ - URI "Enable use the URI filename" off \ + URI "Enable use the URI filename" on \ SOUNDEX "Enables the soundex() SQL function" off \ METADATA "Enable column metadata" on \ STAT3 "Help SQLite to chose a better query plan" off \ Modified: head/databases/sqlite3/distinfo ============================================================================== --- head/databases/sqlite3/distinfo Sat Oct 13 06:56:25 2012 (r305816) +++ head/databases/sqlite3/distinfo Sat Oct 13 07:27:45 2012 (r305817) @@ -1,2 +1,2 @@ -SHA256 (sqlite-autoconf-3071400.tar.gz) = de6c01d9fabf4d10733b1920d9a3143634ed516b90f4759b3b5b79857a39b724 -SIZE (sqlite-autoconf-3071400.tar.gz) = 1832194 +SHA256 (sqlite-autoconf-3071401.tar.gz) = d46d302a63b23d9c3b80e519be12cb7d6a8d3da57bd9c119341a0aa8b3b28692 +SIZE (sqlite-autoconf-3071401.tar.gz) = 1832051 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 07:45:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BBF0FC56; Sat, 13 Oct 2012 07:45:23 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A4DB78FC12; Sat, 13 Oct 2012 07:45: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 q9D7jNLX066298; Sat, 13 Oct 2012 07:45:23 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D7jNw6066295; Sat, 13 Oct 2012 07:45:23 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210130745.q9D7jNw6066295@svn.freebsd.org> From: Frederic Culot Date: Sat, 13 Oct 2012 07:45:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305818 - head/databases/tcl-sqlite3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 07:45:23 -0000 Author: culot Date: Sat Oct 13 07:45:23 2012 New Revision: 305818 URL: http://svn.freebsd.org/changeset/ports/305818 Log: - Update to 3.7.14.1 PR: ports/172399 Submitted by: Pavel I Volkov (maintainer) Feature safe: yes Modified: head/databases/tcl-sqlite3/Makefile head/databases/tcl-sqlite3/distinfo Modified: head/databases/tcl-sqlite3/Makefile ============================================================================== --- head/databases/tcl-sqlite3/Makefile Sat Oct 13 07:27:45 2012 (r305817) +++ head/databases/tcl-sqlite3/Makefile Sat Oct 13 07:45:23 2012 (r305818) @@ -1,18 +1,14 @@ -# New ports collection makefile for: sqlite3-tea -# Date created: 2011-03-23 -# Whom: Baptiste Daroussin -# +# Created by: Baptiste Daroussin # $FreeBSD$ -# PORTNAME= sqlite3 -PORTVERSION= 3.7.14 +PORTVERSION= 3.7.14.1 CATEGORIES= databases tcl MASTER_SITES= http://www.sqlite.org/ http://www2.sqlite.org/ http://www3.sqlite.org/ PKGNAMEPREFIX= tcl- -DISTNAME= sqlite-autoconf-3071400 +DISTNAME= sqlite-autoconf-3071401 -MAINTAINER= pavelivolkov@googlemail.com +MAINTAINER= pavelivolkov@gmail.com COMMENT= SQLite extension for Tcl using the Tcl Extension Architecture (TEA) LICENSE= public Modified: head/databases/tcl-sqlite3/distinfo ============================================================================== --- head/databases/tcl-sqlite3/distinfo Sat Oct 13 07:27:45 2012 (r305817) +++ head/databases/tcl-sqlite3/distinfo Sat Oct 13 07:45:23 2012 (r305818) @@ -1,2 +1,2 @@ -SHA256 (sqlite-autoconf-3071400.tar.gz) = de6c01d9fabf4d10733b1920d9a3143634ed516b90f4759b3b5b79857a39b724 -SIZE (sqlite-autoconf-3071400.tar.gz) = 1832194 +SHA256 (sqlite-autoconf-3071401.tar.gz) = d46d302a63b23d9c3b80e519be12cb7d6a8d3da57bd9c119341a0aa8b3b28692 +SIZE (sqlite-autoconf-3071401.tar.gz) = 1832051 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 07:46:59 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C2B61D9D; Sat, 13 Oct 2012 07:46:59 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 92D708FC18; Sat, 13 Oct 2012 07:46:59 +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 q9D7kxoT066598; Sat, 13 Oct 2012 07:46:59 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D7kx1V066595; Sat, 13 Oct 2012 07:46:59 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201210130746.q9D7kx1V066595@svn.freebsd.org> From: Andrej Zverev Date: Sat, 13 Oct 2012 07:46:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305819 - head/www/p5-HTML-Defaultify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 07:46:59 -0000 Author: az Date: Sat Oct 13 07:46:59 2012 New Revision: 305819 URL: http://svn.freebsd.org/changeset/ports/305819 Log: - fix portlint(1) compliant - fix Trim the headers PR: ports/172602 Submitted by: Takefu (maintainer) Feature safe: yes Modified: head/www/p5-HTML-Defaultify/Makefile head/www/p5-HTML-Defaultify/pkg-descr Modified: head/www/p5-HTML-Defaultify/Makefile ============================================================================== --- head/www/p5-HTML-Defaultify/Makefile Sat Oct 13 07:45:23 2012 (r305818) +++ head/www/p5-HTML-Defaultify/Makefile Sat Oct 13 07:46:59 2012 (r305819) @@ -1,26 +1,19 @@ -# New ports collection makefile for: p5-HTML-Defaultify -# Date Created: 2009-02-10 -# Whom: takefu -# +# Created by: Takefu # $FreeBSD$ -# PORTNAME= HTML-Defaultify PORTVERSION= 1.01 CATEGORIES= www perl5 -MASTER_SITES= http://www.jmarshall.com/tools/defaultify/releases/\ +MASTER_SITES= http://www.jmarshall.com/tools/defaultify/releases/ \ CPAN PKGNAMEPREFIX= p5- MAINTAINER= takefu@airport.fm COMMENT= Perl module to populate HTML forms with default values -PERL_CONFIGURE= yes +RUN_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser +PERL_CONFIGURE= yes MAN3= HTML::Defaultify.3 -.include - -RUN_DEPENDS+= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser - -.include +.include Modified: head/www/p5-HTML-Defaultify/pkg-descr ============================================================================== --- head/www/p5-HTML-Defaultify/pkg-descr Sat Oct 13 07:45:23 2012 (r305818) +++ head/www/p5-HTML-Defaultify/pkg-descr Sat Oct 13 07:46:59 2012 (r305819) @@ -1,3 +1,7 @@ -HTML::Defaultify - Pre-fill default values into an existing HTML form +This Perl module is used to populate HTML forms with default values. Unlike +other tools that fill a similar niche, this module can handle any existing +HTML page; this approach allows a clean separation of HTML development from +Perl program development. WWW: http://www.jmarshall.com/tools/defaultify/ +WWW: http://search.cpan.org/dist/HTML-Defaultify/ From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 08:04:49 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 315521F7; Sat, 13 Oct 2012 08:04:45 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 19E168FC14; Sat, 13 Oct 2012 08:04:45 +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 q9D84iBb069561; Sat, 13 Oct 2012 08:04:44 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D84i9S069558; Sat, 13 Oct 2012 08:04:44 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201210130804.q9D84i9S069558@svn.freebsd.org> From: Frederic Culot Date: Sat, 13 Oct 2012 08:04:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305820 - head/devel/p5-Algorithm-Networksort X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 08:04:49 -0000 Author: culot Date: Sat Oct 13 08:04:44 2012 New Revision: 305820 URL: http://svn.freebsd.org/changeset/ports/305820 Log: - Update to 1.23 Changes: http://search.cpan.org/dist/Algorithm-Networksort/Changes Feature safe: yes Modified: head/devel/p5-Algorithm-Networksort/Makefile head/devel/p5-Algorithm-Networksort/distinfo Modified: head/devel/p5-Algorithm-Networksort/Makefile ============================================================================== --- head/devel/p5-Algorithm-Networksort/Makefile Sat Oct 13 07:46:59 2012 (r305819) +++ head/devel/p5-Algorithm-Networksort/Makefile Sat Oct 13 08:04:44 2012 (r305820) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Algorithm-Networksort -PORTVERSION= 1.22 +PORTVERSION= 1.23 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Algorithm-Networksort/distinfo ============================================================================== --- head/devel/p5-Algorithm-Networksort/distinfo Sat Oct 13 07:46:59 2012 (r305819) +++ head/devel/p5-Algorithm-Networksort/distinfo Sat Oct 13 08:04:44 2012 (r305820) @@ -1,2 +1,2 @@ -SHA256 (Algorithm-Networksort-1.22.tar.gz) = ce5a995ccd66e89f092d95db20d19b7464202e4f8c51072ebccca1f197420f5f -SIZE (Algorithm-Networksort-1.22.tar.gz) = 34359 +SHA256 (Algorithm-Networksort-1.23.tar.gz) = e77f7cafd9ab7d12c20c51a602b574d3fddf97b7106f548de93b3f10d6588db6 +SIZE (Algorithm-Networksort-1.23.tar.gz) = 35410 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 08:22:55 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF0A73B2; Sat, 13 Oct 2012 08:22:55 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 969FB8FC08; Sat, 13 Oct 2012 08:22: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 q9D8MtS3072585; Sat, 13 Oct 2012 08:22:55 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D8MttS072580; Sat, 13 Oct 2012 08:22:55 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201210130822.q9D8MttS072580@svn.freebsd.org> From: Marcus von Appen Date: Sat, 13 Oct 2012 08:22:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305821 - head/devel/py-astng X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 08:22:55 -0000 Author: mva Date: Sat Oct 13 08:22:54 2012 New Revision: 305821 URL: http://svn.freebsd.org/changeset/ports/305821 Log: - Update to 0.24.1 - Add LICENSE Feature safe: yes Modified: head/devel/py-astng/Makefile head/devel/py-astng/distinfo head/devel/py-astng/pkg-plist Modified: head/devel/py-astng/Makefile ============================================================================== --- head/devel/py-astng/Makefile Sat Oct 13 08:04:44 2012 (r305820) +++ head/devel/py-astng/Makefile Sat Oct 13 08:22:54 2012 (r305821) @@ -1,13 +1,8 @@ -# New ports collection makefile for: astng -# Date created: 27 Apr 2006 -# Whom: Hye-Shik Chang -# +# Created by: Hye-Shik Chang # $FreeBSD$ -# PORTNAME= astng -PORTVERSION= 0.24.0 -PORTREVISION= 1 +PORTVERSION= 0.24.1 CATEGORIES= devel python MASTER_SITES= LOGILAB PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,6 +11,8 @@ DISTNAME= logilab-${PORTNAME}-${PORTVERS MAINTAINER= mva@FreeBSD.org COMMENT= Extension for Python compiler.ast module +LICENSE= LGPL21 + RUN_DEPENDS= pytest:${PORTSDIR}/devel/py-logilab-common MAKE_ENV= NO_SETUPTOOLS=1 @@ -26,6 +23,6 @@ PYDISTUTILS_PKGNAME= logilab-astng .include post-patch: - @${CHMOD} a+r ${WRKSRC}/brain/py2stdlib.py + @${CHMOD} a+r ${WRKSRC}/brain/*.py .include Modified: head/devel/py-astng/distinfo ============================================================================== --- head/devel/py-astng/distinfo Sat Oct 13 08:04:44 2012 (r305820) +++ head/devel/py-astng/distinfo Sat Oct 13 08:22:54 2012 (r305821) @@ -1,2 +1,2 @@ -SHA256 (logilab-astng-0.24.0.tar.gz) = 2d9413fa338ccf8b3f4b86520b385e9d35e848117dc7602b3994972a3163647f -SIZE (logilab-astng-0.24.0.tar.gz) = 101887 +SHA256 (logilab-astng-0.24.1.tar.gz) = 1a74756df0a8291225f77206dd275c8f309a480eb417b1b99d1aa0ae74571d03 +SIZE (logilab-astng-0.24.1.tar.gz) = 103755 Modified: head/devel/py-astng/pkg-plist ============================================================================== --- head/devel/py-astng/pkg-plist Sat Oct 13 08:04:44 2012 (r305820) +++ head/devel/py-astng/pkg-plist Sat Oct 13 08:22:54 2012 (r305821) @@ -10,7 +10,15 @@ %%PYTHON_SITELIBDIR%%/logilab/astng/bases.py %%PYTHON_SITELIBDIR%%/logilab/astng/bases.pyc %%PYTHON_SITELIBDIR%%/logilab/astng/bases.pyo +%%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2qt4.py +%%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2qt4.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2qt4.pyo +%%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2mechanize.py +%%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2mechanize.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2mechanize.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2stdlib.py +%%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2stdlib.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/brain/py2stdlib.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/builder.py %%PYTHON_SITELIBDIR%%/logilab/astng/builder.pyc %%PYTHON_SITELIBDIR%%/logilab/astng/builder.pyo @@ -50,30 +58,86 @@ %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.egg %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.zip %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/SSL1/Connection1.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/SSL1/Connection1.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/SSL1/Connection1.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/SSL1/__init__.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/SSL1/__init__.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/SSL1/__init__.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/__init__.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/__init__.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/__init__.pyo +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/absimport.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/absimport.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/absimport.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/all.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/all.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/all.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/appl/__init__.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/appl/__init__.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/appl/__init__.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/appl/myConnection.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/appl/myConnection.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/appl/myConnection.pyo +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/email.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/email.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/email.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/format.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/format.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/format.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/module.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/module.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/module.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/module2.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/module2.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/module2.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/noendingnewline.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/noendingnewline.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/noendingnewline.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/nonregr.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/nonregr.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/nonregr.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data/notall.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/notall.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data/notall.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/__init__.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/__init__.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/__init__.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/clientmodule_test.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/clientmodule_test.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/clientmodule_test.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/suppliermodule_test.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/suppliermodule_test.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/data2/suppliermodule_test.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/__init__.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/__init__.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/__init__.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/string.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/string.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/string.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/sidepackage/__init__.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/sidepackage/__init__.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/absimp/sidepackage/__init__.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/descriptor_crash.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/descriptor_crash.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/descriptor_crash.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/__init__.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/__init__.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/__init__.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/absimport.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/absimport.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/absimport.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/hello.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/hello.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/hello.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/import_package_subpackage_module.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/import_package_subpackage_module.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/import_package_subpackage_module.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/subpackage/__init__.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/subpackage/__init__.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/subpackage/__init__.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/subpackage/module.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/subpackage/module.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/regrtest_data/package/subpackage/module.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_builder.py %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_builder.pyc %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_builder.pyo @@ -92,6 +156,9 @@ %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_nodes.py %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_nodes.pyc %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_nodes.pyo +%%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_python3.py +%%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_python3.pyc +%%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_python3.pyo %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_regrtest.py %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_regrtest.pyc %%PYTHON_SITELIBDIR%%/logilab/astng/test/unittest_regrtest.pyo From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 08:23:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 41D2A498; Sat, 13 Oct 2012 08:23:54 +0000 (UTC) (envelope-from mva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2AEDE8FC08; Sat, 13 Oct 2012 08:23: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 q9D8Nsa5072814; Sat, 13 Oct 2012 08:23:54 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D8NrI8072811; Sat, 13 Oct 2012 08:23:53 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201210130823.q9D8NrI8072811@svn.freebsd.org> From: Marcus von Appen Date: Sat, 13 Oct 2012 08:23:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305822 - head/devel/pylint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 08:23:54 -0000 Author: mva Date: Sat Oct 13 08:23:53 2012 New Revision: 305822 URL: http://svn.freebsd.org/changeset/ports/305822 Log: - Update to 0.26.0 - Add LICENSE Feature safe: yes Modified: head/devel/pylint/Makefile head/devel/pylint/distinfo Modified: head/devel/pylint/Makefile ============================================================================== --- head/devel/pylint/Makefile Sat Oct 13 08:22:54 2012 (r305821) +++ head/devel/pylint/Makefile Sat Oct 13 08:23:53 2012 (r305822) @@ -1,12 +1,8 @@ -# New ports collection makefile for: pylint -# Date created: 28 May 2004 -# Whom: Hye-Shik Chang -# +# Created by: Hye-Shik Chang # $FreeBSD$ -# PORTNAME= pylint -PORTVERSION= 0.25.2 +PORTVERSION= 0.26.0 CATEGORIES= devel python MASTER_SITES= LOGILAB PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} @@ -14,6 +10,8 @@ PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} MAINTAINER= mva@FreeBSD.org COMMENT= Analyzes python source code looking for bugs and signs of poor quality +LICENSE= LGPL21 + RUN_DEPENDS= ${PYTHON_SITELIBDIR}/logilab/astng/__init__.py:${PORTSDIR}/devel/py-astng MAKE_ENV= NO_SETUPTOOLS=1 Modified: head/devel/pylint/distinfo ============================================================================== --- head/devel/pylint/distinfo Sat Oct 13 08:22:54 2012 (r305821) +++ head/devel/pylint/distinfo Sat Oct 13 08:23:53 2012 (r305822) @@ -1,2 +1,2 @@ -SHA256 (pylint-0.25.2.tar.gz) = 757f2b97071a87fb7e4d017fc7c9eb74f26dcf412e683b614d3c5d54b217212d -SIZE (pylint-0.25.2.tar.gz) = 207358 +SHA256 (pylint-0.26.0.tar.gz) = 6520fcd528eb4331fe252d7d6f1f777cc4ce7bb11c0a3dcca6934e202ff7e1d5 +SIZE (pylint-0.26.0.tar.gz) = 214403 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 08:42:37 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 342F9722; Sat, 13 Oct 2012 08:42:37 +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 1AD948FC08; Sat, 13 Oct 2012 08:42: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 q9D8gaSJ075941; Sat, 13 Oct 2012 08:42:36 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9D8gaGa075934; Sat, 13 Oct 2012 08:42:36 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201210130842.q9D8gaGa075934@svn.freebsd.org> From: Guido Falsi Date: Sat, 13 Oct 2012 08:42:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305823 - in head/net: unison unison-devel unison-devel/files unison/files unison232 unison232/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 08:42:37 -0000 Author: madpilot Date: Sat Oct 13 08:42:36 2012 New Revision: 305823 URL: http://svn.freebsd.org/changeset/ports/305823 Log: - Make port convert and use icons which come with the distribution - Remove indefinite article from COMMENT - Trim Makefiles headers - Bump PORTREVISION PR: ports/172492 Submitted by: Boris Samorodov Approved by: mandree (implicit, maintainer of net/unison232) Approved by: tabthorpe (portmgr) Feature safe: yes Modified: head/net/unison-devel/Makefile (contents, props changed) head/net/unison-devel/files/unison.desktop.in (contents, props changed) head/net/unison/Makefile (contents, props changed) head/net/unison/files/unison.desktop.in (contents, props changed) head/net/unison232/Makefile (contents, props changed) head/net/unison232/files/unison.desktop.in (contents, props changed) Modified: head/net/unison-devel/Makefile ============================================================================== --- head/net/unison-devel/Makefile Sat Oct 13 08:23:53 2012 (r305822) +++ head/net/unison-devel/Makefile Sat Oct 13 08:42:36 2012 (r305823) @@ -1,13 +1,9 @@ -# New ports collection makefile for: unison -# Date created: 4 October 2000 -# Whom: Dan Pelleg -# +# Created by: Dan Pelleg # $FreeBSD$ -# PORTNAME= unison PORTVERSION= 2.45.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${DISTNAME}/ PKGNAMESUFFIX= -devel @@ -16,7 +12,7 @@ DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}.tar.gz MAINTAINER= madpilot@FreeBSD.org -COMMENT= A user-level file synchronization tool +COMMENT= User-level file synchronization tool LICENSE= GPLv3 @@ -44,12 +40,14 @@ EXTRA_DOCS= unison-${PORTVERSION}-manual MAKE_ARGS+= UISTYLE=gtk2 PLIST_SUB+= TEXT="" BUILD_DEPENDS+= ocamlc:${PORTSDIR}/lang/ocaml \ - lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 + lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 \ + icotool:${PORTSDIR}/graphics/icoutils RUN_DEPENDS+= lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 PATCH_DEPENDS+= ${BUILD_DEPENDS} CONFLICTS+= ocaml-nox11* USE_GNOME= desktopfileutils SUB_FILES+= ${PORTNAME}.desktop +PLIST_FILES+= share/pixmaps/${PORTNAME}.png .else MAKE_ARGS+= UISTYLE=text PLIST_SUB+= TEXT="@comment " @@ -62,6 +60,7 @@ post-build: @${ECHO} Building text-only version @${ECHO} ${WRKSRC} @${GMAKE} -C ${WRKSRC} UISTYLE=text NAME=unison-text + @cd ${WRKSRC}/win32rc && ${LOCALBASE}/bin/icotool -x U.ico .endif do-install: @@ -81,6 +80,7 @@ post-install: @${MKDIR} ${DESKTOPDIR} @${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${DESKTOPDIR} @-update-desktop-database > /dev/null + @${INSTALL_DATA} ${WRKSRC}/win32rc/U_4_48x48x32.png ${PREFIX}/share/pixmaps/${PORTNAME}.png @${CAT} ${PKGMESSAGE} .else @${CAT} ${PKGMESSAGE}.nox11 Modified: head/net/unison-devel/files/unison.desktop.in ============================================================================== --- head/net/unison-devel/files/unison.desktop.in Sat Oct 13 08:23:53 2012 (r305822) +++ head/net/unison-devel/files/unison.desktop.in Sat Oct 13 08:42:36 2012 (r305823) @@ -7,5 +7,6 @@ Terminal=false StartupNotify=true Categories=GTK;Utility; Exec=unison +Icon=unison.png Comment=Synchronize files (directories) over different disks (hosts) Comment[ru]=áøýхрþýø÷ðцøѠфðùûþò (úðтðûþóþò) ýð ýõÑÂúþûьúøх ôøÑÂúðх (úþüÿьютõрðх) Modified: head/net/unison/Makefile ============================================================================== --- head/net/unison/Makefile Sat Oct 13 08:23:53 2012 (r305822) +++ head/net/unison/Makefile Sat Oct 13 08:42:36 2012 (r305823) @@ -1,13 +1,9 @@ -# New ports collection makefile for: unison -# Date created: 4 October 2000 -# Whom: Dan Pelleg -# +# Created by: Dan Pelleg # $FreeBSD$ -# PORTNAME= unison PORTVERSION= 2.40.63 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= net MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${DISTNAME}/ DISTFILES= ${EXTRACT_ONLY} ${EXTRA_DOCS} @@ -15,7 +11,7 @@ DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}.tar.gz MAINTAINER?= madpilot@FreeBSD.org -COMMENT?= A user-level file synchronization tool +COMMENT?= User-level file synchronization tool LICENSE= GPLv3 @@ -43,12 +39,14 @@ EXTRA_DOCS= unison-${PORTVERSION}-manual MAKE_ARGS+= UISTYLE=gtk2 PLIST_SUB+= TEXT="" BUILD_DEPENDS+= ocamlc:${PORTSDIR}/lang/ocaml \ - lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 + lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 \ + icotool:${PORTSDIR}/graphics/icoutils RUN_DEPENDS+= lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 PATCH_DEPENDS+= ${BUILD_DEPENDS} CONFLICTS+= ocaml-nox11* USE_GNOME= desktopfileutils SUB_FILES+= ${PORTNAME}.desktop +PLIST_FILES+= share/pixmaps/${PORTNAME}.png .else MAKE_ARGS+= UISTYLE=text PLIST_SUB+= TEXT="@comment " @@ -61,6 +59,7 @@ post-build: @${ECHO} Building text-only version @${ECHO} ${WRKSRC} @${GMAKE} -C ${WRKSRC} UISTYLE=text NAME=unison-text + @cd ${WRKSRC}/win32rc && ${LOCALBASE}/bin/icotool -x U.ico .endif do-install: @@ -77,6 +76,7 @@ post-install: @${MKDIR} ${DESKTOPDIR} @${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${DESKTOPDIR} @-update-desktop-database > /dev/null + @${INSTALL_DATA} ${WRKSRC}/win32rc/U_4_48x48x32.png ${PREFIX}/share/pixmaps/${PORTNAME}.png @${CAT} ${PKGMESSAGE} .else @${CAT} ${PKGMESSAGE}.nox11 Modified: head/net/unison/files/unison.desktop.in ============================================================================== --- head/net/unison/files/unison.desktop.in Sat Oct 13 08:23:53 2012 (r305822) +++ head/net/unison/files/unison.desktop.in Sat Oct 13 08:42:36 2012 (r305823) @@ -7,5 +7,6 @@ Terminal=false StartupNotify=true Categories=GTK;Utility; Exec=unison +Icon=unison.png Comment=Synchronize files (directories) over different disks (hosts) Comment[ru]=Ð¡Ð¸Ð½Ñ…Ñ€Ð¾Ð½Ð¸Ð·Ð°Ñ†Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð² (каталогов) на неÑкольких диÑках (компьютерах) Modified: head/net/unison232/Makefile ============================================================================== --- head/net/unison232/Makefile Sat Oct 13 08:23:53 2012 (r305822) +++ head/net/unison232/Makefile Sat Oct 13 08:42:36 2012 (r305823) @@ -1,13 +1,9 @@ -# New ports collection makefile for: unison -# Date created: 4 October 2000 -# Whom: Dan Pelleg -# +# Created by: Dan Pelleg # $FreeBSD$ -# PORTNAME= unison PORTVERSION= 2.32.52 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${DISTNAME}/ PKGNAMESUFFIX= 232 @@ -17,7 +13,7 @@ EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION} MAINTAINER= mandree@FreeBSD.org # Implicit approval for port changes granted to Guido Falsi -COMMENT= A user-level file synchronization tool +COMMENT= User-level file synchronization tool PLIST_SUB= PORTVERSION=${PORTVERSION} USE_GMAKE= yes @@ -44,12 +40,14 @@ EXTRA_DOCS= ${PORTNAME}-${PORTVERSION}-m MAKE_ARGS+= UISTYLE=gtk2 PLIST_SUB+= TEXT="" BUILD_DEPENDS+= ocamlc:${PORTSDIR}/lang/ocaml \ - lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 + lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 \ + icotool:${PORTSDIR}/graphics/icoutils RUN_DEPENDS+= lablgtk2:${PORTSDIR}/x11-toolkits/ocaml-lablgtk2 PATCH_DEPENDS+= ${BUILD_DEPENDS} CONFLICTS+= ocaml-nox11* USE_GNOME= desktopfileutils SUB_FILES+= ${PORTNAME}.desktop +PLIST_FILES+= share/pixmaps/${PORTNAME}${PKGNAMESUFFIX}.png .else MAKE_ARGS+= UISTYLE=text PLIST_SUB+= TEXT="@comment " @@ -62,6 +60,7 @@ post-build: @${ECHO} Building text-only version @${ECHO} ${WRKSRC} ${GMAKE} -C ${WRKSRC} UISTYLE=text NAME=${PORTNAME}-text + @cd ${WRKSRC}/win32rc && ${LOCALBASE}/bin/icotool -x U.ico .endif do-install: @@ -78,6 +77,7 @@ post-install: ${MKDIR} ${DESKTOPDIR} ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${DESKTOPDIR}/${PORTNAME}${PKGNAMESUFFIX}.desktop -update-desktop-database > /dev/null + @${INSTALL_DATA} ${WRKSRC}/win32rc/U_4_48x48x32.png ${PREFIX}/share/pixmaps/${PORTNAME}${PKGNAMESUFFIX}.png .endif .include Modified: head/net/unison232/files/unison.desktop.in ============================================================================== --- head/net/unison232/files/unison.desktop.in Sat Oct 13 08:23:53 2012 (r305822) +++ head/net/unison232/files/unison.desktop.in Sat Oct 13 08:42:36 2012 (r305823) @@ -7,6 +7,7 @@ Terminal=false StartupNotify=true Categories=GTK;Utility; Exec=unison232 +Icon=unison232.png Comment=Synchronize files (directories) over different disks (hosts) Comment[de]=Dateien oder Verzeichnisse über Festplatten oder Computer hinweg abgleichen Comment[ru]=Ð¡Ð¸Ð½Ñ…Ñ€Ð¾Ð½Ð¸Ð·Ð°Ñ†Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð² (каталогов) на неÑкольких диÑках (компьютерах) From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 10:18:15 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A28969D; Sat, 13 Oct 2012 10:18:15 +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 09A998FC0C; Sat, 13 Oct 2012 10:18:15 +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 q9DAIEJt091808; Sat, 13 Oct 2012 10:18:14 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DAIE70091801; Sat, 13 Oct 2012 10:18:14 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210131018.q9DAIE70091801@svn.freebsd.org> From: Florian Smeets Date: Sat, 13 Oct 2012 10:18:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305824 - in head/www: linux-seamonkey seamonkey seamonkey-i18n seamonkey/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 10:18:15 -0000 Author: flo Date: Sat Oct 13 10:18:14 2012 New Revision: 305824 URL: http://svn.freebsd.org/changeset/ports/305824 Log: - update seamonkey to 2.13.1 - avoid thread-local variables before 8.3, 9.1, 10.0, to avoid crashes [1] Security: 6e5a9afd-12d3-11e2-b47d-c8600054b392 Reference: http://svnweb.freebsd.org/changeset/base/225582 [1] Submitted by: Jan Beich [1] Feature safe: yes Deleted: head/www/seamonkey/files/patch-bug543241 Modified: 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 Modified: head/www/linux-seamonkey/Makefile ============================================================================== --- head/www/linux-seamonkey/Makefile Sat Oct 13 08:42:36 2012 (r305823) +++ head/www/linux-seamonkey/Makefile Sat Oct 13 10:18:14 2012 (r305824) @@ -6,7 +6,7 @@ # PORTNAME= seamonkey -PORTVERSION= 2.13 +PORTVERSION= 2.13.1 CATEGORIES= www MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${PORTVERSION}/linux-i686/en-US Modified: head/www/linux-seamonkey/distinfo ============================================================================== --- head/www/linux-seamonkey/distinfo Sat Oct 13 08:42:36 2012 (r305823) +++ head/www/linux-seamonkey/distinfo Sat Oct 13 10:18:14 2012 (r305824) @@ -1,2 +1,2 @@ -SHA256 (seamonkey-2.13.tar.bz2) = f9db50cf91182994c3c95e234aa11036e41e3733cea87e450aca0aed6a501391 -SIZE (seamonkey-2.13.tar.bz2) = 23351370 +SHA256 (seamonkey-2.13.1.tar.bz2) = 3be490d66bbc1913cd6d6b120c7e603b944a707559d4db475ec09443ae9bd984 +SIZE (seamonkey-2.13.1.tar.bz2) = 23347242 Modified: head/www/seamonkey-i18n/Makefile ============================================================================== --- head/www/seamonkey-i18n/Makefile Sat Oct 13 08:42:36 2012 (r305823) +++ head/www/seamonkey-i18n/Makefile Sat Oct 13 10:18:14 2012 (r305824) @@ -6,7 +6,7 @@ # PORTNAME= seamonkey-i18n -PORTVERSION= 2.13 +PORTVERSION= 2.13.1 CATEGORIES= www MASTER_SITE_SUBDIR= seamonkey/releases/${PORTVERSION}/langpack PKGNAMEPREFIX= Modified: head/www/seamonkey-i18n/distinfo ============================================================================== --- head/www/seamonkey-i18n/distinfo Sat Oct 13 08:42:36 2012 (r305823) +++ head/www/seamonkey-i18n/distinfo Sat Oct 13 10:18:14 2012 (r305824) @@ -1,46 +1,46 @@ -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.ca.langpack.xpi) = ff340266c851f4b7c54d64c6449d5da43757c3b4754746de08f047b5cf321bea -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.ca.langpack.xpi) = 764168 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.cs.langpack.xpi) = 34eb53b4f3afe2e68ae2c634033cdca4da7eaf954c9bf76223798d5f252fcb4e -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.cs.langpack.xpi) = 777294 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.de.langpack.xpi) = aaec0a3bac8b45e6df2c94dee94e04975d9b0e1cd0db879a6502eb9e226df6e1 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.de.langpack.xpi) = 798915 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.en-GB.langpack.xpi) = 4976f28dfd7ecc2f80a3b1017c18adc8d2de699e6adab8f3ed016998a040533b -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.en-GB.langpack.xpi) = 795991 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.en-US.langpack.xpi) = b856a1286425d1c7308bbd8946986dc0a3d565a716ee20901c7eedeb72b8996c -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.en-US.langpack.xpi) = 745767 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.es-AR.langpack.xpi) = cd8acb4096a6e2dbf616ed4ec1920605787f89064b43af2ddae03fc112cd5820 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.es-AR.langpack.xpi) = 840121 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.es-ES.langpack.xpi) = 2d3d84c45821ae7f1557d62e1186213183bae291d0c75b7ab0e2c9eb27fef97b -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.es-ES.langpack.xpi) = 790855 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.fi.langpack.xpi) = 93014c1a526ca1d6c9721d80eeea36bc966895ff33728ae0820e31b0c6c0bead -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.fi.langpack.xpi) = 818063 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.fr.langpack.xpi) = 8e0e1357dfa31bce4a7ec32a7ed95e78acb9d110ed64673b61c2b80514707592 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.fr.langpack.xpi) = 821612 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.hu.langpack.xpi) = 41eb473b4d2862d9075e32f1ce5667516611d9eae11a6a662e27febd12133017 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.hu.langpack.xpi) = 807443 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.it.langpack.xpi) = 68adba886d7553d0bfa2f595d33454ae0f6764b58bcb642252ac3b850d25facf -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.it.langpack.xpi) = 740095 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.ja-JP-mac.langpack.xpi) = 30d244083b0cfa1dd8af712169c21df81d9efd13307672e4e05118b47386e07d -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.ja-JP-mac.langpack.xpi) = 847021 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.ja.langpack.xpi) = c2980f76a21fa56625f62c04560c7962dd1aa3505c6eb872ba705c3ccdc84939 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.ja.langpack.xpi) = 822314 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.lt.langpack.xpi) = 895d739eb250768df539da35b3dfe72ca5179d647d02257134fc5069812883cb -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.lt.langpack.xpi) = 922674 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.nb-NO.langpack.xpi) = 65a6476b4fca1290dc2d84b5391e94e4a958fa5dfb95fe72848352f1c38f79c3 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.nb-NO.langpack.xpi) = 806714 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.nl.langpack.xpi) = a4e8e8c8c28a7029d85d47d368e0f82197495ab64f5fb3f52a6688f809919e94 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.nl.langpack.xpi) = 813844 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.pl.langpack.xpi) = a3865d15f31351bb8b96f6e7bf190eb48e7beafa4679c77ea50514136e2a9692 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.pl.langpack.xpi) = 801731 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.pt-PT.langpack.xpi) = 7c28d0556f92e8142545d701def46d83f0e6ebb594bf28f0dbb31cd648e3e807 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.pt-PT.langpack.xpi) = 852497 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.ru.langpack.xpi) = 0ab6cbaa4b4532014abbc6f37482dd893cfc70c74f32faf8acc061cd1707d83b -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.ru.langpack.xpi) = 868945 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.sk.langpack.xpi) = 3f0be378698f6034d9cf854c5d77ef7f54a3a01adfd1682e91ceb482f9c933f0 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.sk.langpack.xpi) = 803212 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.sv-SE.langpack.xpi) = e71b406e6c876e4dc160a68103d40c50f2651be61592ff875bca0039ba8f0a58 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.sv-SE.langpack.xpi) = 840531 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.tr.langpack.xpi) = e83426d253cbe1d312de2e43914d35e09c4d87c35ea9d2a69dff19562342acc1 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.tr.langpack.xpi) = 827524 -SHA256 (xpi/seamonkey-i18n-2.13/seamonkey-2.13.uk.langpack.xpi) = 96eb66046d9fe574b8e9ba50730a9159caf7afa9caff1bc8bb8607f8da26f603 -SIZE (xpi/seamonkey-i18n-2.13/seamonkey-2.13.uk.langpack.xpi) = 892596 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.ca.langpack.xpi) = 88a550c497dad962f051dd4c7b696ec64cfd5e2681f053addb4037c477a3a4b7 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.ca.langpack.xpi) = 764168 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.cs.langpack.xpi) = a040f6d02724a2330c11e2b43dcc3b0fc04e1ae4abe6db642f6ab55bc1a7bc8d +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.cs.langpack.xpi) = 777295 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.de.langpack.xpi) = 87db2601104536659f13658721de4efc6efa359981bd216cdf4f06c0a7664bf4 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.de.langpack.xpi) = 798916 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.en-GB.langpack.xpi) = a0f50f74885874fb2e1cd0b461a06220bc34f955fffb2d5178084c987cd73328 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.en-GB.langpack.xpi) = 795992 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.en-US.langpack.xpi) = b06ebf8be6de89744565b375314be1df467d38b26ee82bee36081a7ba588f7a0 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.en-US.langpack.xpi) = 745769 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.es-AR.langpack.xpi) = 30b39a488079630b451756456a98178879d50b3973aae5587750520989e39e80 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.es-AR.langpack.xpi) = 840122 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.es-ES.langpack.xpi) = 6e73b4672b750d04507e4a4c9d896dde1607d2eb35fd407b6a3065639e9a7d0e +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.es-ES.langpack.xpi) = 790856 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.fi.langpack.xpi) = 58275ec3414e14e099cdfdff0e3989c8e95c4f931c7aaed0f3df90deb342efcc +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.fi.langpack.xpi) = 818060 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.fr.langpack.xpi) = 5eb30f4adb1f1e5c2fa36c24b3732103a92775f90347574617b13aba035394b7 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.fr.langpack.xpi) = 821613 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.hu.langpack.xpi) = 0b45869214d301328f4dc9d70a526b6e7952881d73d7167eef80304a3f7636f9 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.hu.langpack.xpi) = 807441 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.it.langpack.xpi) = 5ede37f3fa4c52d961adb853b270b7212b060bea5ae18e6091b08347e4e0f285 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.it.langpack.xpi) = 740095 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.ja-JP-mac.langpack.xpi) = 183fbe065ee1ea89a38f2624b86c33bb0ed6f5587e76d813f410a7cc646cb6c0 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.ja-JP-mac.langpack.xpi) = 847022 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.ja.langpack.xpi) = bfd966b2b93f122319196eafd324e26846e5ef45b18b1fe25a620e99fea8cc98 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.ja.langpack.xpi) = 822315 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.lt.langpack.xpi) = 2fd1e5f94ee052f0d9c8f6e8cb294540eae0dcf82237457704f08c6cb930c2e7 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.lt.langpack.xpi) = 922675 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.nb-NO.langpack.xpi) = 4bfbe200bb5d064baff915c9e3c3dc8a783d12726ac618e77a614060a37b7510 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.nb-NO.langpack.xpi) = 806716 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.nl.langpack.xpi) = 682a256f86b38b8fa0a19f1ef70296578854f1a4640d7fa0a0923d92cd89ab2f +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.nl.langpack.xpi) = 813845 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.pl.langpack.xpi) = 85ece11a9cee25abc2fd4958bb4f7f306c3675a47b1e1bf1e454b235fe092c72 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.pl.langpack.xpi) = 801731 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.pt-PT.langpack.xpi) = c9118e858f0bacc8a6c1cc582cde1ca063dd7a9edd0c76aa546dc19058b70053 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.pt-PT.langpack.xpi) = 852498 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.ru.langpack.xpi) = ce9fbc674f8a0cf4a1a8a6520fe5223b63fbdb8a592baac3e43253c76b9fef6d +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.ru.langpack.xpi) = 868946 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.sk.langpack.xpi) = 801ee3a53cf3f7f65cc2eb6634839e8f29239bdcde74b95f327a8d5799d9018c +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.sk.langpack.xpi) = 803213 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.sv-SE.langpack.xpi) = 85c18038e7ce2b265f7934f0c283786eef26344dad372d56c3058ea09dc6bf95 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.sv-SE.langpack.xpi) = 840532 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.tr.langpack.xpi) = f202443b1ac79381477be1cefbf9c6cdb50e7aab001efe4b62aa3138475b1803 +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.tr.langpack.xpi) = 827525 +SHA256 (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.uk.langpack.xpi) = c4d25f8e7476cb796067660f1b2a237a483ff8e856618277e62d4ebf9d6f59ab +SIZE (xpi/seamonkey-i18n-2.13.1/seamonkey-2.13.1.uk.langpack.xpi) = 892598 Modified: head/www/seamonkey/Makefile ============================================================================== --- head/www/seamonkey/Makefile Sat Oct 13 08:42:36 2012 (r305823) +++ head/www/seamonkey/Makefile Sat Oct 13 10:18:14 2012 (r305824) @@ -6,7 +6,7 @@ # PORTNAME= seamonkey -DISTVERSION= 2.13 +DISTVERSION= 2.13.1 CATEGORIES?= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA_EXTENDED} MASTER_SITE_SUBDIR= seamonkey/releases/${DISTVERSION}/source Modified: head/www/seamonkey/distinfo ============================================================================== --- head/www/seamonkey/distinfo Sat Oct 13 08:42:36 2012 (r305823) +++ head/www/seamonkey/distinfo Sat Oct 13 10:18:14 2012 (r305824) @@ -1,4 +1,4 @@ -SHA256 (seamonkey-2.13.source.tar.bz2) = d48016bc7dfeebc882189475704bd050c4a4fddd421fc42b321749b33b13d0b1 -SIZE (seamonkey-2.13.source.tar.bz2) = 112149304 +SHA256 (seamonkey-2.13.1.source.tar.bz2) = c454982be97f07985d00336aab5dc6b965d2c9d6adf2e6d4988a608ef91caa96 +SIZE (seamonkey-2.13.1.source.tar.bz2) = 112056327 SHA256 (enigmail-1.4.5.tar.gz) = fa59491fba21de9414a003933349074a8ec1833a1d64cac9f0a9f7020ed6c020 SIZE (enigmail-1.4.5.tar.gz) = 1269207 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 10:28:02 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A005AB8A; Sat, 13 Oct 2012 10:28:02 +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 889FF8FC08; Sat, 13 Oct 2012 10:28: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 q9DAS2vr093390; Sat, 13 Oct 2012 10:28:02 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DAS2xv093387; Sat, 13 Oct 2012 10:28:02 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201210131028.q9DAS2xv093387@svn.freebsd.org> From: Florian Smeets Date: Sat, 13 Oct 2012 10:28:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305825 - head/www/xpi-firebug X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 10:28:02 -0000 Author: flo Date: Sat Oct 13 10:28:01 2012 New Revision: 305825 URL: http://svn.freebsd.org/changeset/ports/305825 Log: - update to 1.10.4 - trim header PR: ports/172658 Submitted by: Barbara Feature safe: yes Modified: head/www/xpi-firebug/Makefile head/www/xpi-firebug/distinfo (contents, props changed) Modified: head/www/xpi-firebug/Makefile ============================================================================== --- head/www/xpi-firebug/Makefile Sat Oct 13 10:18:14 2012 (r305824) +++ head/www/xpi-firebug/Makefile Sat Oct 13 10:28:01 2012 (r305825) @@ -1,12 +1,8 @@ -# New ports collection makefile for: xpi-firebug -# Date created: 5 July 2007 -# Whom: Lapo Luchini -# +# Created by: Lapo Luchini # $FreeBSD$ -# PORTNAME= firebug -PORTVERSION= 1.10.3 +PORTVERSION= 1.10.4 DISTVERSIONSUFFIX= -fx PORTEPOCH= 3 CATEGORIES= www Modified: head/www/xpi-firebug/distinfo ============================================================================== --- head/www/xpi-firebug/distinfo Sat Oct 13 10:18:14 2012 (r305824) +++ head/www/xpi-firebug/distinfo Sat Oct 13 10:28:01 2012 (r305825) @@ -1,2 +1,2 @@ -SHA256 (xpi/firebug-1.10.3-fx.xpi) = 8029b44a15325adb170e33f44ed39db3602f8f87cd0432fddc9622cf9058ac47 -SIZE (xpi/firebug-1.10.3-fx.xpi) = 1625368 +SHA256 (xpi/firebug-1.10.4-fx.xpi) = 148a848b006cd95abe272a14c7418803b5d005207a4da9ee856a67f0df5b60cd +SIZE (xpi/firebug-1.10.4-fx.xpi) = 1626141 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 10:28:25 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5AFE4C62; Sat, 13 Oct 2012 10:28:25 +0000 (UTC) (envelope-from bland@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3A3C78FC08; Sat, 13 Oct 2012 10:28:25 +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 q9DASP6F093517; Sat, 13 Oct 2012 10:28:25 GMT (envelope-from bland@svn.freebsd.org) Received: (from bland@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DASPe8093513; Sat, 13 Oct 2012 10:28:25 GMT (envelope-from bland@svn.freebsd.org) Message-Id: <201210131028.q9DASPe8093513@svn.freebsd.org> From: Alexander Nedotsukov Date: Sat, 13 Oct 2012 10:28:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305826 - in head/x11/nvidia-xconfig: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 10:28:25 -0000 Author: bland Date: Sat Oct 13 10:28:24 2012 New Revision: 305826 URL: http://svn.freebsd.org/changeset/ports/305826 Log: Update to 304.51 Feature safe: yes Modified: head/x11/nvidia-xconfig/Makefile head/x11/nvidia-xconfig/distinfo head/x11/nvidia-xconfig/files/patch-Makefile Modified: head/x11/nvidia-xconfig/Makefile ============================================================================== --- head/x11/nvidia-xconfig/Makefile Sat Oct 13 10:28:01 2012 (r305825) +++ head/x11/nvidia-xconfig/Makefile Sat Oct 13 10:28:24 2012 (r305826) @@ -6,7 +6,7 @@ # PORTNAME= nvidia-xconfig -PORTVERSION= 295.71 +PORTVERSION= 304.51 CATEGORIES= x11 MASTER_SITES= ftp://download.nvidia.com/XFree86/nvidia-xconfig/ \ ftp://download1.nvidia.com/XFree86/nvidia-xconfig/ @@ -23,6 +23,8 @@ MAKE_ENV= NV_VERBOSE= \ STRIP_CMD=${TRUE} \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ INSTALL_MAN="${INSTALL_MAN}" \ + INSTALL_BIN_ARGS= \ + INSTALL_DOC_ARGS= \ prefix=${PREFIX} PLIST_FILES= bin/nvidia-xconfig @@ -31,6 +33,6 @@ MAN1= nvidia-xconfig.1 post-patch: .SILENT ${REINPLACE_CMD} -e '/^prefix/s/=/?&/' \ - -e '/^mandir/s|share/||' ${WRKSRC}/utils.mk + -e '/^MANDIR/s|share/||' ${WRKSRC}/utils.mk .include Modified: head/x11/nvidia-xconfig/distinfo ============================================================================== --- head/x11/nvidia-xconfig/distinfo Sat Oct 13 10:28:01 2012 (r305825) +++ head/x11/nvidia-xconfig/distinfo Sat Oct 13 10:28:24 2012 (r305826) @@ -1,2 +1,2 @@ -SHA256 (nvidia-xconfig-295.71.tar.bz2) = 931377a9dc52a1655d35b0df72a374cc9a1c3eaf0b2fc3c9e0356f901c0f67b2 -SIZE (nvidia-xconfig-295.71.tar.bz2) = 99205 +SHA256 (nvidia-xconfig-304.51.tar.bz2) = dd2f0495d960c05faba1ddb2f3d25571078f8ce358336dcd782397df6559eeb4 +SIZE (nvidia-xconfig-304.51.tar.bz2) = 101542 Modified: head/x11/nvidia-xconfig/files/patch-Makefile ============================================================================== --- head/x11/nvidia-xconfig/files/patch-Makefile Sat Oct 13 10:28:01 2012 (r305825) +++ head/x11/nvidia-xconfig/files/patch-Makefile Sat Oct 13 10:28:24 2012 (r305826) @@ -1,16 +1,16 @@ ---- Makefile.orig 2010-10-13 22:56:07.000000000 +0900 -+++ Makefile 2010-10-13 22:58:01.000000000 +0900 -@@ -95,11 +95,11 @@ +--- Makefile.orig 2012-09-19 10:51:22.000000000 +0900 ++++ Makefile 2012-10-13 19:09:46.000000000 +0900 +@@ -112,11 +112,11 @@ NVIDIA_XCONFIG_install: $(NVIDIA_XCONFIG) - $(MKDIR) $(bindir) -- $(INSTALL) $(INSTALL_BIN_ARGS) $< $(bindir)/$(notdir $<) -+ $(INSTALL_PROGRAM) $< $(bindir)/$(notdir $<) + $(MKDIR) $(BINDIR) +- $(INSTALL) $(INSTALL_BIN_ARGS) $< $(BINDIR)/$(notdir $<) ++ $(INSTALL_PROGRAM) $(INSTALL_BIN_ARGS) $< $(BINDIR)/$(notdir $<) MANPAGE_install: $(MANPAGE) - $(MKDIR) $(mandir) -- $(INSTALL) $(INSTALL_DOC_ARGS) $< $(mandir)/$(notdir $<) -+ $(INSTALL_MAN) $< $(mandir)/$(notdir $<) + $(MKDIR) $(MANDIR) +- $(INSTALL) $(INSTALL_DOC_ARGS) $< $(MANDIR)/$(notdir $<) ++ $(INSTALL_MAN) $(INSTALL_DOC_ARGS) $< $(MANDIR)/$(notdir $<) $(NVIDIA_XCONFIG): $(OBJS) - $(call quiet_cmd,LINK) -o $@ $(OBJS) $(CFLAGS) \ + $(call quiet_cmd,LINK) $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) \ From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 11:23:23 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C10C822; Sat, 13 Oct 2012 11:23:23 +0000 (UTC) (envelope-from bland@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 35FB38FC1F; Sat, 13 Oct 2012 11:23: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 q9DBNN6t001774; Sat, 13 Oct 2012 11:23:23 GMT (envelope-from bland@svn.freebsd.org) Received: (from bland@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DBNMfp001769; Sat, 13 Oct 2012 11:23:22 GMT (envelope-from bland@svn.freebsd.org) Message-Id: <201210131123.q9DBNMfp001769@svn.freebsd.org> From: Alexander Nedotsukov Date: Sat, 13 Oct 2012 11:23:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305827 - in head/x11/nvidia-settings: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 11:23:23 -0000 Author: bland Date: Sat Oct 13 11:23:22 2012 New Revision: 305827 URL: http://svn.freebsd.org/changeset/ports/305827 Log: Update to 304.51 Feature safe: yes Added: head/x11/nvidia-settings/files/patch-doc__Makefile (contents, props changed) head/x11/nvidia-settings/files/patch-src__Makefile (contents, props changed) Deleted: head/x11/nvidia-settings/files/patch-Makefile Modified: head/x11/nvidia-settings/Makefile head/x11/nvidia-settings/distinfo Modified: head/x11/nvidia-settings/Makefile ============================================================================== --- head/x11/nvidia-settings/Makefile Sat Oct 13 10:28:24 2012 (r305826) +++ head/x11/nvidia-settings/Makefile Sat Oct 13 11:23:22 2012 (r305827) @@ -6,8 +6,7 @@ # PORTNAME= nvidia-settings -PORTVERSION= 295.71 -PORTREVISION= 1 +PORTVERSION= 304.51 CATEGORIES= x11 MASTER_SITES= ftp://download.nvidia.com/XFree86/nvidia-settings/ \ ftp://download1.nvidia.com/XFree86/nvidia-settings/ @@ -40,6 +39,6 @@ post-extract: .SILENT post-patch: .SILENT ${REINPLACE_CMD} -e '/^prefix/s/=/?&/' \ - -e '/^mandir/s|share/||' ${WRKSRC}/utils.mk + -e '/^MANDIR/s|share/||' ${WRKSRC}/utils.mk .include Modified: head/x11/nvidia-settings/distinfo ============================================================================== --- head/x11/nvidia-settings/distinfo Sat Oct 13 10:28:24 2012 (r305826) +++ head/x11/nvidia-settings/distinfo Sat Oct 13 11:23:22 2012 (r305827) @@ -1,2 +1,2 @@ -SHA256 (nvidia-settings-295.71.tar.bz2) = c8987510fe81b2ec5a02b1ae9028f4663446f0e611a59827b47bd35fe4ffe519 -SIZE (nvidia-settings-295.71.tar.bz2) = 1545560 +SHA256 (nvidia-settings-304.51.tar.bz2) = 998182b1e83e77f98cb2eec532cdbbb9331e0601c3c83f08c4d5709f63556e05 +SIZE (nvidia-settings-304.51.tar.bz2) = 1478898 Added: head/x11/nvidia-settings/files/patch-doc__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/nvidia-settings/files/patch-doc__Makefile Sat Oct 13 11:23:22 2012 (r305827) @@ -0,0 +1,11 @@ +--- doc/Makefile.orig 2012-10-13 19:37:40.000000000 +0900 ++++ doc/Makefile 2012-10-13 19:38:21.000000000 +0900 +@@ -74,7 +74,7 @@ + + MANPAGE_install: $(MANPAGE) + $(MKDIR) $(MANDIR) +- $(INSTALL) $(INSTALL_BIN_ARGS) $< $(MANDIR)/$(notdir $<) ++ $(INSTALL_MAN) $< $(MANDIR)/$(notdir $<) + + clean clobber: + rm -rf $(MANPAGE) *~ $(OUTPUTDIR)/*.o $(OUTPUTDIR)/*.d \ Added: head/x11/nvidia-settings/files/patch-src__Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/nvidia-settings/files/patch-src__Makefile Sat Oct 13 11:23:22 2012 (r305827) @@ -0,0 +1,20 @@ +--- src/Makefile.orig 2012-09-19 10:51:18.000000000 +0900 ++++ src/Makefile 2012-10-13 20:13:29.000000000 +0900 +@@ -155,13 +155,16 @@ + + NVIDIA_SETTINGS_install: $(NVIDIA_SETTINGS) + $(MKDIR) $(BINDIR) +- $(INSTALL) $(INSTALL_BIN_ARGS) $< $(BINDIR)/$(notdir $<) ++ $(INSTALL_PROGRAM) $< $(BINDIR)/$(notdir $<) + + $(NVIDIA_SETTINGS): $(OBJS) $(XNVCTRL_ARCHIVE) + $(call quiet_cmd,LINK) $(CFLAGS) $(LDFLAGS) $(BIN_LDFLAGS) -o $@ $(OBJS) \ + $(XNVCTRL_ARCHIVE) $(LIBS) + $(call quiet_cmd,STRIP_CMD) $@ + ++$(XNVCTRL_ARCHIVE): ++ $(MAKE) -C libXNVCtrl ++ + # define the rule to build each object file + $(foreach src,$(SRC),$(eval $(call DEFINE_OBJECT_RULE,TARGET,$(src)))) + From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 12:42:56 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58B3D17B; Sat, 13 Oct 2012 12:42:56 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 415BC8FC0C; Sat, 13 Oct 2012 12:42:56 +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 q9DCguOk014556; Sat, 13 Oct 2012 12:42:56 GMT (envelope-from arved@svn.freebsd.org) Received: (from arved@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DCguqf014553; Sat, 13 Oct 2012 12:42:56 GMT (envelope-from arved@svn.freebsd.org) Message-Id: <201210131242.q9DCguqf014553@svn.freebsd.org> From: Tilman Keskinoz Date: Sat, 13 Oct 2012 12:42:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305828 - head/devel/pcsc-lite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 12:42:56 -0000 Author: arved Date: Sat Oct 13 12:42:55 2012 New Revision: 305828 URL: http://svn.freebsd.org/changeset/ports/305828 Log: Update to 1.8.6 Feature safe: yes Modified: head/devel/pcsc-lite/Makefile head/devel/pcsc-lite/distinfo Modified: head/devel/pcsc-lite/Makefile ============================================================================== --- head/devel/pcsc-lite/Makefile Sat Oct 13 11:23:22 2012 (r305827) +++ head/devel/pcsc-lite/Makefile Sat Oct 13 12:42:55 2012 (r305828) @@ -6,11 +6,10 @@ # PORTNAME= pcsc-lite -PORTVERSION= 1.8.5 -PORTREVISION= 1 +PORTVERSION= 1.8.6 PORTEPOCH= 2 CATEGORIES= devel security -MASTER_SITES= https://alioth.debian.org/frs/download.php/3741/ +MASTER_SITES= https://alioth.debian.org/frs/download.php/3757/ MAINTAINER= arved@FreeBSD.org COMMENT= A smartcard development library Modified: head/devel/pcsc-lite/distinfo ============================================================================== --- head/devel/pcsc-lite/distinfo Sat Oct 13 11:23:22 2012 (r305827) +++ head/devel/pcsc-lite/distinfo Sat Oct 13 12:42:55 2012 (r305828) @@ -1,2 +1,2 @@ -SHA256 (pcsc-lite-1.8.5.tar.bz2) = 917f6c24d2a766cc7b20ad78b70f29613f134dea997d60613826a9ce68eee6a6 -SIZE (pcsc-lite-1.8.5.tar.bz2) = 560995 +SHA256 (pcsc-lite-1.8.6.tar.bz2) = 1e44049168d1ce55fd56c175f61206955254df0f385455f2a20ec7e8a0e6a77a +SIZE (pcsc-lite-1.8.6.tar.bz2) = 554106 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 12:43:36 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 240C9274; Sat, 13 Oct 2012 12:43:36 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0D9E58FC14; Sat, 13 Oct 2012 12:43:36 +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 q9DChZFu014728; Sat, 13 Oct 2012 12:43:35 GMT (envelope-from arved@svn.freebsd.org) Received: (from arved@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DChZeH014725; Sat, 13 Oct 2012 12:43:35 GMT (envelope-from arved@svn.freebsd.org) Message-Id: <201210131243.q9DChZeH014725@svn.freebsd.org> From: Tilman Keskinoz Date: Sat, 13 Oct 2012 12:43:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305829 - head/devel/libccid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 12:43:36 -0000 Author: arved Date: Sat Oct 13 12:43:35 2012 New Revision: 305829 URL: http://svn.freebsd.org/changeset/ports/305829 Log: Update to 1.4.8 Feature safe: yes Modified: head/devel/libccid/Makefile head/devel/libccid/distinfo Modified: head/devel/libccid/Makefile ============================================================================== --- head/devel/libccid/Makefile Sat Oct 13 12:42:55 2012 (r305828) +++ head/devel/libccid/Makefile Sat Oct 13 12:43:35 2012 (r305829) @@ -5,9 +5,9 @@ # $FreeBSD$ PORTNAME= ccid -PORTVERSION= 1.4.6 +PORTVERSION= 1.4.8 CATEGORIES= devel -MASTER_SITES= https://alioth.debian.org/frs/download.php/3711/ +MASTER_SITES= https://alioth.debian.org/frs/download.php/3768/ MAINTAINER= arved@FreeBSD.org COMMENT= Generic USB CCID (Chip/Smart Card Interface Devices) driver Modified: head/devel/libccid/distinfo ============================================================================== --- head/devel/libccid/distinfo Sat Oct 13 12:42:55 2012 (r305828) +++ head/devel/libccid/distinfo Sat Oct 13 12:43:35 2012 (r305829) @@ -1,2 +1,2 @@ -SHA256 (ccid-1.4.6.tar.bz2) = f31151fc7683f24165e2498a673e81a50c497731ff9530ff98233bd56af60f8a -SIZE (ccid-1.4.6.tar.bz2) = 469846 +SHA256 (ccid-1.4.8.tar.bz2) = 7aca09fa4b9099e423402fd5df424adbafa502888710d1fda6015b6c1ff637ef +SIZE (ccid-1.4.8.tar.bz2) = 470158 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 12:53:27 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC407492; Sat, 13 Oct 2012 12:53:27 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A2D728FC08; Sat, 13 Oct 2012 12:53:27 +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 q9DCrR9I016376; Sat, 13 Oct 2012 12:53:27 GMT (envelope-from arved@svn.freebsd.org) Received: (from arved@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DCrRHQ016373; Sat, 13 Oct 2012 12:53:27 GMT (envelope-from arved@svn.freebsd.org) Message-Id: <201210131253.q9DCrRHQ016373@svn.freebsd.org> From: Tilman Keskinoz Date: Sat, 13 Oct 2012 12:53:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305830 - head/security/pcsc-tools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 12:53:27 -0000 Author: arved Date: Sat Oct 13 12:53:27 2012 New Revision: 305830 URL: http://svn.freebsd.org/changeset/ports/305830 Log: Update to 1.4.20 Feature safe: yes Modified: head/security/pcsc-tools/Makefile head/security/pcsc-tools/distinfo Modified: head/security/pcsc-tools/Makefile ============================================================================== --- head/security/pcsc-tools/Makefile Sat Oct 13 12:43:35 2012 (r305829) +++ head/security/pcsc-tools/Makefile Sat Oct 13 12:53:27 2012 (r305830) @@ -5,7 +5,7 @@ # $FreeBSD$ PORTNAME= pcsc-tools -PORTVERSION= 1.4.18 +PORTVERSION= 1.4.20 CATEGORIES= security MASTER_SITES= http://ludovic.rousseau.free.fr/softwares/pcsc-tools/ @@ -21,6 +21,9 @@ USE_GMAKE= yes MAN1= pcsc_scan.1 gscriptor.1p scriptor.1p ATR_analysis.1p +post-patch: + ${REINPLACE_CMD} -e "s,DESTDIR,PREFIX,g" ${WRKSRC}/Makefile + post-install: .for i in ${MAN1} ${INSTALL_MAN} ${WRKSRC}/$i ${MAN1PREFIX}/man/man1 Modified: head/security/pcsc-tools/distinfo ============================================================================== --- head/security/pcsc-tools/distinfo Sat Oct 13 12:43:35 2012 (r305829) +++ head/security/pcsc-tools/distinfo Sat Oct 13 12:53:27 2012 (r305830) @@ -1,2 +1,2 @@ -SHA256 (pcsc-tools-1.4.18.tar.gz) = 4f6cbd897205e9d714acdccdc3eb8e1804e907e79ecf2f52b272dba1195096ad -SIZE (pcsc-tools-1.4.18.tar.gz) = 93764 +SHA256 (pcsc-tools-1.4.20.tar.gz) = bc23f6a13b58a67344ab0ecbc0233501fddb951ec76e6d58c95a68f8b541e39b +SIZE (pcsc-tools-1.4.20.tar.gz) = 98295 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 13:06:35 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7765BB6; Sat, 13 Oct 2012 13:06:35 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BF6AB8FC08; Sat, 13 Oct 2012 13:06: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 q9DD6ZYv018749; Sat, 13 Oct 2012 13:06:35 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DD6Z0S018747; Sat, 13 Oct 2012 13:06:35 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201210131306.q9DD6Z0S018747@svn.freebsd.org> From: Dirk Meyer Date: Sat, 13 Oct 2012 13:06:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305831 - head/devel/codeblocks X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 13:06:35 -0000 Author: dinoex Date: Sat Oct 13 13:06:35 2012 New Revision: 305831 URL: http://svn.freebsd.org/changeset/ports/305831 Log: - drop maintainership Feature safe: yes Modified: head/devel/codeblocks/Makefile Modified: head/devel/codeblocks/Makefile ============================================================================== --- head/devel/codeblocks/Makefile Sat Oct 13 12:53:27 2012 (r305830) +++ head/devel/codeblocks/Makefile Sat Oct 13 13:06:35 2012 (r305831) @@ -1,9 +1,5 @@ -# New ports collection makefile for: codeblocks -# Date created: November, 15th 2005 -# Whom: Matthias Sund -# +# Created by: Matthias Sund # $FreeBSD$ -# PORTNAME= codeblocks PORTVERSION= 10.05 @@ -12,7 +8,7 @@ CATEGORIES= devel MASTER_SITES= SF/codeblocks.berlios DISTNAME= ${PORTNAME}-${PORTVERSION}-1debian-src -MAINTAINER= dinoex@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Open source, cross-platform, free C/C++ IDE BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 13:40:00 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77C7F2C6; Sat, 13 Oct 2012 13:40:00 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5C99D8FC0A; Sat, 13 Oct 2012 13:40:00 +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 q9DDe0LW026692; Sat, 13 Oct 2012 13:40:00 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DDdxxT026603; Sat, 13 Oct 2012 13:39:59 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201210131339.q9DDdxxT026603@svn.freebsd.org> From: Dirk Meyer Date: Sat, 13 Oct 2012 13:39:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305832 - in head: archivers/freetar archivers/lha-ac archivers/rubygem-archive-tar-minitar astro/position audio/cddb-bundle audio/gnustep-cdplayer audio/mp3towav-bundle audio/mpdcon be... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 13:40:00 -0000 Author: dinoex Date: Sat Oct 13 13:39:56 2012 New Revision: 305832 URL: http://svn.freebsd.org/changeset/ports/305832 Log: - cleanup comments Feature safe: yes Modified: head/archivers/freetar/Makefile head/archivers/lha-ac/Makefile head/archivers/rubygem-archive-tar-minitar/Makefile head/astro/position/Makefile head/audio/cddb-bundle/Makefile head/audio/gnustep-cdplayer/Makefile head/audio/mp3towav-bundle/Makefile head/audio/mpdcon/Makefile head/benchmarks/gsbench/Makefile head/biology/biococoa/Makefile head/comms/vrflash/Makefile head/databases/animenfo-client-gtk/Makefile head/databases/animenfo-client/Makefile head/databases/fortytwo-bdb/Makefile head/databases/mylibrary/Makefile head/databases/p5-DBD-CSV/Makefile head/databases/sqlclient/Makefile head/deskutils/affiche/Makefile head/deskutils/appwrapper/Makefile head/deskutils/cartotheque/Makefile head/deskutils/displaycalibrator/Makefile head/deskutils/gnustep-notebook/Makefile head/deskutils/gnustep-wrapper/Makefile head/deskutils/gnuwash/Makefile head/deskutils/gworkspace-clipbook/Makefile head/deskutils/gworkspace-gwmetadata/Makefile head/deskutils/gworkspace/Makefile head/deskutils/helpviewer/Makefile head/deskutils/mywiki/Makefile head/deskutils/openproj/Makefile head/deskutils/plopfolio/Makefile head/deskutils/preferencepanes/Makefile head/deskutils/preferences/Makefile head/deskutils/simpleagenda/Makefile head/deskutils/systempreferences/Makefile head/deskutils/toolbox/Makefile head/deskutils/toolboxkit/Makefile head/devel/fortytwo-encore/Makefile head/devel/gcvs/Makefile head/devel/gorm/Makefile head/devel/gperf/Makefile head/devel/highlighterkit/Makefile head/devel/objcunit/Makefile head/devel/objectivelib/Makefile head/devel/performance/Makefile head/devel/projectmanager/Makefile head/devel/rubygem-transactionsimple/Makefile head/devel/wizardkit/Makefile head/dns/powerdns-devel/Makefile head/dns/powerdns/Makefile head/editors/codeeditor/Makefile head/emulators/frodo/Makefile head/emulators/mupen64-base/Makefile head/emulators/mupen64-dummyaudio/Makefile head/emulators/mupen64-glide/Makefile head/emulators/mupen64-gln64/Makefile head/emulators/mupen64-input/Makefile head/emulators/mupen64-rice/Makefile head/emulators/mupen64-rsp/Makefile head/emulators/mupen64-sdlaudio/Makefile head/emulators/mupen64-sdlinput/Makefile head/emulators/mupen64-sound/Makefile head/emulators/mupen64/Makefile head/emulators/vmw/Makefile head/finance/expense/Makefile head/ftp/gnustep-ftp/Makefile head/ftp/waiho/Makefile head/games/fortunate/Makefile head/games/gmastermind/Makefile head/games/gmines/Makefile head/games/gnustep-sudoku/Makefile head/games/grubik/Makefile head/games/jigsaw/Makefile head/games/nextgo/Makefile head/german/digibux/Makefile head/german/dtaus/Makefile head/german/unix-connect/Makefile head/german/webalizer2/Makefile head/graphics/camerakit/Makefile head/graphics/fortytwo/Makefile head/graphics/gnustep-slideshow/Makefile head/graphics/gnustep-slideshowkit/Makefile head/graphics/imageviewer/Makefile head/graphics/laternamagica/Makefile head/graphics/pixen/Makefile head/graphics/preview/Makefile head/graphics/svgviewer/Makefile head/graphics/yap/Makefile head/irc/iroffer-dinoex/Makefile head/irc/iroffer-lamm/Makefile head/irc/xchat-ruby/Makefile head/japanese/webalizer/Makefile head/lang/gscheme/Makefile head/lang/tcc/Makefile head/mail/addresses-goodies/Makefile head/mail/antivirus-milter/Makefile head/mail/meta1/Makefile head/mail/noattach/Makefile head/mail/pathalias/Makefile head/mail/popa3d-before-sendmail/Makefile head/mail/prayer/Makefile head/mail/raysfilter/Makefile head/mail/sendmail-ldap/Makefile head/mail/sendmail-sasl/Makefile head/mail/sendmail/Makefile head/mail/sid-milter/Makefile head/mail/sma/Makefile head/mail/spamilter/Makefile head/mail/vbsfilter/Makefile head/math/matharray/Makefile head/misc/gnustep-examples/Makefile head/multimedia/gnustep-mplayer/Makefile head/multimedia/poe/Makefile head/multimedia/replex/Makefile head/net-im/licq-jabber/Makefile head/net-mgmt/bsnmp-jails/Makefile head/net-mgmt/check_multi/Makefile head/net-mgmt/xymon-client/Makefile head/net-mgmt/xymon-server/Makefile head/net-p2p/ed2k/Makefile head/net/miniupnpc/Makefile head/net/py-ldap2/Makefile head/net/remotedesk/Makefile head/net/tinyldap/Makefile head/net/tryst-examples/Makefile head/net/tryst/Makefile head/net/zillion/Makefile head/news/c-nocem/Makefile head/news/fidogate/Makefile head/news/ifmail/Makefile head/news/lusernet/Makefile head/news/pgpmoose/Makefile head/news/suck-cnews/Makefile head/ports-mgmt/pkg_jail/Makefile head/portuguese/webalizer-pt_BR/Makefile head/portuguese/webalizer-pt_PT/Makefile head/print/cups-client/Makefile head/print/cups-image/Makefile head/print/gspdf/Makefile head/print/rubygem-color/Makefile head/print/rubygem-colortools/Makefile head/print/rubygem-pdfwriter/Makefile head/russian/gd/Makefile head/security/gnupg-idea/Makefile head/security/pgpin/Makefile head/security/polarssl/Makefile head/security/putty/Makefile head/security/yassl/Makefile head/shells/gscommander/Makefile head/sysutils/batmon/Makefile head/sysutils/burn/Makefile head/sysutils/dupmerge/Makefile head/sysutils/ua/Makefile head/textproc/easydiff/Makefile head/textproc/latex-service/Makefile head/textproc/localize/Makefile head/textproc/popup-stacks/Makefile head/textproc/popup/Makefile head/textproc/rubygem-htmltools/Makefile head/textproc/rubygem-syntax/Makefile head/www/gnustep-ticker/Makefile head/www/grr/Makefile head/www/rsskit/Makefile head/www/rubygem-rubyfulsoup/Makefile head/www/twig/Makefile head/www/webalizer/Makefile head/www/webserver/Makefile head/www/webservices/Makefile head/x11-toolkits/gnustep-art/Makefile head/x11-toolkits/gnustep-back/Makefile head/x11-toolkits/gnustep-cairo/Makefile head/x11-toolkits/gnustep-xdps/Makefile head/x11/gskrab/Makefile head/x11/innerspace/Makefile Modified: head/archivers/freetar/Makefile ============================================================================== --- head/archivers/freetar/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/archivers/freetar/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: freetar -# Date created: 3 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= freetar PORTVERSION= 0.9 Modified: head/archivers/lha-ac/Makefile ============================================================================== --- head/archivers/lha-ac/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/archivers/lha-ac/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: lha-autoconf -# Date created: 24 Sep 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= lha PORTVERSION= 1.14i Modified: head/archivers/rubygem-archive-tar-minitar/Makefile ============================================================================== --- head/archivers/rubygem-archive-tar-minitar/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/archivers/rubygem-archive-tar-minitar/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,7 +1,3 @@ -# Ports collection makefile for: archive-tar-minitar -# Date created: 09 nov 2005 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ PORTNAME= archive-tar-minitar Modified: head/astro/position/Makefile ============================================================================== --- head/astro/position/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/astro/position/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: position -# Date created: 21 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= position PORTVERSION= 0.3 Modified: head/audio/cddb-bundle/Makefile ============================================================================== --- head/audio/cddb-bundle/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/audio/cddb-bundle/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: cddb-bundle -# Date created: 17 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= cddb PORTVERSION= 0.2 Modified: head/audio/gnustep-cdplayer/Makefile ============================================================================== --- head/audio/gnustep-cdplayer/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/audio/gnustep-cdplayer/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gnustep-cdplayer -# Date created: 17 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= cdplayer PORTVERSION= 0.5.1 Modified: head/audio/mp3towav-bundle/Makefile ============================================================================== --- head/audio/mp3towav-bundle/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/audio/mp3towav-bundle/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mp3towav-bundle -# Date created: 30 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= mp3towav PORTVERSION= 0.4.1 Modified: head/audio/mpdcon/Makefile ============================================================================== --- head/audio/mpdcon/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/audio/mpdcon/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mpdcon -# Date created: 17 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= mpdcon PORTVERSION= 1.1.99 Modified: head/benchmarks/gsbench/Makefile ============================================================================== --- head/benchmarks/gsbench/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/benchmarks/gsbench/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gsbench -# Date created: 1 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gsbench PORTVERSION= 0.5.2 Modified: head/biology/biococoa/Makefile ============================================================================== --- head/biology/biococoa/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/biology/biococoa/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: biococoa -# Date created: 30 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= biococoa PORTVERSION= 1.6.0 Modified: head/comms/vrflash/Makefile ============================================================================== --- head/comms/vrflash/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/comms/vrflash/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: vrflash -# Date created: 07.Jul 2001 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= vrflash PORTVERSION= 0.20 Modified: head/databases/animenfo-client-gtk/Makefile ============================================================================== --- head/databases/animenfo-client-gtk/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/databases/animenfo-client-gtk/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: animenfo-client -# Date created: 3rd August 2001 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= animenfo PORTVERSION= 20020819 Modified: head/databases/animenfo-client/Makefile ============================================================================== --- head/databases/animenfo-client/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/databases/animenfo-client/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: animenfo-client -# Date created: 3rd August 2001 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= animenfo PORTVERSION= 20020819 Modified: head/databases/fortytwo-bdb/Makefile ============================================================================== --- head/databases/fortytwo-bdb/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/databases/fortytwo-bdb/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: fortytwo-bdb -# Date created: 28 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= bdb PORTVERSION= 0.2.1 Modified: head/databases/mylibrary/Makefile ============================================================================== --- head/databases/mylibrary/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/databases/mylibrary/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mylibrary -# Date created: 18 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= mylibrary PORTVERSION= 0.4.5 Modified: head/databases/p5-DBD-CSV/Makefile ============================================================================== --- head/databases/p5-DBD-CSV/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/databases/p5-DBD-CSV/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: p5-DBD-CSV -# Date created: 20 June 1999 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= DBD-CSV PORTVERSION= 0.36 Modified: head/databases/sqlclient/Makefile ============================================================================== --- head/databases/sqlclient/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/databases/sqlclient/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: sqlclient -# Date created: 28 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= sqlclient PORTVERSION= 1.5.3 Modified: head/deskutils/affiche/Makefile ============================================================================== --- head/deskutils/affiche/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/affiche/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: affiche -# Date created: 21 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= affiche PORTVERSION= 0.6.0 Modified: head/deskutils/appwrapper/Makefile ============================================================================== --- head/deskutils/appwrapper/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/appwrapper/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: appwrapper -# Date created: 16 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= appwrapper PORTVERSION= 0.1 Modified: head/deskutils/cartotheque/Makefile ============================================================================== --- head/deskutils/cartotheque/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/cartotheque/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: cartotheque -# Date created: 16 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= cartotheque PORTVERSION= 0.1 Modified: head/deskutils/displaycalibrator/Makefile ============================================================================== --- head/deskutils/displaycalibrator/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/displaycalibrator/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: displaycalibrator -# Date created: 16 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= displaycalibrator PORTVERSION= 0.7 Modified: head/deskutils/gnustep-notebook/Makefile ============================================================================== --- head/deskutils/gnustep-notebook/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/gnustep-notebook/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: notebook -# Date created: 30 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= notebook PORTVERSION= 0.3 Modified: head/deskutils/gnustep-wrapper/Makefile ============================================================================== --- head/deskutils/gnustep-wrapper/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/gnustep-wrapper/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gnsutep-wrapper -# Date created: 16 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= wrapper PORTVERSION= 0.1.0 Modified: head/deskutils/gnuwash/Makefile ============================================================================== --- head/deskutils/gnuwash/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/gnuwash/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gnuwash -# Date created: 16 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gnuwash PORTVERSION= 0.1 Modified: head/deskutils/gworkspace-clipbook/Makefile ============================================================================== --- head/deskutils/gworkspace-clipbook/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/gworkspace-clipbook/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gworkspace-clipbook -# Date created: 30 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gworkspace PORTVERSION= 0.8.3 Modified: head/deskutils/gworkspace-gwmetadata/Makefile ============================================================================== --- head/deskutils/gworkspace-gwmetadata/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/gworkspace-gwmetadata/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gworkspace-gwmetadata -# Date created: 30 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gworkspace PORTVERSION= 0.9.1 Modified: head/deskutils/gworkspace/Makefile ============================================================================== --- head/deskutils/gworkspace/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/gworkspace/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gworkspace -# Date created: 04 Feb 2003 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gworkspace PORTVERSION= 0.9.1 Modified: head/deskutils/helpviewer/Makefile ============================================================================== --- head/deskutils/helpviewer/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/helpviewer/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: helpviewer -# Date created: 30 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= helpviewer PORTVERSION= 0.3 Modified: head/deskutils/mywiki/Makefile ============================================================================== --- head/deskutils/mywiki/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/mywiki/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mywiki -# Date created: 16 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= mywiki PORTVERSION= 0.9 Modified: head/deskutils/openproj/Makefile ============================================================================== --- head/deskutils/openproj/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/openproj/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: openproj -# Date created: 15 Apr 2008 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= openproj PORTVERSION= 1.4 Modified: head/deskutils/plopfolio/Makefile ============================================================================== --- head/deskutils/plopfolio/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/plopfolio/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: plopfolio -# Date created: 17 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= plopfolio PORTVERSION= 0.1.0 Modified: head/deskutils/preferencepanes/Makefile ============================================================================== --- head/deskutils/preferencepanes/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/preferencepanes/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: preferencepanes -# Date created: 29 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= preferencepanes PORTVERSION= 1.1.0 Modified: head/deskutils/preferences/Makefile ============================================================================== --- head/deskutils/preferences/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/preferences/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: preferences -# Date created: 04 Feb 2003 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= preferences PORTVERSION= 1.2.0 Modified: head/deskutils/simpleagenda/Makefile ============================================================================== --- head/deskutils/simpleagenda/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/simpleagenda/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: simpleagenda -# Date created: 16 Jan 2009 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= simpleagenda PORTVERSION= 0.42 Modified: head/deskutils/systempreferences/Makefile ============================================================================== --- head/deskutils/systempreferences/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/systempreferences/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: systempreferences -# Date created: 29 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= systempreferences PORTVERSION= 1.1.0 Modified: head/deskutils/toolbox/Makefile ============================================================================== --- head/deskutils/toolbox/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/toolbox/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: toolbox -# Date created: 18 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= toolbox PORTVERSION= 0.8 Modified: head/deskutils/toolboxkit/Makefile ============================================================================== --- head/deskutils/toolboxkit/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/deskutils/toolboxkit/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: toolbox -# Date created: 18 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= toolbox PORTVERSION= 0.8 Modified: head/devel/fortytwo-encore/Makefile ============================================================================== --- head/devel/fortytwo-encore/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/fortytwo-encore/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: fortytwo-encore -# Date created: 28 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= encore PORTVERSION= 0.3.1 Modified: head/devel/gcvs/Makefile ============================================================================== --- head/devel/gcvs/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/gcvs/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,7 +1,3 @@ -# New ports collection makefile for: gvcs -# Date Created: 28 Mar 2001 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ # $MCom: ports/devel/gcvs/Makefile,v 1.1 2006/10/07 17:10:25 ahze Exp $ Modified: head/devel/gorm/Makefile ============================================================================== --- head/devel/gorm/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/gorm/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gorm -# Date created: 15 Mar 2002 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gorm PORTVERSION= 1.2.16 Modified: head/devel/gperf/Makefile ============================================================================== --- head/devel/gperf/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/gperf/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gperf -# Date created: 19.04.1999 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gperf PORTVERSION= 3.0.3 Modified: head/devel/highlighterkit/Makefile ============================================================================== --- head/devel/highlighterkit/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/highlighterkit/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: highlighterkit -# Date created: 28 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= highlighterkit PORTVERSION= 0.1 Modified: head/devel/objcunit/Makefile ============================================================================== --- head/devel/objcunit/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/objcunit/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: objcunit -# Date created: 21 Jan 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= objcunit PORTVERSION= 1.2 Modified: head/devel/objectivelib/Makefile ============================================================================== --- head/devel/objectivelib/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/objectivelib/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: objectivelib -# Date created: 1 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= objectivelib PORTVERSION= 1.0.0 Modified: head/devel/performance/Makefile ============================================================================== --- head/devel/performance/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/performance/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: performance -# Date created: 28 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= performance PORTVERSION= 0.3.2 Modified: head/devel/projectmanager/Makefile ============================================================================== --- head/devel/projectmanager/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/projectmanager/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: projectmanager -# Date created: 28 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= projectmanager PORTVERSION= 0.2 Modified: head/devel/rubygem-transactionsimple/Makefile ============================================================================== --- head/devel/rubygem-transactionsimple/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/rubygem-transactionsimple/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,7 +1,3 @@ -# Ports collection makefile for: gem-transaction-simple -# Date created: 09 nov 2005 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ PORTNAME= transactionsimple Modified: head/devel/wizardkit/Makefile ============================================================================== --- head/devel/wizardkit/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/devel/wizardkit/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: wizardkit -# Date created: 28 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= wizardkit PORTVERSION= 0.1 Modified: head/dns/powerdns-devel/Makefile ============================================================================== --- head/dns/powerdns-devel/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/dns/powerdns-devel/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: powerdns -# Date Created: 14.Jan 2003 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= powerdns PORTVERSION= 3.1.r3 Modified: head/dns/powerdns/Makefile ============================================================================== --- head/dns/powerdns/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/dns/powerdns/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: powerdns -# Date Created: 14.Jan 2003 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= powerdns PORTVERSION= 3.1 Modified: head/editors/codeeditor/Makefile ============================================================================== --- head/editors/codeeditor/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/editors/codeeditor/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: codeeditor -# Date created: 3 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= codeeditor PORTVERSION= 0.4.4 Modified: head/emulators/frodo/Makefile ============================================================================== --- head/emulators/frodo/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/frodo/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: frodo -# Date created: 11 Dez 1997 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= frodo PORTVERSION= 4.1b Modified: head/emulators/mupen64-base/Makefile ============================================================================== --- head/emulators/mupen64-base/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-base/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-base -# Date created: 10.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= mupen64 PORTVERSION?= 0.5 Modified: head/emulators/mupen64-dummyaudio/Makefile ============================================================================== --- head/emulators/mupen64-dummyaudio/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-dummyaudio/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-dummyaudio -# Date created: 12.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PKGNAMESUFFIX= -dummyaudio Modified: head/emulators/mupen64-glide/Makefile ============================================================================== --- head/emulators/mupen64-glide/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-glide/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-glide -# Date created: 11.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTVERSION= 0.7 PORTREVISION= 7 Modified: head/emulators/mupen64-gln64/Makefile ============================================================================== --- head/emulators/mupen64-gln64/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-gln64/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-gln64 -# Date created: 11.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= mupen64 PORTVERSION= 0.4.1 Modified: head/emulators/mupen64-input/Makefile ============================================================================== --- head/emulators/mupen64-input/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-input/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-input -# Date created: 11.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTREVISION= 1 PKGNAMESUFFIX= -input Modified: head/emulators/mupen64-rice/Makefile ============================================================================== --- head/emulators/mupen64-rice/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-rice/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-rice -# Date created: 11.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= mupen64 PORTVERSION= 5.2.0 Modified: head/emulators/mupen64-rsp/Makefile ============================================================================== --- head/emulators/mupen64-rsp/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-rsp/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-rsp -# Date created: 10.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PKGNAMESUFFIX= -rsp Modified: head/emulators/mupen64-sdlaudio/Makefile ============================================================================== --- head/emulators/mupen64-sdlaudio/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-sdlaudio/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-sdlaudio -# Date created: 12.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTVERSION= 1.3 PORTREVISION= 3 Modified: head/emulators/mupen64-sdlinput/Makefile ============================================================================== --- head/emulators/mupen64-sdlinput/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-sdlinput/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-sdlinput -# Date created: 12.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTVERSION= 0.0.10 PORTREVISION= 3 Modified: head/emulators/mupen64-sound/Makefile ============================================================================== --- head/emulators/mupen64-sound/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64-sound/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64-sound -# Date created: 12.Aug 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PKGNAMESUFFIX= -sound Modified: head/emulators/mupen64/Makefile ============================================================================== --- head/emulators/mupen64/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/mupen64/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: mupen64 -# Date created: 17.Sep 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= mupen64 PORTVERSION= 0.5 Modified: head/emulators/vmw/Makefile ============================================================================== --- head/emulators/vmw/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/emulators/vmw/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: vmw -# Date created: 18 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= vmw PORTVERSION= 060510 Modified: head/finance/expense/Makefile ============================================================================== --- head/finance/expense/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/finance/expense/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: expense -# Date created: 30 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= expense PORTVERSION= 0.1 Modified: head/ftp/gnustep-ftp/Makefile ============================================================================== --- head/ftp/gnustep-ftp/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/ftp/gnustep-ftp/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: ftp -# Date created: 05 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= ftp PORTVERSION= 0.3 Modified: head/ftp/waiho/Makefile ============================================================================== --- head/ftp/waiho/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/ftp/waiho/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: waiho -# Date created: 21 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= waiho PORTVERSION= 0.2 Modified: head/games/fortunate/Makefile ============================================================================== --- head/games/fortunate/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/games/fortunate/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: fortunate -# Date created: 09 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= fortunate PORTVERSION= 3.1 Modified: head/games/gmastermind/Makefile ============================================================================== --- head/games/gmastermind/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/games/gmastermind/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gmastermind -# Date created: 28 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gmastermind PORTVERSION= 0.6 Modified: head/games/gmines/Makefile ============================================================================== --- head/games/gmines/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/games/gmines/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gmines -# Date created: 02 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= gmines PORTVERSION= 0.2 Modified: head/games/gnustep-sudoku/Makefile ============================================================================== --- head/games/gnustep-sudoku/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/games/gnustep-sudoku/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: sudoku -# Date created: 07 aug 2007 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= sudoku PORTVERSION= 0.7 Modified: head/games/grubik/Makefile ============================================================================== --- head/games/grubik/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/games/grubik/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: grubik -# Date created: 17 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= grubik PORTVERSION= 0.1 Modified: head/games/jigsaw/Makefile ============================================================================== --- head/games/jigsaw/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/games/jigsaw/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: gpuzzle -# Date created: 28 Oct 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= jigsaw PORTVERSION= 0.8 Modified: head/games/nextgo/Makefile ============================================================================== --- head/games/nextgo/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/games/nextgo/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: nextgo -# Date created: 05 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= nextgo PORTVERSION= 3.0 Modified: head/german/digibux/Makefile ============================================================================== --- head/german/digibux/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/german/digibux/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: digibux -# Date created: 16 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= digibux PORTVERSION= 1.0.4 Modified: head/german/dtaus/Makefile ============================================================================== --- head/german/dtaus/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/german/dtaus/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: dtaus -# Date created: 12 Jan 2009 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= dtaus PORTVERSION= 0.9 Modified: head/german/unix-connect/Makefile ============================================================================== --- head/german/unix-connect/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/german/unix-connect/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: unix-connect -# Date created: 01.May 1999 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= unix-connect PORTVERSION= 0.95 Modified: head/german/webalizer2/Makefile ============================================================================== --- head/german/webalizer2/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/german/webalizer2/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,7 +1,3 @@ -# New ports collection makefile for: webalizer2 -# Date created: 02.Jun 1998 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ CATEGORIES= german Modified: head/graphics/camerakit/Makefile ============================================================================== --- head/graphics/camerakit/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/graphics/camerakit/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: camerakit -# Date created: 18 Dec 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= camerakit PORTVERSION= 0.0.1 Modified: head/graphics/fortytwo/Makefile ============================================================================== --- head/graphics/fortytwo/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/graphics/fortytwo/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: fortytwo -# Date created: 28 Nov 2006 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= fortytwo PORTVERSION= 0.2.0 Modified: head/graphics/gnustep-slideshow/Makefile ============================================================================== --- head/graphics/gnustep-slideshow/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/graphics/gnustep-slideshow/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: preview -# Date created: 16 Feb 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= slideshow PORTVERSION= 0.3.5 Modified: head/graphics/gnustep-slideshowkit/Makefile ============================================================================== --- head/graphics/gnustep-slideshowkit/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/graphics/gnustep-slideshowkit/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: preview -# Date created: 16 Feb 2004 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= slideshowkit PORTVERSION= 0.0.1 Modified: head/graphics/imageviewer/Makefile ============================================================================== --- head/graphics/imageviewer/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/graphics/imageviewer/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: imageviewer -# Date created: 15 Mar 2003 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= imageviewer PORTVERSION= 0.6.3 Modified: head/graphics/laternamagica/Makefile ============================================================================== --- head/graphics/laternamagica/Makefile Sat Oct 13 13:06:35 2012 (r305831) +++ head/graphics/laternamagica/Makefile Sat Oct 13 13:39:56 2012 (r305832) @@ -1,9 +1,4 @@ -# New ports collection makefile for: laternamagica -# Date created: 30 Nov 2008 -# Whom: dirk.meyer@dinoex.sub.org -# # $FreeBSD$ -# PORTNAME= laternamagica PORTVERSION= 0.4 *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 14:16:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BE2ED2B; Sat, 13 Oct 2012 14:16:03 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 744728FC18; Sat, 13 Oct 2012 14:16:03 +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 q9DEG3Vw033279; Sat, 13 Oct 2012 14:16:03 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DEG3wi033277; Sat, 13 Oct 2012 14:16:03 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201210131416.q9DEG3wi033277@svn.freebsd.org> From: Renato Botelho Date: Sat, 13 Oct 2012 14:16:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305833 - head/mail/qmail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 14:16:03 -0000 Author: garga Date: Sat Oct 13 14:16:02 2012 New Revision: 305833 URL: http://svn.freebsd.org/changeset/ports/305833 Log: Convert mail/qmail to OptionsNG Feature safe: yes Modified: head/mail/qmail/Makefile Modified: head/mail/qmail/Makefile ============================================================================== --- head/mail/qmail/Makefile Sat Oct 13 13:39:56 2012 (r305832) +++ head/mail/qmail/Makefile Sat Oct 13 14:16:02 2012 (r305833) @@ -28,6 +28,52 @@ USERS+= ${PORTNAME}${usersuffix} .endfor GROUPS= ${PORTNAME} qnofiles +# Options description for qmail and all slave ports +ALTQUEUE_DESC= Run a QMAILQUEUE external queue +AUTOHOMEDIRMAKE_DESC= auto-homedir-make feature +AUTOMAILDIRMAKE_DESC= The auto-maildir-make feature +BIGBROTHER_DESC= Use the control/bigbrother program +BIGTODO_DESC= Bruce Guenter's BigToDo patch +BIG_CONCURRENCY_PATCH_DESC= Use a concurrency greater than 240 +BIG_TODO_PATCH_DESC= Enable big_todo qmail patch +BIND_8_COMPAT_DESC= Needed if compile fails building dns.c +BLOCKEXEC_PATCH_DESC= Block many windows viruses/worms +CLEARTEXTPASSWD_DESC= Use cleartext passwords (Dangerous!) +DASH_EXT_DESC= Dash_ext extended mail addresses add +DATA_COMPRESS_DESC= Smtp on the fly DATA compression +DISCBOUNCES_PATCH_DESC= Discard double-bounces +ENHACELOGS_DESC= Enhace qmail-smtpd logs (spamcontrol-like) +EXTERNAL_TODO_DESC= External high-performance todo processing +EXTTODO_PATCH_DESC= Extern high-perform. todo processing +GRTDELAY_DESC= Add jms1's Greet Delay feature +IGNOREVERISIGN_DESC= Disallow dns wildchar matches on gtlds +LDAP_DEBUG_DESC= Possibility to log and debug imap/pop +LOCALTIME_PATCH_DESC= Emit dates in the local timezone +MAILDIRQUOTA_PATCH_DESC= Maildir++ support +MOREIPME_DESC= Add control files (more|not)ipme +NEWLINE_DESC= Smtpd accept bare line feeds +OUTGOINGIP_PATCH_DESC= Set the IP address to send messages +PAM111421_DESC= Smtpd allow email in case PAM failure +QEXTRA_DESC= Enable QUEUE_EXTRA copy feature +QLDAP_CLUSTER_DESC= Cluster support +QMAILQUEUE_PATCH_DESC= Run a QMAILQUEUE program +QMQP_COMPRESS_DESC= QMQP on the fly compression +QMTPC_PATCH_DESC= Send email using qmtp protocol +QUOTATRASH_DESC= Include the Trash in the quota +RCDLINK_DESC= Create rc.d/qmail.sh symlink +SENDERCHECK4_DESC= LOOSE checks exclusively for RELAY clients +SMTPAUTHUSER_DESC= Create env SMTPAUTHUSER containing authuser +SMTPEXECCHECK_DESC= Smtp DOS/Windows executable detection +SMTPEXTFORK_DESC= Allow qmail-smtpd fork external progs +SMTP_AUTH_PATCH_DESC= Provide SMTP Authentication +SPF_PATCH_DESC= Implement SPF checker +SRS_DESC= Sender Rewriting Scheme support +TARPIT_PATCH_DESC= Implement TARPIT functions +TLS_DESC= SMTP TLS support +TLSREMOTE_DESC= TLS support +TLS_DEBUG_DESC= Enable additional debug information +XF_QUITASAP_DESC= Close SMTP session ASAP (SMTPEXTFORK) + .if defined(SLAVE_LDAP) || \ defined(SLAVE_MYSQL) BARRIER_MAILDIRQUOTA_PATCH= yes @@ -111,92 +157,74 @@ QMAIL_VERSION?= 1.03 SMTP_AUTH_VERSION= 0.31 SMTP_AUTH_DIR= ${WRKDIR}/${PORTNAME}-smtpd-auth-${SMTP_AUTH_VERSION} -OPTIONS+= SMTP_AUTH_PATCH "Provide SMTP Authentication" off +OPTIONS_DEFINE+=SMTP_AUTH_PATCH .endif .if !defined(BARRIER_QMAILQUEUE_PATCH) -OPTIONS+= QMAILQUEUE_PATCH "run a QMAILQUEUE program" off +OPTIONS_DEFINE+=QMAILQUEUE_PATCH .endif .if !defined(BARRIER_BIG_TODO_PATCH) -OPTIONS+= BIG_TODO_PATCH "enable big_todo qmail patch" off +OPTIONS_DEFINE+=BIG_TODO_PATCH .endif .if !defined(BARRIER_BIG_CONCURRENCY_PATCH) -OPTIONS+= BIG_CONCURRENCY_PATCH "use a concurrency greater than 240" off +OPTIONS_DEFINE+=BIG_CONCURRENCY_PATCH .endif .if !defined(BARRIER_OUTGOINGIP_PATCH) -OPTIONS+= OUTGOINGIP_PATCH "set the IP address to send messages" off +OPTIONS_DEFINE+=OUTGOINGIP_PATCH .endif .if !defined(BARRIER_LOCALTIME_PATCH) -OPTIONS+= LOCALTIME_PATCH "emit dates in the local timezone" off +OPTIONS_DEFINE+=LOCALTIME_PATCH .endif .if !defined(BARRIER_QMTPC_PATCH) -OPTIONS+= QMTPC_PATCH "send email using qmtp protocol" off +OPTIONS_DEFINE+=QMTPC_PATCH .endif .if !defined(BARRIER_MAILDIRQUOTA_PATCH) -OPTIONS+= MAILDIRQUOTA_PATCH "Maildir++ support" off +OPTIONS_DEFINE+=MAILDIRQUOTA_PATCH .endif .if !defined(BARRIER_BLOCKEXEC_PATCH) -OPTIONS+= BLOCKEXEC_PATCH "block many windows viruses/worms" off +OPTIONS_DEFINE+=BLOCKEXEC_PATCH .endif .if !defined(BARRIER_DISCBOUNCES_PATCH) -OPTIONS+= DISCBOUNCES_PATCH "discard double-bounces" off +OPTIONS_DEFINE+=DISCBOUNCES_PATCH .endif .if !defined(BARRIER_SPF_PATCH) -OPTIONS+= SPF_PATCH "Implement SPF checker" off +OPTIONS_DEFINE+=SPF_PATCH .endif .if !defined(BARRIER_TARPIT_PATCH) -OPTIONS+= TARPIT_PATCH "Implement TARPIT functions" off +OPTIONS_DEFINE+=TARPIT_PATCH .endif .if !defined(BARRIER_EXTTODO_PATCH) -OPTIONS+= EXTTODO_PATCH "extern high-perform. todo processing" off +OPTIONS_DEFINE+=EXTTODO_PATCH .endif .if defined(SLAVE_TLS) -OPTIONS+= TLS_DEBUG "enable additional debug information" off +OPTIONS_DEFINE+=TLS_DEBUG .elif defined(SLAVE_LDAP) -OPTIONS+= TLS "SMTP TLS support" on \ - ALTQUEUE "run a QMAILQUEUE external queue" off \ - BIGBROTHER "use the control/bigbrother program" off \ - BIGTODO "use big_todo qmail patch" off \ - BIND_8_COMPAT "Needed if compile fails building dns.c" off \ - CLEARTEXTPASSWD "use cleartext passwords (Dangerous!)" off \ - DASH_EXT "dash_ext extended mail addresses add" on \ - DATA_COMPRESS "smtp on the fly DATA compression" on \ - EXTERNAL_TODO "external high-performance todo processing" on \ - IGNOREVERISIGN "disallow dns wildchar matches on gtlds" off \ - QLDAP_CLUSTER "cluster support" on \ - QMQP_COMPRESS "QMQP on the fly compression" on \ - QUOTATRASH "include the Trash in the quota" off \ - SMTPEXECCHECK "smtp DOS/Windows executable detection" on \ - AUTOMAILDIRMAKE "the auto-maildir-make feature" on \ - AUTOHOMEDIRMAKE "auto-homedir-make feature" on \ - LDAP_DEBUG "possibility to log and debug imap/pop" off \ - SMTPEXTFORK "Allow qmail-smtpd fork external progs" off \ - XF_QUITASAP "Close SMTP session ASAP (SMTPEXTFORK)" off \ - SENDERCHECK4 "LOOSE checks exclusively for RELAY clients" off \ - ENHACELOGS "Enhace qmail-smtpd logs (spamcontrol-like)" off \ - GRTDELAY "Add jms1's Greet Delay feature" off \ - SMTPAUTHUSER "create env SMTPAUTHUSER containing authuser" off\ - SRS "Sender Rewriting Scheme support" off - -LDAP_PARAMS= ALTQUEUE BIGBROTHER BIGTODO BIND_8_COMPAT\ - CLEARTEXTPASSWD DASH_EXT DATA_COMPRESS\ - EXTERNAL_TODO IGNOREVERISIGN QLDAP_CLUSTER\ - QMQP_COMPRESS QUOTATRASH SMTPEXECCHECK +OPTIONS_DEFINE+=TLS ALTQUEUE BIGBROTHER BIGTODO BIND_8_COMPAT CLEARTEXTPASSWD \ + DASH_EXT DATA_COMPRESS EXTERNAL_TODO IGNOREVERISIGN \ + QLDAP_CLUSTER QMQP_COMPRESS QUOTATRASH SMTPEXECCHECK \ + AUTOMAILDIRMAKE AUTOHOMEDIRMAKE LDAP_DEBUG SMTPEXTFORK \ + XF_QUITASAP SENDERCHECK4 ENHACELOGS GRTDELAY SMTPAUTHUSER SRS + +OPTIONS_DEFAULT+= TLS DASH_EXT DATA_COMPRESS EXTERNAL_TODO QLDAP_CLUSTER \ + QLDAP_CLUSTER QMQP_COMPRESS SMTPEXECCHECK \ + AUTOMAILDIRMAKE AUTOHOMEDIRMAKE + +LDAP_PARAMS= ALTQUEUE BIGBROTHER BIGTODO BIND_8_COMPAT CLEARTEXTPASSWD \ + DASH_EXT DATA_COMPRESS EXTERNAL_TODO IGNOREVERISIGN \ + QLDAP_CLUSTER QMQP_COMPRESS QUOTATRASH SMTPEXECCHECK .elif defined(SLAVE_SPAMCONTROL) -OPTIONS+= TLSREMOTE "TLS support" on \ - MOREIPME "Add control files (more|not)ipme" off \ - BIGTODO "Bruce Guenter's BigToDo patch" off \ - NEWLINE "smtpd accept bare line feeds" off \ - PAM111421 "smtpd allow email in case PAM failure" on \ - SMTPEXTFORK "Allow qmail-smtpd fork external progs" off \ - XF_QUITASAP "Close SMTP session ASAP (SMTPEXTFORK)" off +OPTIONS_DEFINE+=TLSREMOTE MOREIPME BIGTODO NEWLINE PAM111421 SMTPEXTFORK \ + XF_QUITASAP + +OPTIONS_DEFAULT+= TLSREMOTE PAM111421 .endif -OPTIONS+= QEXTRA "enable QUEUE_EXTRA copy feature" off +OPTIONS_DEFINE+=QEXTRA .if !defined(SLAVE_LDAP) -OPTIONS+= RCDLINK "create rc.d/qmail.sh symlink" on +OPTIONS_DEFINE+=RCDLINK +OPTIONS_DEFAULT+= RCDLINK .endif ALL_TARGET+= default dot-qmail.5 qmail-control.5 qmail-getpw.8 \ @@ -221,7 +249,8 @@ PKGMESSAGE_SUFFIX= mysql .endif .if defined(SLAVE_SPAMCONTROL) -EXTRA_MAN8= qmail-badloadertypes.8 qmail-badmimetypes.8 qmail-mfrules.8 qmail-recipients.8 +EXTRA_MAN8= qmail-badloadertypes.8 qmail-badmimetypes.8 qmail-mfrules.8 \ + qmail-recipients.8 ALL_TARGET+= ${EXTRA_MAN8} MAN8+= ${EXTRA_MAN8} USE_PERL5_BUILD= yes @@ -323,32 +352,32 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- .if defined(SLAVE_TLS) CFLAGS+= -I${OPENSSLBASE}/include -L${OPENSSLBASE}/lib -DTLS -. if defined(WITH_TLS_DEBUG) +. if ${PORT_OPTIONS:MTLS_DEBUG} CFLAGS+= -DDEBUG . endif .endif .if defined(SLAVE_LDAP) -. if defined(WITH_TLS) +. if ${PORT_OPTIONS:MTLS} # we can't use USE_OPENSSL=yes after including bsd.port.pre.mk .include "${PORTSDIR}/Mk/bsd.openssl.mk" . endif . for param in ${LDAP_PARAMS} -. if defined(WITH_${param}) && !defined(WITHOUT_${param}) +. if ${PORT_OPTIONS:M${param}} LDAPFLAGS+= -D${param} . endif . endfor -. if defined(WITH_EXTERNAL_TODO) +. if ${PORT_OPTIONS:MEXTERNAL_TODO} PLIST_SUB+= EXTERNAL_TODO="" . else PLIST_SUB+= EXTERNAL_TODO="@comment " . endif -. if defined(WITH_SRS) -BUILD_DEPENDS= srs:${PORTSDIR}/mail/libsrs2 +. if ${PORT_OPTIONS:MSRS} +BUILD_DEPENDS= srs:${PORTSDIR}/mail/libsrs2 MASTER_SITES+= http://qmail-ldap-smtpauthuser.googlecode.com/svn/trunk/:srs_ldap SRS_LDAP_PATCH = qmail-ldap-1.03-20060201-SRS.patch DISTFILES+= ${SRS_LDAP_PATCH}:srs_ldap @@ -356,7 +385,7 @@ DISTFILES+= ${SRS_LDAP_PATCH}:srs_ldap .endif -.if defined(WITH_SMTP_AUTH_PATCH) && !defined(BARRIER_SMTP_AUTH_PATCH) +.if ${PORT_OPTIONS:MSMTP_AUTH_PATCH} && !defined(BARRIER_SMTP_AUTH_PATCH) MASTER_SITES+= http://tomclegg.net/qmail/:smtp_auth \ ${MASTER_SITE_LOCAL:S/$/:smtp_auth/} MASTER_SITE_SUBDIR+= garga/qmail/:smtp_auth @@ -366,7 +395,7 @@ MASTER_SITES+= http://tomclegg.net/qmail DISTFILES+= qmail-smtpd-auth-close3.patch:close3 . if defined(SLAVE_TLS) AUTH_PATCH= auth.patch.diff-tls -. elif defined(WITH_SPF_PATCH) && !defined(BARRIER_SPF_PATCH) +. elif ${PORT_OPTIONS:MSPF_PATCH} && !defined(BARRIER_SPF_PATCH) AUTH_PATCH= auth.patch.diff . endif @@ -375,30 +404,30 @@ DISTFILES+= ${AUTH_PATCH}:smtp_auth . endif .endif -.if defined(WITH_MAILDIRQUOTA_PATCH) && !defined(BARRIER_MAILDIRQUOTA_PATCH) +.if ${PORT_OPTIONS:MMAILDIRQUOTA_PATCH} && !defined(BARRIER_MAILDIRQUOTA_PATCH) PATCH_SITES+= http://www.alexdupre.com/qmail/:quota PATCHFILES+= qmail-maildir++.patch:quota EXTRA_PATCHES+= ${FILESDIR}/extra-patch-maildir++ .endif -.if defined(WITH_BLOCKEXEC_PATCH) && !defined(BARRIER_BLOCKEXEC_PATCH) +.if ${PORT_OPTIONS:MBLOCKEXEC_PATCH} && !defined(BARRIER_BLOCKEXEC_PATCH) PATCH_SITES+= http://www.alexdupre.com/qmail/:blockexec PATCHFILES+= qmail-block-executables.patch:blockexec .endif -.if defined(WITH_DISCBOUNCES_PATCH) && !defined(BARRIER_DISCBOUNCES_PATCH) +.if ${PORT_OPTIONS:MDISCBOUNCES_PATCH} && !defined(BARRIER_DISCBOUNCES_PATCH) PATCH_SITES+= http://www.alexdupre.com/qmail/:doublebounce PATCHFILES+= qmail-discard-double-bounces.patch:doublebounce .endif -.if defined(WITH_SPF_PATCH) && !defined(BARRIER_SPF_PATCH) +.if ${PORT_OPTIONS:MSPF_PATCH} && !defined(BARRIER_SPF_PATCH) . if defined(SLAVE_TLS) || defined(SLAVE_SPAMCONTROL) . if defined(SLAVE_SPAMCONTROL) SPF_SPAMCONTROL_PATCH= qmail-spf-rc5.patch-spamcontrol-26 MASTER_SITES+= ${MASTER_SITE_LOCAL:S/$/:spf_spamcontrol/} MASTER_SITE_SUBDIR+= garga/qmail/:spf_spamcontrol DISTFILES+= ${SPF_SPAMCONTROL_PATCH}:spf_spamcontrol -. elif defined(WITH_SMTP_AUTH_PATCH) +. elif ${PORT_OPTIONS:MSMTP_AUTH_PATCH} SPF_TLS_PATCH= qmail-spf-rc5.patch-auth-tls MASTER_SITES+= http://manuel.mausz.at/programming/patches/qmail/:spf_tls DISTFILES+= ${SPF_TLS_PATCH}:spf_tls @@ -413,19 +442,19 @@ PATCHFILES+= qmail-spf-rc5.patch:spf . endif .endif -.if defined(WITH_EXTTODO_PATCH) && !defined(BARRIER_EXTTODO_PATCH) +.if ${PORT_OPTIONS:MEXTTODO_PATCH} && !defined(BARRIER_EXTTODO_PATCH) PLIST_SUB+= EXTTODO="" DOCFILES_WRKSRC+= EXTTODO -. if (defined(WITH_BIG_TODO_PATCH) && !defined(BARRIER_BIG_TODO_PATCH)) || \ - (defined(SLAVE_SPAMCONTROL) && defined(WITH_BIGTODO)) +. if (${PORT_OPTIONS:MBIG_TODO_PATCH} && !defined(BARRIER_BIG_TODO_PATCH)) || \ + (defined(SLAVE_SPAMCONTROL) && ${PORT_OPTIONS:MBIGTODO}) MASTER_SITES+= ${MASTER_SITE_LOCAL:S/$/:ext_big_todo/} MASTER_SITE_SUBDIR+= garga/qmail/:ext_big_todo EXT_BIG_TODO_PATCH= ext_todo-20030105+big-todo.103.patch DISTFILES+= ${EXT_BIG_TODO_PATCH}:ext_big_todo . endif -. if defined(WITH_SPF_PATCH) && !defined(BARRIER_SPF_PATCH) +. if ${PORT_OPTIONS:MSPF_PATCH} && !defined(BARRIER_SPF_PATCH) . if defined(SLAVE_TLS) || defined(SLAVE_SPAMCONTROL) MASTER_SITES+= ${MASTER_SITE_LOCAL:S/$/:exttodo/} MASTER_SITE_SUBDIR+= garga/qmail/:exttodo @@ -449,43 +478,45 @@ PLIST_SUB+= EXTTODO="@comment " .endif .if !defined(BARRIER_DNS_PATCH) \ - ||(defined(WITH_QMAILQUEUE_PATCH) && !defined(BARRIER_QMAILQUEUE_PATCH)) \ - ||(defined(WITH_BIG_TODO_PATCH) && !defined(BARRIER_BIG_TODO_PATCH)) \ - ||(defined(WITH_BIG_CONCURRENCY_PATCH)&& !defined(BARRIER_BIG_CONCURRENCY_PATCH)) \ - ||(defined(WITH_OUTGOINGIP_PATCH) && !defined(BARRIER_OUTGOINGIP_PATCH)) \ - ||(defined(WITH_QMTPC_PATCH) && !defined(BARRIER_QMTPC_PATCH)) + || (${PORT_OPTIONS:MQMAILQUEUE_PATCH} && !defined(BARRIER_QMAILQUEUE_PATCH)) \ + || (${PORT_OPTIONS:MBIG_TODO_PATCH} && !defined(BARRIER_BIG_TODO_PATCH)) \ + || (${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} && !defined(BARRIER_BIG_CONCURRENCY_PATCH)) \ + || (${PORT_OPTIONS:MOUTGOINGIP_PATCH} && !defined(BARRIER_OUTGOINGIP_PATCH)) \ + || (${PORT_OPTIONS:MQMTPC_PATCH} && !defined(BARRIER_QMTPC_PATCH)) PATCH_SITES+= ${MASTER_SITE_QMAIL} .endif -.if defined(WITH_QMAILQUEUE_PATCH) && !defined(BARRIER_QMAILQUEUE_PATCH) +.if ${PORT_OPTIONS:MQMAILQUEUE_PATCH} && !defined(BARRIER_QMAILQUEUE_PATCH) PATCHFILES+= qmailqueue-patch .endif -.if defined(WITH_BIG_TODO_PATCH) && !defined(BARRIER_BIG_TODO_PATCH) +.if ${PORT_OPTIONS:MBIG_TODO_PATCH} && !defined(BARRIER_BIG_TODO_PATCH) PATCHFILES+= big-todo.103.patch .endif -.if defined(WITH_BIG_CONCURRENCY_PATCH) && !defined(BARRIER_BIG_CONCURRENCY_PATCH) +.if ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} && + !defined(BARRIER_BIG_CONCURRENCY_PATCH) PATCHFILES+= big-concurrency.patch .endif -.if defined(WITH_OUTGOINGIP_PATCH) && !defined(BARRIER_OUTGOINGIP_PATCH) && \ - defined(WITH_QMTPC_PATCH) && !defined(BARRIER_QMTPC_PATCH) +.if ${PORT_OPTIONS:MOUTGOINGIP_PATCH} && !defined(BARRIER_OUTGOINGIP_PATCH) && \ + ${PORT_OPTIONS:MQMTPC_PATCH} && !defined(BARRIER_QMTPC_PATCH) PATCHFILES+= qmail-1.03-qmtpc_outgoingip_20090630.patch:qmtpc_outgoingip -.elif defined(WITH_OUTGOINGIP_PATCH) && !defined(BARRIER_OUTGOINGIP_PATCH) +.elif ${PORT_OPTIONS:MOUTGOINGIP_PATCH} && !defined(BARRIER_OUTGOINGIP_PATCH) PATCHFILES+= outgoingip.patch -.elif defined(WITH_QMTPC_PATCH) && !defined(BARRIER_QMTPC_PATCH) +.elif ${PORT_OPTIONS:MQMTPC_PATCH} && !defined(BARRIER_QMTPC_PATCH) PATCHFILES+= qmail-1.03-qmtpc.patch .endif -.if defined(WITH_LOCALTIME_PATCH) && !defined(BARRIER_LOCALTIME_PATCH) +.if ${PORT_OPTIONS:MLOCALTIME_PATCH} && !defined(BARRIER_LOCALTIME_PATCH) PATCH_SITES+= http://www.alib.jp/files/:localtime PATCHFILES+= qmail-date-localtime.patch:localtime .endif -.if defined(WITH_TARPIT_PATCH) && !defined(BARRIER_TARPIT_PATCH) +.if ${PORT_OPTIONS:MTARPIT_PATCH} && !defined(BARRIER_TARPIT_PATCH) PATCH_SITES+= http://www.palomine.net/qmail/:tarpit PATCHFILES+= tarpit.patch:tarpit .endif -.if defined(WITH_SMTPEXTFORK) && ( defined(SLAVE_SPAMCONTROL) || defined(SLAVE_LDAP) ) +.if ${PORT_OPTIONS:MSMTPEXTFORK} && + ( defined(SLAVE_SPAMCONTROL) || defined(SLAVE_LDAP) ) . if defined(SLAVE_SPAMCONTROL) SMTPEXTFORK_PATCH= smtpextfork-spamcontrol-2519.patch . else @@ -499,14 +530,14 @@ DISTFILES+= ${SMTPEXTFORK_PATCH:S/$/:ext README.smtpextfork:extfork .endif -.if defined(SLAVE_LDAP) && defined(WITH_SENDERCHECK4) +.if defined(SLAVE_LDAP) && ${PORT_OPTIONS:MSENDERCHECK4} PATCH_SITES+= http://www6.freebsdbrasil.com.br/~eksffa/l/dev/qmail/:sendercheck4 \ ${MASTER_SITE_LOCAL:S/$/:sendercheck4/} PATCH_SITE_SUBDIR+= garga/qmail/:sendercheck4 PATCHFILES+= qmail-ldap-1.03_qmail-smtpd_SENDERCHECK4.patch:sendercheck4 .endif -.if defined(SLAVE_LDAP) && defined(WITH_GRTDELAY) +.if defined(SLAVE_LDAP) && ${PORT_OPTIONS:MGRTDELAY} PATCH_SITES+= http://www6.freebsdbrasil.com.br/~eksffa/l/dev/qmail/:grtdelay \ ${MASTER_SITE_LOCAL:S/$/:grtdelay/} PATCH_SITE_SUBDIR+= garga/qmail/:grtdelay @@ -514,20 +545,20 @@ PATCHFILES+= qmail-ldap-${LDAP_PATCH_DAT DOCFILES_WRKSRC+= README.GREETDELAY .endif -.if defined(SLAVE_LDAP) && defined(WITH_ENHACELOGS) +.if defined(SLAVE_LDAP) && ${PORT_OPTIONS:MENHACELOGS} PATCH_SITES+= http://www6.freebsdbrasil.com.br/~eksffa/l/dev/qmail/:ldapenhacelog \ ${MASTER_SITE_LOCAL:S/$/:ldapenhacelog/} PATCH_SITE_SUBDIR+= garga/qmail/:ldapenhacelog PATCHFILES+= enhacelogging-ldap-${LDAP_PATCH_DATE}_4.patch:ldapenhacelog .endif -.if defined(SLAVE_LDAP) && defined(WITH_SMTPAUTHUSER) +.if defined(SLAVE_LDAP) && ${PORT_OPTIONS:MSMTPAUTHUSER} PATCH_SITES+= http://qmail-ldap-smtpauthuser.googlecode.com/svn/trunk/:smtpauthuser \ ${MASTER_SITE_LOCAL:S/$/:smtpauthuser/} -PATCH_SITE_SUBDIR+= garga/qmail/:smtpauthuser -. if defined(WITH_ENHACELOGS) +PATCH_SITE_SUBDIR+= garga/qmail/:smtpauthuser +. if ${PORT_OPTIONS:MENHACELOGS} PATCHFILES+= qmail-1.03-enhaceloggingSMTPAUTHUSER:smtpauthuser -. else +. else PATCHFILES+= SMTPAUTHUSER.patch:smtpauthuser . endif .endif @@ -547,11 +578,12 @@ UCSPISRC= ${WRKDIR}/host/superscript.com .endif # Some default values, these can be modified by make command line -.if defined(WITH_BIG_CONCURRENCY_PATCH) && !defined(BARRIER_BIG_CONCURRENCY_PATCH) +.if ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} && + !defined(BARRIER_BIG_CONCURRENCY_PATCH) WITH_BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT?= 509 .endif -.if defined(WITH_RCDLINK) && !defined(SLAVE_LDAP) +.if ${PORT_OPTIONS:MRCDLINK} && !defined(SLAVE_LDAP) PLIST_SUB+= RCDLINK="" RCDLINK= .else @@ -562,31 +594,31 @@ RCDLINK= \# # Fill SELECTED_OPTIONS with options to write conf-spamcontrol .if defined(SLAVE_SPAMCONTROL) -. if defined(WITH_TLSREMOTE) +. if ${PORT_OPTIONS:MTLSREMOTE} SELECTED_OPTIONS+= tlsremote=yes . else SELECTED_OPTIONS+= tlsremote=no . endif -. if defined(WITH_MOREIPME) +. if ${PORT_OPTIONS:MMOREIPME} SELECTED_OPTIONS+= moreipme=yes . else SELECTED_OPTIONS+= moreipme=no . endif -. if defined(WITH_BIGTODO) +. if ${PORT_OPTIONS:MBIGTODO} SELECTED_OPTIONS+= bigtodo=yes . else SELECTED_OPTIONS+= bigtodo=no . endif -. if defined(WITH_NEWLINE) +. if ${PORT_OPTIONS:MNEWLINE} SELECTED_OPTIONS+= newline=yes . else SELECTED_OPTIONS+= newline=no . endif -. if defined(WITH_PAM111421) +. if ${PORT_OPTIONS:MPAM111421} SELECTED_OPTIONS+= pam111421=yes . else SELECTED_OPTIONS+= pam111421=no @@ -625,22 +657,22 @@ post-extract: .endif post-patch: -.if defined(WITH_SMTP_AUTH_PATCH) && !defined(BARRIER_SMTP_AUTH_PATCH) +.if ${PORT_OPTIONS:MSMTP_AUTH_PATCH} && !defined(BARRIER_SMTP_AUTH_PATCH) @${CP} ${SMTP_AUTH_DIR}/base64.[ch] ${WRKSRC} . if defined(AUTH_PATCH) @${PATCH} -d ${SMTP_AUTH_DIR} < ${DISTDIR}/${DIST_SUBDIR}/${AUTH_PATCH} . endif @${PATCH} -d ${WRKSRC} < ${SMTP_AUTH_DIR}/auth.patch -. if defined(SLAVE_TLS) && defined(WITH_SPF_PATCH) && defined(SPF_TLS_PATCH) +. if defined(SLAVE_TLS) && ${PORT_OPTIONS:MSPF_PATCH} && defined(SPF_TLS_PATCH) @${PATCH} -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${SPF_TLS_PATCH} -. if defined(WITH_EXTTODO_PATCH) && defined(EXTTODO_PATCH) +. if ${PORT_OPTIONS:MEXTTODO_PATCH} && defined(EXTTODO_PATCH) @${PATCH} -p1 -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${EXTTODO_PATCH} . endif . endif @${PATCH} -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/qmail-smtpd-auth-close3.patch -.elif defined(SLAVE_TLS) && defined(WITH_SPF_PATCH) && defined(SPF_TLS_PATCH) +.elif defined(SLAVE_TLS) && ${PORT_OPTIONS:MSPF_PATCH} && defined(SPF_TLS_PATCH) @${PATCH} -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${SPF_TLS_PATCH} -. if defined(WITH_EXTTODO_PATCH) && defined(EXTTODO_PATCH) +. if ${PORT_OPTIONS:MEXTTODO_PATCH} && defined(EXTTODO_PATCH) @${PATCH} -p1 -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${EXTTODO_PATCH} . endif .endif @@ -654,7 +686,7 @@ post-patch: . for option in ${SELECTED_OPTIONS} @${ECHO_CMD} ${option} >> ${WRKSRC}/conf-spamcontrol . endfor - @cd ${UCSPISRC}/src && patch -p0 < ${DISTDIR}/${DIST_SUBDIR}/ucspi-ssl-0.70_ucspitls-0.6.patch_ + @cd ${UCSPISRC}/src && ${PATCH} -p0 < ${DISTDIR}/${DIST_SUBDIR}/ucspi-ssl-0.70_ucspitls-0.6.patch_ @${ECHO_CMD} "${UCSPISRC}/compile" > ${WRKSRC}/conf-ucspissl ${ECHO_CMD} "${CC} ${CFLAGS}" > ${UCSPISRC}/src/conf-cc ${ECHO_CMD} "${PREFIX}" > ${UCSPISRC}/src/conf-home @@ -666,15 +698,15 @@ post-patch: @cd ${WRKSRC} && ./install_spamcontrol.sh @${PATCH} -d ${WRKSRC} < ${FILESDIR}/extra-patch-spamcontrol-qmail-smtpd.c @${PATCH} -d ${WRKSRC} < ${FILESDIR}/extra-patch-spamcontrol-qmail-remote.c -. if defined(WITH_SPF_PATCH) && defined(SPF_SPAMCONTROL_PATCH) +. if ${PORT_OPTIONS:MSPF_PATCH} && defined(SPF_SPAMCONTROL_PATCH) @${PATCH} -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${SPF_SPAMCONTROL_PATCH} -. if defined(WITH_EXTTODO_PATCH) && defined(EXTTODO_PATCH) +. if ${PORT_OPTIONS:MEXTTODO_PATCH} && defined(EXTTODO_PATCH) @${PATCH} -p1 -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${EXTTODO_PATCH} . endif . endif -. if defined(WITH_SMTPEXTFORK) +. if ${PORT_OPTIONS:MSMTPEXTFORK} @${PATCH} -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${SMTPEXTFORK_PATCH} -. if defined(WITH_XF_QUITASAP) +. if ${PORT_OPTIONS:MXF_QUITASAP} @${REINPLACE_CMD} 's!//#define XF_QUITASAP!#define XF_QUITASAP!g' \ ${WRKSRC}/qmail-smtpd.c . endif @@ -694,38 +726,38 @@ post-patch: ${WRKSRC}/Makefile @${REINPLACE_CMD} "s|^#SHADOWLIBS=-lcrypt$$|SHADOWLIBS=-lcrypt|" \ ${WRKSRC}/Makefile -. if defined(WITH_SMTPEXTFORK) +. if ${PORT_OPTIONS:MSMTPEXTFORK} @${PATCH} -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${SMTPEXTFORK_PATCH} -. if defined(WITH_XF_QUITASAP) +. if ${PORT_OPTIONS:MXF_QUITASAP} @${REINPLACE_CMD} 's!//#define XF_QUITASAP!#define XF_QUITASAP!g' \ ${WRKSRC}/qmail-smtpd.c . endif . endif -. if defined(WITH_TLS) +. if ${PORT_OPTIONS:MTLS} @${REINPLACE_CMD} "s|^#TLS=|TLS=|; \ s|^#TLSINCLUDES=-I/usr/local/include|TLSINCLUDES=-I${OPENSSLBASE}/include|; \ s|^#TLSLIBS=-L/usr/local/lib|TLSLIBS=-L${OPENSSLBASE}/lib|; \ s|^#OPENSSLBIN=/usr/local/bin/openssl|OPENSSLBIN=${OPENSSLBASE}/bin/openssl|" \ ${WRKSRC}/Makefile . endif -. if defined(WITH_DATA_COMPRESS) || defined(WITH_QMQP_COMPRESS) +. if ${PORT_OPTIONS:MDATA_COMPRESS} || ${PORT_OPTIONS:MQMQP_COMPRESS} @${REINPLACE_CMD} "s|^#ZLIB=-lz$$|ZLIB=-lz|" \ ${WRKSRC}/Makefile . endif -. if defined(WITH_AUTOMAILDIRMAKE) +. if ${PORT_OPTIONS:MAUTOMAILDIRMAKE} @${REINPLACE_CMD} "s|^#MDIRMAKE=|MDIRMAKE=|" ${WRKSRC}/Makefile . endif -. if defined(WITH_AUTOHOMEDIRMAKE) +. if ${PORT_OPTIONS:MAUTOHOMEDIRMAKE} @${REINPLACE_CMD} "s|^#HDIRMAKE=|HDIRMAKE=|" ${WRKSRC}/Makefile . endif -. if defined(WITH_LDAP_DEBUG) +. if ${PORT_OPTIONS:MLDAP_DEBUG} @${REINPLACE_CMD} "s|^#DEBUG=|DEBUG=|" ${WRKSRC}/Makefile . endif . if defined(LDAPFLAGS) @${REINPLACE_CMD} "s|^#LDAPFLAGS=.*$$|LDAPFLAGS=${LDAPFLAGS}|" \ ${WRKSRC}/Makefile . endif -. if defined(WITH_SRS) +. if ${PORT_OPTIONS:MSRS} @${PATCH} -d ${WRKSRC} < ${DISTDIR}/${DIST_SUBDIR}/${SRS_LDAP_PATCH} . endif .endif @@ -740,7 +772,7 @@ post-patch: @${REINPLACE_CMD} '/"man"/d; /man\/man/d; /man\/cat/d; \ /"doc"/d; /"boot","/d' \ ${WRKSRC}/hier.c -.if defined(WITH_QEXTRA) +.if ${PORT_OPTIONS:MQEXTRA} @${REINPLACE_CMD} 's!QUEUE_EXTRA ""!QUEUE_EXTRA "Tlog\\0"!g; \ s!QUEUE_EXTRALEN 0!QUEUE_EXTRALEN 5!g' \ ${WRKSRC}/extra.h @@ -755,9 +787,9 @@ do-configure: @${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc @${ECHO_CMD} "${CC} ${STRIP} ${LDFLAGS}" > ${WRKSRC}/conf-ld @${ECHO_CMD} ${PREFIX} > ${WRKSRC}/conf-qmail -.if defined(WITH_BIG_CONCURRENCY_PATCH) \ +.if ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} \ && !defined(BARRIER_BIG_CONCURRENCY_PATCH) \ - && defined(WITH_BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT) + && ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT} @if [ ${WITH_BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT} -gt 0 ]; then \ ${ECHO_CMD} "${WITH_BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT}" \ > ${WRKSRC}/conf-spawn ; \ @@ -799,7 +831,7 @@ do-install: ${INSTALL_DATA} ${${sub}}/${doc} ${DOCSDIR} . endfor . endfor -. if defined(WITH_SMTPEXTFORK) && ( defined(SLAVE_SPAMCONTROL) || defined(SLAVE_LDAP) ) +. if ${PORT_OPTIONS:MSMTPEXTFORK} && ( defined(SLAVE_SPAMCONTROL) || defined(SLAVE_LDAP) ) ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/README.smtpextfork ${DOCSDIR} . endif . if defined(PACKAGE_BUILDING) From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 14:52:48 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E42AE5C8; Sat, 13 Oct 2012 14:52:48 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CD4F18FC14; Sat, 13 Oct 2012 14:52: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 q9DEqmhi039774; Sat, 13 Oct 2012 14:52:48 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DEqmi5039772; Sat, 13 Oct 2012 14:52:48 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201210131452.q9DEqmi5039772@svn.freebsd.org> From: Wen Heping Date: Sat, 13 Oct 2012 14:52:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305834 - head/www/mediawiki X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 14:52:49 -0000 Author: wen Date: Sat Oct 13 14:52:48 2012 New Revision: 305834 URL: http://svn.freebsd.org/changeset/ports/305834 Log: - Add missing option PR: 172659 Submitted by: Spil Feature safe: yes Modified: head/www/mediawiki/Makefile Modified: head/www/mediawiki/Makefile ============================================================================== --- head/www/mediawiki/Makefile Sat Oct 13 14:16:02 2012 (r305833) +++ head/www/mediawiki/Makefile Sat Oct 13 14:52:48 2012 (r305834) @@ -3,6 +3,7 @@ PORTNAME= mediawiki PORTVERSION= 1.19.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://dumps.wikimedia.org/mediawiki/${PORTVERSION:R}/ @@ -21,12 +22,13 @@ MEDIAWIKIDIR?= www/mediawiki NO_BUILD= yes -OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL IMAGICK +OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL XCACHE IMAGICK OPTIONS_DEFAULT=MYSQL APC MEMCACHED_DESC= use memcached APC_DESC= use pecl-APC(Mediawiki recommended) EACCEL_DESC= use eAccelerator (instead of pecl-APC) +XCACHE_DESC= use xCache (instead of pecl-APC) IMAGICK_DESC= use ImageMagick .include @@ -56,14 +58,12 @@ RUN_DEPENDS= memcached:${PORTSDIR}/datab RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick .endif -.if ${PORT_OPTIONS:MAPC} || ${PORTS_OPTIONS:MEACCEL} || ${PORTS_OPTIONS:MXCACHE} -.if ${PORT_OPTIONS:MEACCEL} +.if ${PORT_OPTIONS:MAPC} +RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC +.elif ${PORT_OPTIONS:MEACCEL} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator .elif ${PORT_OPTIONS:MXCACHE} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache -.else -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC -.endif .endif do-install: From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 15:06:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA75FAA0; Sat, 13 Oct 2012 15:06:42 +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 BF70B8FC08; Sat, 13 Oct 2012 15:06:41 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so1845077bkc.13 for ; Sat, 13 Oct 2012 08:06:40 -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=2nzYJPMZKs8/VAHEtrkjIhtFE1OeBUNV7SxhI4SinkY=; b=vZfPiFi8LYLqa/YUnlBkx8KMMOXNVZrOH12QSU2y/+vThebFoaUgGa2kMA5/D7csfD xmJZK7DmJMGhdH9sgwJOGWCk03BaQOmWhtyjJlzA2vJETgKyZXAeNblEyKlGw1pTq2eN B5os3wMtGgPckO3ugjoN++Ip1HsxIbrAvIdt0LyBKZ3i45oQRdrliz4DpEnhWz9kTtvf GyxMTvEhx5MGMg38MEq8tVJduyWmj5kesfbVAJ6bqnkZSQ+IdzDHz+JxH8CiZ7Jv+AG1 6SmyEZIwA/nt/Mg+2K6jxHITpVypBHtfGKRf28+R2D3PldVWTqulCwplwWYuWsasMROS cwtQ== Received: by 10.204.150.213 with SMTP id z21mr2091143bkv.45.1350140800473; Sat, 13 Oct 2012 08:06:40 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Sat, 13 Oct 2012 08:06:10 -0700 (PDT) In-Reply-To: <201210121401.q9CE14XR015761@svn.freebsd.org> References: <201210121401.q9CE14XR015761@svn.freebsd.org> From: Chris Rees Date: Sat, 13 Oct 2012 16:06:10 +0100 X-Google-Sender-Auth: aD8T35f-L42lrISkkmO9JL_270c Message-ID: Subject: Re: svn commit: r305780 - in head/net: haproxy-devel/files haproxy/files To: Dmitry Sivachenko 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 15:06:42 -0000 On 12 October 2012 15:01, Dmitry Sivachenko wrote: > Author: demon > Date: Fri Oct 12 14:01:04 2012 > New Revision: 305780 > URL: http://svn.freebsd.org/changeset/ports/305780 > > Log: > Use 'configtest' command to test config file to be consistent with apache, > nagios and others. Do not invent yet another wheel. Looks great. The patch at [1] sorts a few niggles out, mostly style. Please take a look. Chris [1] http://www.bayofrum.net/~crees/patches/haproxy-rc-script.diff From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 15:12:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F380BF0; Sat, 13 Oct 2012 15:12:54 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id C8B8D8FC08; Sat, 13 Oct 2012 15:12:53 +0000 (UTC) Received: from aruba-ctlr2-nat.its.manchester.ac.uk [130.88.99.218:53592] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id q9DFCqs6074974 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sat, 13 Oct 2012 19:12:53 +0400 (MSK) From: Max Brazhnikov To: Pawel Pekala Subject: Re: svn commit: r305793 - in head/emulators: . swine Date: Sat, 13 Oct 2012 15:13:04 +0000 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.9.1; amd64; ; ) References: <201210122156.q9CLuA9X082810@svn.freebsd.org> In-Reply-To: <201210122156.q9CLuA9X082810@svn.freebsd.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201210131513.04741.makc@freebsd.org> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 15:12:54 -0000 Hi Pawel, On Fri, 12 Oct 2012 21:56:10 +0000 (UTC)Fri Oct 12 21:56:09 2012, Pawel Pekala wrote: > Added: head/emulators/swine/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/swine/Makefile Fri Oct 12 21:56:09 2012 (r305793) > @@ -0,0 +1,83 @@ > +# Created by: nemysis@gmx.ch > +# $FreeBSD$ > + > +PORTNAME= swine > +PORTVERSION= 1.0.2 > +CATEGORIES= emulators deskutils python > +MASTER_SITES= GH > + > +MAINTAINER= nemysis@gmx.ch > +COMMENT= QT4 Graphical Wine frontend > + > +LICENSE= GPLv2 > + > +BUILD_DEPENDS= pyrcc4:${PORTSDIR}/textproc/py-qt4-xml > +RUN_DEPENDS= wine:${PORTSDIR}/emulators/wine-devel \ > + xterm:${PORTSDIR}/x11/xterm \ > + cabextract:${PORTSDIR}/archivers/cabextract \ > + icotool:${PORTSDIR}/graphics/icoutils \ > + ${PYTHON_PKGNAMEPREFIX}qt4-core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core \ > + ${PYTHON_PKGNAMEPREFIX}qt4-gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui py-qt4-gui depends on py-qt4-core, the latter can be omitted from RUN_DEPENDS. Besides, ports shouldn't request py-qt4 packages newer or equal ${PYQT4_VERSION}, either check for minimum required version, or use usual dependency specification, e.g. ${PYTHON_SITELIBDIR}/PyQt4/QtGui.so:${PORTSDIR}/x11-toolkits/py-qt4-gui > +DATADIRLIB= ${PREFIX}/lib/${PORTNAME} > + > +USE_GITHUB= yes > +GH_ACCOUNT= dswd > +GH_PROJECT= Swine > +GH_TAGNAME= master > +GH_COMMIT= d14b9f0 > + > +USE_PYTHON= yes > +USE_GMAKE= yes > +USE_QT4= linguist_build > + > +PORTDOCS= README > + > +.include "../../devel/py-sip/files/bsd.pyqt.mk" You don't need to include this file, once you fix RUN_DEPENDS. > +pre-build: > +.if !exists(${LOCALBASE}/bin/wine) && ${ARCH} != "i386" > + @${ECHO_MSG} > + @${ECHO_MSG} "Depends on Wine Port which is only available for i386" > + @${ECHO_MSG} > + @${ECHO_MSG} " http://wiki.freebsd.org/Wine" > + @${ECHO_MSG} > + @${ECHO_MSG} "FreeBSD/amd64 works with Wine 32bit binary from" > + @${ECHO_MSG} > + @${ECHO_MSG} " http://www.mediafire.com/wine_fbsd64" > + @${ECHO_MSG} > + exit 1 > +.endif Those who use only packages will never see this notice. Please move it to pkg-message. > +do-build: > + @(cd ${WRKSRC} ; ${GMAKE}) The port already has USE_GMAKE, why do you need custom do-build and do-install targets? > +do-install: > + ${MKDIR} ${DATADIRLIB} > + ${INSTALL_DATA} ${WRKSRC}/resources.qrc ${DATADIRLIB} > + ${INSTALL_SCRIPT} ${WRKSRC}/*.py ${DATADIRLIB} > + ${LN} -sf ${DATADIRLIB}/${PORTNAME}.py ${PREFIX}/bin/${PORTNAME} > + ${LN} -sf ${DATADIRLIB}/${PORTNAME}cli.py ${PREFIX}/bin/${PORTNAME}cli > + ${LN} -sf ${DATADIRLIB}/${PORTNAME}run.py ${PREFIX}/bin/${PORTNAME}run > + ${MKDIR} ${DATADIR} > + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "translations images" ${DATADIR}) > + > + ${LN} -sf ${DATADIR}/images/swine32.png ${PREFIX}/share/pixmaps/${PORTNAME}.png > + ${MKDIR} ${PREFIX}/share/applications > + ${INSTALL_DATA} ${WRKSRC}/resources/*.desktop ${PREFIX}/share/applications/ > + > +.if ${PORT_OPTIONS:MDOCS} > + ${MKDIR} ${DOCSDIR} > + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} > +.endif > + > + @${ECHO_CMD} > + @${CAT} ${PKGMESSAGE} > + @${ECHO_CMD} > + > +.include > From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 15:28:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B7AEEF0; Sat, 13 Oct 2012 15:28:20 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0438C8FC12; Sat, 13 Oct 2012 15:28:20 +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 q9DFSJU7045521; Sat, 13 Oct 2012 15:28:19 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DFSJKd045518; Sat, 13 Oct 2012 15:28:19 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210131528.q9DFSJKd045518@svn.freebsd.org> From: Steve Wills Date: Sat, 13 Oct 2012 15:28:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305835 - head/www/node X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 15:28:20 -0000 Author: swills Date: Sat Oct 13 15:28:19 2012 New Revision: 305835 URL: http://svn.freebsd.org/changeset/ports/305835 Log: - Update to 0.8.12 PR: ports/172655 Submitted by: Jin-Sih Lin (maintainer) Feature safe: yes Modified: head/www/node/Makefile head/www/node/distinfo Modified: head/www/node/Makefile ============================================================================== --- head/www/node/Makefile Sat Oct 13 14:52:48 2012 (r305834) +++ head/www/node/Makefile Sat Oct 13 15:28:19 2012 (r305835) @@ -6,7 +6,7 @@ # PORTNAME= node -PORTVERSION= 0.8.11 +PORTVERSION= 0.8.12 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} Modified: head/www/node/distinfo ============================================================================== --- head/www/node/distinfo Sat Oct 13 14:52:48 2012 (r305834) +++ head/www/node/distinfo Sat Oct 13 15:28:19 2012 (r305835) @@ -1,2 +1,2 @@ -SHA256 (node-v0.8.11.tar.gz) = e9594460f992b5862e21fb4d8ef27907839254c646b4ed5e8ab1ec25b4ccd29d -SIZE (node-v0.8.11.tar.gz) = 11816407 +SHA256 (node-v0.8.12.tar.gz) = d64a7f2ab8f4419a11bde5379d6065666fd1cc4593ec828cb5ac57385efafa45 +SIZE (node-v0.8.12.tar.gz) = 11855506 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 15:43:28 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD3E51E6; Sat, 13 Oct 2012 15:43:28 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D37698FC36; Sat, 13 Oct 2012 15:43:27 +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 q9DFhR2O047768; Sat, 13 Oct 2012 15:43:27 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DFhR9P047766; Sat, 13 Oct 2012 15:43:27 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201210131543.q9DFhR9P047766@svn.freebsd.org> From: Renato Botelho Date: Sat, 13 Oct 2012 15:43:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305836 - head/mail/qmail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 15:43:28 -0000 Author: garga Date: Sat Oct 13 15:43:27 2012 New Revision: 305836 URL: http://svn.freebsd.org/changeset/ports/305836 Log: Fix OptionsNG commit, i committed the wrong version Pointyhat to: garga@ Feature safe: yes Modified: head/mail/qmail/Makefile Modified: head/mail/qmail/Makefile ============================================================================== --- head/mail/qmail/Makefile Sat Oct 13 15:28:19 2012 (r305835) +++ head/mail/qmail/Makefile Sat Oct 13 15:43:27 2012 (r305836) @@ -385,7 +385,7 @@ DISTFILES+= ${SRS_LDAP_PATCH}:srs_ldap .endif -.if ${PORT_OPTIONS:MSMTP_AUTH_PATCH} && !defined(BARRIER_SMTP_AUTH_PATCH) +.if ${PORT_OPTIONS:MSMTP_AUTH_PATCH} MASTER_SITES+= http://tomclegg.net/qmail/:smtp_auth \ ${MASTER_SITE_LOCAL:S/$/:smtp_auth/} MASTER_SITE_SUBDIR+= garga/qmail/:smtp_auth @@ -395,7 +395,7 @@ MASTER_SITES+= http://tomclegg.net/qmail DISTFILES+= qmail-smtpd-auth-close3.patch:close3 . if defined(SLAVE_TLS) AUTH_PATCH= auth.patch.diff-tls -. elif ${PORT_OPTIONS:MSPF_PATCH} && !defined(BARRIER_SPF_PATCH) +. elif ${PORT_OPTIONS:MSPF_PATCH} AUTH_PATCH= auth.patch.diff . endif @@ -404,23 +404,23 @@ DISTFILES+= ${AUTH_PATCH}:smtp_auth . endif .endif -.if ${PORT_OPTIONS:MMAILDIRQUOTA_PATCH} && !defined(BARRIER_MAILDIRQUOTA_PATCH) +.if ${PORT_OPTIONS:MMAILDIRQUOTA_PATCH} PATCH_SITES+= http://www.alexdupre.com/qmail/:quota PATCHFILES+= qmail-maildir++.patch:quota EXTRA_PATCHES+= ${FILESDIR}/extra-patch-maildir++ .endif -.if ${PORT_OPTIONS:MBLOCKEXEC_PATCH} && !defined(BARRIER_BLOCKEXEC_PATCH) +.if ${PORT_OPTIONS:MBLOCKEXEC_PATCH} PATCH_SITES+= http://www.alexdupre.com/qmail/:blockexec PATCHFILES+= qmail-block-executables.patch:blockexec .endif -.if ${PORT_OPTIONS:MDISCBOUNCES_PATCH} && !defined(BARRIER_DISCBOUNCES_PATCH) +.if ${PORT_OPTIONS:MDISCBOUNCES_PATCH} PATCH_SITES+= http://www.alexdupre.com/qmail/:doublebounce PATCHFILES+= qmail-discard-double-bounces.patch:doublebounce .endif -.if ${PORT_OPTIONS:MSPF_PATCH} && !defined(BARRIER_SPF_PATCH) +.if ${PORT_OPTIONS:MSPF_PATCH} . if defined(SLAVE_TLS) || defined(SLAVE_SPAMCONTROL) . if defined(SLAVE_SPAMCONTROL) SPF_SPAMCONTROL_PATCH= qmail-spf-rc5.patch-spamcontrol-26 @@ -442,19 +442,18 @@ PATCHFILES+= qmail-spf-rc5.patch:spf . endif .endif -.if ${PORT_OPTIONS:MEXTTODO_PATCH} && !defined(BARRIER_EXTTODO_PATCH) +.if ${PORT_OPTIONS:MEXTTODO_PATCH} PLIST_SUB+= EXTTODO="" DOCFILES_WRKSRC+= EXTTODO -. if (${PORT_OPTIONS:MBIG_TODO_PATCH} && !defined(BARRIER_BIG_TODO_PATCH)) || \ - (defined(SLAVE_SPAMCONTROL) && ${PORT_OPTIONS:MBIGTODO}) +. if !empty{PORT_OPTIONS:MBIG_TODO_PATCH) || !empty(PORT_OPTIONS:MBIGTODO) MASTER_SITES+= ${MASTER_SITE_LOCAL:S/$/:ext_big_todo/} MASTER_SITE_SUBDIR+= garga/qmail/:ext_big_todo EXT_BIG_TODO_PATCH= ext_todo-20030105+big-todo.103.patch DISTFILES+= ${EXT_BIG_TODO_PATCH}:ext_big_todo . endif -. if ${PORT_OPTIONS:MSPF_PATCH} && !defined(BARRIER_SPF_PATCH) +. if ${PORT_OPTIONS:MSPF_PATCH} . if defined(SLAVE_TLS) || defined(SLAVE_SPAMCONTROL) MASTER_SITES+= ${MASTER_SITE_LOCAL:S/$/:exttodo/} MASTER_SITE_SUBDIR+= garga/qmail/:exttodo @@ -478,44 +477,42 @@ PLIST_SUB+= EXTTODO="@comment " .endif .if !defined(BARRIER_DNS_PATCH) \ - || (${PORT_OPTIONS:MQMAILQUEUE_PATCH} && !defined(BARRIER_QMAILQUEUE_PATCH)) \ - || (${PORT_OPTIONS:MBIG_TODO_PATCH} && !defined(BARRIER_BIG_TODO_PATCH)) \ - || (${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} && !defined(BARRIER_BIG_CONCURRENCY_PATCH)) \ - || (${PORT_OPTIONS:MOUTGOINGIP_PATCH} && !defined(BARRIER_OUTGOINGIP_PATCH)) \ - || (${PORT_OPTIONS:MQMTPC_PATCH} && !defined(BARRIER_QMTPC_PATCH)) + || !empty(PORT_OPTIONS:MQMAILQUEUE_PATCH) \ + || !empty(PORT_OPTIONS:MBIG_TODO_PATCH) \ + || !empty(PORT_OPTIONS:MBIG_CONCURRENCY_PATCH) \ + || !empty(PORT_OPTIONS:MOUTGOINGIP_PATCH) \ + || !empty(PORT_OPTIONS:MQMTPC_PATCH) PATCH_SITES+= ${MASTER_SITE_QMAIL} .endif -.if ${PORT_OPTIONS:MQMAILQUEUE_PATCH} && !defined(BARRIER_QMAILQUEUE_PATCH) +.if ${PORT_OPTIONS:MQMAILQUEUE_PATCH} PATCHFILES+= qmailqueue-patch .endif -.if ${PORT_OPTIONS:MBIG_TODO_PATCH} && !defined(BARRIER_BIG_TODO_PATCH) +.if ${PORT_OPTIONS:MBIG_TODO_PATCH} PATCHFILES+= big-todo.103.patch .endif -.if ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} && - !defined(BARRIER_BIG_CONCURRENCY_PATCH) +.if ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} PATCHFILES+= big-concurrency.patch .endif -.if ${PORT_OPTIONS:MOUTGOINGIP_PATCH} && !defined(BARRIER_OUTGOINGIP_PATCH) && \ - ${PORT_OPTIONS:MQMTPC_PATCH} && !defined(BARRIER_QMTPC_PATCH) +.if !empty(PORT_OPTIONS:MOUTGOINGIP_PATCH) && !empty(PORT_OPTIONS:MQMTPC_PATCH) PATCHFILES+= qmail-1.03-qmtpc_outgoingip_20090630.patch:qmtpc_outgoingip -.elif ${PORT_OPTIONS:MOUTGOINGIP_PATCH} && !defined(BARRIER_OUTGOINGIP_PATCH) +.elif ${PORT_OPTIONS:MOUTGOINGIP_PATCH} PATCHFILES+= outgoingip.patch -.elif ${PORT_OPTIONS:MQMTPC_PATCH} && !defined(BARRIER_QMTPC_PATCH) +.elif ${PORT_OPTIONS:MQMTPC_PATCH} PATCHFILES+= qmail-1.03-qmtpc.patch .endif -.if ${PORT_OPTIONS:MLOCALTIME_PATCH} && !defined(BARRIER_LOCALTIME_PATCH) +.if ${PORT_OPTIONS:MLOCALTIME_PATCH} PATCH_SITES+= http://www.alib.jp/files/:localtime PATCHFILES+= qmail-date-localtime.patch:localtime .endif -.if ${PORT_OPTIONS:MTARPIT_PATCH} && !defined(BARRIER_TARPIT_PATCH) +.if ${PORT_OPTIONS:MTARPIT_PATCH} PATCH_SITES+= http://www.palomine.net/qmail/:tarpit PATCHFILES+= tarpit.patch:tarpit .endif -.if ${PORT_OPTIONS:MSMTPEXTFORK} && +.if ${PORT_OPTIONS:MSMTPEXTFORK} && \ ( defined(SLAVE_SPAMCONTROL) || defined(SLAVE_LDAP) ) . if defined(SLAVE_SPAMCONTROL) SMTPEXTFORK_PATCH= smtpextfork-spamcontrol-2519.patch @@ -578,8 +575,7 @@ UCSPISRC= ${WRKDIR}/host/superscript.com .endif # Some default values, these can be modified by make command line -.if ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} && - !defined(BARRIER_BIG_CONCURRENCY_PATCH) +.if ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} WITH_BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT?= 509 .endif @@ -657,7 +653,7 @@ post-extract: .endif post-patch: -.if ${PORT_OPTIONS:MSMTP_AUTH_PATCH} && !defined(BARRIER_SMTP_AUTH_PATCH) +.if ${PORT_OPTIONS:MSMTP_AUTH_PATCH} @${CP} ${SMTP_AUTH_DIR}/base64.[ch] ${WRKSRC} . if defined(AUTH_PATCH) @${PATCH} -d ${SMTP_AUTH_DIR} < ${DISTDIR}/${DIST_SUBDIR}/${AUTH_PATCH} @@ -787,9 +783,8 @@ do-configure: @${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc @${ECHO_CMD} "${CC} ${STRIP} ${LDFLAGS}" > ${WRKSRC}/conf-ld @${ECHO_CMD} ${PREFIX} > ${WRKSRC}/conf-qmail -.if ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH} \ - && !defined(BARRIER_BIG_CONCURRENCY_PATCH) \ - && ${PORT_OPTIONS:MBIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT} +.if !empty(PORT_OPTIONS:MBIG_CONCURRENCY_PATCH) \ + && defined(BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT) @if [ ${WITH_BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT} -gt 0 ]; then \ ${ECHO_CMD} "${WITH_BIG_CONCURRENCY_PATCH_CONCURRENCY_LIMIT}" \ > ${WRKSRC}/conf-spawn ; \ From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 15:59:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A05143B7; Sat, 13 Oct 2012 15:59:54 +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 7E7068FC08; Sat, 13 Oct 2012 15:59: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 q9DFxsqi050464; Sat, 13 Oct 2012 15:59:54 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DFxs8q050460; Sat, 13 Oct 2012 15:59:54 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210131559.q9DFxs8q050460@svn.freebsd.org> From: Pawel Pekala Date: Sat, 13 Oct 2012 15:59:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305837 - in head/japanese/xjtext: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 15:59:54 -0000 Author: pawel Date: Sat Oct 13 15:59:53 2012 New Revision: 305837 URL: http://svn.freebsd.org/changeset/ports/305837 Log: - Unbreak - Convert to OptionsNG - Trim Makefile headers - Mark MAKE_JOBS_SAFE PR: ports/172024 Submitted by: KATO Tsuguru Feature safe: yes Modified: head/japanese/xjtext/Makefile head/japanese/xjtext/files/patch-aa head/japanese/xjtext/files/patch-xjtext_main.c Modified: head/japanese/xjtext/Makefile ============================================================================== --- head/japanese/xjtext/Makefile Sat Oct 13 15:43:27 2012 (r305836) +++ head/japanese/xjtext/Makefile Sat Oct 13 15:59:53 2012 (r305837) @@ -1,9 +1,5 @@ -# New ports collection makefile for: xjtext -# Date created: 8 July 2000 -# Whom: sada -# +# Created by: sada # $FreeBSD$ -# PORTNAME= xjtext PORTVERSION= 1.3 @@ -15,26 +11,26 @@ DISTNAME= XJTEXT-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= A text viewer for Japanese vertical writings -BROKEN= does not compile - USE_BISON= build USE_GNOME= imlib +MAKE_JOBS_SAFE= yes SUB_FILES= pkg-message -PLIST_FILES= bin/xjtext + PORTDOCS= README.txt PORTEXAMPLES= FSS README YAMA Ao.png Back2.png Brown.png Royal.png Royal2.png +PLIST_FILES= bin/xjtext + +.include do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xjtext ${PREFIX}/bin - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR} .endif @${CAT} ${PKGMESSAGE} Modified: head/japanese/xjtext/files/patch-aa ============================================================================== --- head/japanese/xjtext/files/patch-aa Sat Oct 13 15:43:27 2012 (r305836) +++ head/japanese/xjtext/files/patch-aa Sat Oct 13 15:59:53 2012 (r305837) @@ -1,10 +1,9 @@ ---- Makefile.orig Sat Sep 4 22:45:16 1999 -+++ Makefile Mon May 16 15:30:41 2005 -@@ -1,9 +1,9 @@ --CC =g++ +--- Makefile.orig 1999-09-04 22:45:16.000000000 +0900 ++++ Makefile 2012-09-11 04:28:11.000000000 +0900 +@@ -1,27 +1,27 @@ + CC =g++ -CFLAGS =-c -g -O -INCDIRS =-I/usr/X11R6/include -I/usr/local/include -+CC =${CXX} +CFLAGS =${CXXFLAGS} -c +INCDIRS =-I${LOCALBASE}/include `imlib-config --cflags` LIBS =-lX11 -lXext -lm -lfl @@ -15,12 +14,43 @@ OBJS =xwindow.o xfont.o xtext.o xjtext.o lex.yy.o parser.tab.o xjtext-main.o all: xjtext -@@ -39,7 +39,7 @@ - ${CC} ${CFLAGS} ${INCDIRS} lex.yy.c + + xwindow.o: xwindow.h xwindow.c +- ${CC} ${CFLAGS} ${INCDIRS} xwindow.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xwindow.c + + xfont.o: xwindow.h xfont.h xfont.c +- ${CC} ${CFLAGS} ${INCDIRS} xfont.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xfont.c + + xtext.o: xwindow.h xfont.h xtext.h xtext.c +- ${CC} ${CFLAGS} ${INCDIRS} xtext.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xtext.c + + xjtext.o: xwindow.h xfont.h xtext.h xjtext.h xjtext.c +- ${CC} ${CFLAGS} ${INCDIRS} xjtext.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xjtext.c + + xjtext-main.o: xwindow.h xfont.h xtext.h xjtext.h xjtext-main.c +- ${CC} ${CFLAGS} ${INCDIRS} xjtext-main.c ++ ${CXX} ${CFLAGS} ${INCDIRS} xjtext-main.c + + parser.tab.c: xwindow.h xfont.h xtext.h xjtext.h parsing.h parser.y + bison -dv parser.y +@@ -33,13 +33,13 @@ + flex lex.l + + parser.tab.o: parser.tab.c +- ${CC} ${CFLAGS} ${INCDIRS} parser.tab.c ++ ${CXX} ${CFLAGS} ${INCDIRS} parser.tab.c + + lex.yy.o: xwindow.h xfont.h xtext.h xjtext.h parsing.h parser.tab.h lex.yy.c +- ${CC} ${CFLAGS} ${INCDIRS} lex.yy.c ++ ${CXX} ${CFLAGS} ${INCDIRS} lex.yy.c xjtext: ${OBJS} - LD_RUN_PATH=/usr/X11R6/lib/ ${CC} ${OBJS} ${LIBDIRS} ${LIBS} ${IMLIBS}\ -+ LD_RUN_PATH=${LOCALBASE}/lib/ ${CC} ${OBJS} ${LIBDIRS} ${LIBS} ${IMLIBS}\ ++ LD_RUN_PATH=${LOCALBASE}/lib/ ${CXX} ${OBJS} ${LIBDIRS} ${LIBS} ${IMLIBS}\ -o xjtext clean: Modified: head/japanese/xjtext/files/patch-xjtext_main.c ============================================================================== --- head/japanese/xjtext/files/patch-xjtext_main.c Sat Oct 13 15:43:27 2012 (r305836) +++ head/japanese/xjtext/files/patch-xjtext_main.c Sat Oct 13 15:59:53 2012 (r305837) @@ -1,6 +1,13 @@ ---- xjtext-main.c.orig Sat Sep 4 22:45:16 1999 -+++ xjtext-main.c Mon May 16 15:58:11 2005 -@@ -9,7 +9,7 @@ +--- xjtext-main.c.orig 1999-09-04 22:45:16.000000000 +0900 ++++ xjtext-main.c 2012-09-11 04:23:11.000000000 +0900 +@@ -3,13 +3,13 @@ + xJTextWindow* XWin; + + char FileName[256]; +-main (int ArgCnt,char** ArgVal) ++int main (int ArgCnt,char** ArgVal) + { + if(ArgCnt<2){ yyin=stdin;strcpy(FileName,"stdin");} else { if(NULL==(yyin=fopen(ArgVal[1],"r"))) From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 16:05:29 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 630B86E5; Sat, 13 Oct 2012 16:05:29 +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 4BA1D8FC1E; Sat, 13 Oct 2012 16:05: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 q9DG5Tt8051369; Sat, 13 Oct 2012 16:05:29 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DG5TbZ051367; Sat, 13 Oct 2012 16:05:29 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201210131605.q9DG5TbZ051367@svn.freebsd.org> From: Pawel Pekala Date: Sat, 13 Oct 2012 16:05:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305838 - head/emulators/swine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 16:05:29 -0000 Author: pawel Date: Sat Oct 13 16:05:28 2012 New Revision: 305838 URL: http://svn.freebsd.org/changeset/ports/305838 Log: Remove unnecessary stuff that I overlooked Reported by: makc Feature safe: yes Modified: head/emulators/swine/Makefile Modified: head/emulators/swine/Makefile ============================================================================== --- head/emulators/swine/Makefile Sat Oct 13 15:59:53 2012 (r305837) +++ head/emulators/swine/Makefile Sat Oct 13 16:05:28 2012 (r305838) @@ -3,6 +3,7 @@ PORTNAME= swine PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= emulators deskutils python MASTER_SITES= GH @@ -16,8 +17,7 @@ RUN_DEPENDS= wine:${PORTSDIR}/emulators/ xterm:${PORTSDIR}/x11/xterm \ cabextract:${PORTSDIR}/archivers/cabextract \ icotool:${PORTSDIR}/graphics/icoutils \ - ${PYTHON_PKGNAMEPREFIX}qt4-core>=${PYQT4_VERSION}:${PORTSDIR}/devel/py-qt4-core \ - ${PYTHON_PKGNAMEPREFIX}qt4-gui>=${PYQT4_VERSION}:${PORTSDIR}/x11-toolkits/py-qt4-gui + ${PYTHON_SITELIBDIR}/PyQt4/QtGui.so:${PORTSDIR}/x11-toolkits/py-qt4-gui DATADIRLIB= ${PREFIX}/lib/${PORTNAME} @@ -33,7 +33,6 @@ USE_QT4= linguist_build PORTDOCS= README -.include "../../devel/py-sip/files/bsd.pyqt.mk" .include post-patch: @@ -54,9 +53,6 @@ pre-build: exit 1 .endif -do-build: - @(cd ${WRKSRC} ; ${GMAKE}) - do-install: ${MKDIR} ${DATADIRLIB} ${INSTALL_DATA} ${WRKSRC}/resources.qrc ${DATADIRLIB} From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 16:18:32 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E49DB74; Sat, 13 Oct 2012 16:18:32 +0000 (UTC) (envelope-from pawelbsd@gmail.com) Received: from mail-ee0-f54.google.com (mail-ee0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 2A9A78FC0C; Sat, 13 Oct 2012 16:18:30 +0000 (UTC) Received: by mail-ee0-f54.google.com with SMTP id c50so2474138eek.13 for ; Sat, 13 Oct 2012 09:18:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :x-mailer:mime-version:content-type:content-transfer-encoding; bh=BOwaWtkavj6N/T3qXagtorp4ZWFIWX4/qWL/VKq5Ssk=; b=zf31z5Fok91jDeaZmVjfN9cYW+tXRWrnneAImyTuiCZpJxib5kFqPlsxWgKGBQz+9U I8V8jWGqI5P5Wq5diMctJXZcSN/jy0VjnJvOE1aLBnMx2pxhAhyuo9uwmJtADT+5vyzB 6Az14bfFQnpsa4F0p6vSEAuwtCM8ZL8PXzP+KUBbbuXSwCwIptCrGBjA+HBBkua4B94h 15nVvl+LdD8ic7AEluFR+0FeA8nSkx1BxI/GGa8w7cOiVLeUrEalxoZ6kBN3jmI3xeuv 8c4SXyhbIrIwKmRwYxTgcwoXaOvsphPPUuZrfNE3E5UN1MbAc8Cuck4rTpQkNUhFr9tn 9nZA== Received: by 10.14.220.134 with SMTP id o6mr10381885eep.35.1350145109241; Sat, 13 Oct 2012 09:18:29 -0700 (PDT) Received: from localhost ([176.109.164.5]) by mx.google.com with ESMTPS id 42sm16678116eee.0.2012.10.13.09.18.27 (version=SSLv3 cipher=OTHER); Sat, 13 Oct 2012 09:18:28 -0700 (PDT) Sender: =?UTF-8?B?UGF3ZcWCIFDEmWthbGE=?= Date: Sat, 13 Oct 2012 18:18:16 +0200 From: Pawel Pekala To: Max Brazhnikov Subject: Re: svn commit: r305793 - in head/emulators: . swine Message-ID: <20121013181816.236e950e@FreeBSD.org> In-Reply-To: <201210131513.04741.makc@freebsd.org> References: <201210122156.q9CLuA9X082810@svn.freebsd.org> <201210131513.04741.makc@freebsd.org> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; i386-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 16:18:32 -0000 Hi Max, Dnia 2012-10-13, o godz. 15:13:04 Max Brazhnikov napisa=B3(a): >> +pre-build: >> +.if !exists(${LOCALBASE}/bin/wine) && ${ARCH} !=3D "i386" >> + @${ECHO_MSG} >> + @${ECHO_MSG} "Depends on Wine Port which is only available >> for i386" >> + @${ECHO_MSG} >> + @${ECHO_MSG} " http://wiki.freebsd.org/Wine" >> + @${ECHO_MSG} >> + @${ECHO_MSG} "FreeBSD/amd64 works with Wine 32bit binary >> from" >> + @${ECHO_MSG} >> + @${ECHO_MSG} " http://www.mediafire.com/wine_fbsd64" >> + @${ECHO_MSG} >> + exit 1 >> +.endif > >Those who use only packages will never see this notice. Please move it >to pkg-message. > Except this issue I fixed all your good catches, thanks. I think moving this message to pkg-message is not needed. It's addressed to amd64 users which will build from source anyway because swine will not be available to them from package. Wine is marked as ONLY_FOR_ARCHS=3Di386 and is RUN_DEPENDS here. I`m little hazy on our package building so please correct me if I'm wrong. --=20 pozdrawiam / with regards Pawe=B3 P=EAkala From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 17:13:34 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7CCD38F; Sat, 13 Oct 2012 17:13:34 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 957858FC0C; Sat, 13 Oct 2012 17:13: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 q9DHDYFI067929; Sat, 13 Oct 2012 17:13:34 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DHDYfH067926; Sat, 13 Oct 2012 17:13:34 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210131713.q9DHDYfH067926@svn.freebsd.org> From: Eitan Adler Date: Sat, 13 Oct 2012 17:13:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305839 - head/security/openssh-portable X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 17:13:34 -0000 Author: eadler Date: Sat Oct 13 17:13:33 2012 New Revision: 305839 URL: http://svn.freebsd.org/changeset/ports/305839 Log: Convert to OptionsNG Trim Headers PR: ports/172429 Submitted by: Michael Gmelin Feature safe: yes Modified: head/security/openssh-portable/Makefile Modified: head/security/openssh-portable/Makefile ============================================================================== --- head/security/openssh-portable/Makefile Sat Oct 13 16:05:28 2012 (r305838) +++ head/security/openssh-portable/Makefile Sat Oct 13 17:13:33 2012 (r305839) @@ -1,9 +1,5 @@ -# New ports collection makefile for: openssh -# Date created: 18 Mar 1999 -# Whom: dwcjr@inethouston.net -# +# Created by: dwcjr@inethouston.net # $FreeBSD$ -# PORTNAME= openssh DISTVERSION= 5.8p2 @@ -39,19 +35,20 @@ ETCOLD= ${PREFIX}/etc SUDO?= # empty MAKE_ENV+= SUDO="${SUDO}" -OPTIONS= PAM "Enable pam(3) support" on \ - TCP_WRAPPERS "Enable tcp_wrappers support" on \ - LIBEDIT "Enable readline support to sftp(1)" on \ - SUID_SSH "Enable suid SSH (Recommended off)" off \ - BSM "Enable OpenBSM Auditing" off \ - KERBEROS "Enable kerberos (autodetection)" off \ - KERB_GSSAPI "Enable Kerberos/GSSAPI patch (req: GSSAPI)" off \ - OPENSSH_CHROOT "Enable CHROOT support" off \ - HPN "Enable HPN-SSH patch" off \ - LPK "Enable LDAP Public Key (LPK) patch" off \ - X509 "Enable x509 certificate patch" off \ - FILECONTROL "Enable file control patch (broken)" off \ - OVERWRITE_BASE "OpenSSH overwrite base" off +OPTIONS_DEFINE= PAM TCP_WRAPPERS LIBEDIT SUID_SSH BSM KERBEROS \ + KERB_GSSAPI OPENSSH_CHROOT HPN LPK X509 FILECONTROL \ + OVERWRITE_BASE +OPTIONS_DEFAULT= LIBEDIT PAM TCP_WRAPPERS +TCP_WRAPPERS_DESC= Enable tcp_wrappers support +SUID_SSH_DESC= Enable suid SSH (Recommended off) +BSM_DESC= Enable OpenBSM Auditing +KERB_GSSAPI_DESC= Enable Kerberos/GSSAPI patch (req: GSSAPI) +OPENSSH_CHROOT_DESC= Enable CHROOT support +HPN_DESC= Enable HPN-SSH patch +LPK_DESC= Enable LDAP Public Key (LPK) patch +X509_DESC= Enable x509 certificate patch +FILECONTROL_DESC= Enable file control patch (broken) +OVERWRITE_BASE_DESC= OpenSSH overwrite base .include @@ -63,42 +60,42 @@ EXTRA_PATCHES= ${FILESDIR}/extra-patch-c CONFIGURE_ARGS+= --disable-utmp --disable-wtmp --disable-wtmpx --without-lastlog .endif -.if defined(WITH_X509) && defined(WITH_HPN) +.if ${PORT_OPTIONS:MX509} && ${PORT_OPTIONS:MHPN} BROKEN= X509 patches and HPN patches do not apply cleanly together .endif -.if defined(WITH_X509) && defined(WITH_KERB_GSSAPI) +.if ${PORT_OPTIONS:MX509} && ${PORT_OPTIONS:MKERB_GSSAPI} BROKEN= X509 patch incompatible with KERB_GSSAPI patch .endif .if defined(OPENSSH_OVERWRITE_BASE) -WITH_OVERWRITE_BASE= yes +PORT_OPTIONS+= OVERWRITE_BASE .endif -.if !defined(WITHOUT_PAM) && exists(/usr/include/security/pam_modules.h) +.if ${PORT_OPTIONS:MPAM} && exists(/usr/include/security/pam_modules.h) CONFIGURE_ARGS+= --with-pam .endif -.if !defined(WITHOUT_TCP_WRAPPERS) && exists(/usr/include/tcpd.h) +.if ${PORT_OPTIONS:MTCP_WRAPPERS} && exists(/usr/include/tcpd.h) CONFIGURE_ARGS+= --with-tcp-wrappers .endif -.if !defined(WITHOUT_LIBEDIT) +.if ${PORT_OPTIONS:MLIBEDIT} CONFIGURE_ARGS+= --with-libedit .endif -.if !defined(WITH_SUID_SSH) +.if !${PORT_OPTIONS:MSUID_SSH} CONFIGURE_ARGS+= --disable-suid-ssh .endif -.if defined(WITH_BSM) +.if ${PORT_OPTIONS:MBSM} CONFIGURE_ARGS+= --with-audit=bsm .endif -.if defined(WITH_KERBEROS) +.if ${PORT_OPTIONS:MKERBEROS} CONFIGURE_ARGS+= --with-kerberos5 LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5 -.if defined(WITH_KERB_GSSAPI) +.if ${PORT_OPTIONS:MKERB_GSSAPI} PATCH_SITES+= http://www.sxw.org.uk/computing/patches/ PATCHFILES+= openssh-5.7p1-gsskex-all-20110125.patch PATCH_DIST_STRIP= @@ -113,11 +110,11 @@ LDFLAGS= # empty CONFIGURE_ARGS+= --with-ssl-dir=${OPENSSLBASE} .endif -.if defined(WITH_OPENSSH_CHROOT) +.if ${PORT_OPTIONS:MOPENSSH_CHROOT} CFLAGS+= -DCHROOT .endif -.if defined(WITH_HPN) +.if ${PORT_OPTIONS:MHPN} PATCH_SITES+= http://www.shatow.net/freebsd/ PATCHFILES+= ${PORTNAME}-5.8p1-hpn13v11.diff.gz PATCH_DIST_STRIP= @@ -126,7 +123,7 @@ PATCH_DIST_STRIP= # See http://code.google.com/p/openssh-lpk/wiki/Main # and svn repo described here: # http://code.google.com/p/openssh-lpk/source/checkout -.if defined(WITH_LPK) +.if ${PORT_OPTIONS:MLPK} EXTRA_PATCHES+= ${FILESDIR}/openssh-lpk-5.8p2.patch USE_OPENLDAP= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -137,7 +134,7 @@ CONFIGURE_ARGS+= --with-ldap=yes \ .endif # See http://www.roumenpetrov.info/openssh/ -.if defined(WITH_X509) +.if ${PORT_OPTIONS:MX509} PATCH_SITES+= http://www.roumenpetrov.info/openssh/x509-7.0/ PATCHFILES+= ${PORTNAME}-5.8p1+x509-7.0.diff.gz PATCH_DIST_STRIP= -p1 @@ -148,14 +145,14 @@ PLIST_SUB+= X509="@comment " .endif # See http://sftpfilecontrol.sourceforge.net/ -.if defined(WITH_FILECONTROL) +.if ${PORT_OPTIONS:MFILECONTROL} # Latest sftpfilecontrol patch is against 5.4p1 which does not apply # cleanly against 5.8p2, but it's close. BROKEN= latest upstream sftp file control public key patch is not up to date for OpenSSH 5.8p2 EXTRA_PATCHES+= ${FILESDIR}/openssh-${DISTVERSION}.sftpfilecontrol-v1.3.patch .endif -.if defined(WITH_OVERWRITE_BASE) +.if ${PORT_OPTIONS:MOVERWRITE_BASE} WITH_OPENSSL_BASE= yes CONFIGURE_ARGS+= --localstatedir=/var EMPTYDIR= /var/empty @@ -199,7 +196,7 @@ post-patch: ${WRKSRC}/version.h @${ECHO_CMD} '#define SSH_RELEASE TMP_SSH_VERSION SSH_PORTABLE FREEBSD_PORT_VERSION' >> \ ${WRKSRC}/version.h -.if defined(WITH_HPN) +.if ${PORT_OPTIONS:MHPN} @${REINPLACE_CMD} -e 's|TMP_SSH_VERSION SSH_PORTABLE|TMP_SSH_VERSION SSH_PORTABLE SSH_HPN|' \ ${WRKSRC}/version.h .endif From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 17:16:54 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7EEBB5B0; Sat, 13 Oct 2012 17:16:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4DB3C8FC0C; Sat, 13 Oct 2012 17:16: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 q9DHGsbd068469; Sat, 13 Oct 2012 17:16:54 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DHGsAc068466; Sat, 13 Oct 2012 17:16:54 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210131716.q9DHGsAc068466@svn.freebsd.org> From: Steve Wills Date: Sat, 13 Oct 2012 17:16:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305840 - head/japanese/wordpress X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 17:16:54 -0000 Author: swills Date: Sat Oct 13 17:16:53 2012 New Revision: 305840 URL: http://svn.freebsd.org/changeset/ports/305840 Log: - Update 3.4.2 - Trim the headers PR: ports/172476 Submitted by: Takefu (maintainer) Security: 30149157-f926-11e1-95cd-001fd0af1a4c Feature safe: yes Modified: head/japanese/wordpress/Makefile (contents, props changed) head/japanese/wordpress/distinfo (contents, props changed) Modified: head/japanese/wordpress/Makefile ============================================================================== --- head/japanese/wordpress/Makefile Sat Oct 13 17:13:33 2012 (r305839) +++ head/japanese/wordpress/Makefile Sat Oct 13 17:16:53 2012 (r305840) @@ -1,12 +1,8 @@ -# New ports collection makefile for: wordpress -# Date created: 2011-09-20 -# Whom: Takefu -# +# Created by: Takefu # $FreeBSD$ -# PORTNAME= wordpress -PORTVERSION= 3.4.1 +PORTVERSION= 3.4.2 CATEGORIES= japanese www MASTER_SITES= http://ja.wordpress.org/ DISTNAME= ${PORTNAME}-${PORTVERSION}-ja @@ -17,7 +13,7 @@ COMMENT= A state-of-the-art semantic per LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/license.txt -CONFLICTS_INSTALL= wordpress-3.* de-wordpress-3.* ru-wordpress-ru-3.* +CONFLICTS_INSTALL= wordpress-3.* de-wordpress-3.* ru-wordpress-3.* NO_BUILD= yes USE_PHP= curl gd mysql pcre tokenizer xml zip @@ -42,10 +38,12 @@ pre-install: if [ ! -f ${WRKSRC}/wp-config-sample.php ]; then ${CP} \ ${WRKSRC}/wp-config.php.sample ${WRKSRC}/wp-config.php; fi +.include + do-install: ${INSTALL} -d -g ${WWWGRP} -m 755 -o ${WWWOWN} ${WWWDIR}/ ${CP} -R ${WRKSRC}/ ${WWWDIR}/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ .endif Modified: head/japanese/wordpress/distinfo ============================================================================== --- head/japanese/wordpress/distinfo Sat Oct 13 17:13:33 2012 (r305839) +++ head/japanese/wordpress/distinfo Sat Oct 13 17:16:53 2012 (r305840) @@ -1,2 +1,2 @@ -SHA256 (wordpress-3.4.1-ja.tar.gz) = 650549f64c17cf600f84fe57729c1c6128e7d2ee368147c6f7b8d2c27260ee14 -SIZE (wordpress-3.4.1-ja.tar.gz) = 4983691 +SHA256 (wordpress-3.4.2-ja.tar.gz) = a8caa2bf5100583c40f3236e78b200514e6e76a6b99d1caf1298e616d9e64952 +SIZE (wordpress-3.4.2-ja.tar.gz) = 4970768 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 17:21:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 02BB186A; Sat, 13 Oct 2012 17:21:38 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 74BBB8FC0A; Sat, 13 Oct 2012 17:21:37 +0000 (UTC) Received: from aruba-ctlr2-nat.its.manchester.ac.uk [130.88.99.218:7931] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id q9DHLkZX078980 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sat, 13 Oct 2012 21:21:47 +0400 (MSK) From: Max Brazhnikov To: Pawel Pekala Subject: Re: svn commit: r305793 - in head/emulators: . swine Date: Sat, 13 Oct 2012 17:21:58 +0000 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.9.1; amd64; ; ) References: <201210122156.q9CLuA9X082810@svn.freebsd.org> <201210131513.04741.makc@freebsd.org> <20121013181816.236e950e@FreeBSD.org> In-Reply-To: <20121013181816.236e950e@FreeBSD.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <201210131721.58578.makc@freebsd.org> Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 17:21:38 -0000 On Sat, 13 Oct 2012 18:18:16 +0200, Pawel Pekala wrote: > Except this issue I fixed all your good catches, thanks. my pleasure. > I think moving this message to pkg-message is not needed. It's > addressed to amd64 users which will build from source anyway because > swine will not be available to them from package. Wine is marked as > ONLY_FOR_ARCHS=i386 and is RUN_DEPENDS here. I`m little hazy on our > package building so please correct me if I'm wrong. I would add wine to dependency on i386 only and mark swine for i386/amd64. Of course amd64 users have to install unofficial package for wine, but at least they don't need build swine. And strictly speaking, they can install swine port right now, because it depends on wine. Cheers, Max From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 17:32:38 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6912AC69; Sat, 13 Oct 2012 17:32:38 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from mammoth.yandex.ru (mammoth.yandex.ru [93.158.136.51]) by mx1.freebsd.org (Postfix) with ESMTP id CF48A8FC0A; Sat, 13 Oct 2012 17:32:37 +0000 (UTC) Received: from Dmitrys-MacBook-Pro.local (v10-167-146.yandex.net [84.201.167.146]) by mammoth.yandex.ru (Postfix) with ESMTP id 3XfCRr145PzlDRb; Sat, 13 Oct 2012 21:23:20 +0400 (MSK) Message-ID: <5079A388.5020805@FreeBSD.org> Date: Sat, 13 Oct 2012 21:23:20 +0400 From: Dmitry Sivachenko User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: Chris Rees Subject: Re: svn commit: r305780 - in head/net: haproxy-devel/files haproxy/files References: <201210121401.q9CE14XR015761@svn.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 17:32:38 -0000 On 10/13/12 7:06 PM, Chris Rees wrote: > On 12 October 2012 15:01, Dmitry Sivachenko wrote: >> Author: demon >> Date: Fri Oct 12 14:01:04 2012 >> New Revision: 305780 >> URL: http://svn.freebsd.org/changeset/ports/305780 >> >> Log: >> Use 'configtest' command to test config file to be consistent with apache, >> nagios and others. Do not invent yet another wheel. > Looks great. > > The patch at [1] sorts a few niggles out, mostly style. Please take a look. > > Chris > > [1] http://www.bayofrum.net/~crees/patches/haproxy-rc-script.diff Looks fine, feel free to commit your changes. From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 17:46:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B009CDD8; Sat, 13 Oct 2012 17:46:26 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8EE248FC08; Sat, 13 Oct 2012 17:46:26 +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 q9DHkQo7073207; Sat, 13 Oct 2012 17:46:26 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DHkQhY073203; Sat, 13 Oct 2012 17:46:26 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201210131746.q9DHkQhY073203@svn.freebsd.org> From: Steve Wills Date: Sat, 13 Oct 2012 17:46:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305841 - head/german/wordpress X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 17:46:26 -0000 Author: swills Date: Sat Oct 13 17:46:26 2012 New Revision: 305841 URL: http://svn.freebsd.org/changeset/ports/305841 Log: - Update to 3.4.2 - Convert to OptionsNG - Trim headers PR: ports/171515 Submitted by: Takefu Approved by: maintainer timeout (miwi, >4 weeks) Security: 30149157-f926-11e1-95cd-001fd0af1a4c Feature safe: yes Modified: head/german/wordpress/Makefile (contents, props changed) head/german/wordpress/distinfo (contents, props changed) head/german/wordpress/pkg-descr (contents, props changed) Modified: head/german/wordpress/Makefile ============================================================================== --- head/german/wordpress/Makefile Sat Oct 13 17:16:53 2012 (r305840) +++ head/german/wordpress/Makefile Sat Oct 13 17:46:26 2012 (r305841) @@ -1,13 +1,9 @@ -# New ports collection makefile for: wordpress -# Date created: 2006-06-03 -# Whom: Martin Wilke -# (based on wordpress by Elvis Chiang) -# +# Created by: miwi # $FreeBSD$ # PORTNAME= wordpress -PORTVERSION= 3.4.1 +PORTVERSION= 3.4.2 CATEGORIES= german www MASTER_SITES= http://de.wordpress.org/ DISTNAME= ${PORTNAME}-${PORTVERSION}-de_DE @@ -21,7 +17,6 @@ LICENSE_FILE= ${WRKSRC}/license.txt CONFLICTS_INSTALL= wordpress-3.* ja-wordpress-3.* ru-wordpress-3.* NO_BUILD= yes -USE_ZIP= yes USE_PHP= curl gd mysql pcre tokenizer xml zip WANT_PHP_WEB= yes WRKSRC= ${WRKDIR}/${PORTNAME} @@ -32,6 +27,8 @@ SUB_LIST= CHGRP="${CHGRP}" CHOWN="${CHOW PLIST= ${WRKDIR}/pkg-plist PORTDOCS= license.txt readme.html +OPTIONS_DEFINE= DOCS + pre-everything:: @${ECHO_CMD} "If you want to upgrade, you must read upgrade document." @${ECHO_CMD} "" @@ -44,10 +41,12 @@ pre-install: if [ ! -f ${WRKSRC}/wp-config-sample.php ]; then ${CP} \ ${WRKSRC}/wp-config.php.sample ${WRKSRC}/wp-config.php; fi +.include + do-install: ${INSTALL} -d -g ${WWWGRP} -m 755 -o ${WWWOWN} ${WWWDIR}/ ${CP} -R ${WRKSRC}/ ${WWWDIR}/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ .endif Modified: head/german/wordpress/distinfo ============================================================================== --- head/german/wordpress/distinfo Sat Oct 13 17:16:53 2012 (r305840) +++ head/german/wordpress/distinfo Sat Oct 13 17:46:26 2012 (r305841) @@ -1,2 +1,2 @@ -SHA256 (wordpress-3.4.1-de_DE.zip) = 9c324cecaebaf35d3e84bc52936ddea5f279a8328f1986de054531893f504ccc -SIZE (wordpress-3.4.1-de_DE.zip) = 5374409 +SHA256 (wordpress-3.4.2-de_DE.tar.gz) = d84bfb5a900048f51f5d964a6277228df2514046cd6ab175146e02fd0ee0f658 +SIZE (wordpress-3.4.2-de_DE.tar.gz) = 4944236 Modified: head/german/wordpress/pkg-descr ============================================================================== --- head/german/wordpress/pkg-descr Sat Oct 13 17:16:53 2012 (r305840) +++ head/german/wordpress/pkg-descr Sat Oct 13 17:46:26 2012 (r305841) @@ -4,4 +4,4 @@ with a focus on aesthetics, web standard More simply, Wordpress is what you use when you want to work with your blogging software, not fight it. -WWW: http://de.wordpress.org/ +WWW: http://de.wordpress.org/ From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 17:48:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A2D0ECC; Sat, 13 Oct 2012 17:48:42 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E6F138FC0A; Sat, 13 Oct 2012 17:48:41 +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 q9DHmfpd073594; Sat, 13 Oct 2012 17:48:41 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DHmf71073591; Sat, 13 Oct 2012 17:48:41 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201210131748.q9DHmf71073591@svn.freebsd.org> From: Gabor Kovesdan Date: Sat, 13 Oct 2012 17:48:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305842 - head/archivers/rar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 17:48:42 -0000 Author: gabor Date: Sat Oct 13 17:48:41 2012 New Revision: 305842 URL: http://svn.freebsd.org/changeset/ports/305842 Log: - Update to 4.2.0 PR: ports/170061 Submitted by: Svyatoslav Lempert Feature safe: yes Modified: head/archivers/rar/Makefile head/archivers/rar/distinfo Modified: head/archivers/rar/Makefile ============================================================================== --- head/archivers/rar/Makefile Sat Oct 13 17:46:26 2012 (r305841) +++ head/archivers/rar/Makefile Sat Oct 13 17:48:41 2012 (r305842) @@ -6,7 +6,7 @@ # PORTNAME= rar -PORTVERSION= 4.1.1 +PORTVERSION= 4.2.0 PORTEPOCH= 3 CATEGORIES= archivers MASTER_SITES= http://www.rarlab.com/rar/ Modified: head/archivers/rar/distinfo ============================================================================== --- head/archivers/rar/distinfo Sat Oct 13 17:46:26 2012 (r305841) +++ head/archivers/rar/distinfo Sat Oct 13 17:48:41 2012 (r305842) @@ -1,2 +1,2 @@ -SHA256 (rarbsd-4.1.1.tar.gz) = 93eb0ffd9638996d0a2dc7a76aee776934c0f35495ad17e7586ba28f61f6e752 -SIZE (rarbsd-4.1.1.tar.gz) = 885875 +SHA256 (rarbsd-4.2.0.tar.gz) = 922edda3c856ec98159793b831ec1746e0ddea54b9e5ea12a0bb3aec79824718 +SIZE (rarbsd-4.2.0.tar.gz) = 914549 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 18:04:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D86307A0; Sat, 13 Oct 2012 18:04:57 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B68B08FC0A; Sat, 13 Oct 2012 18:04:57 +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 q9DI4v42076267; Sat, 13 Oct 2012 18:04:57 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DI4vrq076263; Sat, 13 Oct 2012 18:04:57 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201210131804.q9DI4vrq076263@svn.freebsd.org> From: Gabor Kovesdan Date: Sat, 13 Oct 2012 18:04:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305843 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 18:04:57 -0000 Author: gabor Date: Sat Oct 13 18:04:57 2012 New Revision: 305843 URL: http://svn.freebsd.org/changeset/ports/305843 Log: - Let amavisd_ram respect tmpfs [1] - Fix amavis-p0fanalyzer startup script [2] - Bump PORTREVISION PR: ports/169660 [1], ports/172182 [2] Submitted by: Helmut Schneider [1], Rouslan Iskhakov [2] Feature safe: yes Modified: head/security/amavisd-new/Makefile head/security/amavisd-new/files/amavis-p0fanalyzer.in head/security/amavisd-new/files/amavisd.in Modified: head/security/amavisd-new/Makefile ============================================================================== --- head/security/amavisd-new/Makefile Sat Oct 13 17:48:41 2012 (r305842) +++ head/security/amavisd-new/Makefile Sat Oct 13 18:04:57 2012 (r305843) @@ -1,13 +1,8 @@ -# New ports collection makefile for: amavisd-new -# Date created: 05 Jun 2002 -# Whom: Christopher K Davis (ckd-freebsd@ckdhr.com) -# # $FreeBSD$ -# -# Based on amavisd ports makefile. PORTNAME= amavisd-new PORTVERSION= 2.8.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= http://www.ijs.si/software/amavisd/ \ Modified: head/security/amavisd-new/files/amavis-p0fanalyzer.in ============================================================================== --- head/security/amavisd-new/files/amavis-p0fanalyzer.in Sat Oct 13 17:48:41 2012 (r305842) +++ head/security/amavisd-new/files/amavis-p0fanalyzer.in Sat Oct 13 18:04:57 2012 (r305843) @@ -9,7 +9,6 @@ amavis_p0fanalyzer_enable="${amavis_p0fa 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_p0f_daemon_flags="${amavis_p0f_daemon_flags--l}" amavis_p0fanalyzer_flags="${amavis_p0fanalyzer_flags-2345}" . /etc/rc.subr @@ -23,8 +22,7 @@ stop_cmd=p0fanalyzer_stop p0fanalyzer_start() { echo "Starting p0f-analyzer." && \ %%DAEMON%% ${amavis_p0fanalyzer_pidfile1} \ - %%PREFIX%%/bin/p0f ${amavis_p0f_daemon_flags} \ - "${amavis_p0fanalyzer_p0f_filter}" 2>&1 | \ + %%PREFIX%%/bin/p0f "${amavis_p0fanalyzer_p0f_filter}" 2>&1 | \ %%DAEMON%% ${amavis_p0fanalyzer_pidfile2} \ %%PREFIX%%/sbin/p0f-analyzer.pl ${amavis_p0fanalyzer_flags} } Modified: head/security/amavisd-new/files/amavisd.in ============================================================================== --- head/security/amavisd-new/files/amavisd.in Sat Oct 13 17:48:41 2012 (r305842) +++ head/security/amavisd-new/files/amavisd.in Sat Oct 13 18:04:57 2012 (r305843) @@ -36,8 +36,8 @@ if [ ${amavisd_ram} ];then 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 '^/dev/md' > /dev/null - if [ $? -eq 1 ];then + df /var/amavis/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 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 18:07:14 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B938A893; Sat, 13 Oct 2012 18:07:14 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id A16F18FC08; Sat, 13 Oct 2012 18:07: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 q9DI7ERj076712; Sat, 13 Oct 2012 18:07:14 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DI7Etl076706; Sat, 13 Oct 2012 18:07:14 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201210131807.q9DI7Etl076706@svn.freebsd.org> From: Hiroki Sato Date: Sat, 13 Oct 2012 18:07:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305844 - in head/print/ghostscript9: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 18:07:14 -0000 Author: hrs Date: Sat Oct 13 18:07:14 2012 New Revision: 305844 URL: http://svn.freebsd.org/changeset/ports/305844 Log: Update to 9.06. Changes include: - PDF/A-2 - pdfwrite now supports the creation of PDF/A-2 files. Simply specifying "-dPDFA" continues to have the old behaviour of creating PDF/A-1b files. For PDF/A-2 the command line should include "-dPDFA=2". - pdfwrite "Server mode" - pdfwrite can now be run in "server mode" which allows the device to be closed without closing the interpreter. This means it is no longer necessary to terminate GS before starting a new PDF conversion. Feature safe: yes Modified: head/print/ghostscript9/Makefile head/print/ghostscript9/distinfo head/print/ghostscript9/files/patch-base-gs.mak head/print/ghostscript9/files/patch-base-unix-gcc.mak head/print/ghostscript9/pkg-plist Modified: head/print/ghostscript9/Makefile ============================================================================== --- head/print/ghostscript9/Makefile Sat Oct 13 18:04:57 2012 (r305843) +++ head/print/ghostscript9/Makefile Sat Oct 13 18:07:14 2012 (r305844) @@ -1,13 +1,7 @@ -# New ports collection makefile for: ghostscript9 -# Date created: 17 May, 2011 -# Whom: hrs -# # $FreeBSD$ -# PORTNAME= ghostscript -PORTVERSION= 9.05 -PORTREVISION= 5 +PORTVERSION= 9.06 CATEGORIES= print MASTER_SITES= http://downloads.ghostscript.com/public/:gs_srcs \ SF/ghostscript/GPL%20Ghostscript/${PORTVERSION}:gs_srcs \ @@ -125,14 +119,14 @@ CONFIGURE_ARGS+= --without-libpaper .endif .if ${PORT_OPTIONS:MFONTCONFIG} -LIB_DEPENDS+= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig +LIB_DEPENDS+= fontconfig:${PORTSDIR}/x11-fonts/fontconfig CONFIGURE_ARGS+= --enable-fontconfig .else CONFIGURE_ARGS+= --disable-fontconfig .endif # FT_BRIDGE=1 by default -LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2 MAKE_ENV+= FT_BRIDGE=1 ALL_TARGET= so Modified: head/print/ghostscript9/distinfo ============================================================================== --- head/print/ghostscript9/distinfo Sat Oct 13 18:04:57 2012 (r305843) +++ head/print/ghostscript9/distinfo Sat Oct 13 18:07:14 2012 (r305844) @@ -1,4 +1,4 @@ -SHA256 (ghostscript/ghostscript-9.05.tar.bz2) = 0f41212af3a5a552ab2302cd90606dc8245be34490a699726dc95ed3cd89ceac -SIZE (ghostscript/ghostscript-9.05.tar.bz2) = 28279634 +SHA256 (ghostscript/ghostscript-9.06.tar.bz2) = 05acd1b576899572ef8ecbc25637cf73cbd0be267e651732db3012db33088e04 +SIZE (ghostscript/ghostscript-9.06.tar.bz2) = 29246039 SHA256 (ghostscript/epag-3.09.tar.gz) = ad10eca44c781a5851d5a8993dcd95b2e2b99392cbf2c8372a5a658f3b991b3b SIZE (ghostscript/epag-3.09.tar.gz) = 12858 Modified: head/print/ghostscript9/files/patch-base-gs.mak ============================================================================== --- head/print/ghostscript9/files/patch-base-gs.mak Sat Oct 13 18:04:57 2012 (r305843) +++ head/print/ghostscript9/files/patch-base-gs.mak Sat Oct 13 18:07:14 2012 (r305844) @@ -1,11 +1,11 @@ ---- base/gs.mak.orig 2010-05-23 15:46:23.000000000 +0900 -+++ base/gs.mak 2010-05-23 15:57:37.000000000 +0900 -@@ -415,7 +415,7 @@ +--- base/gs.mak.orig 2012-08-08 17:01:36.000000000 +0900 ++++ base/gs.mak 2012-10-14 02:29:03.000000000 +0900 +@@ -437,7 +437,7 @@ ld_tr=$(GLGENDIR)$(D)ld.tr $(ld_tr) : \ $(GS_MAK) $(TOP_MAKEFILES) $(GLSRCDIR)$(D)version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) $(GLGENDIR)$(D)libcore.dev -- $(EXP)$(GENCONF_XE) $(devs_tr) -h $(gconfig_h) $(CONFILES) $(CONFLDTR) $(ld_tr) -+ $(EXP)$(GENCONF_XE) $(devs_tr) -h /dev/stdout $(CONFILES) $(CONFLDTR) $(ld_tr) | awk 'BEGIN{j=0; p=1;} /jpeg_device/ {if(j++ > 0) p=0;} // {if(p==1) { print; } else { p=1 } }' > $(gconfig_h) - $(EXP)$(ECHOGS_XE) -a $(gconfig_h) $(GCONFIG_EXTRAS) +- $(EXP)$(GENCONF_XE) $(devs_tr) -h $(gconfxx_h) $(CONFILES) $(CONFLDTR) $(ld_tr) ++ $(EXP)$(GENCONF_XE) $(devs_tr) -h /dev/stdout $(gconfxx_h) $(CONFILES) $(CONFLDTR) $(ld_tr) | awk 'BEGIN{j=0; p=1;} /jpeg_device/ {if(j++ > 0) p=0;} // { if(p==1) { print; } else { p=1 } }' > $(gconfxx_h) + $(EXP)$(ECHOGS_XE) -a $(gconfxx_h) $(GCONFIG_EXTRAS) - $(gconfig_h) : $(ld_tr) + $(gconfxx_h) : $(ld_tr) Modified: head/print/ghostscript9/files/patch-base-unix-gcc.mak ============================================================================== --- head/print/ghostscript9/files/patch-base-unix-gcc.mak Sat Oct 13 18:04:57 2012 (r305843) +++ head/print/ghostscript9/files/patch-base-unix-gcc.mak Sat Oct 13 18:07:14 2012 (r305844) @@ -1,6 +1,6 @@ ---- base/unix-gcc.mak.orig 2011-08-05 20:12:20.000000000 +0900 -+++ base/unix-gcc.mak 2011-12-06 15:26:48.000000000 +0900 -@@ -21,16 +21,17 @@ +--- base/unix-gcc.mak.orig 2012-08-08 17:01:36.000000000 +0900 ++++ base/unix-gcc.mak 2012-10-14 02:32:51.000000000 +0900 +@@ -22,16 +22,17 @@ # source, generated intermediate file, and object directories # for the graphics library (GL) and the PostScript/PDF interpreter (PS). @@ -27,7 +27,7 @@ # Do not edit the next group of lines. -@@ -49,11 +50,10 @@ +@@ -50,11 +51,10 @@ # the directories also define the default search path for the # initialization files (gs_*.ps) and the fonts. @@ -42,7 +42,7 @@ exec_prefix = $(prefix) bindir = $(exec_prefix)/bin scriptdir = $(bindir) -@@ -103,7 +103,7 @@ +@@ -104,7 +104,7 @@ # This uses the more secure temporary file creation call # Enable this if it is available on your platform. @@ -51,7 +51,7 @@ # Define the name of the executable file. -@@ -137,7 +137,7 @@ +@@ -139,7 +139,7 @@ # some older JPEG streams that violate the standard. If the JPEG # library built from local sources, the patch will be applied. @@ -60,7 +60,7 @@ JPEG_NAME=jpeg # Define the directory where the PNG library sources are stored, -@@ -151,13 +151,13 @@ +@@ -153,13 +153,13 @@ # what its name is. # See gs.mak and Make.htm for more information. @@ -76,7 +76,7 @@ TIFFSRCDIR=tiff TIFFPLATFORM=unix TIFFCONFIG_SUFFIX=.unix -@@ -172,15 +172,23 @@ +@@ -174,15 +174,23 @@ # what its name is (usually libz, but sometimes libgz). # See gs.mak and Make.htm for more information. @@ -102,7 +102,7 @@ # Define the directory where the icclib source are stored. # See icclib.mak for more information ICCSRCDIR=icclib -@@ -226,7 +234,7 @@ +@@ -223,7 +231,7 @@ # Define the name of the C compiler. @@ -111,7 +111,7 @@ # Define the name of the linker for the final link step. # Normally this is the same as the C compiler. -@@ -243,7 +251,7 @@ +@@ -240,7 +248,7 @@ # Define the added flags for standard, debugging, profiling # and shared object builds. @@ -120,7 +120,7 @@ CFLAGS_DEBUG=-g -O0 CFLAGS_PROFILE=-pg -O2 CFLAGS_SO=-fPIC -@@ -259,7 +267,8 @@ +@@ -256,7 +264,8 @@ # We don't include -ansi, because this gets in the way of the platform- # specific stuff that typically needs; nevertheless, we expect # gcc to accept ANSI-style function prototypes and function definitions. @@ -130,7 +130,7 @@ CFLAGS=$(CFLAGS_STANDARD) $(GCFLAGS) $(XCFLAGS) -@@ -270,7 +279,7 @@ +@@ -267,7 +276,7 @@ # -R /usr/local/xxx/lib:/usr/local/lib # giving the full path names of the shared library directories. # XLDFLAGS can be set from the command line. @@ -139,7 +139,7 @@ LDFLAGS=$(XLDFLAGS) -@@ -281,7 +290,7 @@ +@@ -278,7 +287,7 @@ # Solaris may need -lnsl -lsocket -lposix4. # (Libraries required by individual drivers are handled automatically.) @@ -148,7 +148,7 @@ # Define the standard libraries to search at the end of linking. # Most platforms require -lpthread for the POSIX threads library; -@@ -303,7 +312,7 @@ +@@ -300,7 +309,7 @@ # Note that x_.h expects to find the header files in $(XINCLUDE)/X11, # not in $(XINCLUDE). @@ -157,7 +157,7 @@ # Define the directory/ies and library names for the X11 library files. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH -@@ -318,26 +327,26 @@ +@@ -315,29 +324,29 @@ #XLIBS=Xt SM ICE Xext X11 #XLIBDIRS=-L/usr/local/X/lib @@ -175,6 +175,9 @@ -#SYNC=posync +SYNC=posync + # define the file name extension for a shared lib + DYNANIC_LIB_EXT=so + # Default is No sync primitives since some platforms don't have it (HP-UX) -SYNC=nosync +#SYNC=nosync Modified: head/print/ghostscript9/pkg-plist ============================================================================== --- head/print/ghostscript9/pkg-plist Sat Oct 13 18:04:57 2012 (r305843) +++ head/print/ghostscript9/pkg-plist Sat Oct 13 18:07:14 2012 (r305844) @@ -1,5 +1,4 @@ @comment $FreeBSD: /tmp/pcvs/ports/print/ghostscript9/pkg-plist,v 1.5 2012-02-12 18:10:49 hrs Exp $ -bin/dumphint bin/dvipdf bin/eps2eps %%GS_dmprt%%bin/ert @@ -271,8 +270,10 @@ lib/libgs.so.%%GS_VERSION%% %%DATADIR%%/%%GS_VERSION%%/iccprofiles/sgray.icc %%DATADIR%%/%%GS_VERSION%%/iccprofiles/srgb.icc %%DATADIR%%/%%GS_VERSION%%/doc/API.htm +%%DATADIR%%/%%GS_VERSION%%/doc/AUTHORS %%DATADIR%%/%%GS_VERSION%%/doc/C-style.htm %%DATADIR%%/%%GS_VERSION%%/doc/Changes.htm +%%DATADIR%%/%%GS_VERSION%%/doc/COPYING %%DATADIR%%/%%GS_VERSION%%/doc/Commprod.htm %%DATADIR%%/%%GS_VERSION%%/doc/DLL.htm %%DATADIR%%/%%GS_VERSION%%/doc/Deprecated.htm @@ -283,6 +284,8 @@ lib/libgs.so.%%GS_VERSION%% %%DATADIR%%/%%GS_VERSION%%/doc/Devices.htm %%DATADIR%%/%%GS_VERSION%%/doc/Drivers.htm %%DATADIR%%/%%GS_VERSION%%/doc/Fonts.htm +%%DATADIR%%/%%GS_VERSION%%/doc/GS9_Color_Management.pdf +%%DATADIR%%/%%GS_VERSION%%/doc/GS9_Color_Management.tex %%DATADIR%%/%%GS_VERSION%%/doc/Helpers.htm %%DATADIR%%/%%GS_VERSION%%/doc/Hershey.htm %%DATADIR%%/%%GS_VERSION%%/doc/History1.htm @@ -304,15 +307,21 @@ lib/libgs.so.%%GS_VERSION%% %%DATADIR%%/%%GS_VERSION%%/doc/Ps-style.htm %%DATADIR%%/%%GS_VERSION%%/doc/Ps2epsi.htm %%DATADIR%%/%%GS_VERSION%%/doc/Ps2pdf.htm +%%DATADIR%%/%%GS_VERSION%%/doc/Ps2ps2.htm %%DATADIR%%/%%GS_VERSION%%/doc/Psfiles.htm %%DATADIR%%/%%GS_VERSION%%/doc/Readme.htm %%DATADIR%%/%%GS_VERSION%%/doc/Release.htm %%DATADIR%%/%%GS_VERSION%%/doc/Source.htm %%DATADIR%%/%%GS_VERSION%%/doc/Unix-lpr.htm %%DATADIR%%/%%GS_VERSION%%/doc/Use.htm +%%DATADIR%%/%%GS_VERSION%%/doc/WhatIsGS.htm %%DATADIR%%/%%GS_VERSION%%/doc/Xfonts.htm %%DATADIR%%/%%GS_VERSION%%/doc/gs.css +%%DATADIR%%/%%GS_VERSION%%/doc/gs-vms.hlp +%%DATADIR%%/%%GS_VERSION%%/doc/gsdoc.el %%DATADIR%%/%%GS_VERSION%%/doc/index.html +%%DATADIR%%/%%GS_VERSION%%/doc/pscet_status.txt +%%DATADIR%%/%%GS_VERSION%%/doc/thirdparty.htm %%DATADIR%%/%%GS_VERSION%%/examples/cjk/all_ac1.ps %%DATADIR%%/%%GS_VERSION%%/examples/cjk/all_aj1.ps %%DATADIR%%/%%GS_VERSION%%/examples/cjk/all_ak1.ps @@ -335,7 +344,10 @@ lib/libgs.so.%%GS_VERSION%% %%DATADIR%%/%%GS_VERSION%%/examples/grayalph.ps %%DATADIR%%/%%GS_VERSION%%/examples/ridt91.eps %%DATADIR%%/%%GS_VERSION%%/examples/snowflak.ps +%%DATADIR%%/%%GS_VERSION%%/examples/text_graph_image_cmyk_rgb.pdf +%%DATADIR%%/%%GS_VERSION%%/examples/text_graphic_image.pdf %%DATADIR%%/%%GS_VERSION%%/examples/tiger.eps +%%DATADIR%%/%%GS_VERSION%%/examples/transparency_example.ps %%DATADIR%%/%%GS_VERSION%%/examples/vasarely.ps %%DATADIR%%/%%GS_VERSION%%/examples/waterfal.ps %%DATADIR%%/%%GS_VERSION%%/Resource/Init/FAPIcidfmap @@ -420,7 +432,6 @@ lib/libgs.so.%%GS_VERSION%% %%DATADIR%%/%%GS_VERSION%%/lib/cid2code.ps %%DATADIR%%/%%GS_VERSION%%/lib/decrypt.ps %%DATADIR%%/%%GS_VERSION%%/lib/docie.ps -%%DATADIR%%/%%GS_VERSION%%/lib/dumphint.ps %%DATADIR%%/%%GS_VERSION%%/lib/font2c.ps %%DATADIR%%/%%GS_VERSION%%/lib/font2pcl.ps %%DATADIR%%/%%GS_VERSION%%/lib/gslp.ps From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 18:24:46 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AE19EF7; Sat, 13 Oct 2012 18:24:46 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 744638FC14; Sat, 13 Oct 2012 18:24:46 +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 q9DIOkJT079475; Sat, 13 Oct 2012 18:24:46 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DIOkV5079473; Sat, 13 Oct 2012 18:24:46 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201210131824.q9DIOkV5079473@svn.freebsd.org> From: Ryan Steinmetz Date: Sat, 13 Oct 2012 18:24:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305845 - head/net-mgmt/snmp4nagios X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 18:24:46 -0000 Author: zi Date: Sat Oct 13 18:24:45 2012 New Revision: 305845 URL: http://svn.freebsd.org/changeset/ports/305845 Log: - Convert to OptionsNG Feature safe: yes Modified: head/net-mgmt/snmp4nagios/Makefile Modified: head/net-mgmt/snmp4nagios/Makefile ============================================================================== --- head/net-mgmt/snmp4nagios/Makefile Sat Oct 13 18:07:14 2012 (r305844) +++ head/net-mgmt/snmp4nagios/Makefile Sat Oct 13 18:24:45 2012 (r305845) @@ -22,7 +22,10 @@ GNU_CONFIGURE= yes NAGIOSWWWDIR?= www/nagios NAGIOSDIR?= /var/spool/nagios -OPTIONS= RRDTOOL "Build with rrdtool support" OFF +OPTIONS_DEFINE= RRDTOOL +RRDTOOL_DESC= Build with rrdtool support + +.include CONFIGURE_ARGS= --sbindir=${PREFIX}/${NAGIOSWWWDIR}/cgi-bin \ --bindir=${PREFIX}/libexec/nagios \ @@ -39,7 +42,7 @@ CFLAGS+= -I${LOCALBASE}/include .include -.if defined(WITH_RRDTOOL) +.if ${PORT_OPTIONS:MRRDTOOL} LIB_DEPENDS+= rrd:${PORTSDIR}/databases/rrdtool CONFIGURE_ARGS+=--with-rrd PLIST_SUB+= RRD="" From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 18:25:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D2011D7; Sat, 13 Oct 2012 18:25:43 +0000 (UTC) (envelope-from zeising@daemonic.se) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id D9E668FC0A; Sat, 13 Oct 2012 18:25:42 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 6117840004; Sat, 13 Oct 2012 20:25:41 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id 5668740006; Sat, 13 Oct 2012 20:25:41 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bernadotte.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=AWL autolearn=disabled version=3.3.1 X-Spam-Score: 0.0 Received: from mx.daemonic.se (h-45-105.a163.priv.bahnhof.se [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id AA50240004; Sat, 13 Oct 2012 20:25:40 +0200 (CEST) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3XfDqm2HLCz8ggx; Sat, 13 Oct 2012 20:25:40 +0200 (CEST) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id r34UfNXEk2K0; Sat, 13 Oct 2012 20:25:38 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3XfDqk1XbNz8ggv; Sat, 13 Oct 2012 20:25:38 +0200 (CEST) Received: from tifa.daemonic.se (tifa.daemonic.se [10.32.0.6]) by mail.daemonic.se (Postfix) with ESMTPSA id 3XfDqk0nzLz9Ctq; Sat, 13 Oct 2012 20:25:38 +0200 (CEST) Received: from tifa.daemonic.se (localhost [IPv6:::1]) by tifa.daemonic.se (Postfix) with ESMTP id 1C35C22AFA; Sat, 13 Oct 2012 20:25:36 +0200 (CEST) Message-ID: <5079B220.80206@daemonic.se> Date: Sat, 13 Oct 2012 20:25:36 +0200 From: Niclas Zeising User-Agent: Mutt/1.5.21 MIME-Version: 1.0 To: Gabor Kovesdan Subject: Re: svn commit: r305843 - in head/security/amavisd-new: . files References: <201210131804.q9DI4vrq076263@svn.freebsd.org> In-Reply-To: <201210131804.q9DI4vrq076263@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 18:25:43 -0000 On 10/13/12 20:04, Gabor Kovesdan wrote: > > Modified: head/security/amavisd-new/files/amavisd.in > ============================================================================== > --- head/security/amavisd-new/files/amavisd.in Sat Oct 13 17:48:41 2012 (r305842) > +++ head/security/amavisd-new/files/amavisd.in Sat Oct 13 18:04:57 2012 (r305843) > @@ -36,8 +36,8 @@ if [ ${amavisd_ram} ];then > 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 '^/dev/md'> /dev/null > - if [ $? -eq 1 ];then > + df /var/amavis/tmp | grep -E '^(/dev/md|tmpfs)'> /dev/null ^^^^^^^^^^^^^^^ Was this intentional? It seems like it would break things for people using a different directory for amavisd related things. > + if [ $? -eq 1 ]; then > mdmfs -s ${amavisd_ram} -p 750 -w %%AMAVISUSER%%:%%AMAVISGROUP%% md %%AMAVISDIR%%/tmp || true > fi > fi Regards! -- Niclas Zeising From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 18:35:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 20B62705; Sat, 13 Oct 2012 18:35:20 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 09E7F8FC16; Sat, 13 Oct 2012 18:35:20 +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 q9DIZJ3E081280; Sat, 13 Oct 2012 18:35:19 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DIZJaQ081278; Sat, 13 Oct 2012 18:35:19 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201210131835.q9DIZJaQ081278@svn.freebsd.org> From: Gabor Kovesdan Date: Sat, 13 Oct 2012 18:35:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305846 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 18:35:20 -0000 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 Modified: head/security/amavisd-new/files/amavisd.in Modified: head/security/amavisd-new/files/amavisd.in ============================================================================== --- head/security/amavisd-new/files/amavisd.in Sat Oct 13 18:24:45 2012 (r305845) +++ head/security/amavisd-new/files/amavisd.in Sat Oct 13 18:35:19 2012 (r305846) @@ -36,7 +36,7 @@ if [ ${amavisd_ram} ];then echo "WARNING: using ramdisk is reported to be unstable and" echo "thus it is highly recommended to be turned off." echo "========================================================" - df /var/amavis/tmp | grep -E '^(/dev/md|tmpfs)' > /dev/null + 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 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 18:43:32 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CADDCD0; Sat, 13 Oct 2012 18:43:32 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0B2B38FC0A; Sat, 13 Oct 2012 18:43:32 +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 q9DIhVEP082921; Sat, 13 Oct 2012 18:43:31 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DIhV5U082917; Sat, 13 Oct 2012 18:43:31 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201210131843.q9DIhV5U082917@svn.freebsd.org> From: Gerald Pfeifer Date: Sat, 13 Oct 2012 18:43:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305847 - head/emulators/wine-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 18:43:32 -0000 Author: gerald Date: Sat Oct 13 18:43:31 2012 New Revision: 305847 URL: http://svn.freebsd.org/changeset/ports/305847 Log: Update to Wine 1.5.15. This includes the following changes: - Full support for layered windows. - New version of the Gecko engine based on Firefox 16. - Support for broadcast sockets used by networked games. - Downloaded add-ons installers are now cached. - Support for persistent Internet cookies. - String optimizations in JavaScript. - Various bug fixes. Feature safe: yes Modified: head/emulators/wine-devel/Makefile head/emulators/wine-devel/distinfo head/emulators/wine-devel/pkg-plist Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Sat Oct 13 18:35:19 2012 (r305846) +++ head/emulators/wine-devel/Makefile Sat Oct 13 18:43:31 2012 (r305847) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -DISTVERSION= 1.5.14 +DISTVERSION= 1.5.15 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Sat Oct 13 18:35:19 2012 (r305846) +++ head/emulators/wine-devel/distinfo Sat Oct 13 18:43:31 2012 (r305847) @@ -1,2 +1,2 @@ -SHA256 (wine-1.5.14.tar.bz2) = 3e70ff0f900bf459dd6fa767bdac5543a27b76364f8ef89088300b867351df42 -SIZE (wine-1.5.14.tar.bz2) = 20745798 +SHA256 (wine-1.5.15.tar.bz2) = 2642698204bbc5d9fd04c30f3507fa08a62fa3b0a21e53cdfd2c5a4530b69454 +SIZE (wine-1.5.15.tar.bz2) = 20844051 Modified: head/emulators/wine-devel/pkg-plist ============================================================================== --- head/emulators/wine-devel/pkg-plist Sat Oct 13 18:35:19 2012 (r305846) +++ head/emulators/wine-devel/pkg-plist Sat Oct 13 18:43:31 2012 (r305847) @@ -1013,6 +1013,7 @@ lib/wine/fakedlls/explorer.exe lib/wine/fakedlls/explorerframe.dll lib/wine/fakedlls/extrac32.exe lib/wine/fakedlls/faultrep.dll +lib/wine/fakedlls/findstr.exe lib/wine/fakedlls/fltlib.dll lib/wine/fakedlls/fusion.dll lib/wine/fakedlls/fwpuclnt.dll @@ -1224,6 +1225,7 @@ lib/wine/fakedlls/scarddlg.dll lib/wine/fakedlls/sccbase.dll lib/wine/fakedlls/schannel.dll lib/wine/fakedlls/scrrun.dll +lib/wine/fakedlls/scsiport.sys lib/wine/fakedlls/secedit.exe lib/wine/fakedlls/secur32.dll lib/wine/fakedlls/security.dll @@ -1370,6 +1372,7 @@ lib/wine/fakedlls/xmllite.dll lib/wine/fakedlls/xolehlp.dll lib/wine/fakedlls/xpsprint.dll lib/wine/faultrep.dll.so +lib/wine/findstr.exe.so lib/wine/fltlib.dll.so lib/wine/fusion.dll.so lib/wine/fwpuclnt.dll.so @@ -1743,6 +1746,7 @@ lib/wine/scarddlg.dll.so lib/wine/sccbase.dll.so lib/wine/schannel.dll.so lib/wine/scrrun.dll.so +lib/wine/scsiport.sys.so lib/wine/secedit.exe.so lib/wine/secur32.dll.so lib/wine/security.dll.so From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 19:13:24 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27F2E6A4; Sat, 13 Oct 2012 19:13:24 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from server.mypc.hu (server.mypc.hu [87.229.73.95]) by mx1.freebsd.org (Postfix) with ESMTP id CA0E18FC08; Sat, 13 Oct 2012 19:13:23 +0000 (UTC) Received: from server.mypc.hu (localhost [127.0.0.1]) by server.mypc.hu (Postfix) with ESMTP id 0431C14E84FB; Sat, 13 Oct 2012 21:13:21 +0200 (CEST) X-Virus-Scanned: amavisd-new at server.mypc.hu Received: from server.mypc.hu ([127.0.0.1]) by server.mypc.hu (server.mypc.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id PehMug2egd-W; Sat, 13 Oct 2012 21:13:21 +0200 (CEST) Received: from [192.168.1.100] (5403A6BE.catv.pool.telekom.hu [84.3.166.190]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by server.mypc.hu (Postfix) with ESMTPSA id 9355914E84FE; Sat, 13 Oct 2012 20:35:10 +0200 (CEST) Message-ID: <5079B463.1040706@FreeBSD.org> Date: Sat, 13 Oct 2012 20:35:15 +0200 From: Gabor Kovesdan User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: Niclas Zeising Subject: Re: svn commit: r305843 - in head/security/amavisd-new: . files References: <201210131804.q9DI4vrq076263@svn.freebsd.org> <5079B220.80206@daemonic.se> In-Reply-To: <5079B220.80206@daemonic.se> X-Enigmail-Version: 1.4.4 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 19:13:24 -0000 Em 13-10-2012 20:25, Niclas Zeising escreveu: >> - df %%AMAVISDIR%%/tmp | grep '^/dev/md'> /dev/null >> - if [ $? -eq 1 ];then >> + df /var/amavis/tmp | grep -E '^(/dev/md|tmpfs)'> /dev/null > ^^^^^^^^^^^^^^^ > Was this intentional? It seems like it would break things for people > using a different directory for amavisd related things. Ooops! Of course, it was not intentional... Thanks! Gabor From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 19:40:43 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AD6EF66A; Sat, 13 Oct 2012 19:40:43 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 94E1A8FC12; Sat, 13 Oct 2012 19:40: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 q9DJehm2093876; Sat, 13 Oct 2012 19:40:43 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DJeh4W093869; Sat, 13 Oct 2012 19:40:43 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201210131940.q9DJeh4W093869@svn.freebsd.org> From: Hiroki Sato Date: Sat, 13 Oct 2012 19:40:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305848 - in head/net/openbgpd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 19:40:43 -0000 Author: hrs Date: Sat Oct 13 19:40:42 2012 New Revision: 305848 URL: http://svn.freebsd.org/changeset/ports/305848 Log: Update to 5.2.20121014. Feature safe: yes Added: head/net/openbgpd/files/patch-bgpctl_irr_asset.c (contents, props changed) head/net/openbgpd/files/patch-bgpctl_irr_output.c (contents, props changed) head/net/openbgpd/files/patch-bgpctl_mrtparser.c (contents, props changed) head/net/openbgpd/files/patch-bgpctl_mrtparser.h (contents, props changed) head/net/openbgpd/files/patch-bgpd_log.h (contents, props changed) head/net/openbgpd/files/patch-bgpd_name2id.c (contents, props changed) Modified: head/net/openbgpd/Makefile head/net/openbgpd/files/patch-bgpctl_Makefile head/net/openbgpd/files/patch-bgpctl_bgpctl.8 (contents, props changed) head/net/openbgpd/files/patch-bgpctl_bgpctl.c head/net/openbgpd/files/patch-bgpctl_irr_parser.c head/net/openbgpd/files/patch-bgpctl_irr_prefix.c head/net/openbgpd/files/patch-bgpctl_irrfilter.c head/net/openbgpd/files/patch-bgpctl_irrfilter.h head/net/openbgpd/files/patch-bgpctl_parser.c head/net/openbgpd/files/patch-bgpctl_parser.h head/net/openbgpd/files/patch-bgpctl_whois.c head/net/openbgpd/files/patch-bgpd_Makefile (contents, props changed) head/net/openbgpd/files/patch-bgpd_bgpd.8 (contents, props changed) head/net/openbgpd/files/patch-bgpd_bgpd.c head/net/openbgpd/files/patch-bgpd_bgpd.conf.5 (contents, props changed) head/net/openbgpd/files/patch-bgpd_bgpd.h (contents, props changed) head/net/openbgpd/files/patch-bgpd_carp.c head/net/openbgpd/files/patch-bgpd_config.c head/net/openbgpd/files/patch-bgpd_control.c head/net/openbgpd/files/patch-bgpd_kroute.c head/net/openbgpd/files/patch-bgpd_log.c head/net/openbgpd/files/patch-bgpd_mrt.c head/net/openbgpd/files/patch-bgpd_mrt.h head/net/openbgpd/files/patch-bgpd_parse.y head/net/openbgpd/files/patch-bgpd_pfkey.c head/net/openbgpd/files/patch-bgpd_pftable.c head/net/openbgpd/files/patch-bgpd_printconf.c head/net/openbgpd/files/patch-bgpd_rde.c head/net/openbgpd/files/patch-bgpd_rde.h head/net/openbgpd/files/patch-bgpd_rde_attr.c head/net/openbgpd/files/patch-bgpd_rde_decide.c head/net/openbgpd/files/patch-bgpd_rde_filter.c head/net/openbgpd/files/patch-bgpd_rde_prefix.c head/net/openbgpd/files/patch-bgpd_rde_rib.c head/net/openbgpd/files/patch-bgpd_rde_update.c head/net/openbgpd/files/patch-bgpd_session.c head/net/openbgpd/files/patch-bgpd_session.h head/net/openbgpd/files/patch-bgpd_timer.c head/net/openbgpd/files/patch-bgpd_util.c head/net/openbgpd/files/patch-openbsd-compat_openbsd-compat.h Modified: head/net/openbgpd/Makefile ============================================================================== --- head/net/openbgpd/Makefile Sat Oct 13 18:43:31 2012 (r305847) +++ head/net/openbgpd/Makefile Sat Oct 13 19:40:42 2012 (r305848) @@ -1,13 +1,8 @@ -# New ports collection makefile for: openbgpd -# Date created: May 10 2005 -# Whom: Florent Thoumie -# +# Created by: Florent Thoumie # $FreeBSD$ -# PORTNAME= openbgpd -PORTVERSION= 4.9.20110612 -PORTREVISION= 1 +PORTVERSION= 5.2.20121014 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_OPENBSD} MASTER_SITE_SUBDIR= OpenBGPD @@ -20,8 +15,9 @@ COMMENT= Free implementation of the Bord CONFLICTS= zebra-[0-9]* quagga-[0-9]* -OPTIONS= IPV6LLPEER \ - "Support nexthop using IPv6 link-local address" on +OPTIONS_DEFINE= IPV6LLPEER +OPTIONS_DEFAULT=IPV6LLPEER +IPV6LLPEER_DESC=Support nexthop using IPv6 link-local address .include Modified: head/net/openbgpd/files/patch-bgpctl_Makefile ============================================================================== --- head/net/openbgpd/files/patch-bgpctl_Makefile Sat Oct 13 18:43:31 2012 (r305847) +++ head/net/openbgpd/files/patch-bgpctl_Makefile Sat Oct 13 19:40:42 2012 (r305848) @@ -2,10 +2,10 @@ Index: bgpctl/Makefile =================================================================== RCS file: /home/cvs/private/hrs/openbgpd/bgpctl/Makefile,v retrieving revision 1.1.1.1 -retrieving revision 1.3 -diff -u -p -r1.1.1.1 -r1.3 +retrieving revision 1.4 +diff -u -p -r1.1.1.1 -r1.4 --- bgpctl/Makefile 30 Jun 2009 05:46:15 -0000 1.1.1.1 -+++ bgpctl/Makefile 2 Jul 2011 16:06:35 -0000 1.3 ++++ bgpctl/Makefile 13 Oct 2012 18:35:56 -0000 1.4 @@ -1,17 +1,18 @@ # $OpenBSD: Makefile,v 1.10 2007/12/20 17:08:48 henning Exp $ @@ -16,7 +16,8 @@ diff -u -p -r1.1.1.1 -r1.3 -SRCS= bgpctl.c parser.c buffer.c imsg.c util.c timer.c +SRCS= bgpctl.c parser.c util.c timer.c SRCS+= irrfilter.c whois.c irr_asset.c irr_prefix.c irr_output.c - SRCS+= irr_parser.c +-SRCS+= irr_parser.c ++SRCS+= irr_parser.c mrtparser.c +SRCS+= fmt_scaled.c imsg.c imsg-buffer.c CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes Modified: head/net/openbgpd/files/patch-bgpctl_bgpctl.8 ============================================================================== --- head/net/openbgpd/files/patch-bgpctl_bgpctl.8 Sat Oct 13 18:43:31 2012 (r305847) +++ head/net/openbgpd/files/patch-bgpctl_bgpctl.8 Sat Oct 13 19:40:42 2012 (r305848) @@ -2,13 +2,13 @@ Index: bgpctl/bgpctl.8 =================================================================== RCS file: /home/cvs/private/hrs/openbgpd/bgpctl/bgpctl.8,v retrieving revision 1.1.1.6 -retrieving revision 1.5 -diff -u -p -r1.1.1.6 -r1.5 +retrieving revision 1.6 +diff -u -p -r1.1.1.6 -r1.6 --- bgpctl/bgpctl.8 14 Feb 2010 20:20:13 -0000 1.1.1.6 -+++ bgpctl/bgpctl.8 2 Jul 2011 16:06:35 -0000 1.5 ++++ bgpctl/bgpctl.8 13 Oct 2012 18:35:56 -0000 1.6 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bgpctl.8,v 1.49 2009/06/06 06:11:17 claudio Exp $ -+.\" $OpenBSD: bgpctl.8,v 1.52 2009/11/03 08:09:15 jmc Exp $ ++.\" $OpenBSD: bgpctl.8,v 1.59 2012/05/27 20:49:42 jmc Exp $ .\" .\" Copyright (c) 2003 Henning Brauer .\" @@ -17,7 +17,7 @@ diff -u -p -r1.1.1.6 -r1.5 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: June 6 2009 $ -+.Dd $Mdocdate: May 3 2010 $ ++.Dd $Mdocdate: May 27 2012 $ .Dt BGPCTL 8 .Os .Sh NAME @@ -71,7 +71,7 @@ diff -u -p -r1.1.1.6 -r1.5 .It Cm neighbor Ar peer Cm up Take the BGP session to the specified neighbor up. .Ar peer -@@ -98,8 +113,10 @@ Note that the neighbor is not obliged to +@@ -98,12 +113,21 @@ Note that the neighbor is not obliged to all, even if it announced the route refresh capability. .Ar peer may be the neighbor's address or description. @@ -83,7 +83,18 @@ diff -u -p -r1.1.1.6 -r1.5 .It Cm network delete Ar prefix Remove the specified prefix from the list of announced networks. .It Cm network flush -@@ -122,7 +139,7 @@ view of the Forwarding Information Base. + Remove all dynamically added prefixes from the list of announced networks. ++.It Cm network mrt file Ar file filter ++Import networks from an MRT table dump for debugging purposes. ++.Ar filter ++can be specified similarly to the ++.Ar show mrt ++command. ++Only networks matching the filter will be imported. + .It Cm network show Ar family + Show all announced networks. + .Ar family , +@@ -122,7 +146,7 @@ view of the Forwarding Information Base. can be an IP address, in which case the route to this address is shown, or a flag: .Pp @@ -92,7 +103,7 @@ diff -u -p -r1.1.1.6 -r1.5 .It Cm connected Show only connected routes. .It Cm static -@@ -133,6 +150,14 @@ Show only routes originating from +@@ -133,9 +157,81 @@ Show only routes originating from itself. .It Cm nexthop Show only routes required to reach a BGP nexthop. @@ -107,7 +118,138 @@ diff -u -p -r1.1.1.6 -r1.5 .El .It Cm show interfaces Show the interface states. -@@ -243,10 +268,12 @@ and message counters. ++.It Xo ++.Cm show mrt ++.Op Ar options ++.Ar filter ++.Xc ++Show routes from an MRT table dump file. ++.Ar filter ++can be an IP address, a CIDR prefix, an AS filter, a combination or nothing: ++.Pp ++.Bl -tag -width "address/len all" -compact ++.It Ar address ++Show best matching route for address. ++.It Ar address Ns Li / Ns Ar len ++Show RIB entry for this CIDR prefix. ++.It Xo ++.Ar address Ns Li / Ns Ar len ++.Cm all ++.Xc ++Show all entries in the specified range. ++.\".It Ar address/len Cm longer-prefixes ++.It Cm as Ar as ++Show all entries with ++.Ar as ++anywhere in the AS path. ++.It Cm empty-as ++Show all entries that are internal routes with no AS's in the AS path. ++.It Cm neighbor Ar ip ++Show only entries from the specified peer. ++.It Cm peer-as Ar as ++Show all entries with ++.Ar as ++as leftmost AS. ++.It Cm source-as Ar as ++Show all entries with ++.Ar as ++as rightmost AS. ++.It Cm transit-as Ar as ++Show all entries with ++.Ar as ++anywhere but rightmost. ++.El ++.Pp ++Additionally, the following ++.Ar options ++are defined: ++.Pp ++.Bl -tag -width "file name" -compact ++.It Cm detail ++Show more detailed output for matching routes. ++.It Ar family ++Limit the output to the given address family. ++.It Cm file Ar name ++Read the MRT dump from file ++.Ar name ++instead of using stdin. ++.El ++.Pp ++Multiple options and filters can be used at the same time. ++.It Cm show summary ++Show a list of all neighbors, including information about the session state ++and message counters. ++.It Cm show summary terse ++Show a list of all neighbors, including information about the session state, ++in a terse format. + .It Cm show neighbor Ar peer modifier + Show detailed information about the neighbor identified by + .Ar peer , +@@ -183,33 +279,33 @@ Show all entries in the specified range. + Show all entries with + .Ar as + anywhere in the AS path. +-.It Cm source-as Ar as +-Show all entries with +-.Ar as +-as rightmost AS. +-.It Cm transit-as Ar as +-Show all entries with +-.Ar as +-anywhere but rightmost. +-.It Cm peer-as Ar as +-Show all entries with +-.Ar as +-as leftmost AS. +-.It Cm empty-as +-Show all entries that are internal routes with no AS's in the AS path. + .It Cm community Ar community + Show all entries with community + .Ar community . ++.It Cm empty-as ++Show all entries that are internal routes with no AS's in the AS path. ++.It Cm memory ++Show RIB memory statistics. + .It Cm neighbor Ar peer + Show only entries from the specified peer. +-.It Cm table Ar rib +-Show only entries from the specified RIB table. ++.It Cm peer-as Ar as ++Show all entries with ++.Ar as ++as leftmost AS. ++.It Cm source-as Ar as ++Show all entries with ++.Ar as ++as rightmost AS. + .It Cm summary + This is the same as the + .Ic show summary + command. +-.It Cm memory +-Show RIB memory statistics. ++.It Cm table Ar rib ++Show only entries from the specified RIB table. ++.It Cm transit-as Ar as ++Show all entries with ++.Ar as ++anywhere but rightmost. + .El + .Pp + Additionally, the following +@@ -217,8 +313,10 @@ Additionally, the following + are defined: + .Pp + .Bl -tag -width "detail" -compact ++.It Cm selected ++Show only selected routes. + .It Cm detail +-Show more detailed output for matched routes. ++Show more detailed output for matching routes. + .It Ar family + Limit the output to the given address family. + .It Cm in +@@ -243,10 +341,12 @@ and message counters. .It Cm show summary terse Show a list of all neighbors, including information about the session state, in a terse format. @@ -121,3 +263,25 @@ diff -u -p -r1.1.1.6 -r1.5 default .Xr bgpd 8 configuration file +@@ -260,10 +360,19 @@ control socket + .Xr bgpd 8 , + .Xr bgplg 8 , + .Xr bgplgsh 8 ++.Sh STANDARDS + .Rs +-.%R RFC 2622 +-.%T "Routing Policy Specification Language (RPSL)" ++.%A C. Alaettinoglu ++.%A C. Villamizar ++.%A E. Gerich ++.%A D. Kessens ++.%A D. Meyer ++.%A T. Bates ++.%A D. Karrenberg ++.%A M. Terpstra + .%D June 1999 ++.%R RFC 2622 ++.%T Routing Policy Specification Language (RPSL) + .Re + .Sh HISTORY + The Modified: head/net/openbgpd/files/patch-bgpctl_bgpctl.c ============================================================================== --- head/net/openbgpd/files/patch-bgpctl_bgpctl.c Sat Oct 13 18:43:31 2012 (r305847) +++ head/net/openbgpd/files/patch-bgpctl_bgpctl.c Sat Oct 13 19:40:42 2012 (r305848) @@ -2,13 +2,12 @@ Index: bgpctl/bgpctl.c =================================================================== RCS file: /home/cvs/private/hrs/openbgpd/bgpctl/bgpctl.c,v retrieving revision 1.1.1.7 -retrieving revision 1.8 -diff -u -p -r1.1.1.7 -r1.8 +diff -u -p -r1.1.1.7 bgpctl.c --- bgpctl/bgpctl.c 14 Feb 2010 20:20:14 -0000 1.1.1.7 -+++ bgpctl/bgpctl.c 2 Jul 2011 16:06:35 -0000 1.8 ++++ bgpctl/bgpctl.c 13 Oct 2012 18:49:31 -0000 @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpctl.c,v 1.142 2009/06/06 06:33:15 eric Exp $ */ -+/* $OpenBSD: bgpctl.c,v 1.157 2010/03/08 17:02:19 claudio Exp $ */ ++/* $OpenBSD: bgpctl.c,v 1.165 2012/09/12 05:57:10 claudio Exp $ */ /* * Copyright (c) 2003 Henning Brauer @@ -44,23 +43,25 @@ diff -u -p -r1.1.1.7 -r1.8 #include "bgpd.h" #include "session.h" -@@ -38,6 +50,10 @@ +@@ -37,6 +49,11 @@ + #include "log.h" #include "parser.h" #include "irrfilter.h" - ++#include "mrtparser.h" ++ +#if defined(__FreeBSD__) /* FreeBSD has no LINK_STATE_IS_UP macro. */ +#define LINK_STATE_IS_UP(_s) ((_s) >= LINK_STATE_UP) +#endif /* defined(__FreeBSD__) */ -+ + enum neighbor_views { NV_DEFAULT, - NV_TIMERS -@@ -50,12 +66,13 @@ int show_summary_msg(struct imsg *, in +@@ -50,12 +67,14 @@ int show_summary_msg(struct imsg *, in int show_summary_terse_msg(struct imsg *, int); int show_neighbor_terse(struct imsg *); int show_neighbor_msg(struct imsg *, enum neighbor_views); -void print_neighbor_capa_mp_safi(u_int8_t); +void print_neighbor_capa_mp(struct peer *); ++void print_neighbor_capa_restart(struct peer *); void print_neighbor_msgstats(struct peer *); void print_timer(const char *, time_t); static char *fmt_timeframe(time_t t); @@ -70,7 +71,7 @@ diff -u -p -r1.1.1.7 -r1.8 void show_network_head(void); void show_fib_flags(u_int16_t); int show_fib_msg(struct imsg *); -@@ -65,7 +82,7 @@ void show_interface_head(void); +@@ -65,7 +84,7 @@ void show_interface_head(void); int ift2ifm(int); const char * get_media_descr(int); const char * get_linkstate(int, int); @@ -79,15 +80,34 @@ diff -u -p -r1.1.1.7 -r1.8 int show_interface_msg(struct imsg *); void show_rib_summary_head(void); void print_prefix(struct bgpd_addr *, u_int8_t, u_int8_t); -@@ -74,7 +91,6 @@ void print_flags(u_int8_t, int); +@@ -73,16 +92,25 @@ const char * print_origin(u_int8_t, int + void print_flags(u_int8_t, int); int show_rib_summary_msg(struct imsg *); int show_rib_detail_msg(struct imsg *, int); ++void show_rib_brief(struct ctl_show_rib *, u_char *); ++void show_rib_detail(struct ctl_show_rib *, u_char *, int); ++void show_attr(void *, u_int16_t); void show_community(u_char *, u_int16_t); -const char *get_ext_subtype(u_int8_t); void show_ext_community(u_char *, u_int16_t); char *fmt_mem(int64_t); int show_rib_memory_msg(struct imsg *); -@@ -98,7 +114,7 @@ int + void send_filterset(struct imsgbuf *, struct filter_set_head *); + static const char *get_errstr(u_int8_t, u_int8_t); + int show_result(struct imsg *); ++void show_mrt_dump(struct mrt_rib *, struct mrt_peer *, void *); ++void network_mrt_dump(struct mrt_rib *, struct mrt_peer *, void *); ++void show_mrt_state(struct mrt_bgp_state *, void *); ++void show_mrt_msg(struct mrt_bgp_msg *, void *); ++void mrt_to_bgpd_addr(union mrt_addr *, struct bgpd_addr *); + + struct imsgbuf *ibuf; ++struct mrt_parser show_mrt = { show_mrt_dump, show_mrt_state, show_mrt_msg }; ++struct mrt_parser net_mrt = { network_mrt_dump, NULL, NULL }; + + __dead void + usage(void) +@@ -98,7 +126,7 @@ int main(int argc, char *argv[]) { struct sockaddr_un sun; @@ -96,7 +116,7 @@ diff -u -p -r1.1.1.7 -r1.8 struct imsg imsg; struct network_config net; struct parse_result *res; -@@ -128,8 +144,11 @@ main(int argc, char *argv[]) +@@ -128,8 +156,11 @@ main(int argc, char *argv[]) if ((res = parse(argc, argv)) == NULL) exit(1); @@ -109,7 +129,16 @@ diff -u -p -r1.1.1.7 -r1.8 memcpy(&neighbor.addr, &res->peeraddr, sizeof(neighbor.addr)); strlcpy(neighbor.descr, res->peerdesc, sizeof(neighbor.descr)); -@@ -164,24 +183,32 @@ main(int argc, char *argv[]) +@@ -154,7 +185,7 @@ main(int argc, char *argv[]) + case NONE: + case IRRFILTER: + usage(); +- /* not reached */ ++ /* NOTREACHED */ + case SHOW: + case SHOW_SUMMARY: + imsg_compose(ibuf, IMSG_CTL_SHOW_NEIGHBOR, 0, 0, -1, NULL, 0); +@@ -164,24 +195,32 @@ main(int argc, char *argv[]) imsg_compose(ibuf, IMSG_CTL_SHOW_TERSE, 0, 0, -1, NULL, 0); break; case SHOW_FIB: @@ -151,7 +180,7 @@ diff -u -p -r1.1.1.7 -r1.8 show_nexthop_head(); break; case SHOW_INTERFACE: -@@ -192,7 +219,7 @@ main(int argc, char *argv[]) +@@ -192,7 +231,7 @@ main(int argc, char *argv[]) case SHOW_NEIGHBOR_TIMERS: case SHOW_NEIGHBOR_TERSE: neighbor.show_timers = (res->action == SHOW_NEIGHBOR_TIMERS); @@ -160,7 +189,7 @@ diff -u -p -r1.1.1.7 -r1.8 imsg_compose(ibuf, IMSG_CTL_SHOW_NEIGHBOR, 0, 0, -1, &neighbor, sizeof(neighbor)); else -@@ -206,7 +233,7 @@ main(int argc, char *argv[]) +@@ -206,7 +245,7 @@ main(int argc, char *argv[]) memcpy(&ribreq.as, &res->as, sizeof(res->as)); type = IMSG_CTL_SHOW_RIB_AS; } @@ -169,16 +198,46 @@ diff -u -p -r1.1.1.7 -r1.8 memcpy(&ribreq.prefix, &res->addr, sizeof(res->addr)); ribreq.prefixlen = res->prefixlen; type = IMSG_CTL_SHOW_RIB_PREFIX; -@@ -220,7 +247,7 @@ main(int argc, char *argv[]) - memcpy(&ribreq.neighbor, &neighbor, - sizeof(ribreq.neighbor)); +@@ -217,15 +256,35 @@ main(int argc, char *argv[]) + sizeof(res->community)); + type = IMSG_CTL_SHOW_RIB_COMMUNITY; + } +- memcpy(&ribreq.neighbor, &neighbor, +- sizeof(ribreq.neighbor)); ++ memcpy(&ribreq.neighbor, &neighbor, sizeof(ribreq.neighbor)); strlcpy(ribreq.rib, res->rib, sizeof(ribreq.rib)); - ribreq.af = res->af; + ribreq.aid = res->aid; ribreq.flags = res->flags; imsg_compose(ibuf, type, 0, 0, -1, &ribreq, sizeof(ribreq)); if (!(res->flags & F_CTL_DETAIL)) -@@ -237,12 +264,14 @@ main(int argc, char *argv[]) + show_rib_summary_head(); + break; ++ case SHOW_MRT: ++ close(fd); ++ bzero(&ribreq, sizeof(ribreq)); ++ if (res->as.type != AS_NONE) ++ memcpy(&ribreq.as, &res->as, sizeof(res->as)); ++ if (res->addr.aid) { ++ memcpy(&ribreq.prefix, &res->addr, sizeof(res->addr)); ++ ribreq.prefixlen = res->prefixlen; ++ } ++ if (res->community.as != COMMUNITY_UNSET && ++ res->community.type != COMMUNITY_UNSET) ++ memcpy(&ribreq.community, &res->community, ++ sizeof(res->community)); ++ memcpy(&ribreq.neighbor, &neighbor, sizeof(ribreq.neighbor)); ++ ribreq.aid = res->aid; ++ ribreq.flags = res->flags; ++ show_mrt.arg = &ribreq; ++ if (!(res->flags & F_CTL_DETAIL)) ++ show_rib_summary_head(); ++ mrt_parse(res->mrtfd, &show_mrt, 1); ++ exit(0); + case SHOW_RIB_MEM: + imsg_compose(ibuf, IMSG_CTL_SHOW_RIB_MEM, 0, 0, -1, NULL, 0); + break; +@@ -237,12 +296,14 @@ main(int argc, char *argv[]) errx(1, "action==FIB"); break; case FIB_COUPLE: @@ -195,7 +254,7 @@ diff -u -p -r1.1.1.7 -r1.8 printf("decouple request sent.\n"); done = 1; break; -@@ -290,12 +319,21 @@ main(int argc, char *argv[]) +@@ -290,12 +351,40 @@ main(int argc, char *argv[]) break; case NETWORK_SHOW: bzero(&ribreq, sizeof(ribreq)); @@ -206,6 +265,25 @@ diff -u -p -r1.1.1.7 -r1.8 &ribreq, sizeof(ribreq)); show_network_head(); break; ++ case NETWORK_MRT: ++ bzero(&ribreq, sizeof(ribreq)); ++ if (res->as.type != AS_NONE) ++ memcpy(&ribreq.as, &res->as, sizeof(res->as)); ++ if (res->addr.aid) { ++ memcpy(&ribreq.prefix, &res->addr, sizeof(res->addr)); ++ ribreq.prefixlen = res->prefixlen; ++ } ++ if (res->community.as != COMMUNITY_UNSET && ++ res->community.type != COMMUNITY_UNSET) ++ memcpy(&ribreq.community, &res->community, ++ sizeof(res->community)); ++ memcpy(&ribreq.neighbor, &neighbor, sizeof(ribreq.neighbor)); ++ ribreq.aid = res->aid; ++ ribreq.flags = res->flags; ++ net_mrt.arg = &ribreq; ++ mrt_parse(res->mrtfd, &net_mrt, 1); ++ done = 1; ++ break; + case LOG_VERBOSE: + verbose = 1; + /* FALLTHROUGH */ @@ -218,7 +296,7 @@ diff -u -p -r1.1.1.7 -r1.8 } while (ibuf->w.queued) -@@ -304,13 +342,13 @@ main(int argc, char *argv[]) +@@ -304,13 +393,13 @@ main(int argc, char *argv[]) while (!done) { if ((n = imsg_read(ibuf)) == -1) @@ -234,7 +312,7 @@ diff -u -p -r1.1.1.7 -r1.8 if (n == 0) break; -@@ -329,6 +367,8 @@ main(int argc, char *argv[]) +@@ -329,6 +418,8 @@ main(int argc, char *argv[]) done = show_summary_terse_msg(&imsg, nodescr); break; case SHOW_FIB: @@ -243,7 +321,7 @@ diff -u -p -r1.1.1.7 -r1.8 done = show_fib_msg(&imsg); break; case SHOW_NEXTHOP: -@@ -356,9 +396,6 @@ main(int argc, char *argv[]) +@@ -356,9 +447,6 @@ main(int argc, char *argv[]) case SHOW_RIB_MEM: done = show_rib_memory_msg(&imsg); break; @@ -253,16 +331,18 @@ diff -u -p -r1.1.1.7 -r1.8 case NEIGHBOR: case NEIGHBOR_UP: case NEIGHBOR_DOWN: -@@ -373,6 +410,8 @@ main(int argc, char *argv[]) +@@ -373,6 +461,10 @@ main(int argc, char *argv[]) case NETWORK_REMOVE: case NETWORK_FLUSH: case IRRFILTER: + case LOG_VERBOSE: + case LOG_BRIEF: ++ case SHOW_MRT: ++ case NETWORK_MRT: break; } imsg_free(&imsg); -@@ -398,8 +437,8 @@ fmt_peer(const char *descr, const struct +@@ -398,8 +490,8 @@ fmt_peer(const char *descr, const struct } ip = log_addr(remote_addr); @@ -273,7 +353,27 @@ diff -u -p -r1.1.1.7 -r1.8 if (asprintf(&p, "%s/%u", ip, masklen) == -1) err(1, NULL); } else { -@@ -521,13 +560,15 @@ show_neighbor_msg(struct imsg *imsg, enu +@@ -430,7 +522,7 @@ show_summary_msg(struct imsg *imsg, int + p->conf.remote_masklen, nodescr); + if (strlen(s) >= 20) + s[20] = 0; +- printf("%-20s %8s %10llu %10llu %5u %-8s ", ++ printf("%-20s %8s %10" PRIu64 " %10" PRIu64 " %5u %-8s ", + s, log_as(p->conf.remote_as), + p->stats.msg_rcvd_open + p->stats.msg_rcvd_notification + + p->stats.msg_rcvd_update + p->stats.msg_rcvd_keepalive + +@@ -492,8 +584,8 @@ show_neighbor_terse(struct imsg *imsg) + switch (imsg->hdr.type) { + case IMSG_CTL_SHOW_NEIGHBOR: + p = imsg->data; +- printf("%llu %llu %llu %llu %llu %llu %llu " +- "%llu %llu %llu %u %u %llu %llu %llu %llu\n", ++ printf("%" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64 " " ++ "%" PRIu64 " %" PRIu64 " %" PRIu64 " %u %u %" PRIu64 " %" PRIu64 " %" PRIu64 " %" PRIu64 "\n", + p->stats.msg_sent_open, p->stats.msg_rcvd_open, + p->stats.msg_sent_notification, + p->stats.msg_rcvd_notification, +@@ -521,13 +613,15 @@ show_neighbor_msg(struct imsg *imsg, enu struct ctl_timer *t; struct in_addr ina; char buf[NI_MAXHOST], pbuf[NI_MAXSERV], *s; @@ -291,7 +391,7 @@ diff -u -p -r1.1.1.7 -r1.8 p->conf.remote_masklen != 128)) { if (asprintf(&s, "%s/%u", log_addr(&p->conf.remote_addr), -@@ -549,6 +590,10 @@ show_neighbor_msg(struct imsg *imsg, enu +@@ -549,6 +643,10 @@ show_neighbor_msg(struct imsg *imsg, enu printf(", Template"); if (p->conf.cloned) printf(", Cloned"); @@ -302,7 +402,7 @@ diff -u -p -r1.1.1.7 -r1.8 printf("\n"); if (p->conf.descr[0]) printf(" Description: %s\n", p->conf.descr); -@@ -563,17 +608,16 @@ show_neighbor_msg(struct imsg *imsg, enu +@@ -563,22 +661,24 @@ show_neighbor_msg(struct imsg *imsg, enu printf(" Last read %s, holdtime %us, keepalive interval %us\n", fmt_timeframe(p->stats.last_read), p->holdtime, p->holdtime/3); @@ -313,7 +413,7 @@ diff -u -p -r1.1.1.7 -r1.8 + if (p->capa.peer.mp[i]) + hascapamp = 1; + if (hascapamp || p->capa.peer.refresh || -+ p->capa.peer.restart || p->capa.peer.as4byte) { ++ p->capa.peer.grestart.restart || p->capa.peer.as4byte) { printf(" Neighbor capabilities:\n"); - if (p->capa.peer.mp_v4) { - printf(" Multiprotocol extensions: IPv4"); @@ -329,7 +429,17 @@ diff -u -p -r1.1.1.7 -r1.8 } if (p->capa.peer.refresh) printf(" Route Refresh\n"); -@@ -633,20 +677,16 @@ show_neighbor_msg(struct imsg *imsg, enu +- if (p->capa.peer.restart) +- printf(" Graceful Restart\n"); ++ if (p->capa.peer.grestart.restart) { ++ printf(" Graceful Restart"); ++ print_neighbor_capa_restart(p); ++ printf("\n"); ++ } + if (p->capa.peer.as4byte) + printf(" 4-byte AS numbers\n"); + } +@@ -633,20 +733,38 @@ show_neighbor_msg(struct imsg *imsg, enu } void @@ -356,10 +466,67 @@ diff -u -p -r1.1.1.7 -r1.8 + printf("%s%s", comma ? ", " : "", aid2str(i)); + comma = 1; + } ++} ++ ++void ++print_neighbor_capa_restart(struct peer *p) ++{ ++ int comma; ++ u_int8_t i; ++ ++ if (p->capa.peer.grestart.timeout) ++ printf(": Timeout: %d, ", p->capa.peer.grestart.timeout); ++ for (i = 0, comma = 0; i < AID_MAX; i++) ++ if (p->capa.peer.grestart.flags[i] & CAPA_GR_PRESENT) { ++ if (!comma && ++ p->capa.peer.grestart.flags[i] & CAPA_GR_RESTART) ++ printf("restarted, "); ++ if (comma) ++ printf(", "); ++ printf("%s", aid2str(i)); ++ if (p->capa.peer.grestart.flags[i] & CAPA_GR_FORWARD) ++ printf(" (preserved)"); ++ comma = 1; ++ } } void -@@ -680,7 +720,7 @@ print_neighbor_msgstats(struct peer *p) +@@ -654,17 +772,17 @@ print_neighbor_msgstats(struct peer *p) + { + printf(" Message statistics:\n"); + printf(" %-15s %-10s %-10s\n", "", "Sent", "Received"); +- printf(" %-15s %10llu %10llu\n", "Opens", ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n", "Opens", + p->stats.msg_sent_open, p->stats.msg_rcvd_open); +- printf(" %-15s %10llu %10llu\n", "Notifications", ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n", "Notifications", + p->stats.msg_sent_notification, p->stats.msg_rcvd_notification); +- printf(" %-15s %10llu %10llu\n", "Updates", ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n", "Updates", + p->stats.msg_sent_update, p->stats.msg_rcvd_update); +- printf(" %-15s %10llu %10llu\n", "Keepalives", ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n", "Keepalives", + p->stats.msg_sent_keepalive, p->stats.msg_rcvd_keepalive); +- printf(" %-15s %10llu %10llu\n", "Route Refresh", ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n", "Route Refresh", + p->stats.msg_sent_rrefresh, p->stats.msg_rcvd_rrefresh); +- printf(" %-15s %10llu %10llu\n\n", "Total", ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n\n", "Total", + p->stats.msg_sent_open + p->stats.msg_sent_notification + + p->stats.msg_sent_update + p->stats.msg_sent_keepalive + + p->stats.msg_sent_rrefresh, +@@ -673,14 +791,16 @@ print_neighbor_msgstats(struct peer *p) + p->stats.msg_rcvd_rrefresh); + printf(" Update statistics:\n"); + printf(" %-15s %-10s %-10s\n", "", "Sent", "Received"); +- printf(" %-15s %10llu %10llu\n", "Updates", ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n", "Updates", + p->stats.prefix_sent_update, p->stats.prefix_rcvd_update); +- printf(" %-15s %10llu %10llu\n", "Withdraws", ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n", "Withdraws", + p->stats.prefix_sent_withdraw, p->stats.prefix_rcvd_withdraw); ++ printf(" %-15s %10" PRIu64 " %10" PRIu64 "\n", "End-of-Rib", ++ p->stats.prefix_sent_eor, p->stats.prefix_rcvd_eor); } void @@ -368,7 +535,7 @@ diff -u -p -r1.1.1.7 -r1.8 { printf(" %-20s ", name); -@@ -745,6 +785,12 @@ show_fib_head(void) +@@ -745,6 +865,12 @@ show_fib_head(void) } void @@ -381,7 +548,7 @@ diff -u -p -r1.1.1.7 -r1.8 show_network_head(void) { printf("flags: S = Static\n"); -@@ -788,56 +834,44 @@ show_fib_flags(u_int16_t flags) +@@ -788,56 +914,44 @@ show_fib_flags(u_int16_t flags) int show_fib_msg(struct imsg *imsg) { @@ -456,7 +623,7 @@ diff -u -p -r1.1.1.7 -r1.8 default: break; } -@@ -848,35 +882,70 @@ show_fib_msg(struct imsg *imsg) +@@ -848,35 +962,70 @@ show_fib_msg(struct imsg *imsg) void show_nexthop_head(void) { @@ -545,7 +712,7 @@ diff -u -p -r1.1.1.7 -r1.8 } printf("\n"); break; -@@ -898,9 +967,8 @@ show_interface_head(void) +@@ -898,9 +1047,8 @@ show_interface_head(void) "Link state"); } @@ -557,7 +724,7 @@ diff -u -p -r1.1.1.7 -r1.8 const struct ifmedia_description ifm_type_descriptions[] = IFM_TYPE_DESCRIPTIONS; -@@ -936,36 +1004,36 @@ get_media_descr(int media_type) +@@ -936,36 +1084,36 @@ get_media_descr(int media_type) const char * get_linkstate(int media_type, int link_state) { @@ -566,9 +733,7 @@ diff -u -p -r1.1.1.7 -r1.8 - - if (link_state == LINK_STATE_UNKNOWN) - return ("unknown"); -+ const struct if_status_description *p; -+ static char buf[8]; - +- - for (i = 0; ifm_status_valid_list[i] != 0; i++) - for (p = ifm_status_descriptions; p->ifms_valid != 0; p++) { - if (p->ifms_type != media_type || @@ -578,7 +743,9 @@ diff -u -p -r1.1.1.7 -r1.8 - return (p->ifms_string[1]); - return (p->ifms_string[0]); - } -- ++ const struct if_status_description *p; ++ static char buf[8]; + - return ("unknown link state"); + for (p = if_status_descriptions; p->ifs_string != NULL; p++) { + if (LINK_STATE_DESC_MATCH(p, media_type, link_state)) @@ -597,26 +764,26 @@ diff -u -p -r1.1.1.7 -r1.8 + if (baudrate > IF_Gbps(1)) - printf("%llu GBit/s", baudrate / IF_Gbps(1)); -+ snprintf(bbuf, sizeof(bbuf), "%llu G%s", ++ snprintf(bbuf, sizeof(bbuf), "%" PRIu64 " G%s", + baudrate / IF_Gbps(1), unit); else if (baudrate > IF_Mbps(1)) - printf("%llu MBit/s", baudrate / IF_Mbps(1)); -+ snprintf(bbuf, sizeof(bbuf), "%llu M%s", ++ snprintf(bbuf, sizeof(bbuf), "%" PRIu64 " M%s", + baudrate / IF_Mbps(1), unit); else if (baudrate > IF_Kbps(1)) - printf("%llu KBit/s", baudrate / IF_Kbps(1)); -+ snprintf(bbuf, sizeof(bbuf), "%llu K%s", ++ snprintf(bbuf, sizeof(bbuf), "%" PRIu64 " K%s", + baudrate / IF_Kbps(1), unit); else - printf("%llu Bit/s", baudrate); -+ snprintf(bbuf, sizeof(bbuf), "%llu %s", ++ snprintf(bbuf, sizeof(bbuf), "%" PRIu64 " %s", + baudrate, unit); + + return (bbuf); } int -@@ -982,17 +1050,12 @@ show_interface_msg(struct imsg *imsg) +@@ -982,17 +1130,12 @@ show_interface_msg(struct imsg *imsg) printf("%-15s", k->flags & IFF_UP ? "UP" : ""); if ((ifms_type = ift2ifm(k->media_type)) != 0) @@ -639,16 +806,21 @@ diff -u -p -r1.1.1.7 -r1.8 printf("\n"); break; case IMSG_CTL_END: -@@ -1011,7 +1074,7 @@ show_rib_summary_head(void) - printf( - "flags: * = Valid, > = Selected, I = via IBGP, A = Announced\n"); +@@ -1008,10 +1151,10 @@ show_interface_msg(struct imsg *imsg) + void + show_rib_summary_head(void) + { +- printf( +- "flags: * = Valid, > = Selected, I = via IBGP, A = Announced\n"); ++ printf("flags: * = Valid, > = Selected, I = via IBGP, A = Announced, " ++ "S = Stale\n"); printf("origin: i = IGP, e = EGP, ? = Incomplete\n\n"); - printf("%-5s %-20s%-15s %5s %5s %s\n", "flags", "destination", + printf("%-5s %-20s %-15s %5s %5s %s\n", "flags", "destination", "gateway", "lpref", "med", "aspath origin"); } -@@ -1049,26 +1112,26 @@ print_flags(u_int8_t flags, int sum) +@@ -1049,26 +1192,30 @@ print_flags(u_int8_t flags, int sum) char *p = flagstr; if (sum) { @@ -659,6 +831,8 @@ diff -u -p -r1.1.1.7 -r1.8 + if (flags & F_PREF_INTERNAL) *p++ = 'I'; - if (flags & F_RIB_ELIGIBLE) ++ if (flags & F_PREF_STALE) ++ *p++ = 'S'; + if (flags & F_PREF_ELIGIBLE) *p++ = '*'; - if (flags & F_RIB_ACTIVE) @@ -673,6 +847,8 @@ diff -u -p -r1.1.1.7 -r1.8 else printf("external"); - if (flags & F_RIB_ELIGIBLE) ++ if (flags & F_PREF_STALE) ++ printf(", stale"); + if (flags & F_PREF_ELIGIBLE) printf(", valid"); - if (flags & F_RIB_ACTIVE) @@ -683,43 +859,192 @@ diff -u -p -r1.1.1.7 -r1.8 printf(", announced"); } } -@@ -1085,7 +1148,7 @@ show_rib_summary_msg(struct imsg *imsg) - memcpy(&rib, imsg->data, sizeof(rib)); +@@ -1077,27 +1224,14 @@ int + show_rib_summary_msg(struct imsg *imsg) + { + struct ctl_show_rib rib; +- char *aspath; + u_char *asdata; - print_prefix(&rib.prefix, rib.prefixlen, rib.flags); + switch (imsg->hdr.type) { + case IMSG_CTL_SHOW_RIB: + memcpy(&rib, imsg->data, sizeof(rib)); +- +- print_prefix(&rib.prefix, rib.prefixlen, rib.flags); - printf("%-15s ", log_addr(&rib.exit_nexthop)); -+ printf(" %-15s ", log_addr(&rib.exit_nexthop)); - - printf(" %5u %5u ", rib.local_pref, rib.med); +- +- printf(" %5u %5u ", rib.local_pref, rib.med); +- + asdata = imsg->data; + asdata += sizeof(struct ctl_show_rib); +- if (aspath_asprint(&aspath, asdata, rib.aspath_len) == -1) +- err(1, NULL); +- if (strlen(aspath) > 0) +- printf("%s ", aspath); +- free(aspath); +- +- printf("%s\n", print_origin(rib.origin, 1)); ++ show_rib_brief(&rib, asdata); + break; + case IMSG_CTL_END: + return (1); +@@ -1112,108 +1246,21 @@ int + show_rib_detail_msg(struct imsg *imsg, int nodescr) + { + struct ctl_show_rib rib; +- struct in_addr id; +- char *aspath, *s; +- u_char *data; +- u_int32_t as; +- u_int16_t ilen, alen, ioff; +- u_int8_t flags, type; +- time_t now; ++ u_char *asdata; ++ u_int16_t ilen; -@@ -1189,8 +1252,8 @@ show_rib_detail_msg(struct imsg *imsg, i - case ATTR_AGGREGATOR: - memcpy(&as, data, sizeof(as)); - memcpy(&id, data + sizeof(as), sizeof(id)); + switch (imsg->hdr.type) { + case IMSG_CTL_SHOW_RIB: + memcpy(&rib, imsg->data, sizeof(rib)); +- +- printf("\nBGP routing table entry for %s/%u\n", +- log_addr(&rib.prefix), rib.prefixlen); +- +- data = imsg->data; +- data += sizeof(struct ctl_show_rib); +- if (aspath_asprint(&aspath, data, rib.aspath_len) == -1) +- err(1, NULL); +- if (strlen(aspath) > 0) +- printf(" %s\n", aspath); +- free(aspath); +- +- s = fmt_peer(rib.descr, &rib.remote_addr, -1, nodescr); +- printf(" Nexthop %s ", log_addr(&rib.exit_nexthop)); +- printf("(via %s) from %s (", log_addr(&rib.true_nexthop), s); +- free(s); +- id.s_addr = htonl(rib.remote_id); +- printf("%s)\n", inet_ntoa(id)); +- +- printf(" Origin %s, metric %u, localpref %u, ", +- print_origin(rib.origin, 0), rib.med, rib.local_pref); +- print_flags(rib.flags, 0); +- +- now = time(NULL); +- if (now > rib.lastchange) +- now -= rib.lastchange; +- else +- now = 0; +- +- printf("\n Last update: %s ago\n", +- fmt_timeframe_core(now)); ++ asdata = imsg->data; ++ asdata += sizeof(struct ctl_show_rib); ++ show_rib_detail(&rib, asdata, nodescr); + break; + case IMSG_CTL_SHOW_RIB_ATTR: + ilen = imsg->hdr.len - IMSG_HEADER_SIZE; + if (ilen < 3) + errx(1, "bad IMSG_CTL_SHOW_RIB_ATTR received"); +- data = imsg->data; +- flags = data[0]; +- type = data[1]; +- +- /* get the attribute length */ +- if (flags & ATTR_EXTLEN) { +- if (ilen < 4) +- errx(1, "bad IMSG_CTL_SHOW_RIB_ATTR received"); +- memcpy(&alen, data+2, sizeof(u_int16_t)); +- alen = ntohs(alen); +- data += 4; +- ilen -= 4; +- } else { +- alen = data[2]; +- data += 3; +- ilen -= 3; +- } +- /* bad imsg len how can that happen!? */ +- if (alen != ilen) +- errx(1, "bad IMSG_CTL_SHOW_RIB_ATTR received"); +- +- switch (type) { +- case ATTR_COMMUNITIES: +- printf(" Communities: "); +- show_community(data, alen); +- printf("\n"); +- break; +- case ATTR_AGGREGATOR: +- memcpy(&as, data, sizeof(as)); +- memcpy(&id, data + sizeof(as), sizeof(id)); - printf(" Aggregator: %s [%s]\n", - log_as(htonl(as)), inet_ntoa(id)); -+ printf(" Aggregator: %s [%s]\n", -+ log_as(ntohl(as)), inet_ntoa(id)); - break; - case ATTR_ORIGINATOR_ID: - memcpy(&id, data, sizeof(id)); -@@ -1236,22 +1299,27 @@ fmt_mem(int64_t num) - return (buf); +- break; +- case ATTR_ORIGINATOR_ID: +- memcpy(&id, data, sizeof(id)); +- printf(" Originator Id: %s\n", inet_ntoa(id)); +- break; +- case ATTR_CLUSTER_LIST: +- printf(" Cluster ID List:"); +- for (ioff = 0; ioff + sizeof(id) <= ilen; +- ioff += sizeof(id)) { +- memcpy(&id, data + ioff, sizeof(id)); +- printf(" %s", inet_ntoa(id)); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 20:17:20 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9D1A4CA9; Sat, 13 Oct 2012 20:17:20 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8668B8FC0A; Sat, 13 Oct 2012 20:17:20 +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 q9DKHK9Y000337; Sat, 13 Oct 2012 20:17:20 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DKHKYc000335; Sat, 13 Oct 2012 20:17:20 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201210132017.q9DKHKYc000335@svn.freebsd.org> From: Hiroki Sato Date: Sat, 13 Oct 2012 20:17:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305849 - head/print/ghostscript9 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 20:17:20 -0000 Author: hrs Date: Sat Oct 13 20:17:19 2012 New Revision: 305849 URL: http://svn.freebsd.org/changeset/ports/305849 Log: Fix liblcms conflict. Spotted by: ume Feature safe: yes Modified: head/print/ghostscript9/Makefile Modified: head/print/ghostscript9/Makefile ============================================================================== --- head/print/ghostscript9/Makefile Sat Oct 13 19:40:42 2012 (r305848) +++ head/print/ghostscript9/Makefile Sat Oct 13 20:17:19 2012 (r305849) @@ -2,6 +2,7 @@ PORTNAME= ghostscript PORTVERSION= 9.06 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://downloads.ghostscript.com/public/:gs_srcs \ SF/ghostscript/GPL%20Ghostscript/${PORTVERSION}:gs_srcs \ @@ -24,9 +25,8 @@ LIB_DEPENDS= expat:${PORTSDIR}/textproc/ jbig2dec:${PORTSDIR}/graphics/jbig2dec \ jpeg:${PORTSDIR}/graphics/jpeg \ png15:${PORTSDIR}/graphics/png \ - tiff:${PORTSDIR}/graphics/tiff -# XXX: lcms shared lib support is broken -# lcms:${PORTSDIR}/graphics/lcms + tiff:${PORTSDIR}/graphics/tiff \ + lcms2:${PORTSDIR}/graphics/lcms2 RUN_DEPENDS= ${LOCALBASE}/share/${PORTNAME}/fonts/a010013l.pfb:${PORTSDIR}/print/gsfonts CONFLICTS_INSTALL= gambc-[0-9]* ghostscript[78]-[0-9]* \ @@ -49,6 +49,7 @@ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --disable-compile-inits \ --enable-contrib \ --enable-dynamic \ + --with-system-libtiff \ --with-ijs \ --with-libidn \ --without-jasper \ @@ -87,7 +88,7 @@ MLINKS= gslp.1 gsbj.1 \ ps2pdf.1 ps2pdf14.1 \ ps2ps.1 eps2eps.1 -EXCLUDE_DIRS= freetype jbig2dec jpeg expat jasper libpng tiff zlib +EXCLUDE_DIRS= freetype jbig2dec jpeg expat jasper lcms lcms2 libpng tiff zlib .include "Makefile.drivers" .include From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 20:37:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77B79306; Sat, 13 Oct 2012 20:37:04 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5F9598FC14; Sat, 13 Oct 2012 20:37: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 q9DKb4rI003610; Sat, 13 Oct 2012 20:37:04 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DKb4B3003607; Sat, 13 Oct 2012 20:37:04 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201210132037.q9DKb4B3003607@svn.freebsd.org> From: TAKATSU Tomonari Date: Sat, 13 Oct 2012 20:37:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305850 - head/security/rubygem-twitter_oauth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 20:37:04 -0000 Author: tota Date: Sat Oct 13 20:37:03 2012 New Revision: 305850 URL: http://svn.freebsd.org/changeset/ports/305850 Log: - Update to 0.4.4 - Convert to new Makefile header Feature safe: yes Modified: head/security/rubygem-twitter_oauth/Makefile head/security/rubygem-twitter_oauth/distinfo Modified: head/security/rubygem-twitter_oauth/Makefile ============================================================================== --- head/security/rubygem-twitter_oauth/Makefile Sat Oct 13 20:17:19 2012 (r305849) +++ head/security/rubygem-twitter_oauth/Makefile Sat Oct 13 20:37:03 2012 (r305850) @@ -1,12 +1,9 @@ -# New ports collection makefile for: rubygem-twitter_oauth -# Date created: 2011-07-31 -# Whom: TAKATSU Tomonari -# +# Created by: TAKATSU Tomonari # $FreeBSD$ # PORTNAME= twitter_oauth -PORTVERSION= 0.4.3 +PORTVERSION= 0.4.4 CATEGORIES= security rubygems MASTER_SITES= RG Modified: head/security/rubygem-twitter_oauth/distinfo ============================================================================== --- head/security/rubygem-twitter_oauth/distinfo Sat Oct 13 20:17:19 2012 (r305849) +++ head/security/rubygem-twitter_oauth/distinfo Sat Oct 13 20:37:03 2012 (r305850) @@ -1,2 +1,2 @@ -SHA256 (rubygem/twitter_oauth-0.4.3.gem) = 4d2e57eecff62440de4df4a05e072f5507e5f7b22b18d9ca38e23fd71b751701 -SIZE (rubygem/twitter_oauth-0.4.3.gem) = 11776 +SHA256 (rubygem/twitter_oauth-0.4.4.gem) = b81d2cbba6718921c58c7e93c15e6516c660cc4ae201750f1dd4b5f668c9a02c +SIZE (rubygem/twitter_oauth-0.4.4.gem) = 11776 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 23:19:37 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 389909FD; Sat, 13 Oct 2012 23:19:37 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 206E98FC08; Sat, 13 Oct 2012 23:19: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 q9DNJakI029448; Sat, 13 Oct 2012 23:19:36 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DNJaBt029446; Sat, 13 Oct 2012 23:19:36 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201210132319.q9DNJaBt029446@svn.freebsd.org> From: Gerald Pfeifer Date: Sat, 13 Oct 2012 23:19:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305851 - head/lang/hiphop-php X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 23:19:37 -0000 Author: gerald Date: Sat Oct 13 23:19:36 2012 New Revision: 305851 URL: http://svn.freebsd.org/changeset/ports/305851 Log: Replace the use of _GCC_BUILD_DEPENDS (which was never meant to be used outside of Mk/bsd.gcc.mk) by _GCC_RUNTIME. This is still not ideal, but at least a documented stopgap, and it avoids the manual construction of the directory to be added to rpath. Remove -rpath= from _CFLAGS and _LDFLAGS since CFLAGS and LDFLAGS already have -Wl,-rpath= (and -rpath= itself is not even accepted by current versions of GCC). Approved by: maintainer timeout (6 weeks) Feature safe: yes Modified: head/lang/hiphop-php/Makefile Modified: head/lang/hiphop-php/Makefile ============================================================================== --- head/lang/hiphop-php/Makefile Sat Oct 13 20:37:03 2012 (r305850) +++ head/lang/hiphop-php/Makefile Sat Oct 13 23:19:36 2012 (r305851) @@ -119,12 +119,9 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- .include -_CFLAGS= -rpath=${LOCALBASE}/lib/${_GCC_BUILD_DEPENDS} \ - ${CFLAGS} -_CXXFLAGS= -rpath=${LOCALBASE}/lib/${_GCC_BUILD_DEPENDS} \ - ${CXXFLAGS} -_LDFLAGS= -rpath=${LOCALBASE}/lib/${_GCC_BUILD_DEPENDS} \ - ${LDFLAGS} +_CFLAGS= ${CFLAGS} +_CXXFLAGS= -rpath=${_GCC_RUNTIME} ${CXXFLAGS} +_LDFLAGS= ${LDFLAGS} CONFIGURE_ENV+= ${CUSTOM_ENV} MAKE_ENV+= ${CUSTOM_ENV} From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 23:20:58 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA648AD5; Sat, 13 Oct 2012 23:20:58 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 77D028FC0A; Sat, 13 Oct 2012 23:20: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 q9DNKwVt029738; Sat, 13 Oct 2012 23:20:58 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DNKwfC029733; Sat, 13 Oct 2012 23:20:58 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201210132320.q9DNKwfC029733@svn.freebsd.org> From: Jason Helfman Date: Sat, 13 Oct 2012 23:20:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305852 - in head/deskutils: xpad xpad-current X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 23:20:58 -0000 Author: jgh Date: Sat Oct 13 23:20:57 2012 New Revision: 305852 URL: http://svn.freebsd.org/changeset/ports/305852 Log: - drop icon-theme.cache from plists Spotted by: bapt Feature safe: yes Modified: head/deskutils/xpad-current/Makefile (contents, props changed) head/deskutils/xpad-current/pkg-plist (contents, props changed) head/deskutils/xpad/Makefile (contents, props changed) head/deskutils/xpad/pkg-plist (contents, props changed) Modified: head/deskutils/xpad-current/Makefile ============================================================================== --- head/deskutils/xpad-current/Makefile Sat Oct 13 23:19:36 2012 (r305851) +++ head/deskutils/xpad-current/Makefile Sat Oct 13 23:20:57 2012 (r305852) @@ -1,13 +1,8 @@ -# New ports collection makefile for: xpad-current -# Date created: 14 November 2011 -# Whom: Jason Helfman -# # $FreeBSD$ -# PORTNAME= xpad PORTVERSION= 4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MASTER_SITES= http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/ PKGNAMESUFFIX= -current Modified: head/deskutils/xpad-current/pkg-plist ============================================================================== --- head/deskutils/xpad-current/pkg-plist Sat Oct 13 23:19:36 2012 (r305851) +++ head/deskutils/xpad-current/pkg-plist Sat Oct 13 23:20:57 2012 (r305852) @@ -1,6 +1,5 @@ bin/xpad share/applications/xpad.desktop -share/icons/hicolor/icon-theme.cache share/icons/hicolor/scalable/apps/xpad.svg share/locale/af/LC_MESSAGES/xpad.mo share/locale/bg/LC_MESSAGES/xpad.mo Modified: head/deskutils/xpad/Makefile ============================================================================== --- head/deskutils/xpad/Makefile Sat Oct 13 23:19:36 2012 (r305851) +++ head/deskutils/xpad/Makefile Sat Oct 13 23:20:57 2012 (r305852) @@ -1,13 +1,10 @@ -# New ports collection makefile for: xpad -# Date created: 6 March 2002 -# Whom: Guillaume Paquet +# Created by: Guillaume Paquet # # $FreeBSD$ -# PORTNAME= xpad PORTVERSION= 3.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= deskutils MASTER_SITES= http://launchpad.net/xpad/stable/${PORTVERSION}/+download/ @@ -23,6 +20,7 @@ USE_BZIP2= yes USE_GMAKE= yes USE_XORG= x11 sm USE_GNOME= pkgconfig gtk20 gnomehier intltool +INSTALLS_ICONS= yes GNU_CONFIGURE= yes CPPFLAGS+= ${CXXFLAGS} -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/deskutils/xpad/pkg-plist ============================================================================== --- head/deskutils/xpad/pkg-plist Sat Oct 13 23:19:36 2012 (r305851) +++ head/deskutils/xpad/pkg-plist Sat Oct 13 23:20:57 2012 (r305852) @@ -1,6 +1,5 @@ bin/xpad share/applications/xpad.desktop -share/icons/hicolor/icon-theme.cache share/icons/hicolor/scalable/apps/xpad.svg share/locale/af/LC_MESSAGES/xpad.mo share/locale/bg/LC_MESSAGES/xpad.mo From owner-svn-ports-head@FreeBSD.ORG Sat Oct 13 23:23:26 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA658BD7; Sat, 13 Oct 2012 23:23:26 +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 B34C18FC08; Sat, 13 Oct 2012 23:23:26 +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 q9DNNQhA030171; Sat, 13 Oct 2012 23:23:26 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9DNNQ63030169; Sat, 13 Oct 2012 23:23:26 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201210132323.q9DNNQ63030169@svn.freebsd.org> From: Joe Marcus Clarke Date: Sat, 13 Oct 2012 23:23:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305853 - 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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Oct 2012 23:23:26 -0000 Author: marcus Date: Sat Oct 13 23:23:26 2012 New Revision: 305853 URL: http://svn.freebsd.org/changeset/ports/305853 Log: Fix the build when LDAP support is enabled. PR: 172641 Submitted by: Thomas Johnson Feature safe: yes Modified: head/net/netatalk3/Makefile Modified: head/net/netatalk3/Makefile ============================================================================== --- head/net/netatalk3/Makefile Sat Oct 13 23:20:57 2012 (r305852) +++ head/net/netatalk3/Makefile Sat Oct 13 23:23:26 2012 (r305853) @@ -83,7 +83,7 @@ SUB_LIST+= ZEROCONF="" .endif .if defined (WITH_LDAP) -CONFIGURE_ARGS+= --with-ldap +CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib USE_OPENLDAP= yes .else